[
  {
    "path": ".github/issue_template.md",
    "content": "---\n**Don't remove this content**\n\ntitle: 'Reporting issue on .Net Core platform'\nlables: core\nassignees: aksh-h\n\n---\n"
  },
  {
    "path": ".github/workflows/ado-gh-sync.yml",
    "content": "name: Sync issue to Azure DevOps work item\n\non:\n  issues:\n    types:\n      [opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned]\n\njobs:\n  alert:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: danhellem/github-actions-issue-to-work-item@master\n        env:\n          ado_token: \"${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}\"\n          github_token: \"${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}\"\n          ado_organization: \"vstsdemodata\"\n          ado_project: \"AzureDevOpsDemoGenerator\"\n          ado_wit: \"Product Backlog Item\"\n          ado_new_state: \"New\"\n          ado_active_state: \"Active\"\n          ado_close_state: \"Done\"\n          ado_bypassrules: true\n"
  },
  {
    "path": ".github/workflows/codeql.yml",
    "content": "name: \"Code Scanning - Action\"\n\non:\n  workflow_dispatch:\n  \n  #push:\n  #  branches: [master]\n  #pull_request:\n  #  # The branches below must be a subset of the branches above\n  #  branches: [master]\n  #schedule:\n  #  - cron: '0 0 * * 0'\n\njobs:\n  CodeQL-Build:\n\n    strategy:\n      fail-fast: false\n\n\n    # CodeQL runs on ubuntu-latest, windows-latest, and macos-latest\n    runs-on: windows-latest\n\n    steps:\n    - name: Checkout repository\n      uses: actions/checkout@v2\n      with:\n        # We must fetch at least the immediate parents so that if this is\n        # a pull request then we can checkout the head.\n        fetch-depth: 2\n\n    # If this run was triggered by a pull request event, then checkout\n    # the head of the pull request instead of the merge commit.\n    - run: git checkout HEAD^2\n      if: ${{ github.event_name == 'pull_request' }}\n\n    # Initializes the CodeQL tools for scanning.\n    - name: Initialize CodeQL\n      uses: github/codeql-action/init@v1\n      # Override language selection by uncommenting this and choosing your languages\n      # with:\n      #   languages: go, javascript, csharp, python, cpp, java\n        \n    - name: Setup MSBuild\n      uses: microsoft/setup-msbuild@v1\n\n    - name: Setup NuGet\n      uses: NuGet/setup-nuget@v1.0.2\n    \n    - name: Build .NET with CodeQL \n      run: | \n        nuget restore src/VSTSDemoGeneratorV2.sln \n        msbuild src/VSTSDemoGeneratorV2.sln /p:UseSharedCompilation=false /t:rebuild /p:Platform=\"Any CPU\" /p:Configuration=\"Debug\" /p:MvcBuildViews=true\n    \n    - name: Perform CodeQL Analysis\n      uses: github/codeql-action/analyze@v1\n"
  },
  {
    "path": ".gitignore",
    "content": "﻿## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n\n# User-specific files\n*.suo\n*.user\n*.sln.docstates\n\n# Build results\nbinaries/\n[Dd]ebug*/\n[Rr]elease/\nbuild/\n\n[Tt]est[Rr]esult\n[Bb]uild[Ll]og.*\n\n*_i.c\n*_p.c\n*.ilk\n*.meta\n*.obj\n*.pch\n*.pdb\n*.pgc\n*.pgd\n*.rsp\n*.sbr\n*.tlb\n*.tli\n*.tlh\n*.tmp\n*.vspscc\n*.vssscc\n.builds\n\n*.pidb\n\n*.log\n*.scc\n# Visual C++ cache files\nipch/\n*.aps\n*.ncb\n*.opensdf\n*.sdf\n\n# Visual Studio profiler\n*.psess\n*.vsp\n\n# Code analysis\n*.CodeAnalysisLog.xml\n\n# Guidance Automation Toolkit\n*.gpState\n\n# ReSharper is a .NET coding add-in\n_ReSharper*/\n\n*.[Rr]e[Ss]harper\n\n# NCrunch\n*.ncrunch*\n.*crunch*.local.xml\n\n# Installshield output folder\n[Ee]xpress\n\n# DocProject is a documentation generator add-in\nDocProject/buildhelp/\nDocProject/Help/*.HxT\nDocProject/Help/*.HxC\nDocProject/Help/*.hhc\nDocProject/Help/*.hhk\nDocProject/Help/*.hhp\nDocProject/Help/Html2\nDocProject/Help/html\n\n# Click-Once directory\npublish\n\n# Publish Web Output\n*.Publish.xml\n\n# Others\n[Bb]in\n[Oo]bj\nsql\nTestResults\n[Tt]est[Rr]esult*\n*.Cache\nClientBin\n[Ss]tyle[Cc]op.*\n~$*\n*.dbmdl\n\n*.[Pp]ublish.xml\n\nGenerated_Code #added for RIA/Silverlight projects\n\n# Build tasks\ntools/*.dll\n\n# Backup & report files from converting an old project file to a newer\n# Visual Studio version. Backup files are not needed, because we have git ;-)\n_UpgradeReport_Files/\nBackup*/\nUpgradeLog*.XML\n\n# NuGet\nAppPackages/\nPackages/\n\n# Test Config\n*TestConfigurations.xml\n\n# Fiddler dlls\nTest/FaultInjection/Dependencies/DotNet2/FiddlerCore.dll\nTest/FaultInjection/Dependencies/DotNet2/FiddlerCore.XML\nTest/FaultInjection/Dependencies/DotNet4/FiddlerCore4.dll\nTest/FaultInjection/Dependencies/DotNet4/FiddlerCore4.XML\n\n# Test Results\nTestResults/\n\n# Test Config\nTest/Common/TestConfigurations.xml\n\n# Mac development\n.DS_Store\n\n#VS14 sln.ide files\n*.sln.ide/\n\n# ProjectK Build Files\nbuildfre.*\nobjfre/\n*.playlist\n\n# NetCore Dependency\n*project.lock.json\n\n\n# VS14 Misc.\nUpgradeLog.htm\n.vs/\n.cr/\n/src/VstsDemoBuilder/Logs\n/src/VstsDemoBuilder/ExtractedTemplate/adqw\n/src/AzureDevOpsDemoBuilder/log\n/src/AzureDevOpsDemoBuilder/Appsettings.Development.json\n/src/AzureDevOpsDemoBuilder/appsettings.json\n"
  },
  {
    "path": "404.md",
    "content": "Sorry, we can't find that page that you're looking for. You can try again by going [back to the homepage]({{ site.baseurl }}/).\n\n[<img src=\"{{ site.baseurl }}/images/404.jpg\" alt=\"Constructocat by https://github.com/jasoncostello\" style=\"width: 400px;\"/>]({{ site.baseurl }}/)\n"
  },
  {
    "path": "CNAME",
    "content": "\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contribute to the Azure DevOps Demo Generator\n\nWelcome, and thank you for your interest in contributing to the Azure DevOps Demo Generator!\n\nWe welcome participation in a variety of ways, including providing and commenting on issues, issuing pull requests against the code base for new features and fixes, updating and improving documentation, or by contributing templates.  This document provides a high-level overview of how you can get involved.\n\n## About this project\n\nThe Azure DevOps Demo Generator is a service enabling you to provision Azure DevOps projects based on existing templates. It can be used to generate projects for hands-on-labs and learning, to setup a 'DevOps playground' to experiment and demonstrate, or to achieve other objectives (e.g., Microsoft Learning or the Microsoft Cloud Adoption Framework).  You can also [build custom templates](./docs/Using-The-Generator.md) to create templates for  your own community or company, develop your own project creation tools using the [REST API](./docs/Azure-DevOps-Demo-Generator-REST-API-Reference), or simply as reference example for working with the Azure DevOps APIs.\n\n> Note: The Azure DevOps Demo Generate was not designed for \"copying\" projects and attempts to do so will most likely fail.\n\n## Contribution Guidelines\n\nThis project welcomes contributions and suggestions.  Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.\n\nWhen you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n\n\n# Contributing Templates\n\nOnce you successfully generate and test your template, you can share it with community. This can be done in three ways.\n\n1.  Create a pull request to [Azure DevOps Demo Generator](https://github.com/microsoft/AzureDevOpsDemoGenerator/)\n1. Place the template zip file in any public repository and share the link in [Email](mailto:AzureDevOpsDemoGenerator@service.microsoft.com)\n1. Share the template directly through [Email](mailto:AzureDevOpsDemoGenerator@service.microsoft.com)\n\n> Note: If you have extensions installed in your organization, template would be generated along with reference to all installed extensions in the ```Extensions.json``` file. You can edit this file and keep only the required extensions for the project. If extensions are not required, keep the file empty.\n\n## Your template must contain following elements\n|Keys|Description| \n|-------|-----------|\n|**Name**| Name of your template, which will be displayed in the text box upon template selection |\n|**ShortName** | Short name for your template. This should not contain any space or special characters|\n|**TemplateFolder**| Name of your template folder. This should not contain any space or special characters|\n|**Description** | A brief description about the template|\n|**Tags**| An array of tags, which should be related to technologies used. Ex: .NetCore, Java, Maven, Docker, K8S, etc. |\n| **Icon** | Template icon to display it publicly in the template selection page |\n| **Document link** | Document link for user reference|\n|||\n\nWe will communicate via Email once the template validated successfully.\n\n## Asking Questions\n\nHave a question? Open an issue using the question template and the `question` label.  \n\nThe active community will be eager to assist you. Your well-worded question will serve as a resource to others searching for help.\n\n## Providing Feedback\n\nYour comments and feedback are welcome, and the project team is available via handful of different channels.\n\n## Reporting Issues\n\nHave you identified a reproducible problem in a workshop? Have a feature request? We want to hear about it! Here's how you can make reporting your issue as effective as possible.\n\n### Look For an Existing Issue\n\nBefore you create a new issue, please do a search in [open issues](https://github.com/Microsoft/MSW/issues) to see if the issue or feature request has already been filed.\n\nBe sure to scan through the [most popular](https://github.com/Microsoft/etc...) feature requests.\n\nIf you find your issue already exists, make relevant comments and add your [reaction](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments). Use a reaction in place of a \"+1\" comment:\n\n* 👍 - upvote\n* 👎 - downvote\n\n\nIf you cannot find an existing issue that describes your bug or feature, create a new issue using the guidelines below.\n\n### Writing Good Bug Reports and Feature Requests\n\nFile a single issue per problem and feature request. Do not enumerate multiple bugs or feature requests in the same issue.\n\nDo not add your issue as a comment to an existing issue unless it's for the identical input. Many issues look similar, but have different causes.\n\nThe more information you can provide, the more likely someone will be successful reproducing the issue and finding a fix.  Please use the template for each issue.\n\n### Final Checklist\n\nPlease remember to do the following:\n\n* [ ] Search the issue repository to ensure your report is a new issue\n\n* [ ] Recreate the issue after disabling all extensions\n\n* [ ] Simplify your code around the issue to better isolate the problem\n\nDon't feel bad if the developers can't reproduce the issue right away. They will simply ask for more information!\n\n## Contributing Fixes\n\nIf you are interested in writing code to fix issues,\nplease see [How to Contribute](https://github.com/Microsoft/MSW/wiki/How-to-Contribute) in the wiki.\n\n# Thank You!\n\nYour contributions to open source, large or small, make great projects like this possible. Thank you for taking the time to contribute.\n"
  },
  {
    "path": "LICENSE",
    "content": "    MIT License\n\n    Copyright (c) Microsoft Corporation. All rights reserved.\n\n    Permission is hereby granted, free of charge, to any person obtaining a copy\n    of this software and associated documentation files (the \"Software\"), to deal\n    in the Software without restriction, including without limitation the rights\n    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n    copies of the Software, and to permit persons to whom the Software is\n    furnished to do so, subject to the following conditions:\n\n    The above copyright notice and this permission notice shall be included in all\n    copies or substantial portions of the Software.\n\n    THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n    SOFTWARE\n"
  },
  {
    "path": "README.md",
    "content": "# Azure DevOps Demo Generator\n\n   [![Build status](https://vstsdemodata.visualstudio.com/VSTSDemoGenerator/_apis/build/status/VSTSDemoGenerator-Prod)](https://vstsdemodata.visualstudio.com/VSTSDemoGenerator/_build/latest?definitionId=76)\n\n[![Release status](https://vsrm.dev.azure.com/vstsdemodata/_apis/public/Release/badge/89b9b739-9a1c-4739-8aae-6a8a1eb67ee7/2/4)](https://vsrm.dev.azure.com/vstsdemodata/_apis/public/Release/badge/89b9b739-9a1c-4739-8aae-6a8a1eb67ee7/2/4)\n\n## About\n\nThe Azure DevOps Demo Generator can create projects in your Azure DevOps organization, prepopulated with template-based content including source code, work items, iterations, service endpoints, build and release definitions, and more!\n\nThe original purpose of this system is to simplify working with the [Azure DevOps hands-on-labs](https://www.azuredevopslabs.com), demos and other education material. But it can also be used to drive your ownAzure DevOps automation utilities, provision your own custom templates, or as a reference for using the [Azure DevOps REST APIs](https://docs.microsoft.com/rest/api/azure/devops/).\n\n## Getting Started\n\nThe Azure DevOps Demo Generator is a hosted service that you can [access directly](https://azuredevopsdemogenerator.azurewebsites.net/) to create template-based projects, via [API](./docs/Azure-DevOps-Demo-Generator-REST-API-Reference.md) or as a side effect of the related [Azure DevOps hands-on-labs](https://www.azuredevopslabs.com).\n\nThe following docs provide additional information:\n* [Using the Azure DevOps Demo Generator](./docs/Using-The-Generator.md)\n* [Running the Azure DevOps Demo Generator on your local machine](./docs/Local-Development.md)\n* [Creating custom templates](./docs/Using-The-Template-Extractor.md)\n* [Using the REST APIs](./docs/Azure-DevOps-Demo-Generator-REST-API-Reference.md)\n* [Limitations](./docs/Limitations.md)\n* [Contributing to this project](./CONTRIBUTING.md)\n* [FAQ](./docs/FAQ.md)\n\n## Contributions\n\nThis project welcomes contributions and suggestions.  Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n\nFor more information on contributing, please visit the [contributor guide](./CONTRIBUTING.md).\n\n"
  },
  {
    "path": "Report/html/annotated.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Class List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n</div><!-- top -->\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Class List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"textblock\">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class=\"directory\">\n<div class=\"levels\">[detail level <span onclick=\"javascript:toggleLevel(1);\">1</span><span onclick=\"javascript:toggleLevel(2);\">2</span><span onclick=\"javascript:toggleLevel(3);\">3</span><span onclick=\"javascript:toggleLevel(4);\">4</span><span onclick=\"javascript:toggleLevel(5);\">5</span>]</div><table class=\"directory\">\n<tr id=\"row_0_\" class=\"even\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_0_\" class=\"arrow\" onclick=\"toggleFolder('0_')\">&#9660;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_templates_generator_tool.html\" target=\"_self\">TemplatesGeneratorTool</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_0_0_\" class=\"arrow\" onclick=\"toggleFolder('0_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\" target=\"_self\">Generators</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\" target=\"_self\">BoardColumns</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\" target=\"_self\">BuildDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\" target=\"_self\">CardFieldsAndCardStyles</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\" target=\"_self\">ExportDashboards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\" target=\"_self\">ExportQueries</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_0_5_\" class=\"arrow\" onclick=\"toggleFolder('0_0_5_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\" target=\"_self\">GenerateWIFromSource</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_5_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\" target=\"_self\">WIMapData</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_6_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\" target=\"_self\">PullRequests</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_7_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\" target=\"_self\">ReleaseDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_8_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\" target=\"_self\">SourceCode</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_9_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\" target=\"_self\">Teams</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_10_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\" target=\"_self\">ValidateLogin</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_\" class=\"arrow\" onclick=\"toggleFolder('0_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\" target=\"_self\">ViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\" target=\"_self\">BaseViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_1_\" class=\"arrow\" onclick=\"toggleFolder('0_1_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\" target=\"_self\">BoardColumnsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_1_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\" target=\"_self\">Column</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_1_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\" target=\"_self\">StateMappings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_2_\" class=\"arrow\" onclick=\"toggleFolder('0_1_2_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\" target=\"_self\">BuildDefinitionResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_2_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\" target=\"_self\">Build</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_2_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_3_\" class=\"arrow\" onclick=\"toggleFolder('0_1_3_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\" target=\"_self\">BuildDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\" target=\"_self\">Build</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\" target=\"_self\">BuildConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\" target=\"_self\">BuildDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\" target=\"_self\">BuildPlatform</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\" target=\"_self\">Definition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\" target=\"_self\">Inputs</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_6_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\" target=\"_self\">Inputs1</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_7_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\" target=\"_self\">Option</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_8_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\" target=\"_self\">Pool</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_9_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\" target=\"_self\">Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_10_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\" target=\"_self\">Queue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_11_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\" target=\"_self\">Repository</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_12_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\" target=\"_self\">RetentionRule</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_13_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\" target=\"_self\">SystemDebug</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_14_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\" target=\"_self\">Task</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_3_15_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\" target=\"_self\">Variables</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_4_\" class=\"arrow\" onclick=\"toggleFolder('0_1_4_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\" target=\"_self\">CardFieldResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_4_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\" target=\"_self\">Bug</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_4_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\" target=\"_self\">CardFields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_4_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\" target=\"_self\">Cards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_4_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\" target=\"_self\">ProductBacklogItem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_5_\" class=\"arrow\" onclick=\"toggleFolder('0_1_5_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\" target=\"_self\">CardStyleResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_5_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\" target=\"_self\">CardStyles</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_5_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\" target=\"_self\">Fill</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_5_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\" target=\"_self\">Rules</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_5_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\" target=\"_self\">Settings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_5_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\" target=\"_self\">TagStyle</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_6_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_6_\" class=\"arrow\" onclick=\"toggleFolder('0_1_6_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\" target=\"_self\">DashBoardResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_6_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\" target=\"_self\">Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_6_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_7_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_7_\" class=\"arrow\" onclick=\"toggleFolder('0_1_7_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\" target=\"_self\">GetBoardRowsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_7_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\" target=\"_self\">Result</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_7_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_8_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_8_\" class=\"arrow\" onclick=\"toggleFolder('0_1_8_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\" target=\"_self\">GetWorkItemsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_8_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\" target=\"_self\">Column</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_8_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\" target=\"_self\">Results</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_8_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\" target=\"_self\">Workitem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_9_\" class=\"arrow\" onclick=\"toggleFolder('0_1_9_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\" target=\"_self\">PlanViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\" target=\"_self\">AllPlans</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\" target=\"_self\">CardSettings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\" target=\"_self\">CoreField</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\" target=\"_self\">Criterion</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\" target=\"_self\">DeliveryPlan</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\" target=\"_self\">Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_6_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\" target=\"_self\">Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_7_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\" target=\"_self\">TeamBacklogMapping</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_9_8_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_10_\" class=\"arrow\" onclick=\"toggleFolder('0_1_10_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\" target=\"_self\">PullRequestCommentResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\" target=\"_self\">Comment</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\" target=\"_self\">Comments</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\" target=\"_self\">IterationContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\" target=\"_self\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\" target=\"_self\">Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\" target=\"_self\">PullRequestThreadContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_6_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\" target=\"_self\">RightFileEnd</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_7_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\" target=\"_self\">RightFileStart</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_8_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\" target=\"_self\">ThreadContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_10_9_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_11_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_11_\" class=\"arrow\" onclick=\"toggleFolder('0_1_11_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\" target=\"_self\">PullRequestResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_11_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\" target=\"_self\">PullRequest</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_11_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\" target=\"_self\">Reviewer</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_11_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_12_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_12_\" class=\"arrow\" onclick=\"toggleFolder('0_1_12_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\" target=\"_self\">QueryByPathResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_12_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\" target=\"_self\">Child</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_12_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\" target=\"_self\">query</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_12_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\" target=\"_self\">QueryWithWiql</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_13_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_13_\" class=\"arrow\" onclick=\"toggleFolder('0_1_13_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\" target=\"_self\">QueryResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_13_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\" target=\"_self\">Child</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_13_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\" target=\"_self\">Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_13_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\" target=\"_self\">Query</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_13_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_13_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\" target=\"_self\">Wiql</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_14_\" class=\"arrow\" onclick=\"toggleFolder('0_1_14_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\" target=\"_self\">ReleaseDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\" target=\"_self\">Approval</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\" target=\"_self\">Approver</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\" target=\"_self\">Artifact</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\" target=\"_self\">Condition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\" target=\"_self\">Definition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\" target=\"_self\">DefinitionReference</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_6_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\" target=\"_self\">DeploymentInput</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_7_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\" target=\"_self\">DeployPhas</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_8_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\" target=\"_self\">DeployStep</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_9_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\" target=\"_self\">Environment</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_10_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\" target=\"_self\">EnvironmentOptions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_11_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\" target=\"_self\">ExecutionPolicy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_12_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\" target=\"_self\">Inputs</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_13_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\" target=\"_self\">Owner</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_14_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\" target=\"_self\">ParallelExecution</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_15_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\" target=\"_self\">PostDeployApprovals</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_16_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\" target=\"_self\">PreDeployApprovals</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_17_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\" target=\"_self\">Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_18_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\" target=\"_self\">ReleaseDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_19_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\" target=\"_self\">RetentionPolicy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_20_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\" target=\"_self\">Task</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_21_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\" target=\"_self\">Trigger</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_14_22_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html\" target=\"_self\">Variables</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_15_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_15_\" class=\"arrow\" onclick=\"toggleFolder('0_1_15_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\" target=\"_self\">ReleaseDefinitionsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_15_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\" target=\"_self\">Release</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_15_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_16_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_16_\" class=\"arrow\" onclick=\"toggleFolder('0_1_16_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\" target=\"_self\">RepositoryResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_16_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\" target=\"_self\">Repository</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_16_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_17_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_17_\" class=\"arrow\" onclick=\"toggleFolder('0_1_17_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\" target=\"_self\">ServiceEndPointsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_17_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\" target=\"_self\">Authorization</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_17_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\" target=\"_self\">parameter</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_17_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\" target=\"_self\">Service</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_17_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_18_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_18_\" class=\"arrow\" onclick=\"toggleFolder('0_1_18_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\" target=\"_self\">SourceCodeResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_18_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\" target=\"_self\">Code</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_18_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\" target=\"_self\">GitSource</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_18_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\" target=\"_self\">Parameters</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_18_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_19_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_19_\" class=\"arrow\" onclick=\"toggleFolder('0_1_19_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\" target=\"_self\">TeamsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_19_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\" target=\"_self\">Team</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_19_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_20_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_20_\" class=\"arrow\" onclick=\"toggleFolder('0_1_20_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\" target=\"_self\">WidgetAndChartResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_20_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\" target=\"_self\">Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_20_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\" target=\"_self\">Position</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_20_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\" target=\"_self\">SettingsVersion</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_20_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\" target=\"_self\">Size</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_20_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_20_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\" target=\"_self\">Widget</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_21_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_0_1_21_\" class=\"arrow\" onclick=\"toggleFolder('0_1_21_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\" target=\"_self\">WorkItemFetchResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_21_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\" target=\"_self\">Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_21_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\" target=\"_self\">Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_21_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\" target=\"_self\">Relations</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_21_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_21_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\" target=\"_self\">WorkItems</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_2_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\" target=\"_self\">Configuration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_3_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\" target=\"_self\">IConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_4_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\" target=\"_self\">Program</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_5_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\" target=\"_self\">SourceConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_1_\" class=\"arrow\" onclick=\"toggleFolder('1_')\">&#9660;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder.html\" target=\"_self\">VstsDemoBuilder</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_0_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_1_0_\" class=\"arrow\" onclick=\"toggleFolder('1_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\" target=\"_self\">Controllers</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_0_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\" target=\"_self\">AccountController</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_0_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\" target=\"_self\">EnvironmentController</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_0_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\" target=\"_self\">HomeController</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_1_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_1_1_\" class=\"arrow\" onclick=\"toggleFolder('1_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_error_handler.html\" target=\"_self\">ErrorHandler</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_1_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\" target=\"_self\">AiHandleErrorAttribute</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_1_2_\" class=\"arrow\" onclick=\"toggleFolder('1_2_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\" target=\"_self\">Models</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\" target=\"_self\">AccessDetails</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_1_2_1_\" class=\"arrow\" onclick=\"toggleFolder('1_2_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\" target=\"_self\">Accounts</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_1_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\" target=\"_self\">AccountList</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_1_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html\" target=\"_self\">Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_1_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\" target=\"_self\">BuildDef</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\" target=\"_self\">BuildReleaseMapping</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\" target=\"_self\">Configuration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\" target=\"_self\">Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_6_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\" target=\"_self\">Default</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_7_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\" target=\"_self\">Email</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_8_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\" target=\"_self\">EnvironmentValues</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_9_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\" target=\"_self\">GroupDetails</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_10_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\" target=\"_self\">GroupwiseTemplate</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_11_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\" target=\"_self\">IConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_12_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_1_2_12_\" class=\"arrow\" onclick=\"toggleFolder('1_2_12_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location.html\" target=\"_self\">Location</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_12_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\" target=\"_self\">IPHostGenerator</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_13_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\" target=\"_self\">LoginModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_14_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\" target=\"_self\">ProfileDetails</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_15_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\" target=\"_self\">Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_16_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_1_2_16_\" class=\"arrow\" onclick=\"toggleFolder('1_2_16_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\" target=\"_self\">ProjectList</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_16_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\" target=\"_self\">Authentication</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_16_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\" target=\"_self\">ProjectCount</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_16_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_17_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\" target=\"_self\">ProjectSettings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_18_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\" target=\"_self\">ProjectTemplate</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_19_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\" target=\"_self\">Query</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_20_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\" target=\"_self\">ReleaseDef</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_21_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_1_2_21_\" class=\"arrow\" onclick=\"toggleFolder('1_2_21_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\" target=\"_self\">RequiredExtensions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_21_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\" target=\"_self\">Extension</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_21_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\" target=\"_self\">ExtensionWithLink</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_22_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\" target=\"_self\">Template</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_23_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\" target=\"_self\">templateKeyValue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_24_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\" target=\"_self\">TemplateSetting</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_25_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\" target=\"_self\">TestCase</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_26_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_1_2_26_\" class=\"arrow\" onclick=\"toggleFolder('1_2_26_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\" target=\"_self\">TestSuite</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_26_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\" target=\"_self\">Plan</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_26_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\" target=\"_self\">TestSuites</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_26_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_3_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\" target=\"_self\">BundleConfig</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_4_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\" target=\"_self\">FilterConfig</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_5_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\" target=\"_self\">MvcApplication</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_6_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\" target=\"_self\">RouteConfig</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_2_\" class=\"arrow\" onclick=\"toggleFolder('2_')\">&#9660;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\" target=\"_self\">VstsRestAPI</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_0_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_0_\" class=\"arrow\" onclick=\"toggleFolder('2_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_build.html\" target=\"_self\">Build</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_0_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\" target=\"_self\">BuildDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_1_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_1_\" class=\"arrow\" onclick=\"toggleFolder('2_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_delivery_plans.html\" target=\"_self\">DeliveryPlans</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_1_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\" target=\"_self\">Plans</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_2_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_2_\" class=\"arrow\" onclick=\"toggleFolder('2_2_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_git.html\" target=\"_self\">Git</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_2_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\" target=\"_self\">Repository</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_3_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_3_\" class=\"arrow\" onclick=\"toggleFolder('2_3_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\" target=\"_self\">ProjectsAndTeams</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_3_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\" target=\"_self\">Account</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_3_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\" target=\"_self\">Projects</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_3_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\" target=\"_self\">Team</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_4_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_4_\" class=\"arrow\" onclick=\"toggleFolder('2_4_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html\" target=\"_self\">QuerysAndWidgets</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_4_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\" target=\"_self\">Querys</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_5_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_5_\" class=\"arrow\" onclick=\"toggleFolder('2_5_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_queues.html\" target=\"_self\">Queues</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_5_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\" target=\"_self\">Queue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_6_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_6_\" class=\"arrow\" onclick=\"toggleFolder('2_6_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_release.html\" target=\"_self\">Release</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_6_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\" target=\"_self\">ReleaseDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_7_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_7_\" class=\"arrow\" onclick=\"toggleFolder('2_7_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_service.html\" target=\"_self\">Service</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_7_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\" target=\"_self\">ServiceEndPoint</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_8_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_8_\" class=\"arrow\" onclick=\"toggleFolder('2_8_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_test_management.html\" target=\"_self\">TestManagement</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_8_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\" target=\"_self\">TestManagement</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_\" class=\"arrow\" onclick=\"toggleFolder('2_9_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\" target=\"_self\">Viewmodel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_0_\" class=\"arrow\" onclick=\"toggleFolder('2_9_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\" target=\"_self\">Build</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_0_0_\" class=\"arrow\" onclick=\"toggleFolder('2_9_0_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\" target=\"_self\">BuildGetListofBuildDefinitionsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_0_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\" target=\"_self\">Authoredby</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_0_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\" target=\"_self\">Definitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_0_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\" target=\"_self\">Pool</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_0_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\" target=\"_self\">Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_0_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\" target=\"_self\">Queue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_0_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_1_\" class=\"arrow\" onclick=\"toggleFolder('2_9_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\" target=\"_self\">ProjectAndTeams</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_1_0_\" class=\"arrow\" onclick=\"toggleFolder('2_9_1_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\" target=\"_self\">AccountMembers</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_0_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\" target=\"_self\">AccessLevel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_0_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\" target=\"_self\">Account</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_0_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\" target=\"_self\">Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_0_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\" target=\"_self\">Member</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_0_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\" target=\"_self\">Memberships</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_0_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\" target=\"_self\">Self</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_0_6_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_1_1_\" class=\"arrow\" onclick=\"toggleFolder('2_9_1_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html\" target=\"_self\">GetTeamResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_1_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\" target=\"_self\">Team</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_1_2_\" class=\"arrow\" onclick=\"toggleFolder('2_9_1_2_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\" target=\"_self\">ListofProjectsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_2_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\" target=\"_self\">Projects</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_2_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_1_3_\" class=\"arrow\" onclick=\"toggleFolder('2_9_1_3_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\" target=\"_self\">TeamIterationsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_3_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\" target=\"_self\">Iterations</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_3_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_1_4_\" class=\"arrow\" onclick=\"toggleFolder('2_9_1_4_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\" target=\"_self\">TeamMemberResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_4_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\" target=\"_self\">TeamMembers</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_4_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\" target=\"_self\">value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\" target=\"_self\">TeamResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_6_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_1_6_\" class=\"arrow\" onclick=\"toggleFolder('2_9_1_6_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\" target=\"_self\">TeamSettingResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_6_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\" target=\"_self\">BacklogIteration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_6_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\" target=\"_self\">DefaultIteration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_6_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\" target=\"_self\">Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_6_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\" target=\"_self\">TeamSetting</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_2_\" class=\"arrow\" onclick=\"toggleFolder('2_9_2_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\" target=\"_self\">QuerysAndWidgets</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_2_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_2_0_\" class=\"arrow\" onclick=\"toggleFolder('2_9_2_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html\" target=\"_self\">DashBoardeTagResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_2_0_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\" target=\"_self\">Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_2_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_2_1_\" class=\"arrow\" onclick=\"toggleFolder('2_9_2_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\" target=\"_self\">DashboardResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_2_1_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\" target=\"_self\">Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_2_1_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_2_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\" target=\"_self\">QueryResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_3_\" class=\"arrow\" onclick=\"toggleFolder('2_9_3_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\" target=\"_self\">Queue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_3_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\" target=\"_self\">AgentQueueModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_3_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\" target=\"_self\">Pool</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_3_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\" target=\"_self\">QueueModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_3_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_4_\" class=\"arrow\" onclick=\"toggleFolder('2_9_4_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\" target=\"_self\">ReleaseDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_4_0_\" class=\"arrow\" onclick=\"toggleFolder('2_9_4_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\" target=\"_self\">ReleaseDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\" target=\"_self\">Approval</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\" target=\"_self\">Approver</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\" target=\"_self\">Artifact</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\" target=\"_self\">Condition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\" target=\"_self\">Definition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\" target=\"_self\">DefinitionReference</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_6_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\" target=\"_self\">DeploymentInput</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_7_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\" target=\"_self\">DeployPhas</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_8_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\" target=\"_self\">DeployStep</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_9_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\" target=\"_self\">Environment</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_10_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\" target=\"_self\">EnvironmentOptions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_11_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\" target=\"_self\">ExecutionPolicy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_12_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\" target=\"_self\">Inputs</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_13_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\" target=\"_self\">Owner</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_14_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\" target=\"_self\">ParallelExecution</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_15_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\" target=\"_self\">PostDeployApprovals</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_16_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\" target=\"_self\">PreDeployApprovals</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_17_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\" target=\"_self\">Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_18_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\" target=\"_self\">ReleaseDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_19_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\" target=\"_self\">RetentionPolicy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_20_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\" target=\"_self\">Task</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_21_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\" target=\"_self\">Trigger</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_0_22_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html\" target=\"_self\">Variables</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_4_1_\" class=\"arrow\" onclick=\"toggleFolder('2_9_4_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\" target=\"_self\">ReleaseDefinitionsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_1_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\" target=\"_self\">Release</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_1_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_5_\" class=\"arrow\" onclick=\"toggleFolder('2_9_5_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\" target=\"_self\">Repository</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_5_0_\" class=\"arrow\" onclick=\"toggleFolder('2_9_5_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\" target=\"_self\">GetAllRepositoriesResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_0_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\" target=\"_self\">Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_0_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\" target=\"_self\">Repositories</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_0_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_5_1_\" class=\"arrow\" onclick=\"toggleFolder('2_9_5_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\" target=\"_self\">PullRequestComments</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\" target=\"_self\">Comment</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\" target=\"_self\">Comments</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\" target=\"_self\">IterationContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\" target=\"_self\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\" target=\"_self\">Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\" target=\"_self\">PullRequestThreadContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_6_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\" target=\"_self\">reply</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_7_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\" target=\"_self\">RightFileEnd</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_8_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\" target=\"_self\">RightFileStart</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_9_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\" target=\"_self\">ThreadContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_1_10_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_6_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_6_\" class=\"arrow\" onclick=\"toggleFolder('2_9_6_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\" target=\"_self\">Service</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_6_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\" target=\"_self\">Authorization</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_6_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\" target=\"_self\">CreatedBy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_6_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html\" target=\"_self\">Data</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_6_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\" target=\"_self\">ServiceEndpointModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\" target=\"_self\">WorkItem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_0_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_0_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\" target=\"_self\">BatchRequest</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_0_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\" target=\"_self\">Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_0_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_1_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_1_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\" target=\"_self\">CardStylesPatch</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_1_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\" target=\"_self\">Fill</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_1_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\" target=\"_self\">ListofCardStyles</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_1_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\" target=\"_self\">Rules</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_1_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\" target=\"_self\">TagStyle</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\" target=\"_self\">ColumnPost</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_3_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_3_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\" target=\"_self\">CreateUpdateNodeViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_3_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\" target=\"_self\">Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_3_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\" target=\"_self\">Node</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_4_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_4_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\" target=\"_self\">GetBoardColumnResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_4_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\" target=\"_self\">ColumnResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_4_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\" target=\"_self\">Field</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_4_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\" target=\"_self\">Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_4_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\" target=\"_self\">StateMappings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_4_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_5_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_5_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\" target=\"_self\">GetCardFieldResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_5_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\" target=\"_self\">Cards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_5_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\" target=\"_self\">ListofCards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_6_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_6_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_6_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\" target=\"_self\">GetNodeResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_6_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\" target=\"_self\">_Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_6_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\" target=\"_self\">Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_6_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\" target=\"_self\">Node</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_6_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\" target=\"_self\">Parent</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_6_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\" target=\"_self\">Self</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_7_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_7_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_7_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\" target=\"_self\">GetNodesResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_7_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\" target=\"_self\">_Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_7_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\" target=\"_self\">Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_7_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\" target=\"_self\">Child</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_7_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\" target=\"_self\">Child1</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_7_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\" target=\"_self\">Nodes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_7_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\" target=\"_self\">Self</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_8_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_8_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_8_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\" target=\"_self\">GetWorkItemsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_8_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\" target=\"_self\">Column</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_8_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\" target=\"_self\">Results</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_8_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\" target=\"_self\">Workitem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_9_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_9_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_9_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\" target=\"_self\">ImportWorkItemModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_9_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\" target=\"_self\">Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_9_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\" target=\"_self\">Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_9_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\" target=\"_self\">Relations</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_9_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_9_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\" target=\"_self\">WorkItems</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_10_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\" target=\"_self\">ReturnException</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_11_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_11_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_11_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\" target=\"_self\">SetEpicSettings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_11_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\" target=\"_self\">BacklogVisibilities</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_11_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\" target=\"_self\">Epiclist</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_12_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:64px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\" target=\"_self\">StateMappings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_13_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_13_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_13_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\" target=\"_self\">WorkItemBatchPostResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_13_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_14_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_14_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_14_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\" target=\"_self\">WorkItemPatch</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_14_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\" target=\"_self\">Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_14_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\" target=\"_self\">Field</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_14_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\" target=\"_self\">Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_7_15_\" class=\"arrow\" onclick=\"toggleFolder('2_9_7_15_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\" target=\"_self\">WorkItemPatchResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\" target=\"_self\">_Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\" target=\"_self\">Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\" target=\"_self\">Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\" target=\"_self\">Fields1</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_4_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\" target=\"_self\">Html</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_5_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\" target=\"_self\">Relation</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_6_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\" target=\"_self\">Self</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_7_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\" target=\"_self\">WorkItem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_8_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\" target=\"_self\">Workitemhistory</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_9_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\" target=\"_self\">Workitemrevisions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_10_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\" target=\"_self\">Workitemtype</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_15_11_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:80px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\" target=\"_self\">Workitemupdates</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_8_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" target=\"_self\">BaseViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_10_\" class=\"arrow\" onclick=\"toggleFolder('2_10_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\" target=\"_self\">WorkItemAndTracking</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\" target=\"_self\">BoardColumn</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\" target=\"_self\">Cards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\" target=\"_self\">ClassificationNodes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\" target=\"_self\">ImportWorkItems</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\" target=\"_self\">IssueWI</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\" target=\"_self\">SwimLanes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_6_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\" target=\"_self\">WIMapData</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_7_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\" target=\"_self\">WorkItemNew</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_8_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\" target=\"_self\">WorkItems</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_11_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\" target=\"_self\">Configuration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_12_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\" target=\"_self\">IConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_13_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\" target=\"_self\">Utility</a></td><td class=\"desc\"></td></tr>\n</table>\n</div><!-- directory -->\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_configuration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">Configuration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Configuration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GitRepositoryId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Identity</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MoveToProject</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PersonalAccessToken</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PickListId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProcessId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Project</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Query</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>QueryId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Team</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UriString</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WorkItemId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WorkItemIds</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">TemplatesGeneratorTool.Configuration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_configuration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Configuration Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">Configuration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_configuration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Configuration Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for TemplatesGeneratorTool.Configuration:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_templates_generator_tool_1_1_configuration.png\" usemap=\"#TemplatesGeneratorTool.Configuration_map\" alt=\"\"/>\n  <map id=\"TemplatesGeneratorTool.Configuration_map\" name=\"TemplatesGeneratorTool.Configuration_map\">\n<area href=\"interface_templates_generator_tool_1_1_i_configuration.html\" alt=\"TemplatesGeneratorTool.IConfiguration\" shape=\"rect\" coords=\"0,0,232,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1a2d7be991ab8d3978099a08a6885366\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1a2d7be991ab8d3978099a08a6885366\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1a2d7be991ab8d3978099a08a6885366\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8990845201181389f3393a1285dcb218\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8990845201181389f3393a1285dcb218\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8990845201181389f3393a1285dcb218\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a427558a28114d3c7cba5e6062c5490b1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a427558a28114d3c7cba5e6062c5490b1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a427558a28114d3c7cba5e6062c5490b1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a16e8a47facbb73906f2e8f7a162bdbb5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a16e8a47facbb73906f2e8f7a162bdbb5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a16e8a47facbb73906f2e8f7a162bdbb5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a77f2e1a4bf54c1fb460ffec7ab9aa841\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a77f2e1a4bf54c1fb460ffec7ab9aa841\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a77f2e1a4bf54c1fb460ffec7ab9aa841\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaaa0ef3781ab0df4037670fb27051c8c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaaa0ef3781ab0df4037670fb27051c8c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaaa0ef3781ab0df4037670fb27051c8c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:add75df6197afdc1c741868a13c32b26f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add75df6197afdc1c741868a13c32b26f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add75df6197afdc1c741868a13c32b26f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa926161a0b00a2cb5cd09c1bd812037f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa926161a0b00a2cb5cd09c1bd812037f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa926161a0b00a2cb5cd09c1bd812037f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abf11ed77aaf36df00c317a9d75ee59ec\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abf11ed77aaf36df00c317a9d75ee59ec\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abf11ed77aaf36df00c317a9d75ee59ec\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae1cfab93e3ac69daeab8155f712f75ff\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae1cfab93e3ac69daeab8155f712f75ff\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae1cfab93e3ac69daeab8155f712f75ff\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adf69b63a5476cd1017e1202d8e76e921\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adf69b63a5476cd1017e1202d8e76e921\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adf69b63a5476cd1017e1202d8e76e921\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac258792c1668fecc38e6323777dbe97f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac258792c1668fecc38e6323777dbe97f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac258792c1668fecc38e6323777dbe97f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a16c7678d486bd12405cae7c095f7461a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a16c7678d486bd12405cae7c095f7461a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a16c7678d486bd12405cae7c095f7461a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abaa1cf3f5625dd00844a676a5d745136\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abaa1cf3f5625dd00844a676a5d745136\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abaa1cf3f5625dd00844a676a5d745136\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_interface_templates_generator_tool_1_1_i_configuration\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_interface_templates_generator_tool_1_1_i_configuration')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td></tr>\n<tr class=\"memitem:ae124de5476e5809f10341ae8fff33291 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae124de5476e5809f10341ae8fff33291\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae124de5476e5809f10341ae8fff33291 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a411fdd7c310b24d84b999758cd3dbead inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a411fdd7c310b24d84b999758cd3dbead\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a411fdd7c310b24d84b999758cd3dbead inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a555e694c00e04f58c4fd6f87c8fcd608 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a555e694c00e04f58c4fd6f87c8fcd608\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a555e694c00e04f58c4fd6f87c8fcd608 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acf217d2f0f2d56e9ade9bfcfb9b1b9c5 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acf217d2f0f2d56e9ade9bfcfb9b1b9c5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acf217d2f0f2d56e9ade9bfcfb9b1b9c5 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a267cdea956ab89ffbd0ef1356106fac5 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a267cdea956ab89ffbd0ef1356106fac5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a267cdea956ab89ffbd0ef1356106fac5 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7e1a4b7e26f4c9182fc953e9bcd144c7 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7e1a4b7e26f4c9182fc953e9bcd144c7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7e1a4b7e26f4c9182fc953e9bcd144c7 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abccdcc9f266ff3b2ba22af3eb6e72d75 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abccdcc9f266ff3b2ba22af3eb6e72d75\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abccdcc9f266ff3b2ba22af3eb6e72d75 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a79fd3ac49032caa02a9a0895c8ee34c6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a79fd3ac49032caa02a9a0895c8ee34c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a79fd3ac49032caa02a9a0895c8ee34c6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afa686bcb50d8ea923a4381f12c75142e inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afa686bcb50d8ea923a4381f12c75142e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afa686bcb50d8ea923a4381f12c75142e inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af17260e0422f922ec02e357203a6fc25 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af17260e0422f922ec02e357203a6fc25\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af17260e0422f922ec02e357203a6fc25 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9de86c96af44ef9df21aa16a84f6cfa1 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9de86c96af44ef9df21aa16a84f6cfa1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9de86c96af44ef9df21aa16a84f6cfa1 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a89cb953a87d44a00e019290ca8e6c7c6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a89cb953a87d44a00e019290ca8e6c7c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a89cb953a87d44a00e019290ca8e6c7c6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad04fd3e0455db5e3733014dd399d0a20 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad04fd3e0455db5e3733014dd399d0a20\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad04fd3e0455db5e3733014dd399d0a20 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af7f4e736f61aa4ead2dbfd6fc4ba9ba6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af7f4e736f61aa4ead2dbfd6fc4ba9ba6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af7f4e736f61aa4ead2dbfd6fc4ba9ba6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Configuration.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_board_columns-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">BoardColumns</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.BoardColumns Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">TemplatesGeneratorTool.Generators.BoardColumns</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>BoardColumns</b>(VstsRestAPI.IConfiguration configuration) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">TemplatesGeneratorTool.Generators.BoardColumns</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">TemplatesGeneratorTool.Generators.BoardColumns</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html#aada06c13642a29046cb06f3d2ef2e322\">ExportBoardColumns</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">TemplatesGeneratorTool.Generators.BoardColumns</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_board_columns.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.BoardColumns Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">BoardColumns</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.BoardColumns Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a2cf1afb0c72bee7188a14311079ef8d5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2cf1afb0c72bee7188a14311079ef8d5\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BoardColumns</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a2cf1afb0c72bee7188a14311079ef8d5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aada06c13642a29046cb06f3d2ef2e322\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html#aada06c13642a29046cb06f3d2ef2e322\">ExportBoardColumns</a> (string project)</td></tr>\n<tr class=\"memdesc:aada06c13642a29046cb06f3d2ef2e322\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to export <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">BoardColumns</a> json from the source project  <a href=\"#aada06c13642a29046cb06f3d2ef2e322\">More...</a><br /></td></tr>\n<tr class=\"separator:aada06c13642a29046cb06f3d2ef2e322\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"aada06c13642a29046cb06f3d2ef2e322\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#aada06c13642a29046cb06f3d2ef2e322\">&#9670;&nbsp;</a></span>ExportBoardColumns()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.BoardColumns.ExportBoardColumns </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to export <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">BoardColumns</a> json from the source project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/BoardColumns.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_build_definitions-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\">BuildDefinitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.BuildDefinitions Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\">TemplatesGeneratorTool.Generators.BuildDefinitions</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>BuildDefinitions</b>(VstsRestAPI.IConfiguration configuration, string accountName) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\">TemplatesGeneratorTool.Generators.BuildDefinitions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\">TemplatesGeneratorTool.Generators.BuildDefinitions</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html#a15b3c815112e04b0748ed7f1f12fa2cb\">ExportBuildDefinitions</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\">TemplatesGeneratorTool.Generators.BuildDefinitions</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_build_definitions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.BuildDefinitions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\">BuildDefinitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.BuildDefinitions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:ad677e6263ff3adc7b7df52ab8b023a3e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad677e6263ff3adc7b7df52ab8b023a3e\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BuildDefinitions</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration, string accountName)</td></tr>\n<tr class=\"separator:ad677e6263ff3adc7b7df52ab8b023a3e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a15b3c815112e04b0748ed7f1f12fa2cb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html#a15b3c815112e04b0748ed7f1f12fa2cb\">ExportBuildDefinitions</a> (string project)</td></tr>\n<tr class=\"memdesc:a15b3c815112e04b0748ed7f1f12fa2cb\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to export build definitions json from source project  <a href=\"#a15b3c815112e04b0748ed7f1f12fa2cb\">More...</a><br /></td></tr>\n<tr class=\"separator:a15b3c815112e04b0748ed7f1f12fa2cb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a15b3c815112e04b0748ed7f1f12fa2cb\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a15b3c815112e04b0748ed7f1f12fa2cb\">&#9670;&nbsp;</a></span>ExportBuildDefinitions()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.BuildDefinitions.ExportBuildDefinitions </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to export build definitions json from source project </p>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">CardFieldsAndCardStyles</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>CardFieldsAndCardStyles</b>(VstsRestAPI.IConfiguration configuration) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a3f285cbf53c28a958fff0123d88a3e8a\">GetCardFields</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a2882c956f1ddc904ab0502fb78a31ca2\">GetCardStyles</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">CardFieldsAndCardStyles</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:aef09dac397d7f80b7c6a4e7c7ddff47b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aef09dac397d7f80b7c6a4e7c7ddff47b\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CardFieldsAndCardStyles</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:aef09dac397d7f80b7c6a4e7c7ddff47b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3f285cbf53c28a958fff0123d88a3e8a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a3f285cbf53c28a958fff0123d88a3e8a\">GetCardFields</a> (string project)</td></tr>\n<tr class=\"memdesc:a3f285cbf53c28a958fff0123d88a3e8a\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to export cardfield json from source project  <a href=\"#a3f285cbf53c28a958fff0123d88a3e8a\">More...</a><br /></td></tr>\n<tr class=\"separator:a3f285cbf53c28a958fff0123d88a3e8a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2882c956f1ddc904ab0502fb78a31ca2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a2882c956f1ddc904ab0502fb78a31ca2\">GetCardStyles</a> (string project)</td></tr>\n<tr class=\"memdesc:a2882c956f1ddc904ab0502fb78a31ca2\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to export cardstyles json from source project  <a href=\"#a2882c956f1ddc904ab0502fb78a31ca2\">More...</a><br /></td></tr>\n<tr class=\"separator:a2882c956f1ddc904ab0502fb78a31ca2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a3f285cbf53c28a958fff0123d88a3e8a\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a3f285cbf53c28a958fff0123d88a3e8a\">&#9670;&nbsp;</a></span>GetCardFields()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles.GetCardFields </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to export cardfield json from source project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"a2882c956f1ddc904ab0502fb78a31ca2\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a2882c956f1ddc904ab0502fb78a31ca2\">&#9670;&nbsp;</a></span>GetCardStyles()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles.GetCardStyles </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to export cardstyles json from source project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/CardFieldsAndCardStyles.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_export_dashboards-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\">ExportDashboards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.ExportDashboards Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\">TemplatesGeneratorTool.Generators.ExportDashboards</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ExportDashboards</b>(VstsRestAPI.IConfiguration configuration) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\">TemplatesGeneratorTool.Generators.ExportDashboards</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\">TemplatesGeneratorTool.Generators.ExportDashboards</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html#a5f23b2dc5bd704add76697f8dfe5a530\">GetDashboard</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\">TemplatesGeneratorTool.Generators.ExportDashboards</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.ExportDashboards Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\">ExportDashboards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.ExportDashboards Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a08fbf444146cbcac2c599781f39ee34a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a08fbf444146cbcac2c599781f39ee34a\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ExportDashboards</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a08fbf444146cbcac2c599781f39ee34a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5f23b2dc5bd704add76697f8dfe5a530\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html#a5f23b2dc5bd704add76697f8dfe5a530\">GetDashboard</a> (string project)</td></tr>\n<tr class=\"memdesc:a5f23b2dc5bd704add76697f8dfe5a530\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to export Dashboard jsons form source project  <a href=\"#a5f23b2dc5bd704add76697f8dfe5a530\">More...</a><br /></td></tr>\n<tr class=\"separator:a5f23b2dc5bd704add76697f8dfe5a530\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a5f23b2dc5bd704add76697f8dfe5a530\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a5f23b2dc5bd704add76697f8dfe5a530\">&#9670;&nbsp;</a></span>GetDashboard()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.ExportDashboards.GetDashboard </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to export Dashboard jsons form source project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/ExportDashboards.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_export_queries-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\">ExportQueries</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.ExportQueries Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\">TemplatesGeneratorTool.Generators.ExportQueries</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ExportQueries</b>(VstsRestAPI.IConfiguration configuration) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\">TemplatesGeneratorTool.Generators.ExportQueries</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\">TemplatesGeneratorTool.Generators.ExportQueries</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html#a5891d5275dcffb8a38960ccb7de53004\">GetQueriesByPath</a>(string project, string path)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\">TemplatesGeneratorTool.Generators.ExportQueries</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_export_queries.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.ExportQueries Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\">ExportQueries</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.ExportQueries Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a558cf669caa0f03158bc099e95b1cb6a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a558cf669caa0f03158bc099e95b1cb6a\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ExportQueries</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a558cf669caa0f03158bc099e95b1cb6a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5891d5275dcffb8a38960ccb7de53004\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html#a5891d5275dcffb8a38960ccb7de53004\">GetQueriesByPath</a> (string project, string path)</td></tr>\n<tr class=\"memdesc:a5891d5275dcffb8a38960ccb7de53004\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to get queries jsons under Shared folder path  <a href=\"#a5891d5275dcffb8a38960ccb7de53004\">More...</a><br /></td></tr>\n<tr class=\"separator:a5891d5275dcffb8a38960ccb7de53004\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a5891d5275dcffb8a38960ccb7de53004\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a5891d5275dcffb8a38960ccb7de53004\">&#9670;&nbsp;</a></span>GetQueriesByPath()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.ExportQueries.GetQueriesByPath </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>path</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to get queries jsons under Shared folder path </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">path</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/ExportQueries.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">GenerateWIFromSource</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.GenerateWIFromSource Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a20c36bbbe10bb56f7f0472e8dd05b8bf\">DownloadAttachedFiles</a>(WorkItemFetchResponse.WorkItems workItems)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GenerateWIFromSource</b>(IConfiguration configuration, string accountName) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a07950971f3e02be2a376722ac76bf73a\">GetBoardRows</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a8471c5b52c936c6887720f60cd56c537\">GetWorkItemsDetailinBatch</a>(string workitemstoFetch)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a99040ad4f9108c0ca4d1b9ab8edbdc62\">getWorkItemsfromSource</a>(string workItemType)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#afb867463d207db51a8653f14e809e392\">UpdateWorkItem</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.GenerateWIFromSource Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">GenerateWIFromSource</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a> &#124;\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.GenerateWIFromSource Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">WIMapData</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:ae7a1ea93683e3ad3993b7260fde411f9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae7a1ea93683e3ad3993b7260fde411f9\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GenerateWIFromSource</b> (<a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">IConfiguration</a> configuration, string accountName)</td></tr>\n<tr class=\"separator:ae7a1ea93683e3ad3993b7260fde411f9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afb867463d207db51a8653f14e809e392\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#afb867463d207db51a8653f14e809e392\">UpdateWorkItem</a> ()</td></tr>\n<tr class=\"memdesc:afb867463d207db51a8653f14e809e392\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to get each work item type and save as json  <a href=\"#afb867463d207db51a8653f14e809e392\">More...</a><br /></td></tr>\n<tr class=\"separator:afb867463d207db51a8653f14e809e392\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a99040ad4f9108c0ca4d1b9ab8edbdc62\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItemFetchResponse.WorkItems</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a99040ad4f9108c0ca4d1b9ab8edbdc62\">getWorkItemsfromSource</a> (string workItemType)</td></tr>\n<tr class=\"memdesc:a99040ad4f9108c0ca4d1b9ab8edbdc62\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to get list of work items  <a href=\"#a99040ad4f9108c0ca4d1b9ab8edbdc62\">More...</a><br /></td></tr>\n<tr class=\"separator:a99040ad4f9108c0ca4d1b9ab8edbdc62\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8471c5b52c936c6887720f60cd56c537\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItemFetchResponse.WorkItems</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a8471c5b52c936c6887720f60cd56c537\">GetWorkItemsDetailinBatch</a> (string workitemstoFetch)</td></tr>\n<tr class=\"memdesc:a8471c5b52c936c6887720f60cd56c537\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to get work item data in detail  <a href=\"#a8471c5b52c936c6887720f60cd56c537\">More...</a><br /></td></tr>\n<tr class=\"separator:a8471c5b52c936c6887720f60cd56c537\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a20c36bbbe10bb56f7f0472e8dd05b8bf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a20c36bbbe10bb56f7f0472e8dd05b8bf\">DownloadAttachedFiles</a> (<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItemFetchResponse.WorkItems</a> workItems)</td></tr>\n<tr class=\"memdesc:a20c36bbbe10bb56f7f0472e8dd05b8bf\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to export Work item attachments  <a href=\"#a20c36bbbe10bb56f7f0472e8dd05b8bf\">More...</a><br /></td></tr>\n<tr class=\"separator:a20c36bbbe10bb56f7f0472e8dd05b8bf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a07950971f3e02be2a376722ac76bf73a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">GetBoardRowsResponse.Result</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a07950971f3e02be2a376722ac76bf73a\">GetBoardRows</a> (string project)</td></tr>\n<tr class=\"memdesc:a07950971f3e02be2a376722ac76bf73a\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to export board rows (kanban board) from source project  <a href=\"#a07950971f3e02be2a376722ac76bf73a\">More...</a><br /></td></tr>\n<tr class=\"separator:a07950971f3e02be2a376722ac76bf73a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a20c36bbbe10bb56f7f0472e8dd05b8bf\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a20c36bbbe10bb56f7f0472e8dd05b8bf\">&#9670;&nbsp;</a></span>DownloadAttachedFiles()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.GenerateWIFromSource.DownloadAttachedFiles </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItemFetchResponse.WorkItems</a>&#160;</td>\n          <td class=\"paramname\"><em>workItems</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to export Work item attachments </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">workItems</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"a07950971f3e02be2a376722ac76bf73a\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a07950971f3e02be2a376722ac76bf73a\">&#9670;&nbsp;</a></span>GetBoardRows()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">GetBoardRowsResponse.Result</a> TemplatesGeneratorTool.Generators.GenerateWIFromSource.GetBoardRows </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to export board rows (kanban board) from source project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a8471c5b52c936c6887720f60cd56c537\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a8471c5b52c936c6887720f60cd56c537\">&#9670;&nbsp;</a></span>GetWorkItemsDetailinBatch()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItemFetchResponse.WorkItems</a> TemplatesGeneratorTool.Generators.GenerateWIFromSource.GetWorkItemsDetailinBatch </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>workitemstoFetch</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to get work item data in detail </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">workitemstoFetch</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a99040ad4f9108c0ca4d1b9ab8edbdc62\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a99040ad4f9108c0ca4d1b9ab8edbdc62\">&#9670;&nbsp;</a></span>getWorkItemsfromSource()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItemFetchResponse.WorkItems</a> TemplatesGeneratorTool.Generators.GenerateWIFromSource.getWorkItemsfromSource </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>workItemType</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to get list of work items </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">workItemType</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"afb867463d207db51a8653f14e809e392\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#afb867463d207db51a8653f14e809e392\">&#9670;&nbsp;</a></span>UpdateWorkItem()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.GenerateWIFromSource.UpdateWorkItem </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to get each work item type and save as json </p>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/GenerateWIFromSource.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">GenerateWIFromSource</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">WIMapData</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>newID</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>oldID</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WIType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">GenerateWIFromSource</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">WIMapData</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:accea8c3c9fc05b21eef603dc4c43d0f6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"accea8c3c9fc05b21eef603dc4c43d0f6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>oldID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:accea8c3c9fc05b21eef603dc4c43d0f6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a19a99c510e350d27d0f17fd295da7934\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a19a99c510e350d27d0f17fd295da7934\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>newID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a19a99c510e350d27d0f17fd295da7934\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7c0a29eb161249ddbfa046507fa9ed95\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7c0a29eb161249ddbfa046507fa9ed95\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WIType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7c0a29eb161249ddbfa046507fa9ed95\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/GenerateWIFromSource.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_pull_requests-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\">PullRequests</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.PullRequests Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\">TemplatesGeneratorTool.Generators.PullRequests</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html#aff016c663661c1421f673f1a707c362c\">ExportPullRequests</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\">TemplatesGeneratorTool.Generators.PullRequests</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PullRequests</b>(VstsRestAPI.IConfiguration configuration) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\">TemplatesGeneratorTool.Generators.PullRequests</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\">TemplatesGeneratorTool.Generators.PullRequests</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_pull_requests.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.PullRequests Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\">PullRequests</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.PullRequests Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a02fb0623117f96693b9aa0a104c1bd15\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a02fb0623117f96693b9aa0a104c1bd15\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PullRequests</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a02fb0623117f96693b9aa0a104c1bd15\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aff016c663661c1421f673f1a707c362c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html#aff016c663661c1421f673f1a707c362c\">ExportPullRequests</a> (string project)</td></tr>\n<tr class=\"memdesc:aff016c663661c1421f673f1a707c362c\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to export PullRequest jsons from source project  <a href=\"#aff016c663661c1421f673f1a707c362c\">More...</a><br /></td></tr>\n<tr class=\"separator:aff016c663661c1421f673f1a707c362c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"aff016c663661c1421f673f1a707c362c\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#aff016c663661c1421f673f1a707c362c\">&#9670;&nbsp;</a></span>ExportPullRequests()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.PullRequests.ExportPullRequests </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to export PullRequest jsons from source project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/PullRequests.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_release_definitions-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\">ReleaseDefinitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.ReleaseDefinitions Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\">TemplatesGeneratorTool.Generators.ReleaseDefinitions</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html#a3660f90a0a356fdf82aee0373f7e2941\">ExportReleaseDefinitions</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\">TemplatesGeneratorTool.Generators.ReleaseDefinitions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ReleaseDefinitions</b>(VstsRestAPI.IConfiguration configuration, string accountName) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\">TemplatesGeneratorTool.Generators.ReleaseDefinitions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\">TemplatesGeneratorTool.Generators.ReleaseDefinitions</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_release_definitions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.ReleaseDefinitions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\">ReleaseDefinitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.ReleaseDefinitions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a71468dc455e8addf7ecf4ad84e2526f2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a71468dc455e8addf7ecf4ad84e2526f2\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ReleaseDefinitions</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration, string accountName)</td></tr>\n<tr class=\"separator:a71468dc455e8addf7ecf4ad84e2526f2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3660f90a0a356fdf82aee0373f7e2941\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html#a3660f90a0a356fdf82aee0373f7e2941\">ExportReleaseDefinitions</a> (string project)</td></tr>\n<tr class=\"memdesc:a3660f90a0a356fdf82aee0373f7e2941\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to export release definition jsons from source project  <a href=\"#a3660f90a0a356fdf82aee0373f7e2941\">More...</a><br /></td></tr>\n<tr class=\"separator:a3660f90a0a356fdf82aee0373f7e2941\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a3660f90a0a356fdf82aee0373f7e2941\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a3660f90a0a356fdf82aee0373f7e2941\">&#9670;&nbsp;</a></span>ExportReleaseDefinitions()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.ReleaseDefinitions.ExportReleaseDefinitions </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to export release definition jsons from source project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_source_code-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\">SourceCode</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.SourceCode Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\">TemplatesGeneratorTool.Generators.SourceCode</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html#a9ec5af1319436537f1aa58ed45c3ca7f\">ExportSourceCode</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\">TemplatesGeneratorTool.Generators.SourceCode</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SourceCode</b>(VstsRestAPI.IConfiguration configuration) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\">TemplatesGeneratorTool.Generators.SourceCode</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\">TemplatesGeneratorTool.Generators.SourceCode</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_source_code.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.SourceCode Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\">SourceCode</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_source_code-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.SourceCode Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a5c1c7360088748de7af6bd2777a25a79\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5c1c7360088748de7af6bd2777a25a79\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SourceCode</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a5c1c7360088748de7af6bd2777a25a79\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9ec5af1319436537f1aa58ed45c3ca7f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html#a9ec5af1319436537f1aa58ed45c3ca7f\">ExportSourceCode</a> (string project)</td></tr>\n<tr class=\"memdesc:a9ec5af1319436537f1aa58ed45c3ca7f\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to export source code url jsons  <a href=\"#a9ec5af1319436537f1aa58ed45c3ca7f\">More...</a><br /></td></tr>\n<tr class=\"separator:a9ec5af1319436537f1aa58ed45c3ca7f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a9ec5af1319436537f1aa58ed45c3ca7f\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a9ec5af1319436537f1aa58ed45c3ca7f\">&#9670;&nbsp;</a></span>ExportSourceCode()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.SourceCode.ExportSourceCode </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to export source code url jsons </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/SourceCode.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_teams-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\">Teams</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.Teams Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\">TemplatesGeneratorTool.Generators.Teams</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html#a3416f9b5acd249ffcd8d63abbb1fe480\">ExportTeams</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\">TemplatesGeneratorTool.Generators.Teams</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Teams</b>(VstsRestAPI.IConfiguration configuration) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\">TemplatesGeneratorTool.Generators.Teams</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\">TemplatesGeneratorTool.Generators.Teams</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_teams.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.Teams Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\">Teams</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_teams-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.Teams Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a9141923b6c0e573e64c94bdd2da26833\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9141923b6c0e573e64c94bdd2da26833\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Teams</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a9141923b6c0e573e64c94bdd2da26833\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3416f9b5acd249ffcd8d63abbb1fe480\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html#a3416f9b5acd249ffcd8d63abbb1fe480\">ExportTeams</a> (string project)</td></tr>\n<tr class=\"memdesc:a3416f9b5acd249ffcd8d63abbb1fe480\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to export teams jsons from source projects  <a href=\"#a3416f9b5acd249ffcd8d63abbb1fe480\">More...</a><br /></td></tr>\n<tr class=\"separator:a3416f9b5acd249ffcd8d63abbb1fe480\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a3416f9b5acd249ffcd8d63abbb1fe480\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a3416f9b5acd249ffcd8d63abbb1fe480\">&#9670;&nbsp;</a></span>ExportTeams()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void TemplatesGeneratorTool.Generators.Teams.ExportTeams </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to export teams jsons from source projects </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/Teams.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_validate_login-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\">ValidateLogin</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.ValidateLogin Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\">TemplatesGeneratorTool.Generators.ValidateLogin</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html#ab3bf9583c98282065b77f2a35ddeacd2\">isValidAccount</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\">TemplatesGeneratorTool.Generators.ValidateLogin</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ValidateLogin</b>(VstsRestAPI.IConfiguration configuration) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\">TemplatesGeneratorTool.Generators.ValidateLogin</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\">TemplatesGeneratorTool.Generators.ValidateLogin</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_generators_1_1_validate_login.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators.ValidateLogin Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\">ValidateLogin</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators.ValidateLogin Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:aaff23f8fef218b8d0ddb84d9610cb754\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaff23f8fef218b8d0ddb84d9610cb754\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ValidateLogin</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:aaff23f8fef218b8d0ddb84d9610cb754\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab3bf9583c98282065b77f2a35ddeacd2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html#ab3bf9583c98282065b77f2a35ddeacd2\">isValidAccount</a> ()</td></tr>\n<tr class=\"memdesc:ab3bf9583c98282065b77f2a35ddeacd2\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">method to validate Account name and PAT  <a href=\"#ab3bf9583c98282065b77f2a35ddeacd2\">More...</a><br /></td></tr>\n<tr class=\"separator:ab3bf9583c98282065b77f2a35ddeacd2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"ab3bf9583c98282065b77f2a35ddeacd2\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ab3bf9583c98282065b77f2a35ddeacd2\">&#9670;&nbsp;</a></span>isValidAccount()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool TemplatesGeneratorTool.Generators.ValidateLogin.isValidAccount </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>method to validate Account name and PAT </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators/ValidateLogin.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_program-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\">Program</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Program Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\">TemplatesGeneratorTool.Program</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Main</b>(string[] args) (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\">TemplatesGeneratorTool.Program</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\">TemplatesGeneratorTool.Program</a></td><td class=\"entry\"><span class=\"mlabel\">static</span></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_program.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Program Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\">Program</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-static-methods\">Static Public Member Functions</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_program-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Program Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-static-methods\"></a>\nStatic Public Member Functions</h2></td></tr>\n<tr class=\"memitem:a6a9125dac357bdc201a9cb7f3fc72710\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a9125dac357bdc201a9cb7f3fc72710\"></a>\nstatic void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Main</b> (string[] args)</td></tr>\n<tr class=\"separator:a6a9125dac357bdc201a9cb7f3fc72710\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Program.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_source_configuration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">SourceConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.SourceConfiguration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GitRepositoryId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Identity</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MoveToProject</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PersonalAccessToken</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PickListId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProcessId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Project</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Query</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>QueryId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Team</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UriString</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WorkItemId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WorkItemIds</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_source_configuration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.SourceConfiguration Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">SourceConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_source_configuration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.SourceConfiguration Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for TemplatesGeneratorTool.SourceConfiguration:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_templates_generator_tool_1_1_source_configuration.png\" usemap=\"#TemplatesGeneratorTool.SourceConfiguration_map\" alt=\"\"/>\n  <map id=\"TemplatesGeneratorTool.SourceConfiguration_map\" name=\"TemplatesGeneratorTool.SourceConfiguration_map\">\n<area href=\"interface_templates_generator_tool_1_1_i_configuration.html\" alt=\"TemplatesGeneratorTool.IConfiguration\" shape=\"rect\" coords=\"0,0,270,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a8f30ae2dde8e1d6b4f5254a1ffe02e9b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8f30ae2dde8e1d6b4f5254a1ffe02e9b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8f30ae2dde8e1d6b4f5254a1ffe02e9b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a891028577d90bfe9e7eab6d4218fcd13\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a891028577d90bfe9e7eab6d4218fcd13\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a891028577d90bfe9e7eab6d4218fcd13\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a92588e5ee286a2a3f771f66bc67ac1e7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a92588e5ee286a2a3f771f66bc67ac1e7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a92588e5ee286a2a3f771f66bc67ac1e7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3969468d8ad132a932aaf9172d38c59c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3969468d8ad132a932aaf9172d38c59c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3969468d8ad132a932aaf9172d38c59c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9ed93a363eae70b785dc9e185147f2c3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9ed93a363eae70b785dc9e185147f2c3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9ed93a363eae70b785dc9e185147f2c3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a21d977021107f1728a7d97aca9e04091\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a21d977021107f1728a7d97aca9e04091\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a21d977021107f1728a7d97aca9e04091\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a001336c7da020e7d73a3934c47c6d8c7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a001336c7da020e7d73a3934c47c6d8c7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a001336c7da020e7d73a3934c47c6d8c7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab5b6f1dd79f3808dceacdeb93bc1d582\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab5b6f1dd79f3808dceacdeb93bc1d582\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab5b6f1dd79f3808dceacdeb93bc1d582\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acc9fb5a0b38f2ff4d3b6bec38bf130d1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acc9fb5a0b38f2ff4d3b6bec38bf130d1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acc9fb5a0b38f2ff4d3b6bec38bf130d1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6685e57cb95f0a7d42e8bb3368317c16\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6685e57cb95f0a7d42e8bb3368317c16\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6685e57cb95f0a7d42e8bb3368317c16\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aef64a91dca43071513eb4ba93ccabf1c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aef64a91dca43071513eb4ba93ccabf1c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aef64a91dca43071513eb4ba93ccabf1c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae0734ae9185120257ddd7a01806493fd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae0734ae9185120257ddd7a01806493fd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae0734ae9185120257ddd7a01806493fd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a70a791cb80d804ae75c2c28b5e4dab4a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a70a791cb80d804ae75c2c28b5e4dab4a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a70a791cb80d804ae75c2c28b5e4dab4a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae79fa2db7e8b6570a37278898ffc2639\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae79fa2db7e8b6570a37278898ffc2639\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae79fa2db7e8b6570a37278898ffc2639\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_interface_templates_generator_tool_1_1_i_configuration\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_interface_templates_generator_tool_1_1_i_configuration')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td></tr>\n<tr class=\"memitem:ae124de5476e5809f10341ae8fff33291 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae124de5476e5809f10341ae8fff33291\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae124de5476e5809f10341ae8fff33291 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a411fdd7c310b24d84b999758cd3dbead inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a411fdd7c310b24d84b999758cd3dbead\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a411fdd7c310b24d84b999758cd3dbead inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a555e694c00e04f58c4fd6f87c8fcd608 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a555e694c00e04f58c4fd6f87c8fcd608\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a555e694c00e04f58c4fd6f87c8fcd608 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acf217d2f0f2d56e9ade9bfcfb9b1b9c5 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acf217d2f0f2d56e9ade9bfcfb9b1b9c5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acf217d2f0f2d56e9ade9bfcfb9b1b9c5 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a267cdea956ab89ffbd0ef1356106fac5 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a267cdea956ab89ffbd0ef1356106fac5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a267cdea956ab89ffbd0ef1356106fac5 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7e1a4b7e26f4c9182fc953e9bcd144c7 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7e1a4b7e26f4c9182fc953e9bcd144c7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7e1a4b7e26f4c9182fc953e9bcd144c7 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abccdcc9f266ff3b2ba22af3eb6e72d75 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abccdcc9f266ff3b2ba22af3eb6e72d75\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abccdcc9f266ff3b2ba22af3eb6e72d75 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a79fd3ac49032caa02a9a0895c8ee34c6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a79fd3ac49032caa02a9a0895c8ee34c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a79fd3ac49032caa02a9a0895c8ee34c6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afa686bcb50d8ea923a4381f12c75142e inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afa686bcb50d8ea923a4381f12c75142e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afa686bcb50d8ea923a4381f12c75142e inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af17260e0422f922ec02e357203a6fc25 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af17260e0422f922ec02e357203a6fc25\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af17260e0422f922ec02e357203a6fc25 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9de86c96af44ef9df21aa16a84f6cfa1 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9de86c96af44ef9df21aa16a84f6cfa1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9de86c96af44ef9df21aa16a84f6cfa1 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a89cb953a87d44a00e019290ca8e6c7c6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a89cb953a87d44a00e019290ca8e6c7c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a89cb953a87d44a00e019290ca8e6c7c6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad04fd3e0455db5e3733014dd399d0a20 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad04fd3e0455db5e3733014dd399d0a20\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad04fd3e0455db5e3733014dd399d0a20 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af7f4e736f61aa4ead2dbfd6fc4ba9ba6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af7f4e736f61aa4ead2dbfd6fc4ba9ba6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af7f4e736f61aa4ead2dbfd6fc4ba9ba6 inherit properties_interface_templates_generator_tool_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/SourceConfiguration.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_base_view_model-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">BaseViewModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BaseViewModel Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BaseViewModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">BaseViewModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BaseViewModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for TemplatesGeneratorTool.ViewModel.BaseViewModel:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.png\" usemap=\"#TemplatesGeneratorTool.ViewModel.BaseViewModel_map\" alt=\"\"/>\n  <map id=\"TemplatesGeneratorTool.ViewModel.BaseViewModel_map\" name=\"TemplatesGeneratorTool.ViewModel.BaseViewModel_map\">\n<area href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\" alt=\"TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard\" shape=\"rect\" coords=\"0,56,419,80\"/>\n<area href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\" alt=\"TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result\" shape=\"rect\" coords=\"429,56,848,80\"/>\n<area href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\" alt=\"TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results\" shape=\"rect\" coords=\"858,56,1277,80\"/>\n<area href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\" alt=\"TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems\" shape=\"rect\" coords=\"1287,56,1706,80\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a419a1f92ce6ec21394cb8b025a2c38c3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a419a1f92ce6ec21394cb8b025a2c38c3\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a419a1f92ce6ec21394cb8b025a2c38c3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BaseViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">BoardColumnsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BoardColumnsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">BoardColumnsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">Column</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">StateMappings</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a76a64c770b5ee6bb623a071bca283df8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a76a64c770b5ee6bb623a071bca283df8\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">Column</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a76a64c770b5ee6bb623a071bca283df8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BoardColumnsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">BoardColumnsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">Column</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>columnType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isSplit</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>itemLimit</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>stateMappings</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">BoardColumnsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">Column</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a308eca8ef85a4afe8895251d372341db\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a308eca8ef85a4afe8895251d372341db\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a308eca8ef85a4afe8895251d372341db\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa8111ed15ac9e3c0d7a5c224f0837dcd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa8111ed15ac9e3c0d7a5c224f0837dcd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa8111ed15ac9e3c0d7a5c224f0837dcd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaebf0ec2d661ff37c5c8802671896860\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaebf0ec2d661ff37c5c8802671896860\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>itemLimit</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaebf0ec2d661ff37c5c8802671896860\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac8cb20d9f0ceaa892523791230162d90\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac8cb20d9f0ceaa892523791230162d90\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">StateMappings</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>stateMappings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac8cb20d9f0ceaa892523791230162d90\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a20e4167c3d72559af050f90a8192c3d5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a20e4167c3d72559af050f90a8192c3d5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>columnType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a20e4167c3d72559af050f90a8192c3d5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6d2a33f854250e2427a7f54ca8365db0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6d2a33f854250e2427a7f54ca8365db0\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isSplit</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6d2a33f854250e2427a7f54ca8365db0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BoardColumnsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">BoardColumnsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">StateMappings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Bug</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ProductBacklogItem</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">BoardColumnsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">StateMappings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae2c3f6908dfb93d41dc33f0e2e8dd020\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae2c3f6908dfb93d41dc33f0e2e8dd020\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProductBacklogItem</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae2c3f6908dfb93d41dc33f0e2e8dd020\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab771adeb48d98e2f803ed3596ad9a115\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab771adeb48d98e2f803ed3596ad9a115\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Bug</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab771adeb48d98e2f803ed3596ad9a115\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BoardColumnsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\">BuildDefinitionResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">Build</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitionResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\">BuildDefinitionResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">Build</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\">BuildDefinitionResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">Build</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a804ba35906a8d73f2712b5de4c606833\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a804ba35906a8d73f2712b5de4c606833\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a804ba35906a8d73f2712b5de4c606833\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad8ff840185b0183f7caf9b5902776390\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad8ff840185b0183f7caf9b5902776390\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad8ff840185b0183f7caf9b5902776390\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitionResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\">BuildDefinitionResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\">BuildDefinitionResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab45c38c65781181e924995834c516d6d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab45c38c65781181e924995834c516d6d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab45c38c65781181e924995834c516d6d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitionResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">Build</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">BuildConfiguration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">BuildDefinition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">BuildPlatform</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\">Definition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">Inputs</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">Inputs1</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">Option</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\">Pool</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">Properties</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">Queue</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">Repository</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">RetentionRule</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">SystemDebug</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">Task</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">Variables</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">Build</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>alwaysRun</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>continueOnError</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>enabled</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>inputs</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>task</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>timeoutInMinutes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">Build</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4096c37e687c8dd1a97625c616636a64\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4096c37e687c8dd1a97625c616636a64\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4096c37e687c8dd1a97625c616636a64\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a39dc1c4bf357a498f4ceac7f31c19ffd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a39dc1c4bf357a498f4ceac7f31c19ffd\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>continueOnError</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a39dc1c4bf357a498f4ceac7f31c19ffd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8795f099e2cde3f31285f58f7a2d05c5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8795f099e2cde3f31285f58f7a2d05c5\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>alwaysRun</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8795f099e2cde3f31285f58f7a2d05c5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a182cb370cb4aced4635798ab6c16e7c8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a182cb370cb4aced4635798ab6c16e7c8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a182cb370cb4aced4635798ab6c16e7c8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2b9132fec6e7811a9331474c09ae694f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2b9132fec6e7811a9331474c09ae694f\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>timeoutInMinutes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2b9132fec6e7811a9331474c09ae694f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aba9475025ba417b25d181ec9b0ae09a2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aba9475025ba417b25d181ec9b0ae09a2\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">Task</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>task</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aba9475025ba417b25d181ec9b0ae09a2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a424959028e2430c50fcfe322638a6afb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a424959028e2430c50fcfe322638a6afb\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">Inputs</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>inputs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a424959028e2430c50fcfe322638a6afb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">BuildConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>allowOverride</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">BuildConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a2dcaae5e251f8f931964a2d9284fdc58\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2dcaae5e251f8f931964a2d9284fdc58\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a2dcaae5e251f8f931964a2d9284fdc58\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a82e1fc21b5497adaa13b49fb02f4b779\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a82e1fc21b5497adaa13b49fb02f4b779\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>allowOverride</b> = false</td></tr>\n<tr class=\"separator:a82e1fc21b5497adaa13b49fb02f4b779\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">BuildDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>build</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>buildNumberFormat</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>defaultBranch</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>jobAuthorizationScope</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>jobTimeoutInMinutes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>options</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>quality</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>queue</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>repository</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>retentionRules</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>variables</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">BuildDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad0504177e756edaba26bf86b1abc08d6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad0504177e756edaba26bf86b1abc08d6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad0504177e756edaba26bf86b1abc08d6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4b2444460c936f09bbdb229f1c8390b8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4b2444460c936f09bbdb229f1c8390b8\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>build</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4b2444460c936f09bbdb229f1c8390b8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6526edf5740b2dabb237d05f695fd713\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6526edf5740b2dabb237d05f695fd713\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>options</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6526edf5740b2dabb237d05f695fd713\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad52c58be76f8421e2b7d62356a19b19f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad52c58be76f8421e2b7d62356a19b19f\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">Variables</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>variables</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad52c58be76f8421e2b7d62356a19b19f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af13460e02aae22bbb173120f473da8b7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af13460e02aae22bbb173120f473da8b7\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">RetentionRule</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>retentionRules</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af13460e02aae22bbb173120f473da8b7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a08ce8e65270a1d0324eabe1ad676375f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a08ce8e65270a1d0324eabe1ad676375f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>buildNumberFormat</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a08ce8e65270a1d0324eabe1ad676375f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a77ad9e679b1243010f5151be6eef67da\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a77ad9e679b1243010f5151be6eef67da\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>jobAuthorizationScope</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a77ad9e679b1243010f5151be6eef67da\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a512a84ac930005017555f045cb70863c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a512a84ac930005017555f045cb70863c\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>jobTimeoutInMinutes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a512a84ac930005017555f045cb70863c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acfe25c58827a380d0fc49f3e7633dac0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acfe25c58827a380d0fc49f3e7633dac0\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">Repository</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>repository</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acfe25c58827a380d0fc49f3e7633dac0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad0f6944604c181ebbe0f6ec3dc43a119\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad0f6944604c181ebbe0f6ec3dc43a119\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>quality</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad0f6944604c181ebbe0f6ec3dc43a119\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a80e92955ff039b383a117f4c07f88652\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a80e92955ff039b383a117f4c07f88652\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>defaultBranch</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a80e92955ff039b383a117f4c07f88652\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ada92aaf7feae5285cd9931b944db071d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ada92aaf7feae5285cd9931b944db071d\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">Queue</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queue</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ada92aaf7feae5285cd9931b944db071d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">BuildPlatform</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>allowOverride</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">BuildPlatform</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:aba321b9fc1940cd61c9576c3892f4663\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aba321b9fc1940cd61c9576c3892f4663\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:aba321b9fc1940cd61c9576c3892f4663\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9a74374405de9a9a411741f8fc5af786\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9a74374405de9a9a411741f8fc5af786\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>allowOverride</b> = false</td></tr>\n<tr class=\"separator:a9a74374405de9a9a411741f8fc5af786\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\">Definition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\">Definition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab657b4daaa5d97eb1e701500fbf36f6a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab657b4daaa5d97eb1e701500fbf36f6a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab657b4daaa5d97eb1e701500fbf36f6a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">Inputs</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>antBuild</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>appID</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>archs</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>arguments</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ArtifactName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ArtifactType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>binaryPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>clean</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>codeCoverageEnabled</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>command</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>configuration</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>connectedServiceName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Contents</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>CopyRoot</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>cordovaArgs</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>cordovaVersion</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>cwd</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>defaultKeychainPassword</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>enableCodeCoverage</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>filePattern</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>gulpFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>gulpjs</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>iosSigningIdentity</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>iosSignMethod</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>keyPass</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>keystoreAlias</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>keystoreFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>keystorePass</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>logProjectEvents</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>mandatory</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>mergeTestResults</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>msbuildArchitecture</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>msbuildArgs</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>msbuildLocation</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>msbuildLocationMethod</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>msbuildVersion</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>nativeLibraryPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>notes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>notesPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>notify</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>otherConsoleOptions</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>outputPattern</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>p12</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>p12pwd</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>pathtoCustomTestAdapters</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PathtoPublish</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>platform</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>provProfile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>provProfileUuid</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>publish</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>publishJUnitResults</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>publishRunAttachments</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>removeProfile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>restoreNugetPackages</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>runSettingsFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>secretTokens</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>solution</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>sourcePath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>srcFiles</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>symbolsPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>tags</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>targetEmulator</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TargetPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>targets</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>teams</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testAssembly</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testFiles</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testFiltercriteria</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testFramework</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testResultsFiles</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testRunner</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testRunTitle</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>tokenRegex</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>unlockDefaultKeychain</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>users</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>vsLocation</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>vsLocationMethod</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>vsTestVersion</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>vsVersion</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>windowsAppx</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>windowsOnly</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>windowsPhoneOnly</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>xcodeDeveloperDir</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">Inputs</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a8eaeefeee1fcfa5548004b7151d495f0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8eaeefeee1fcfa5548004b7151d495f0\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>command</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8eaeefeee1fcfa5548004b7151d495f0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6f83465add4c4d9d6deece66cea32805\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6f83465add4c4d9d6deece66cea32805\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>arguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6f83465add4c4d9d6deece66cea32805\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa84016163ac62dac258a9fa2f87eb49c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa84016163ac62dac258a9fa2f87eb49c\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cwd</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa84016163ac62dac258a9fa2f87eb49c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae781bfacdd227299af74ad683cc22755\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae781bfacdd227299af74ad683cc22755\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>sourcePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae781bfacdd227299af74ad683cc22755\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3e7016a94ee2726b3723d478555d3de4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3e7016a94ee2726b3723d478555d3de4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>filePattern</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3e7016a94ee2726b3723d478555d3de4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a109c5f700bb41f87e339e7df1adfdcf9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a109c5f700bb41f87e339e7df1adfdcf9\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tokenRegex</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a109c5f700bb41f87e339e7df1adfdcf9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a56c225960768b371c73525a17f6f87ba\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a56c225960768b371c73525a17f6f87ba\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>secretTokens</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a56c225960768b371c73525a17f6f87ba\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1bfeee20a0268ce156a5038cef164ed3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1bfeee20a0268ce156a5038cef164ed3\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>gulpFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1bfeee20a0268ce156a5038cef164ed3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5649571d89bd96a91730f83d5cd399c8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5649571d89bd96a91730f83d5cd399c8\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>targets</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5649571d89bd96a91730f83d5cd399c8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa56de9f20260f909f2e6944f65735089\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa56de9f20260f909f2e6944f65735089\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>gulpjs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa56de9f20260f909f2e6944f65735089\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad7462d3cd380fd953e1de442a3083202\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad7462d3cd380fd953e1de442a3083202\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>publishJUnitResults</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad7462d3cd380fd953e1de442a3083202\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a822dd1fe97b0df6abc13b06128c4960b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a822dd1fe97b0df6abc13b06128c4960b\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testResultsFiles</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a822dd1fe97b0df6abc13b06128c4960b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad111f2ef67440b5dda23aed00c878ae0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad111f2ef67440b5dda23aed00c878ae0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testRunTitle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad111f2ef67440b5dda23aed00c878ae0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a490d59640ed445b70a4e6f1fed0e3641\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a490d59640ed445b70a4e6f1fed0e3641\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableCodeCoverage</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a490d59640ed445b70a4e6f1fed0e3641\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aba8fdcc459d544e8ced2d53fed0f697b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aba8fdcc459d544e8ced2d53fed0f697b\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testFramework</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aba8fdcc459d544e8ced2d53fed0f697b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a44d613b585e480457b9cdded99a6593a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a44d613b585e480457b9cdded99a6593a\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>srcFiles</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a44d613b585e480457b9cdded99a6593a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaa942b800191a12c8dd121514fdfe665\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa942b800191a12c8dd121514fdfe665\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testFiles</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa942b800191a12c8dd121514fdfe665\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7154b0abd5863a4550274e103d9796bc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7154b0abd5863a4550274e103d9796bc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>platform</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7154b0abd5863a4550274e103d9796bc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa0613b205200b9546a08eecc5cd6b40b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa0613b205200b9546a08eecc5cd6b40b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>configuration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa0613b205200b9546a08eecc5cd6b40b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a37bea49e5c68f123edd4989ec836ecac\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a37bea49e5c68f123edd4989ec836ecac\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>archs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a37bea49e5c68f123edd4989ec836ecac\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9c9becf132c2db0f18343815529e14ed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9c9becf132c2db0f18343815529e14ed\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cordovaVersion</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9c9becf132c2db0f18343815529e14ed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aafff9f64c60aa053a95b8ea5a5b9c04e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aafff9f64c60aa053a95b8ea5a5b9c04e\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>antBuild</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aafff9f64c60aa053a95b8ea5a5b9c04e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae87bd499b43836c0fb994a2bf7f9b226\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae87bd499b43836c0fb994a2bf7f9b226\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>keystoreFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae87bd499b43836c0fb994a2bf7f9b226\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a96f5d06e802e62825ed2c49519532ca8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a96f5d06e802e62825ed2c49519532ca8\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>keystorePass</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a96f5d06e802e62825ed2c49519532ca8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a14d683e29aafe73981ca80fabdf5c784\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a14d683e29aafe73981ca80fabdf5c784\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>keystoreAlias</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a14d683e29aafe73981ca80fabdf5c784\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a967194be483cd3420f4f2027db40a21f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a967194be483cd3420f4f2027db40a21f\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>keyPass</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a967194be483cd3420f4f2027db40a21f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abbbd8eab3cb24d9ae622713c03309e51\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abbbd8eab3cb24d9ae622713c03309e51\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>iosSignMethod</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abbbd8eab3cb24d9ae622713c03309e51\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad886885d5586643ab601c2ce3282451c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad886885d5586643ab601c2ce3282451c\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>iosSigningIdentity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad886885d5586643ab601c2ce3282451c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a92a7d40339191de2c4b18ed441489ff3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a92a7d40339191de2c4b18ed441489ff3\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>p12</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a92a7d40339191de2c4b18ed441489ff3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2b4e42d62521de52e089e4dcbec28ccc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2b4e42d62521de52e089e4dcbec28ccc\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>p12pwd</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2b4e42d62521de52e089e4dcbec28ccc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8d3f24a7524d8ec5145706f7efd3e9b5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8d3f24a7524d8ec5145706f7efd3e9b5\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>unlockDefaultKeychain</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8d3f24a7524d8ec5145706f7efd3e9b5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3d79c2208dc7c7859fa3e3f69f3bad34\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3d79c2208dc7c7859fa3e3f69f3bad34\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>defaultKeychainPassword</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3d79c2208dc7c7859fa3e3f69f3bad34\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a13f8dbe62a322ab35ae3bc82dcdb344f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a13f8dbe62a322ab35ae3bc82dcdb344f\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>provProfileUuid</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a13f8dbe62a322ab35ae3bc82dcdb344f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a53aa746c12e184519ebf2be63ee231c4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a53aa746c12e184519ebf2be63ee231c4\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>provProfile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a53aa746c12e184519ebf2be63ee231c4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a69900046cc9600dd7919ab0f0fcd9042\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a69900046cc9600dd7919ab0f0fcd9042\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>removeProfile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a69900046cc9600dd7919ab0f0fcd9042\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8e53bca81d5921d14af776067674d429\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8e53bca81d5921d14af776067674d429\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>xcodeDeveloperDir</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8e53bca81d5921d14af776067674d429\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1fe3228dc35f40dcb89d5dbaaa75a62f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1fe3228dc35f40dcb89d5dbaaa75a62f\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>windowsAppx</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1fe3228dc35f40dcb89d5dbaaa75a62f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aadda6e15bd5b8549e5d765cd9e3a6f1f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aadda6e15bd5b8549e5d765cd9e3a6f1f\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>windowsPhoneOnly</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aadda6e15bd5b8549e5d765cd9e3a6f1f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4698f476f26a46753764a5294687cb68\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4698f476f26a46753764a5294687cb68\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>windowsOnly</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4698f476f26a46753764a5294687cb68\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af4be6ee8bb8081eaeff01290528fb315\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af4be6ee8bb8081eaeff01290528fb315\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cordovaArgs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af4be6ee8bb8081eaeff01290528fb315\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adb34b7b798938ed4b2c44281d14e4daf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb34b7b798938ed4b2c44281d14e4daf\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>outputPattern</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adb34b7b798938ed4b2c44281d14e4daf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af8d5e29c79861cd354a60f82cb51d1e5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af8d5e29c79861cd354a60f82cb51d1e5\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>targetEmulator</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af8d5e29c79861cd354a60f82cb51d1e5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1e1bab7a1f640ea70556274c0142224e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1e1bab7a1f640ea70556274c0142224e\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testRunner</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1e1bab7a1f640ea70556274c0142224e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7e707e0c5c009b95d992008db94389f1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7e707e0c5c009b95d992008db94389f1\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>mergeTestResults</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7e707e0c5c009b95d992008db94389f1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab60b6a88ca7ea89c45e8c55cdf006bd2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab60b6a88ca7ea89c45e8c55cdf006bd2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>publishRunAttachments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab60b6a88ca7ea89c45e8c55cdf006bd2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0e58590a317e2621bd2d8048702b3711\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0e58590a317e2621bd2d8048702b3711\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>connectedServiceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0e58590a317e2621bd2d8048702b3711\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5f04b89fbfa572b2d1f49b74846164b3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5f04b89fbfa572b2d1f49b74846164b3\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>appID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5f04b89fbfa572b2d1f49b74846164b3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa0e417bffcbedf861eda0c1461b27c36\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa0e417bffcbedf861eda0c1461b27c36\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>binaryPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa0e417bffcbedf861eda0c1461b27c36\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a15cbb5f65d1bdab2019b098a09890d2f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a15cbb5f65d1bdab2019b098a09890d2f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>symbolsPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a15cbb5f65d1bdab2019b098a09890d2f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5358c231105f724dad3498b2bb4dd9c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5358c231105f724dad3498b2bb4dd9c6\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>nativeLibraryPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5358c231105f724dad3498b2bb4dd9c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af66a3e8c31d6b094f2af927d91ff51b7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af66a3e8c31d6b094f2af927d91ff51b7\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notesPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af66a3e8c31d6b094f2af927d91ff51b7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5155fe4210167843ecc57f73cbbfa437\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5155fe4210167843ecc57f73cbbfa437\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5155fe4210167843ecc57f73cbbfa437\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a12f1dab558a79826f57c3625527f7efc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a12f1dab558a79826f57c3625527f7efc\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>publish</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a12f1dab558a79826f57c3625527f7efc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4c990815e9c3a6887a0bae84ca2a8ed8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4c990815e9c3a6887a0bae84ca2a8ed8\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>mandatory</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4c990815e9c3a6887a0bae84ca2a8ed8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aab6fea814ee9b417b00b0729ecd5ba8c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aab6fea814ee9b417b00b0729ecd5ba8c\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notify</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aab6fea814ee9b417b00b0729ecd5ba8c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aca05622a480de4280c85d25ff85b10f1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aca05622a480de4280c85d25ff85b10f1\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tags</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aca05622a480de4280c85d25ff85b10f1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abaaf03f14cb23f1bd978330c8cf19ee3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abaaf03f14cb23f1bd978330c8cf19ee3\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teams</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abaaf03f14cb23f1bd978330c8cf19ee3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acdb7387681fa3029b5cbd84ddb9b3647\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acdb7387681fa3029b5cbd84ddb9b3647\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>users</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acdb7387681fa3029b5cbd84ddb9b3647\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aab045eeec64932731a7c598da106678e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aab045eeec64932731a7c598da106678e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PathtoPublish</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aab045eeec64932731a7c598da106678e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae8a8e28e19bf0b192c1adc82b578cee0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae8a8e28e19bf0b192c1adc82b578cee0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ArtifactName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae8a8e28e19bf0b192c1adc82b578cee0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4ac86f19facc9ec581901449942b53c0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4ac86f19facc9ec581901449942b53c0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ArtifactType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4ac86f19facc9ec581901449942b53c0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab0258cb90cf3782b41ae2425882d31d5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab0258cb90cf3782b41ae2425882d31d5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TargetPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab0258cb90cf3782b41ae2425882d31d5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4c72cfd03e8a742b82713b282d83ae53\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4c72cfd03e8a742b82713b282d83ae53\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>solution</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4c72cfd03e8a742b82713b282d83ae53\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae0fe5da9d8dd3448505f7dc9a3c39973\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae0fe5da9d8dd3448505f7dc9a3c39973\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>msbuildArgs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae0fe5da9d8dd3448505f7dc9a3c39973\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abd6b5bec3009b82f4e020360341fd952\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abd6b5bec3009b82f4e020360341fd952\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>clean</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abd6b5bec3009b82f4e020360341fd952\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af8682293788222728e2c4c7e004e8f55\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af8682293788222728e2c4c7e004e8f55\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>restoreNugetPackages</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af8682293788222728e2c4c7e004e8f55\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a714ac46c33545a9987d47a3e102e67a7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a714ac46c33545a9987d47a3e102e67a7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>vsLocationMethod</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a714ac46c33545a9987d47a3e102e67a7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a63728180c4d7b4e0b27f0b128d310fde\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a63728180c4d7b4e0b27f0b128d310fde\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>vsVersion</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a63728180c4d7b4e0b27f0b128d310fde\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac56677a41b29c0a8da11102aee8cad5d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac56677a41b29c0a8da11102aee8cad5d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>vsLocation</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac56677a41b29c0a8da11102aee8cad5d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a834d85b1dcfb63a459087e35bcd4fc28\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a834d85b1dcfb63a459087e35bcd4fc28\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>msbuildLocationMethod</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a834d85b1dcfb63a459087e35bcd4fc28\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8a6684d3ac1c75dd0bdc267244ea05a3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8a6684d3ac1c75dd0bdc267244ea05a3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>msbuildVersion</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8a6684d3ac1c75dd0bdc267244ea05a3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a10e9d713c7eb95cc99290496c5553e9a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a10e9d713c7eb95cc99290496c5553e9a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>msbuildArchitecture</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a10e9d713c7eb95cc99290496c5553e9a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adbc68b196bb40f070f46a391af4d331b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adbc68b196bb40f070f46a391af4d331b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>msbuildLocation</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adbc68b196bb40f070f46a391af4d331b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6bd87af98e6a6be88a943ffee63a31dc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6bd87af98e6a6be88a943ffee63a31dc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>logProjectEvents</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6bd87af98e6a6be88a943ffee63a31dc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab5fd47a4bc4731a5784de239ebaeb98e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab5fd47a4bc4731a5784de239ebaeb98e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testAssembly</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab5fd47a4bc4731a5784de239ebaeb98e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad143ad90c2ec480c44d5255552be54cf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad143ad90c2ec480c44d5255552be54cf\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testFiltercriteria</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad143ad90c2ec480c44d5255552be54cf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a54435aea16e1e2380389a86904512cad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a54435aea16e1e2380389a86904512cad\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>runSettingsFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a54435aea16e1e2380389a86904512cad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a21d5a2fb7dbde73ca967185afdc84ac4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a21d5a2fb7dbde73ca967185afdc84ac4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>codeCoverageEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a21d5a2fb7dbde73ca967185afdc84ac4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aff9732579520ae13485ed6dda252720e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aff9732579520ae13485ed6dda252720e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>otherConsoleOptions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aff9732579520ae13485ed6dda252720e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7c73c9cd9fb75eb3857df010609b796d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7c73c9cd9fb75eb3857df010609b796d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>vsTestVersion</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7c73c9cd9fb75eb3857df010609b796d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a791276034a6f467c53b40fc355dccb13\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a791276034a6f467c53b40fc355dccb13\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pathtoCustomTestAdapters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a791276034a6f467c53b40fc355dccb13\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a36c295332dd54f0a308c49c493b8419e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a36c295332dd54f0a308c49c493b8419e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CopyRoot</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a36c295332dd54f0a308c49c493b8419e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4ecf5e43c3e8ab3d224595550d331f22\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4ecf5e43c3e8ab3d224595550d331f22\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Contents</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4ecf5e43c3e8ab3d224595550d331f22\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">Inputs1</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1 Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>additionalFields</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>assignToRequestor</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>continueOnError</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>multipliers</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parallel</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>workItemType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1 Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">Inputs1</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1 Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7889a8105e52ce2127f5bbdc7e38c521\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7889a8105e52ce2127f5bbdc7e38c521\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parallel</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7889a8105e52ce2127f5bbdc7e38c521\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a112625b2b75f0912c9e38880867ef072\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a112625b2b75f0912c9e38880867ef072\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>continueOnError</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a112625b2b75f0912c9e38880867ef072\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afe2dcf45837d9b8d3ca11f949ca28c81\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afe2dcf45837d9b8d3ca11f949ca28c81\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workItemType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afe2dcf45837d9b8d3ca11f949ca28c81\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae087b3d02f2ff342478081624b246f3e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae087b3d02f2ff342478081624b246f3e\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>assignToRequestor</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae087b3d02f2ff342478081624b246f3e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac0ee63877f2a1c44190295679d99bc19\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac0ee63877f2a1c44190295679d99bc19\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>additionalFields</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac0ee63877f2a1c44190295679d99bc19\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1deebb4082ac7b6dfc1fe4128d295cb8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1deebb4082ac7b6dfc1fe4128d295cb8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>multipliers</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1deebb4082ac7b6dfc1fe4128d295cb8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">Option</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>definition</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>enabled</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>inputs</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">Option</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1a4ecfbed6916154f95fa591a5de0c47\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1a4ecfbed6916154f95fa591a5de0c47\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1a4ecfbed6916154f95fa591a5de0c47\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9fe15448f2401d868aadbbb28bc69204\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9fe15448f2401d868aadbbb28bc69204\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\">Definition</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>definition</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9fe15448f2401d868aadbbb28bc69204\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ace2c7a13bda1ef9f7ee4a5a170083f59\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ace2c7a13bda1ef9f7ee4a5a170083f59\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">Inputs1</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>inputs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ace2c7a13bda1ef9f7ee4a5a170083f59\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\">Pool</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\">Pool</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a13e69b3173e003ebd795b2e2db16e13f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a13e69b3173e003ebd795b2e2db16e13f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a13e69b3173e003ebd795b2e2db16e13f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>labelSources</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>reportBuildStatus</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac736556fda7995d04ec2ea56ac9c7586\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac736556fda7995d04ec2ea56ac9c7586\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>labelSources</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac736556fda7995d04ec2ea56ac9c7586\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad828cfcd2691ba9cbe3f677e0e8fece0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad828cfcd2691ba9cbe3f677e0e8fece0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>reportBuildStatus</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad828cfcd2691ba9cbe3f677e0e8fece0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">Queue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>pool</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">Queue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1482f515851248651657aca45a37f63d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1482f515851248651657aca45a37f63d\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\">Pool</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pool</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1482f515851248651657aca45a37f63d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8a499faeb0debfea3767a73b5c43d493\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8a499faeb0debfea3767a73b5c43d493\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8a499faeb0debfea3767a73b5c43d493\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">Repository</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>checkoutSubmodules</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>clean</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>defaultBranch</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>properties</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">Repository</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac6a6105ecc377510301cbc0f7ad8c204\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac6a6105ecc377510301cbc0f7ad8c204\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">Properties</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>properties</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac6a6105ecc377510301cbc0f7ad8c204\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6a53a0c182c6082b8345131f34343aef\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a53a0c182c6082b8345131f34343aef\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6a53a0c182c6082b8345131f34343aef\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab00c10c2d1097865a2f4b503ddec23e7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab00c10c2d1097865a2f4b503ddec23e7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab00c10c2d1097865a2f4b503ddec23e7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a15876014833315f116ed47c3c674b59a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a15876014833315f116ed47c3c674b59a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a15876014833315f116ed47c3c674b59a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a544d750a3030c4596bbc40baccc10d3b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a544d750a3030c4596bbc40baccc10d3b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a544d750a3030c4596bbc40baccc10d3b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abae4f1c913b23181c25d462283dce7a8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abae4f1c913b23181c25d462283dce7a8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>defaultBranch</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abae4f1c913b23181c25d462283dce7a8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0071ac21af8b115584f2c017a42a9e37\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0071ac21af8b115584f2c017a42a9e37\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>clean</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0071ac21af8b115584f2c017a42a9e37\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3b7e0af0fd642a3fdf26d19eebc3586d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3b7e0af0fd642a3fdf26d19eebc3586d\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>checkoutSubmodules</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3b7e0af0fd642a3fdf26d19eebc3586d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">RetentionRule</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>artifacts</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>artifactTypesToDelete</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>branches</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>daysToKeep</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>deleteBuildRecord</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>deleteTestResults</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>minimumToKeep</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">RetentionRule</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aefd4f05efe1d578edfd2e31893a48ed8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aefd4f05efe1d578edfd2e31893a48ed8\"></a>\nIList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>branches</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aefd4f05efe1d578edfd2e31893a48ed8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a49b1900ca880294b2b69677a1dd78c33\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a49b1900ca880294b2b69677a1dd78c33\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>artifacts</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a49b1900ca880294b2b69677a1dd78c33\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac32344aa08cc9120c0037bf8998cb8be\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac32344aa08cc9120c0037bf8998cb8be\"></a>\nIList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>artifactTypesToDelete</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac32344aa08cc9120c0037bf8998cb8be\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a69679a576b3cc5ff755cac2c7d67111d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a69679a576b3cc5ff755cac2c7d67111d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>daysToKeep</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a69679a576b3cc5ff755cac2c7d67111d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a986080bdcb6e31bb08965a4ac6ea5ca3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a986080bdcb6e31bb08965a4ac6ea5ca3\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>minimumToKeep</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a986080bdcb6e31bb08965a4ac6ea5ca3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a069e8244f9b41f0881ba5674b5fc163d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a069e8244f9b41f0881ba5674b5fc163d\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deleteBuildRecord</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a069e8244f9b41f0881ba5674b5fc163d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4f759fb38aeadbe98596d615a284d29d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4f759fb38aeadbe98596d615a284d29d\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deleteTestResults</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4f759fb38aeadbe98596d615a284d29d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">SystemDebug</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>allowOverride</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">SystemDebug</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a1798973692e40e4343ee1335f7da083d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1798973692e40e4343ee1335f7da083d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a1798973692e40e4343ee1335f7da083d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abc55294c8d8e2d3a4bcefc2686b0be39\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abc55294c8d8e2d3a4bcefc2686b0be39\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>allowOverride</b> = false</td></tr>\n<tr class=\"separator:abc55294c8d8e2d3a4bcefc2686b0be39\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">Task</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>definitionType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>versionSpec</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">Task</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1b86133118e588f4e79f5d9cae32a0eb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1b86133118e588f4e79f5d9cae32a0eb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1b86133118e588f4e79f5d9cae32a0eb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a16bb0b0fe0d42e8c525730330ef80c1d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a16bb0b0fe0d42e8c525730330ef80c1d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>versionSpec</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a16bb0b0fe0d42e8c525730330ef80c1d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9cd4064db86e36f39c3f38346f759b8a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9cd4064db86e36f39c3f38346f759b8a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>definitionType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9cd4064db86e36f39c3f38346f759b8a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">Variables</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>BuildConfiguration</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>BuildPlatform</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>systemdebug</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">Variables</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a3909d058fe171237f7de54d3c37a64e8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3909d058fe171237f7de54d3c37a64e8\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">SystemDebug</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>systemdebug</b> = new <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">SystemDebug</a>()</td></tr>\n<tr class=\"separator:a3909d058fe171237f7de54d3c37a64e8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6ee30b6de008d69f0960b6f27a81fada\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6ee30b6de008d69f0960b6f27a81fada\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">BuildConfiguration</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BuildConfiguration</b> = new <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">BuildConfiguration</a>()</td></tr>\n<tr class=\"separator:a6ee30b6de008d69f0960b6f27a81fada\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a09e06d867b8045fa1310bbb68183aadc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a09e06d867b8045fa1310bbb68183aadc\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">BuildPlatform</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BuildPlatform</b> = new <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">BuildPlatform</a>()</td></tr>\n<tr class=\"separator:a09e06d867b8045fa1310bbb68183aadc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/BuildDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardFieldResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">Bug</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\">CardFields</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">Cards</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">ProductBacklogItem</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardFieldResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">Bug</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayFormat</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>displayType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fieldIdentifier</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>showEmptyFields</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">Bug</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a45b134cba54edf235be401e25245f67b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a45b134cba54edf235be401e25245f67b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fieldIdentifier</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a45b134cba54edf235be401e25245f67b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af3a6275a25eebf20b3cc6d52de3b1935\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af3a6275a25eebf20b3cc6d52de3b1935\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayFormat</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:af3a6275a25eebf20b3cc6d52de3b1935\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8497b287089674cb21995440b3d069c4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8497b287089674cb21995440b3d069c4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayType</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a8497b287089674cb21995440b3d069c4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae53006a419a4760ba695ee2bd4e53350\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae53006a419a4760ba695ee2bd4e53350\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>showEmptyFields</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:ae53006a419a4760ba695ee2bd4e53350\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardFieldResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\">CardFields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.CardFields Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.CardFields</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>cards</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.CardFields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.CardFields</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardFieldResponse.CardFields Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\">CardFields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.CardFields Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a681969513afc056bd466c003611a0e02\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a681969513afc056bd466c003611a0e02\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">Cards</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cards</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a681969513afc056bd466c003611a0e02\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardFieldResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">Cards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Bug</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ProductBacklogItem</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">Cards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a59c1460c2bc307f9b18ca95a83dade81\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a59c1460c2bc307f9b18ca95a83dade81\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">Bug</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Bug</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a59c1460c2bc307f9b18ca95a83dade81\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3e6190a13bface2f2cfaf7541a855f1e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3e6190a13bface2f2cfaf7541a855f1e\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">ProductBacklogItem</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProductBacklogItem</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3e6190a13bface2f2cfaf7541a855f1e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardFieldResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">ProductBacklogItem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayFormat</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>displayType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fieldIdentifier</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>showEmptyFields</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">ProductBacklogItem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a4e38df031210c34a252dfea874f11720\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4e38df031210c34a252dfea874f11720\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fieldIdentifier</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a4e38df031210c34a252dfea874f11720\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab30dd3134567c775ac27cc74771440c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab30dd3134567c775ac27cc74771440c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayFormat</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:ab30dd3134567c775ac27cc74771440c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab290cc9937b015d620fb52e34422ddd0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab290cc9937b015d620fb52e34422ddd0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayType</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:ab290cc9937b015d620fb52e34422ddd0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8569b229203bbf88e3e81accd6d6e946\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8569b229203bbf88e3e81accd6d6e946\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>showEmptyFields</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a8569b229203bbf88e3e81accd6d6e946\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardFieldResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardStyleResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\">CardStyles</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">Fill</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">Rules</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">Settings</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TagStyle</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardStyleResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\">CardStyles</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.CardStyles Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.CardStyles</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>rules</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.CardStyles</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.CardStyles</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardStyleResponse.CardStyles Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\">CardStyles</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.CardStyles Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:abda57089ab01977073c7ef845602cdda\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abda57089ab01977073c7ef845602cdda\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">Rules</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rules</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abda57089ab01977073c7ef845602cdda\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardStyleResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">Fill</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>filter</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isEnabled</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>settings</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">Fill</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3d35810e1a43e6e56300be2428520b1c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3d35810e1a43e6e56300be2428520b1c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3d35810e1a43e6e56300be2428520b1c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a719c6156040f35b44749e281a2156928\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a719c6156040f35b44749e281a2156928\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a719c6156040f35b44749e281a2156928\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a770a37ecac5b1129beebef242bd17665\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a770a37ecac5b1129beebef242bd17665\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>filter</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a770a37ecac5b1129beebef242bd17665\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a596224d4b8f7f337db38d4809af0da7d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a596224d4b8f7f337db38d4809af0da7d\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">Settings</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>settings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a596224d4b8f7f337db38d4809af0da7d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardStyleResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">Rules</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fill</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>tagStyle</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">Rules</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad10b9b14a9ab3bcffb4f497b8f2b4ffe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad10b9b14a9ab3bcffb4f497b8f2b4ffe\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">Fill</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fill</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad10b9b14a9ab3bcffb4f497b8f2b4ffe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a719e2c922ad66aa1d3fef0fe4ed23b43\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a719e2c922ad66aa1d3fef0fe4ed23b43\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TagStyle</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tagStyle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a719e2c922ad66aa1d3fef0fe4ed23b43\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardStyleResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">Settings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>backgroundcolor</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>titlecolor</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">Settings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a63a38f26c177bf95004ede430239370e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a63a38f26c177bf95004ede430239370e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>titlecolor</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a63a38f26c177bf95004ede430239370e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1cc406ddec19b956f3fad8d1e0740e1d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1cc406ddec19b956f3fad8d1e0740e1d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>backgroundcolor</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1cc406ddec19b956f3fad8d1e0740e1d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardStyleResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TagStyle</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isEnabled</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>settings</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">TagStyle</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1a115d85ef59bf93f3e7464d70db7390\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1a115d85ef59bf93f3e7464d70db7390\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1a115d85ef59bf93f3e7464d70db7390\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7093c8f25bbe04f9810d91c00fbfdddf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7093c8f25bbe04f9810d91c00fbfdddf\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7093c8f25bbe04f9810d91c00fbfdddf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaedd930603c51c34dc3363ae9eb716f5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaedd930603c51c34dc3363ae9eb716f5\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">Settings</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>settings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaedd930603c51c34dc3363ae9eb716f5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/CardStyleResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.DashBoardResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\">DashBoardResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.DashBoardResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\">Dashboard</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/DashBoardResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\">DashBoardResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>dashboardEntries</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\">DashBoardResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.png\" usemap=\"#TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard_map\" alt=\"\"/>\n  <map id=\"TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard_map\" name=\"TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard_map\">\n<area href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\" alt=\"TemplatesGeneratorTool.ViewModel.BaseViewModel\" shape=\"rect\" coords=\"0,0,404,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac978333bae64a15376ce2e0c9ffa09f9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac978333bae64a15376ce2e0c9ffa09f9\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>dashboardEntries</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac978333bae64a15376ce2e0c9ffa09f9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:a419a1f92ce6ec21394cb8b025a2c38c3 inherit properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a419a1f92ce6ec21394cb8b025a2c38c3\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a419a1f92ce6ec21394cb8b025a2c38c3 inherit properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/DashBoardResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\">DashBoardResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\">DashBoardResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2ab5be1725142fda437ce22e08cb4145\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2ab5be1725142fda437ce22e08cb4145\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2ab5be1725142fda437ce22e08cb4145\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae9a8e23fe4d04e457fdb50d840254255\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae9a8e23fe4d04e457fdb50d840254255\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae9a8e23fe4d04e457fdb50d840254255\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/DashBoardResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\">GetBoardRowsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">Result</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/GetBoardRowsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\">GetBoardRowsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">Result</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\">GetBoardRowsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">Result</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.png\" usemap=\"#TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result_map\" alt=\"\"/>\n  <map id=\"TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result_map\" name=\"TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result_map\">\n<area href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\" alt=\"TemplatesGeneratorTool.ViewModel.BaseViewModel\" shape=\"rect\" coords=\"0,0,396,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa01446d926e9cb012931db546650257d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa01446d926e9cb012931db546650257d\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa01446d926e9cb012931db546650257d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:a419a1f92ce6ec21394cb8b025a2c38c3 inherit properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a419a1f92ce6ec21394cb8b025a2c38c3\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a419a1f92ce6ec21394cb8b025a2c38c3 inherit properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/GetBoardRowsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\">GetBoardRowsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\">GetBoardRowsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2ed17fdead943b7d99a4ba5181a4aa42\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2ed17fdead943b7d99a4ba5181a4aa42\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2ed17fdead943b7d99a4ba5181a4aa42\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa8e3fa9bdc8f4fcf000972f904a78e3d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa8e3fa9bdc8f4fcf000972f904a78e3d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa8e3fa9bdc8f4fcf000972f904a78e3d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/GetBoardRowsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">Column</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">Results</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">Workitem</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/GetWorkItemsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">Column</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>referenceName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">Column</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1a86c9815be8c7d0a71cf00bd73687d3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1a86c9815be8c7d0a71cf00bd73687d3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>referenceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1a86c9815be8c7d0a71cf00bd73687d3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a20579b38cab490fc45c110a5c736397d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a20579b38cab490fc45c110a5c736397d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a20579b38cab490fc45c110a5c736397d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:affc80128ec2121ec5e1c1a5b97367f35\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"affc80128ec2121ec5e1c1a5b97367f35\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:affc80128ec2121ec5e1c1a5b97367f35\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/GetWorkItemsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">Results</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>asOf</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>columns</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>queryResultType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>queryType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>workItems</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">Results</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.png\" usemap=\"#TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results_map\" alt=\"\"/>\n  <map id=\"TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results_map\" name=\"TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results_map\">\n<area href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\" alt=\"TemplatesGeneratorTool.ViewModel.BaseViewModel\" shape=\"rect\" coords=\"0,0,395,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad097654d3c3272b51763ff99d77a27b6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad097654d3c3272b51763ff99d77a27b6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queryType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad097654d3c3272b51763ff99d77a27b6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a248db1d152bcfff6a9d7ba9ff21d4f5c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a248db1d152bcfff6a9d7ba9ff21d4f5c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queryResultType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a248db1d152bcfff6a9d7ba9ff21d4f5c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7f4860e5679fa71f02e35bde6c3e69cf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7f4860e5679fa71f02e35bde6c3e69cf\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>asOf</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7f4860e5679fa71f02e35bde6c3e69cf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aefea24688f8ef1eb424dfe4c522c3c2b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aefea24688f8ef1eb424dfe4c522c3c2b\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">Column</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>columns</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aefea24688f8ef1eb424dfe4c522c3c2b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adc6c859214c98b6b41e17ef5e7b899b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adc6c859214c98b6b41e17ef5e7b899b2\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">Workitem</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workItems</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adc6c859214c98b6b41e17ef5e7b899b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:a419a1f92ce6ec21394cb8b025a2c38c3 inherit properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a419a1f92ce6ec21394cb8b025a2c38c3\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a419a1f92ce6ec21394cb8b025a2c38c3 inherit properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/GetWorkItemsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">Workitem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">Workitem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a61f14d895bd5387c9f621cd4bb325b58\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a61f14d895bd5387c9f621cd4bb325b58\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a61f14d895bd5387c9f621cd4bb325b58\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac0c95e7f35ff289765d7638a8aae3693\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac0c95e7f35ff289765d7638a8aae3693\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac0c95e7f35ff289765d7638a8aae3693\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/GetWorkItemsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">AllPlans</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\">CardSettings</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">CoreField</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">Criterion</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">DeliveryPlan</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">Fields</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">Properties</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TeamBacklogMapping</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">AllPlans</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">AllPlans</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1fba491cb65b0e5612451a4069c77424\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1fba491cb65b0e5612451a4069c77424\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1fba491cb65b0e5612451a4069c77424\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a705d3245389f28bd3cc8d62044561a3d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a705d3245389f28bd3cc8d62044561a3d\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a705d3245389f28bd3cc8d62044561a3d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\">CardSettings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CardSettings Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CardSettings</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fields</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CardSettings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CardSettings</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.CardSettings Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\">CardSettings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CardSettings Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:acb756df4f2f866fd5ce9d6c0c18de698\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acb756df4f2f866fd5ce9d6c0c18de698\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">Fields</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fields</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acb756df4f2f866fd5ce9d6c0c18de698\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">CoreField</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>fieldType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isIdentity</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>referenceName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">CoreField</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3f1e4c7c249c543021ab3240574337b1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3f1e4c7c249c543021ab3240574337b1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>referenceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3f1e4c7c249c543021ab3240574337b1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a51a5445ad357d151bddea1f1e3e6d2f0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a51a5445ad357d151bddea1f1e3e6d2f0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a51a5445ad357d151bddea1f1e3e6d2f0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac2c564a7bfd84a492e07e549707f40eb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac2c564a7bfd84a492e07e549707f40eb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fieldType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac2c564a7bfd84a492e07e549707f40eb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5533099dc8ce9adab762bfe61bebf79e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5533099dc8ce9adab762bfe61bebf79e\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isIdentity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5533099dc8ce9adab762bfe61bebf79e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">Criterion</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fieldName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>logicalOperator</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Operator</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">Criterion</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a92fa7f4e5cde13a36b1f8e803ebc05d8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a92fa7f4e5cde13a36b1f8e803ebc05d8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fieldName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a92fa7f4e5cde13a36b1f8e803ebc05d8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a05f8d036016e12f2823b643cd320a2a1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a05f8d036016e12f2823b643cd320a2a1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>logicalOperator</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a05f8d036016e12f2823b643cd320a2a1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aadb42843944bfa8d363d28b1da34f5c8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aadb42843944bfa8d363d28b1da34f5c8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Operator</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aadb42843944bfa8d363d28b1da34f5c8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adfd471f2a6a77ec8512acfab87bd3f5e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adfd471f2a6a77ec8512acfab87bd3f5e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adfd471f2a6a77ec8512acfab87bd3f5e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">DeliveryPlan</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>properties</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">DeliveryPlan</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a316504b55a5d9d22cd18716014e75e15\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a316504b55a5d9d22cd18716014e75e15\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a316504b55a5d9d22cd18716014e75e15\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1a6b90bad5f77638dfaf9486a6617248\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1a6b90bad5f77638dfaf9486a6617248\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1a6b90bad5f77638dfaf9486a6617248\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adf2960d81504258742efbbcd3a062dbf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adf2960d81504258742efbbcd3a062dbf\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">Properties</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>properties</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adf2960d81504258742efbbcd3a062dbf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>assignedToDisplayFormat</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>coreFields</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>showAssignedTo</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>showState</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>showTags</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac18396161a54bf37afb51f3dbd4fd77b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac18396161a54bf37afb51f3dbd4fd77b\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>showAssignedTo</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac18396161a54bf37afb51f3dbd4fd77b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adc6f6fa6a979a0faad8816af1a95c809\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adc6f6fa6a979a0faad8816af1a95c809\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>assignedToDisplayFormat</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adc6f6fa6a979a0faad8816af1a95c809\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adcb14b34dcfb582e904fe978e12dcf2e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adcb14b34dcfb582e904fe978e12dcf2e\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>showTags</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adcb14b34dcfb582e904fe978e12dcf2e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af65c8a98bf919eaf8d3897feb730c3b5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af65c8a98bf919eaf8d3897feb730c3b5\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>showState</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af65c8a98bf919eaf8d3897feb730c3b5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1614af43206587b1e6997397248d5ef2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1614af43206587b1e6997397248d5ef2\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">CoreField</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>coreFields</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1614af43206587b1e6997397248d5ef2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>cardSettings</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>criteria</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>teamBacklogMappings</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a76fdfe1ed76e610e854663bedb6dcc33\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a76fdfe1ed76e610e854663bedb6dcc33\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TeamBacklogMapping</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teamBacklogMappings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a76fdfe1ed76e610e854663bedb6dcc33\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab040b6d1b4661a1b755265c88372d6c7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab040b6d1b4661a1b755265c88372d6c7\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">Criterion</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>criteria</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab040b6d1b4661a1b755265c88372d6c7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a52ca7c5cb3dabb325b8f143a689ad5ee\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a52ca7c5cb3dabb325b8f143a689ad5ee\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\">CardSettings</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cardSettings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a52ca7c5cb3dabb325b8f143a689ad5ee\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TeamBacklogMapping</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>categoryReferenceName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>teamId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">TeamBacklogMapping</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6485f2467b6670016e041947b9a25a66\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6485f2467b6670016e041947b9a25a66\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teamId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6485f2467b6670016e041947b9a25a66\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a77ab4b00c2ac02662e10844b6ea36e6f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a77ab4b00c2ac02662e10844b6ea36e6f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>categoryReferenceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a77ab4b00c2ac02662e10844b6ea36e6f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PlanViewModel.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a27b0efd010e1fc47960137582dde7461\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a27b0efd010e1fc47960137582dde7461\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a27b0efd010e1fc47960137582dde7461\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9a391f8c98105c91d3cdfcf77edc8a42\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9a391f8c98105c91d3cdfcf77edc8a42\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9a391f8c98105c91d3cdfcf77edc8a42\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PlanViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">Comment</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">Comments</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">IterationContext</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\">Properties</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">PullRequestThreadContext</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">RightFileEnd</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">RightFileStart</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">ThreadContext</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">Comment</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>commentType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>content</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parentCommentId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">Comment</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a73447bbb4e40967aed9313041162908d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a73447bbb4e40967aed9313041162908d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parentCommentId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a73447bbb4e40967aed9313041162908d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a76fba73563f4d827619ad729cb0e0034\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a76fba73563f4d827619ad729cb0e0034\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>content</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a76fba73563f4d827619ad729cb0e0034\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6625a83d9ba77410798a0d424b0ec0ca\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6625a83d9ba77410798a0d424b0ec0ca\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>commentType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6625a83d9ba77410798a0d424b0ec0ca\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">Comments</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">Comments</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3171e063e7c0b6c8ec1aeb3d58c43ca0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3171e063e7c0b6c8ec1aeb3d58c43ca0\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3171e063e7c0b6c8ec1aeb3d58c43ca0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acdc45cc8d36c91236f72ee21ea4cfe75\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acdc45cc8d36c91236f72ee21ea4cfe75\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acdc45cc8d36c91236f72ee21ea4cfe75\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">IterationContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>firstComparingIteration</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>secondComparingIteration</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">IterationContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a772b9b5faf4cd9bbf61a910395011c36\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a772b9b5faf4cd9bbf61a910395011c36\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>firstComparingIteration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a772b9b5faf4cd9bbf61a910395011c36\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4012b1e389417656bc070b995e788c44\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4012b1e389417656bc070b995e788c44\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>secondComparingIteration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4012b1e389417656bc070b995e788c44\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_tec84ae83229f9b2961597ac69e41f9631.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a36f728121e203dba3939822f874cfc02\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a36f728121e203dba3939822f874cfc02\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a36f728121e203dba3939822f874cfc02\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1162c447fca5f950f03b5de08aa58db3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1162c447fca5f950f03b5de08aa58db3\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1162c447fca5f950f03b5de08aa58db3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_tec84ae83229f9b2961597ac69e41f9631.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Microsoft_TeamFoundation_Discussion_SupportsMarkdown</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a93db80f4ad65c5155dd4ba326cef23ef\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a93db80f4ad65c5155dd4ba326cef23ef\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Microsoft_TeamFoundation_Discussion_SupportsMarkdown</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a93db80f4ad65c5155dd4ba326cef23ef\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">PullRequestThreadContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>changeTrackingId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>iterationContext</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">PullRequestThreadContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7b99e01367e01b6a58722709d25e59ff\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7b99e01367e01b6a58722709d25e59ff\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">IterationContext</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>iterationContext</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7b99e01367e01b6a58722709d25e59ff\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae54ea45a8ee907551112df7334517fed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae54ea45a8ee907551112df7334517fed\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>changeTrackingId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae54ea45a8ee907551112df7334517fed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">RightFileEnd</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>line</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>offset</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">RightFileEnd</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab4f4cfabba416767b4457e220f2f6bd3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab4f4cfabba416767b4457e220f2f6bd3\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>line</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab4f4cfabba416767b4457e220f2f6bd3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af842467c236896d7a3d6113a7c66c202\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af842467c236896d7a3d6113a7c66c202\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>offset</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af842467c236896d7a3d6113a7c66c202\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">RightFileStart</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>line</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>offset</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">RightFileStart</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a829ef113ac6c5f649cb377954b1e2ba8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a829ef113ac6c5f649cb377954b1e2ba8\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>line</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a829ef113ac6c5f649cb377954b1e2ba8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a298a1f012daf233c09e9301da25cb20d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a298a1f012daf233c09e9301da25cb20d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>offset</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a298a1f012daf233c09e9301da25cb20d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">ThreadContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>filePath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rightFileEnd</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>rightFileStart</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">ThreadContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a306f47d778ca771fc6a345763f0fcf10\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a306f47d778ca771fc6a345763f0fcf10\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>filePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a306f47d778ca771fc6a345763f0fcf10\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a660916f856155807525ed2d5ec9db0ff\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a660916f856155807525ed2d5ec9db0ff\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">RightFileStart</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rightFileStart</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a660916f856155807525ed2d5ec9db0ff\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afa1e0ff08cb40124675dba9cb9b7478f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afa1e0ff08cb40124675dba9cb9b7478f\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">RightFileEnd</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rightFileEnd</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afa1e0ff08cb40124675dba9cb9b7478f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>comments</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>properties</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>pullRequestThreadContext</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>status</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>threadContext</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aec5c80904c36efefa46aa54377b0af91\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aec5c80904c36efefa46aa54377b0af91\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">Comment</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>comments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aec5c80904c36efefa46aa54377b0af91\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af2f0ecb9401a00eb0b2e7d20a1175d8b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af2f0ecb9401a00eb0b2e7d20a1175d8b\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\">Properties</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>properties</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af2f0ecb9401a00eb0b2e7d20a1175d8b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a664fdb12254d2d5cd02a2cb23988ed54\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a664fdb12254d2d5cd02a2cb23988ed54\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>status</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a664fdb12254d2d5cd02a2cb23988ed54\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a551ce24b2124b94d58285f30279ffa2f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a551ce24b2124b94d58285f30279ffa2f\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">PullRequestThreadContext</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pullRequestThreadContext</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a551ce24b2124b94d58285f30279ffa2f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af952c589230044c1a08855b56e9a0ec5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af952c589230044c1a08855b56e9a0ec5\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">ThreadContext</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>threadContext</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af952c589230044c1a08855b56e9a0ec5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestCommentResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">PullRequest</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\">Reviewer</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">PullRequest</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">PullRequest</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a161f49e8bca47c6aebca140eb435651a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a161f49e8bca47c6aebca140eb435651a\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a161f49e8bca47c6aebca140eb435651a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa21b7245d91a4c2ea48baf6ee9d89f57\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa21b7245d91a4c2ea48baf6ee9d89f57\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa21b7245d91a4c2ea48baf6ee9d89f57\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\">Reviewer</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Reviewer Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Reviewer</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Reviewer</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Reviewer</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestResponse.Reviewer Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\">Reviewer</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Reviewer Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a67a2c7f2c0b39657ad7c7320b9376fd5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a67a2c7f2c0b39657ad7c7320b9376fd5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a67a2c7f2c0b39657ad7c7320b9376fd5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>pullRequestId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>reviewers</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>sourceRefName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>targetRefName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>title</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a830b37dbdfd3586b80ef9e5ddc10f565\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a830b37dbdfd3586b80ef9e5ddc10f565\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pullRequestId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a830b37dbdfd3586b80ef9e5ddc10f565\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9dde8449dd7c0c265e2e4f5ca60e99bb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9dde8449dd7c0c265e2e4f5ca60e99bb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>title</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9dde8449dd7c0c265e2e4f5ca60e99bb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9377567028c55c5b474320346a601cd8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9377567028c55c5b474320346a601cd8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9377567028c55c5b474320346a601cd8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0f26195540cd47f15bc585ca06eb5996\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0f26195540cd47f15bc585ca06eb5996\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>sourceRefName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0f26195540cd47f15bc585ca06eb5996\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af7cf60ef93420fde50de2bee472d9375\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af7cf60ef93420fde50de2bee472d9375\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>targetRefName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af7cf60ef93420fde50de2bee472d9375\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a48bf30eb3d4e26ecfd01770cb5ad890e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a48bf30eb3d4e26ecfd01770cb5ad890e\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\">Reviewer</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>reviewers</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a48bf30eb3d4e26ecfd01770cb5ad890e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/PullRequestResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryByPathResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">Child</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">query</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">QueryWithWiql</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryByPathResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">Child</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>children</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isFolder</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isPublic</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>wiql</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">Child</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:afca84df39c872f848a85c7bfa541190f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afca84df39c872f848a85c7bfa541190f\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isFolder</b> = false</td></tr>\n<tr class=\"separator:afca84df39c872f848a85c7bfa541190f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adb5a2daa5ed69117be8bdae07b3c435d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb5a2daa5ed69117be8bdae07b3c435d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>wiql</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:adb5a2daa5ed69117be8bdae07b3c435d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7bb7b370e65b4568f53960014ce25d8b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7bb7b370e65b4568f53960014ce25d8b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7bb7b370e65b4568f53960014ce25d8b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a317f814af4cd43405e04fdbb4a088625\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a317f814af4cd43405e04fdbb4a088625\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a317f814af4cd43405e04fdbb4a088625\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a66eebbcc3340a0384536c754e20680db\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a66eebbcc3340a0384536c754e20680db\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a66eebbcc3340a0384536c754e20680db\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2bc7acbc89b271efa4ee06ac657fc333\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2bc7acbc89b271efa4ee06ac657fc333\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">Child</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>children</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2bc7acbc89b271efa4ee06ac657fc333\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a65fd71c44135d1b773f3f14f503f98ad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a65fd71c44135d1b773f3f14f503f98ad\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isPublic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a65fd71c44135d1b773f3f14f503f98ad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryByPathResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">QueryWithWiql</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>wiql</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">QueryWithWiql</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a87cafeb4afdb3bf3a7d3ae42536710d2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a87cafeb4afdb3bf3a7d3ae42536710d2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a87cafeb4afdb3bf3a7d3ae42536710d2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a19069a73ed969c95fd26ff070abe0f68\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a19069a73ed969c95fd26ff070abe0f68\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>wiql</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a19069a73ed969c95fd26ff070abe0f68\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryByPathResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">query</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>children</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>hasChildren</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isFolder</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isPublic</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>wiql</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">query</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:aae84b75edb93cef4298327e82018d410\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aae84b75edb93cef4298327e82018d410\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>wiql</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:aae84b75edb93cef4298327e82018d410\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae3ab9575e34f06d5b90531a741350970\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae3ab9575e34f06d5b90531a741350970\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae3ab9575e34f06d5b90531a741350970\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2aaa0b822d022916d71d11a879f655f1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2aaa0b822d022916d71d11a879f655f1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2aaa0b822d022916d71d11a879f655f1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4e84e999f247ad5f22885255cbd89312\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4e84e999f247ad5f22885255cbd89312\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4e84e999f247ad5f22885255cbd89312\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a275a514d4c68075a7d497c2b026601c0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a275a514d4c68075a7d497c2b026601c0\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isFolder</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a275a514d4c68075a7d497c2b026601c0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a211872aaa5cbab0479c1416816d561eb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a211872aaa5cbab0479c1416816d561eb\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasChildren</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a211872aaa5cbab0479c1416816d561eb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af9fdbfd195c447def7e0c4d486dba42a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af9fdbfd195c447def7e0c4d486dba42a\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">Child</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>children</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af9fdbfd195c447def7e0c4d486dba42a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af6d3dd82b0cbbaee83b38f67151e6bcb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af6d3dd82b0cbbaee83b38f67151e6bcb\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isPublic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af6d3dd82b0cbbaee83b38f67151e6bcb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryByPathResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">Child</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">Links</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">Query</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\">Wiql</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">Child</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>_links</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>children</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>hasChildren</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isFolder</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isPublic</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>wiql</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryResponse.Child Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">Child</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:aee41d77c3d1806b2e48f3add0e603582\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aee41d77c3d1806b2e48f3add0e603582\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isFolder</b> = false</td></tr>\n<tr class=\"separator:aee41d77c3d1806b2e48f3add0e603582\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a626352a01c278f914389c2c6cd11fe8a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a626352a01c278f914389c2c6cd11fe8a\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasChildren</b> = false</td></tr>\n<tr class=\"separator:a626352a01c278f914389c2c6cd11fe8a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5fed7d29046d2ae590e419302c987145\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5fed7d29046d2ae590e419302c987145\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>wiql</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a5fed7d29046d2ae590e419302c987145\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:adb65202ae8873a8a98349c9a24db0946\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb65202ae8873a8a98349c9a24db0946\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adb65202ae8873a8a98349c9a24db0946\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a25dd3c0f09ca57f66c2bf96da5bf4b94\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a25dd3c0f09ca57f66c2bf96da5bf4b94\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a25dd3c0f09ca57f66c2bf96da5bf4b94\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a00450b2f3e91fe01cc16e35351f383db\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a00450b2f3e91fe01cc16e35351f383db\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a00450b2f3e91fe01cc16e35351f383db\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a71a2f1bfa2ca4fbb1db8d80ea926fa51\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a71a2f1bfa2ca4fbb1db8d80ea926fa51\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isPublic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a71a2f1bfa2ca4fbb1db8d80ea926fa51\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af79dc7f21b430e2071f946525a1145b4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af79dc7f21b430e2071f946525a1145b4\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">Links</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>_links</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af79dc7f21b430e2071f946525a1145b4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa6cba0bafbacd97e0f45a4b0b2e8b717\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa6cba0bafbacd97e0f45a4b0b2e8b717\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa6cba0bafbacd97e0f45a4b0b2e8b717\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaf85db08ff26dd26421f13b312c426e9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaf85db08ff26dd26421f13b312c426e9\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">Child</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>children</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaf85db08ff26dd26421f13b312c426e9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Links Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Links</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>wiql</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Links</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryResponse.Links Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Links Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3a742f30401b2ba6610a09a2f2a257de\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3a742f30401b2ba6610a09a2f2a257de\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\">Wiql</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>wiql</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3a742f30401b2ba6610a09a2f2a257de\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">Query</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Query Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Query</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Query</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryResponse.Query Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">Query</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Query Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3ccef051ff74d634d054a7d33e55847a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3ccef051ff74d634d054a7d33e55847a\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3ccef051ff74d634d054a7d33e55847a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab587fbe453d02a48548d64ea0ca1da8e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab587fbe453d02a48548d64ea0ca1da8e\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab587fbe453d02a48548d64ea0ca1da8e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>_links</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>children</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>hasChildren</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isFolder</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isPublic</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>wiql</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a3da850e40a5c746d53e23aec7da73265\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3da850e40a5c746d53e23aec7da73265\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>wiql</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a3da850e40a5c746d53e23aec7da73265\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac719f0aeec3c3e06769986ba09a2dfdd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac719f0aeec3c3e06769986ba09a2dfdd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac719f0aeec3c3e06769986ba09a2dfdd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a857a38aa899efb4c8133a61aec6833e0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a857a38aa899efb4c8133a61aec6833e0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a857a38aa899efb4c8133a61aec6833e0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2e959f9295fdc2d4a6bbd6f9b27bd145\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2e959f9295fdc2d4a6bbd6f9b27bd145\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2e959f9295fdc2d4a6bbd6f9b27bd145\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a16e837df9efbee9e667a40c5cd8066d5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a16e837df9efbee9e667a40c5cd8066d5\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isFolder</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a16e837df9efbee9e667a40c5cd8066d5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad42df266497a9710bdeed488b31c9111\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad42df266497a9710bdeed488b31c9111\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasChildren</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad42df266497a9710bdeed488b31c9111\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1bdc36efba2611532eab2be4d3cc9c17\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1bdc36efba2611532eab2be4d3cc9c17\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">Child</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>children</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1bdc36efba2611532eab2be4d3cc9c17\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1a5b43259c8508f2b6ab797e5b5894f4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1a5b43259c8508f2b6ab797e5b5894f4\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isPublic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1a5b43259c8508f2b6ab797e5b5894f4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3b62bf293b076ada7f68a202fc948a82\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3b62bf293b076ada7f68a202fc948a82\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">Links</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>_links</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3b62bf293b076ada7f68a202fc948a82\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2e0afa0d17c35da7bb967ff6c18788a5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2e0afa0d17c35da7bb967ff6c18788a5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2e0afa0d17c35da7bb967ff6c18788a5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\">Wiql</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Wiql Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Wiql</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Wiql</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\">TemplatesGeneratorTool.ViewModel.QueryResponse.Wiql</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.QueryResponse.Wiql Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\">Wiql</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.QueryResponse.Wiql Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2a0e89a69812e6b920eca51fbfbf9ea7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2a0e89a69812e6b920eca51fbfbf9ea7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2a0e89a69812e6b920eca51fbfbf9ea7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/QueryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">Approval</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">Approver</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">Artifact</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">Condition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">Definition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">DefinitionReference</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">DeploymentInput</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">DeployPhas</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\">DeployStep</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">Environment</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">EnvironmentOptions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">ExecutionPolicy</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">Inputs</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">Owner</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\">ParallelExecution</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\">PostDeployApprovals</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\">PreDeployApprovals</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">Project</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">ReleaseDefinition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">RetentionPolicy</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">Task</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">Trigger</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html\">Variables</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">Approval</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>approver</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isAutomated</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isNotificationOn</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rank</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">Approval</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab761ee47c9052fc45b0089ff8041c2ac\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab761ee47c9052fc45b0089ff8041c2ac\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rank</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab761ee47c9052fc45b0089ff8041c2ac\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a51c26d76e07568201756978d134e4de6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a51c26d76e07568201756978d134e4de6\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isAutomated</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a51c26d76e07568201756978d134e4de6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac8273c40823ff0b3871aa5b80875a8f4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac8273c40823ff0b3871aa5b80875a8f4\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isNotificationOn</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac8273c40823ff0b3871aa5b80875a8f4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4151d86b88351995d1a7fb08166e25c8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4151d86b88351995d1a7fb08166e25c8\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">Approver</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>approver</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4151d86b88351995d1a7fb08166e25c8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">Approver</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>uniqueName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">Approver</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa86607ef167d7c96ec24ef69a4dea706\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa86607ef167d7c96ec24ef69a4dea706\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa86607ef167d7c96ec24ef69a4dea706\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9813382b97c801d7828d7830f77dbd1a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9813382b97c801d7828d7830f77dbd1a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9813382b97c801d7828d7830f77dbd1a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae90b67f67458edd5de824b4c2bdd49ec\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae90b67f67458edd5de824b4c2bdd49ec\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uniqueName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae90b67f67458edd5de824b4c2bdd49ec\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">Artifact</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>alias</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>definitionReference</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isPrimary</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>sourceId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">Artifact</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a771adbb66b2c5c228bc65327fa69fab1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a771adbb66b2c5c228bc65327fa69fab1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>sourceId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a771adbb66b2c5c228bc65327fa69fab1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab3de6d8558842e104f4fec1e653376ab\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab3de6d8558842e104f4fec1e653376ab\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab3de6d8558842e104f4fec1e653376ab\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a14f189fce5f7114051dc1cad2aa53cd5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a14f189fce5f7114051dc1cad2aa53cd5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>alias</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a14f189fce5f7114051dc1cad2aa53cd5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a23635e3d5687d273b1f0597785e145d4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a23635e3d5687d273b1f0597785e145d4\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">DefinitionReference</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>definitionReference</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a23635e3d5687d273b1f0597785e145d4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afc5f29b7cdf28b4ba63095d4ef236b79\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afc5f29b7cdf28b4ba63095d4ef236b79\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isPrimary</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afc5f29b7cdf28b4ba63095d4ef236b79\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">Condition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>conditionType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">Condition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a9a7b11f6643ae43e63c020d111bc5160\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9a7b11f6643ae43e63c020d111bc5160\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9a7b11f6643ae43e63c020d111bc5160\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4c65941de63ce82d1eca92b5d29247df\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4c65941de63ce82d1eca92b5d29247df\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>conditionType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4c65941de63ce82d1eca92b5d29247df\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acf372534f52eb8935c8cbb080e9dc57d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acf372534f52eb8935c8cbb080e9dc57d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acf372534f52eb8935c8cbb080e9dc57d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">Definition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">Definition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa520c465202dcc08f332038ceb9b0b88\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa520c465202dcc08f332038ceb9b0b88\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa520c465202dcc08f332038ceb9b0b88\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6c1535e6002f659d38b0c41d37c07591\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6c1535e6002f659d38b0c41d37c07591\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6c1535e6002f659d38b0c41d37c07591\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">DefinitionReference</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>definition</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>project</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">DefinitionReference</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac3812075c26ca8bd4f4aa9b848a78ee3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac3812075c26ca8bd4f4aa9b848a78ee3\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">Definition</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>definition</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac3812075c26ca8bd4f4aa9b848a78ee3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8743850f594add28dd2433bd95100d6e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8743850f594add28dd2433bd95100d6e\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">Project</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8743850f594add28dd2433bd95100d6e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">DeployPhas</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>deploymentInput</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>phaseType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rank</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>workflowTasks</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">DeployPhas</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2c4ae32a2630da71b86b6c769784a6c8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2c4ae32a2630da71b86b6c769784a6c8\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">DeploymentInput</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deploymentInput</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2c4ae32a2630da71b86b6c769784a6c8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a430d7ff43d664e53078451f9dc58aa8d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a430d7ff43d664e53078451f9dc58aa8d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rank</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a430d7ff43d664e53078451f9dc58aa8d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a937444a75c681d4abf096786af2c5a94\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a937444a75c681d4abf096786af2c5a94\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>phaseType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a937444a75c681d4abf096786af2c5a94\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a830096dfabd9e98b4d4f4cad0e60679b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a830096dfabd9e98b4d4f4cad0e60679b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a830096dfabd9e98b4d4f4cad0e60679b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0f2e296e02cac56b8a41056d6191e7e7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0f2e296e02cac56b8a41056d6191e7e7\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workflowTasks</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0f2e296e02cac56b8a41056d6191e7e7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\">DeployStep</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>tasks</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\">DeployStep</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a38782ae2dc31eb2a5cd898f03e91463e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a38782ae2dc31eb2a5cd898f03e91463e\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">Task</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tasks</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a38782ae2dc31eb2a5cd898f03e91463e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">DeploymentInput</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>clean</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>cleanOptions</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>demands</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>enableAccessToken</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parallelExecution</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>queueId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>skipArtifactsDownload</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>timeoutInMinutes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">DeploymentInput</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab373533d0bcfe720e3e7c7c8d29e34d1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab373533d0bcfe720e3e7c7c8d29e34d1\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\">ParallelExecution</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parallelExecution</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab373533d0bcfe720e3e7c7c8d29e34d1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a86799a053e91bbe739947c5d3b6c3d4d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a86799a053e91bbe739947c5d3b6c3d4d\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>skipArtifactsDownload</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a86799a053e91bbe739947c5d3b6c3d4d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2f6c861a77fbe2b2e30d486860d9ea11\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2f6c861a77fbe2b2e30d486860d9ea11\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>timeoutInMinutes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2f6c861a77fbe2b2e30d486860d9ea11\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2eeccb9fae61fdbab902f9ea987408ed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2eeccb9fae61fdbab902f9ea987408ed\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queueId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2eeccb9fae61fdbab902f9ea987408ed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a38f9b28752712fe37e18222397a7ff3d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a38f9b28752712fe37e18222397a7ff3d\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>demands</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a38f9b28752712fe37e18222397a7ff3d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a099db4a0d295f34fb66f6e39b17104f8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a099db4a0d295f34fb66f6e39b17104f8\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a099db4a0d295f34fb66f6e39b17104f8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a76f770683ae929d99c4dbb543bc7b8cf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a76f770683ae929d99c4dbb543bc7b8cf\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>clean</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a76f770683ae929d99c4dbb543bc7b8cf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:affd076196a5cd0099dfbc5a42d012596\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"affd076196a5cd0099dfbc5a42d012596\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cleanOptions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:affd076196a5cd0099dfbc5a42d012596\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">Environment</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>conditions</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>demands</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>deployPhases</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>deployStep</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>environmentOptions</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>executionPolicy</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>owner</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>postDeployApprovals</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>preDeployApprovals</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>queueId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rank</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>retentionPolicy</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>schedules</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>variables</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">Environment</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae9dd3ffa6cb630e25afda87f8213f39f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae9dd3ffa6cb630e25afda87f8213f39f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae9dd3ffa6cb630e25afda87f8213f39f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3f194681d12e4d0a9835634976bf5f49\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3f194681d12e4d0a9835634976bf5f49\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rank</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3f194681d12e4d0a9835634976bf5f49\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a879f40472717497cec0c675313cd3566\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a879f40472717497cec0c675313cd3566\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">Owner</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>owner</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a879f40472717497cec0c675313cd3566\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a71cb71a6f9494235c90b85687334059c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a71cb71a6f9494235c90b85687334059c\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html\">Variables</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>variables</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a71cb71a6f9494235c90b85687334059c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3e1a9215cc8372c94c5bc860974a69ad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3e1a9215cc8372c94c5bc860974a69ad\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\">PreDeployApprovals</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>preDeployApprovals</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3e1a9215cc8372c94c5bc860974a69ad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a18fb4661f1ea6d0d9aadb8fb49047089\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a18fb4661f1ea6d0d9aadb8fb49047089\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\">DeployStep</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deployStep</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a18fb4661f1ea6d0d9aadb8fb49047089\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3d993920e1c0021ddbd6b894c986e5fa\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3d993920e1c0021ddbd6b894c986e5fa\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\">PostDeployApprovals</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>postDeployApprovals</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3d993920e1c0021ddbd6b894c986e5fa\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa1eb6058fc6d05d47085fcdd473feec3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa1eb6058fc6d05d47085fcdd473feec3\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">DeployPhas</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deployPhases</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa1eb6058fc6d05d47085fcdd473feec3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1094297f5bdf9eba6dd61277f83a6eaa\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1094297f5bdf9eba6dd61277f83a6eaa\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">EnvironmentOptions</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>environmentOptions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1094297f5bdf9eba6dd61277f83a6eaa\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac4e9c033dc8bbc12ea44d8bb9af6e05a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac4e9c033dc8bbc12ea44d8bb9af6e05a\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>demands</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac4e9c033dc8bbc12ea44d8bb9af6e05a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0e11e32a6ba3b578d1c570e40d664ec8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0e11e32a6ba3b578d1c570e40d664ec8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queueId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0e11e32a6ba3b578d1c570e40d664ec8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad3895cea689f8b1d28c61f1d381c7042\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad3895cea689f8b1d28c61f1d381c7042\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">Condition</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>conditions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad3895cea689f8b1d28c61f1d381c7042\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adb5c3c7d66ed80bc207351b819e18dcb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb5c3c7d66ed80bc207351b819e18dcb\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">ExecutionPolicy</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>executionPolicy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adb5c3c7d66ed80bc207351b819e18dcb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aca8a80fc29b644900a504c2217ad462a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aca8a80fc29b644900a504c2217ad462a\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>schedules</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aca8a80fc29b644900a504c2217ad462a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0f759cbef2398004bed38aa3d895a54d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0f759cbef2398004bed38aa3d895a54d\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">RetentionPolicy</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>retentionPolicy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0f759cbef2398004bed38aa3d895a54d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">EnvironmentOptions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>emailNotificationType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>emailRecipients</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>enableAccessToken</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>skipArtifactsDownload</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>timeoutInMinutes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">EnvironmentOptions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a10743b059e04309bfa19380d137eaff9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a10743b059e04309bfa19380d137eaff9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>emailNotificationType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a10743b059e04309bfa19380d137eaff9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab193bc4f33a573f97b84f98cc88bbf2b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab193bc4f33a573f97b84f98cc88bbf2b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>emailRecipients</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab193bc4f33a573f97b84f98cc88bbf2b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab280afb8fa6934687621b16d1b874459\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab280afb8fa6934687621b16d1b874459\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>skipArtifactsDownload</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab280afb8fa6934687621b16d1b874459\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5798e4d3007cc184a8861be6a7165ecf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5798e4d3007cc184a8861be6a7165ecf\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>timeoutInMinutes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5798e4d3007cc184a8861be6a7165ecf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4e06f45aad915ab7f64568264ba00354\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4e06f45aad915ab7f64568264ba00354\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4e06f45aad915ab7f64568264ba00354\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">ExecutionPolicy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>concurrencyCount</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>queueDepthCount</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">ExecutionPolicy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac40d7d6db8bd432fb711ede009bdc214\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac40d7d6db8bd432fb711ede009bdc214\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>concurrencyCount</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac40d7d6db8bd432fb711ede009bdc214\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a44d63c5c4d1423a7a848e9971d82f5c8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a44d63c5c4d1423a7a848e9971d82f5c8\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queueDepthCount</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a44d63c5c4d1423a7a848e9971d82f5c8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">Inputs</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>action</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>actionClassic</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>additionalApks</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>AdditionalArguments</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>apkFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>appID</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>appIdentifier</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>arguments</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>authType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>autMachineGroup</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>avgResponseTimeThreshold</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>binaryPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>changeLogFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>cloudService</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>codeCoverageEnabled</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>configuration</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>connectedServiceName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ConnectedServiceName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ConnectedServiceNameARM</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ConnectedServiceNameClassic</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ConnectedServiceNameSelector</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>csmFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>csmParametersFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>customSlicingEnabled</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>DacpacFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>DatabaseName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>DeleteFirewallRule</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>deploymentMode</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>DeployToSlotFlag</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>doNotDelete</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>dropLocation</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>enableDeploymentPrerequisitesForCreate</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>enableDeploymentPrerequisitesForSelect</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>EndIpAddress</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ExcludeFilesFromAppDataFlag</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>failOnStandardError</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>filename</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>geoLocation</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>InlineAdditionalArguments</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ipaPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>IpDetectionMethod</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>location</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>machineType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>mandatory</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>metadataPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>metadataRootPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>minDelta</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>modifyEnvironment</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>nativeLibraryPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>notes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>notesPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>notify</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Operator</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>outputVariable</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>overrideParameters</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>overrideRunParams</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Package</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>password</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>platform</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>publish</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PublishProfile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>releaseNotes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>releaseTrack</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>RemoveAdditionalFilesFlag</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ResourceGroupName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>resourceGroupName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>runDuration</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>runSettingsFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>screenshotsPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ServerName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>serviceAccountKey</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>serviceEndpoint</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SetParametersFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>shouldAttachMetadata</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>shouldAutoRelease</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>shouldSkipSubmission</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>shouldSkipWaitingForProcessing</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>shouldSubmitForReview</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>skipBinaryUpload</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Slot</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SlotName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>sourcefilters</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SqlAdditionalArguments</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SqlFile</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SqlInline</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SqlPassword</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SqlUsername</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>StartIpAddress</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>symbolsPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>tags</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TakeAppOfflineFlag</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>TaskNameSelector</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>teamId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>teamName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>teams</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testConfiguration</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testConfigurations</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testFilterCriteria</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testMachineGroup</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testPlan</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testRunTitle</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testSelection</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testSuite</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>track</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>uploadMetadata</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>uploadScreenshots</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>userFraction</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>username</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>users</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>UseWebDeploy</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>VirtualApplication</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>vuLoad</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WebAppName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WebAppUri</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WebSiteLocation</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WebSiteName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>websiteUrl</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>workingFolder</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">Inputs</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a80a5b29088cc4e68e1ec9bd97040686b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a80a5b29088cc4e68e1ec9bd97040686b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ConnectedServiceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a80a5b29088cc4e68e1ec9bd97040686b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9c2310b2e692e7619d1d8a0a9e22c691\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9c2310b2e692e7619d1d8a0a9e22c691\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebAppName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9c2310b2e692e7619d1d8a0a9e22c691\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a386e960889fb64ab1b958f8615563505\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a386e960889fb64ab1b958f8615563505\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>DeployToSlotFlag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a386e960889fb64ab1b958f8615563505\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abcaa909187fd91431ff416da5beed3c5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abcaa909187fd91431ff416da5beed3c5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ResourceGroupName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abcaa909187fd91431ff416da5beed3c5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8541a224f32dc56cf307e78bbac1e42b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8541a224f32dc56cf307e78bbac1e42b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SlotName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8541a224f32dc56cf307e78bbac1e42b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a218add58e87341b539de47d13745da67\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a218add58e87341b539de47d13745da67\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Package</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a218add58e87341b539de47d13745da67\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a885045db700f8ac879aeb2cebdda2ac7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a885045db700f8ac879aeb2cebdda2ac7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SetParametersFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a885045db700f8ac879aeb2cebdda2ac7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a214405f30000f424247399892fca093e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a214405f30000f424247399892fca093e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UseWebDeploy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a214405f30000f424247399892fca093e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adddd77f62255656664ae8f0ac490d0f8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adddd77f62255656664ae8f0ac490d0f8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>RemoveAdditionalFilesFlag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adddd77f62255656664ae8f0ac490d0f8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7a0913fd120d40cbb128eb7cc0c2bb16\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7a0913fd120d40cbb128eb7cc0c2bb16\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ExcludeFilesFromAppDataFlag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7a0913fd120d40cbb128eb7cc0c2bb16\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1eb961b3f751dc7fa4f2fbf81cce3259\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1eb961b3f751dc7fa4f2fbf81cce3259\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TakeAppOfflineFlag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1eb961b3f751dc7fa4f2fbf81cce3259\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae9db1c667027b0a4c1d1fa887c12f867\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae9db1c667027b0a4c1d1fa887c12f867\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>VirtualApplication</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae9db1c667027b0a4c1d1fa887c12f867\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab5232bbef8badb20a98f234b5a1a0137\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab5232bbef8badb20a98f234b5a1a0137\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>AdditionalArguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab5232bbef8badb20a98f234b5a1a0137\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac3c4842b4bee0966859b6621fe0c6aa1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac3c4842b4bee0966859b6621fe0c6aa1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebAppUri</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac3c4842b4bee0966859b6621fe0c6aa1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abf5f77c8ae7b7eff5eb8a4368512ce5f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abf5f77c8ae7b7eff5eb8a4368512ce5f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ConnectedServiceNameSelector</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abf5f77c8ae7b7eff5eb8a4368512ce5f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4e1cef5bbdcde9e491c9df95d7aa98c7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4e1cef5bbdcde9e491c9df95d7aa98c7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ConnectedServiceNameARM</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4e1cef5bbdcde9e491c9df95d7aa98c7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a047022a17d169e0fa54945ece9c6320f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a047022a17d169e0fa54945ece9c6320f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ServerName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a047022a17d169e0fa54945ece9c6320f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a29bcf7d9130bcecb47a413399b59eaab\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a29bcf7d9130bcecb47a413399b59eaab\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>DatabaseName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a29bcf7d9130bcecb47a413399b59eaab\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0cc949259be6fbde5364a0c1b76131ac\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0cc949259be6fbde5364a0c1b76131ac\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlUsername</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0cc949259be6fbde5364a0c1b76131ac\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a643da8c71b46d6019f3c7ccc701a9bf7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a643da8c71b46d6019f3c7ccc701a9bf7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlPassword</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a643da8c71b46d6019f3c7ccc701a9bf7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a66e74810ab5bfb2d8a8e2c4413093c23\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a66e74810ab5bfb2d8a8e2c4413093c23\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TaskNameSelector</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a66e74810ab5bfb2d8a8e2c4413093c23\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6fe3975e5dab2b8f9c08a64740ab6610\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6fe3975e5dab2b8f9c08a64740ab6610\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>DacpacFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6fe3975e5dab2b8f9c08a64740ab6610\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3d1a2d4750140332b0a76384dc5e0d9b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3d1a2d4750140332b0a76384dc5e0d9b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3d1a2d4750140332b0a76384dc5e0d9b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1f8ab2ee5c01698535e2cf9da4e009a4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1f8ab2ee5c01698535e2cf9da4e009a4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlInline</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1f8ab2ee5c01698535e2cf9da4e009a4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad91c190a409f874b114263b4837477b6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad91c190a409f874b114263b4837477b6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PublishProfile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad91c190a409f874b114263b4837477b6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a594f00c0487ebdd60973f90916353579\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a594f00c0487ebdd60973f90916353579\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlAdditionalArguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a594f00c0487ebdd60973f90916353579\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aca0d3abe7c6fb5eef549ce0f3c065854\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aca0d3abe7c6fb5eef549ce0f3c065854\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>InlineAdditionalArguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aca0d3abe7c6fb5eef549ce0f3c065854\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a22dd1c32735c676156a407602503b489\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a22dd1c32735c676156a407602503b489\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>IpDetectionMethod</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a22dd1c32735c676156a407602503b489\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a03a7b4ecb328cd2901075019d629d70b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a03a7b4ecb328cd2901075019d629d70b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>StartIpAddress</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a03a7b4ecb328cd2901075019d629d70b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a721662ad9dc99ef55cfad3e6d5e99d4f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a721662ad9dc99ef55cfad3e6d5e99d4f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>EndIpAddress</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a721662ad9dc99ef55cfad3e6d5e99d4f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1c5c0615059752a293661838b38bf572\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1c5c0615059752a293661838b38bf572\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>DeleteFirewallRule</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1c5c0615059752a293661838b38bf572\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a518d06f59c21d2bcbfd8356982e50abe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a518d06f59c21d2bcbfd8356982e50abe\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>appID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a518d06f59c21d2bcbfd8356982e50abe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a766de4d93adf83da3c86417b06c11235\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a766de4d93adf83da3c86417b06c11235\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>binaryPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a766de4d93adf83da3c86417b06c11235\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9bb0661b9d3b448049c0399d5889922a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9bb0661b9d3b448049c0399d5889922a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>symbolsPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9bb0661b9d3b448049c0399d5889922a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a34c2b0d975489febe8fc5b20430c0eb1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a34c2b0d975489febe8fc5b20430c0eb1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>nativeLibraryPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a34c2b0d975489febe8fc5b20430c0eb1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab3d81c16609ca0c0f0388851a93bbfed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab3d81c16609ca0c0f0388851a93bbfed\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notesPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab3d81c16609ca0c0f0388851a93bbfed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a96d29239c89406254f87327798e1311c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a96d29239c89406254f87327798e1311c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a96d29239c89406254f87327798e1311c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ada41b82cdfda138f3fc6212405c0e199\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ada41b82cdfda138f3fc6212405c0e199\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>publish</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ada41b82cdfda138f3fc6212405c0e199\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a999c471da2c87978df9d0dfbe7230d39\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a999c471da2c87978df9d0dfbe7230d39\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>mandatory</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a999c471da2c87978df9d0dfbe7230d39\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a74aa4a0bccff0f68bbe112a956be8afb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a74aa4a0bccff0f68bbe112a956be8afb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notify</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a74aa4a0bccff0f68bbe112a956be8afb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a78e89a4035cbf724935d56bf1f7be4a6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a78e89a4035cbf724935d56bf1f7be4a6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tags</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a78e89a4035cbf724935d56bf1f7be4a6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac6a1d0ba9f40a08e0eb25191f3a52b2a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac6a1d0ba9f40a08e0eb25191f3a52b2a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teams</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac6a1d0ba9f40a08e0eb25191f3a52b2a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4f0d43387406fd9162d3b10d6a246c73\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4f0d43387406fd9162d3b10d6a246c73\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>users</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4f0d43387406fd9162d3b10d6a246c73\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a70a9a327a5e91032fd464a7d5b00382e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a70a9a327a5e91032fd464a7d5b00382e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>authType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a70a9a327a5e91032fd464a7d5b00382e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0ad29bd7cb1959c434372d516ae3c896\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0ad29bd7cb1959c434372d516ae3c896\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>serviceEndpoint</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0ad29bd7cb1959c434372d516ae3c896\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0061841b857fb863509aad7732f4adb3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0061841b857fb863509aad7732f4adb3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>serviceAccountKey</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0061841b857fb863509aad7732f4adb3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3df2108c38f722012f14a6bb8d973901\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3df2108c38f722012f14a6bb8d973901\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>apkFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3df2108c38f722012f14a6bb8d973901\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae1fd2b150a1ebc98f9d21b2d91359d25\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae1fd2b150a1ebc98f9d21b2d91359d25\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>track</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae1fd2b150a1ebc98f9d21b2d91359d25\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4f6a5c2dbdf332fe013bce79a30ce908\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4f6a5c2dbdf332fe013bce79a30ce908\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>userFraction</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4f6a5c2dbdf332fe013bce79a30ce908\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab48335c8091e8afb22f51d01ecbd5bcc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab48335c8091e8afb22f51d01ecbd5bcc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>changeLogFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab48335c8091e8afb22f51d01ecbd5bcc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad8215850ce3e909a4da04815ba391414\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad8215850ce3e909a4da04815ba391414\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldAttachMetadata</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad8215850ce3e909a4da04815ba391414\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad752acf51405172c411c4a6a29e6ef19\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad752acf51405172c411c4a6a29e6ef19\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>metadataRootPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad752acf51405172c411c4a6a29e6ef19\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3012dc2b06312f3b942a955162c8bae0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3012dc2b06312f3b942a955162c8bae0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>additionalApks</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3012dc2b06312f3b942a955162c8bae0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4bd19f92c21ca4a4cab5355ac4b0f1d8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4bd19f92c21ca4a4cab5355ac4b0f1d8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>minDelta</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4bd19f92c21ca4a4cab5355ac4b0f1d8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9b28c49066352ccee20c76feb74aa607\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9b28c49066352ccee20c76feb74aa607\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Operator</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9b28c49066352ccee20c76feb74aa607\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a291bb06f960f4fa4237c888b0fe2a82a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a291bb06f960f4fa4237c888b0fe2a82a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>username</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a291bb06f960f4fa4237c888b0fe2a82a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a214300296e7af07590eff36e514a57ba\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a214300296e7af07590eff36e514a57ba\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>password</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a214300296e7af07590eff36e514a57ba\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5060acea9ca6d0dfb92fc3aada196151\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5060acea9ca6d0dfb92fc3aada196151\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>filename</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5060acea9ca6d0dfb92fc3aada196151\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae104363ce48192e7ac3bc49d70e44b3b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae104363ce48192e7ac3bc49d70e44b3b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>arguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae104363ce48192e7ac3bc49d70e44b3b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac2ced61eb8d0e01f7611f1eeb9bbef32\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac2ced61eb8d0e01f7611f1eeb9bbef32\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>modifyEnvironment</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac2ced61eb8d0e01f7611f1eeb9bbef32\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9aa0b01d8961405511e7b6ada6ec5a32\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9aa0b01d8961405511e7b6ada6ec5a32\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workingFolder</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9aa0b01d8961405511e7b6ada6ec5a32\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2012c6cd38a0bc0d944b71907da1bf37\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2012c6cd38a0bc0d944b71907da1bf37\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>failOnStandardError</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2012c6cd38a0bc0d944b71907da1bf37\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3da46e2ff840099027638dec8c83cc2d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3da46e2ff840099027638dec8c83cc2d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testMachineGroup</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3da46e2ff840099027638dec8c83cc2d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a239856345c6722be00c1aecb9e751dd0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a239856345c6722be00c1aecb9e751dd0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>dropLocation</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a239856345c6722be00c1aecb9e751dd0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a09cf69eb134d0bf5c7b3bb911fd1be43\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a09cf69eb134d0bf5c7b3bb911fd1be43\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testSelection</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a09cf69eb134d0bf5c7b3bb911fd1be43\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4ac07f4317094def41412a9c130c181f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4ac07f4317094def41412a9c130c181f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testPlan</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4ac07f4317094def41412a9c130c181f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aab5ade2c89b83ef09dfd4819dff3a15e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aab5ade2c89b83ef09dfd4819dff3a15e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testSuite</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aab5ade2c89b83ef09dfd4819dff3a15e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afb9a9d600ec2d309727cbead97c264f5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb9a9d600ec2d309727cbead97c264f5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testConfiguration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb9a9d600ec2d309727cbead97c264f5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afecd66c3cc6efed0f97676b97a012d10\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afecd66c3cc6efed0f97676b97a012d10\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>sourcefilters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afecd66c3cc6efed0f97676b97a012d10\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a944188218da501a15f81a7c91753f166\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a944188218da501a15f81a7c91753f166\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testFilterCriteria</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a944188218da501a15f81a7c91753f166\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac2dbebabc3a178d7c50ef7fff8db6dea\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac2dbebabc3a178d7c50ef7fff8db6dea\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>runSettingsFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac2dbebabc3a178d7c50ef7fff8db6dea\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa93d0d68a8e79c55f1381679cd1571b1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa93d0d68a8e79c55f1381679cd1571b1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>overrideRunParams</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa93d0d68a8e79c55f1381679cd1571b1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2f1b7d7d95ce3408a90d7b1a074c7311\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2f1b7d7d95ce3408a90d7b1a074c7311\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>codeCoverageEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2f1b7d7d95ce3408a90d7b1a074c7311\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aec549e85fad9b9c940ae37f538031258\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aec549e85fad9b9c940ae37f538031258\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>customSlicingEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aec549e85fad9b9c940ae37f538031258\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad01a9273fed53de54bfbb6038a15a159\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad01a9273fed53de54bfbb6038a15a159\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testRunTitle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad01a9273fed53de54bfbb6038a15a159\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1e72a8245b960497db1e9ecff28d0b17\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1e72a8245b960497db1e9ecff28d0b17\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>platform</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1e72a8245b960497db1e9ecff28d0b17\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa6654438641db6d0ff9ccc98d3bca985\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa6654438641db6d0ff9ccc98d3bca985\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>configuration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa6654438641db6d0ff9ccc98d3bca985\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a558b8192997875236ade6767e8c24aae\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a558b8192997875236ade6767e8c24aae\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testConfigurations</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a558b8192997875236ade6767e8c24aae\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a44439e5087635f5ce870f830e44281d1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a44439e5087635f5ce870f830e44281d1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>autMachineGroup</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a44439e5087635f5ce870f830e44281d1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a36487b076ebd4292cdbb3adb62cca0dd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a36487b076ebd4292cdbb3adb62cca0dd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>connectedServiceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a36487b076ebd4292cdbb3adb62cca0dd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a746074b06a690a50f0bce7c6566a17ae\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a746074b06a690a50f0bce7c6566a17ae\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>websiteUrl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a746074b06a690a50f0bce7c6566a17ae\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afbae5af6bb23ba9d3e0861bebe692161\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afbae5af6bb23ba9d3e0861bebe692161\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afbae5af6bb23ba9d3e0861bebe692161\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a58cb1f85001ae1612a2c4d027fe0e235\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a58cb1f85001ae1612a2c4d027fe0e235\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>vuLoad</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a58cb1f85001ae1612a2c4d027fe0e235\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a64304e85aab8faa063ac8869e94c0eb2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a64304e85aab8faa063ac8869e94c0eb2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>runDuration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a64304e85aab8faa063ac8869e94c0eb2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae1d0ef9b23d25eab4e1aa7dd771fbf33\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae1d0ef9b23d25eab4e1aa7dd771fbf33\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>geoLocation</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae1d0ef9b23d25eab4e1aa7dd771fbf33\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3a28d2f4a4040aa9eb7b45034cfdb4d1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3a28d2f4a4040aa9eb7b45034cfdb4d1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>machineType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3a28d2f4a4040aa9eb7b45034cfdb4d1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a84bb313c28044b4036818349948ff8ec\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a84bb313c28044b4036818349948ff8ec\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>avgResponseTimeThreshold</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a84bb313c28044b4036818349948ff8ec\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2deafbad76eb230a2ff1e96f84ddcc57\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2deafbad76eb230a2ff1e96f84ddcc57\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ConnectedServiceNameClassic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2deafbad76eb230a2ff1e96f84ddcc57\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7ca42cf632b5c646d6f979d12bc66b12\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7ca42cf632b5c646d6f979d12bc66b12\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>action</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7ca42cf632b5c646d6f979d12bc66b12\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3dc73a9a571d823c59ad40e9e2dbfce0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3dc73a9a571d823c59ad40e9e2dbfce0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>actionClassic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3dc73a9a571d823c59ad40e9e2dbfce0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1ea88e8d6cad564a3b0fcfad70c85540\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1ea88e8d6cad564a3b0fcfad70c85540\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>resourceGroupName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1ea88e8d6cad564a3b0fcfad70c85540\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6d6cf829c8b6270c5845edb2a28987c4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6d6cf829c8b6270c5845edb2a28987c4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cloudService</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6d6cf829c8b6270c5845edb2a28987c4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a411b6accc47f179c918197b5d23f6694\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a411b6accc47f179c918197b5d23f6694\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>location</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a411b6accc47f179c918197b5d23f6694\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaad582ffb99ad1cbcd5cdbf6d78980ff\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaad582ffb99ad1cbcd5cdbf6d78980ff\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>csmFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaad582ffb99ad1cbcd5cdbf6d78980ff\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af2b95204c51f79a9a7a43838d2d9577f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af2b95204c51f79a9a7a43838d2d9577f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>csmParametersFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af2b95204c51f79a9a7a43838d2d9577f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5988a2bfbdc689ca8eca7f268c753a31\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5988a2bfbdc689ca8eca7f268c753a31\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>overrideParameters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5988a2bfbdc689ca8eca7f268c753a31\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a788acbdce397fcf2c4fd01920ab857c9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a788acbdce397fcf2c4fd01920ab857c9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deploymentMode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a788acbdce397fcf2c4fd01920ab857c9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9059cc2bb32d2b8080be72fda5145f8d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9059cc2bb32d2b8080be72fda5145f8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableDeploymentPrerequisitesForCreate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9059cc2bb32d2b8080be72fda5145f8d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af6d08b82c46f04dcfba2c695c714e1ae\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af6d08b82c46f04dcfba2c695c714e1ae\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableDeploymentPrerequisitesForSelect</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af6d08b82c46f04dcfba2c695c714e1ae\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7dd012fa3ca75ca986abc6bc6e8d3549\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7dd012fa3ca75ca986abc6bc6e8d3549\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>outputVariable</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7dd012fa3ca75ca986abc6bc6e8d3549\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8fd3c6663ebd74afb883057565aafa8d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8fd3c6663ebd74afb883057565aafa8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebSiteLocation</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8fd3c6663ebd74afb883057565aafa8d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abf7a9fd48e593da074d42dc4ab79532c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abf7a9fd48e593da074d42dc4ab79532c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebSiteName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abf7a9fd48e593da074d42dc4ab79532c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af8f8cfc7542b2860125aa6f6393fc13c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af8f8cfc7542b2860125aa6f6393fc13c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Slot</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af8f8cfc7542b2860125aa6f6393fc13c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a663caf03b43e9a12af1e23a0b99388c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a663caf03b43e9a12af1e23a0b99388c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>doNotDelete</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a663caf03b43e9a12af1e23a0b99388c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a22fde316c05c2384bc5f1e49d59584d6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a22fde316c05c2384bc5f1e49d59584d6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>appIdentifier</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a22fde316c05c2384bc5f1e49d59584d6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa0e8a93f25bf0a3322b435ba78d410aa\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa0e8a93f25bf0a3322b435ba78d410aa\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ipaPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa0e8a93f25bf0a3322b435ba78d410aa\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8fa0468965adc9bda67b326a32188b86\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8fa0468965adc9bda67b326a32188b86\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>releaseTrack</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8fa0468965adc9bda67b326a32188b86\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a903e9a267d8d6de6d06111fec6c787be\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a903e9a267d8d6de6d06111fec6c787be\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>skipBinaryUpload</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a903e9a267d8d6de6d06111fec6c787be\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a051ae1b3b3cbb5bfe179ff696626778b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a051ae1b3b3cbb5bfe179ff696626778b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uploadMetadata</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a051ae1b3b3cbb5bfe179ff696626778b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a09f089bccec95fd4f2509c0d78884bba\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a09f089bccec95fd4f2509c0d78884bba\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>metadataPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a09f089bccec95fd4f2509c0d78884bba\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7cac6b51e042d22a43c03e92e6e211de\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7cac6b51e042d22a43c03e92e6e211de\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uploadScreenshots</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7cac6b51e042d22a43c03e92e6e211de\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad41ef55daa2940eb3e8680bbb8152fa0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad41ef55daa2940eb3e8680bbb8152fa0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>screenshotsPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad41ef55daa2940eb3e8680bbb8152fa0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad02b8d52feccdfb67fdd2a6f209e729d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad02b8d52feccdfb67fdd2a6f209e729d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldSubmitForReview</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad02b8d52feccdfb67fdd2a6f209e729d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a11343861f9d728105a817da42d52129b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a11343861f9d728105a817da42d52129b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldAutoRelease</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a11343861f9d728105a817da42d52129b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a46bec4f965bd5013067ec6a8168ea44b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a46bec4f965bd5013067ec6a8168ea44b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>releaseNotes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a46bec4f965bd5013067ec6a8168ea44b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae8224128b492196e31dc9d0b840f08af\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae8224128b492196e31dc9d0b840f08af\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldSkipWaitingForProcessing</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae8224128b492196e31dc9d0b840f08af\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac9ce99fcbce438487b5ceda38ed0f955\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac9ce99fcbce438487b5ceda38ed0f955\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldSkipSubmission</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac9ce99fcbce438487b5ceda38ed0f955\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2b118218ffa61637f18c297cd38a256e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2b118218ffa61637f18c297cd38a256e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teamId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2b118218ffa61637f18c297cd38a256e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6d83ad6afebcc9cc6df3cd514afcc7df\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6d83ad6afebcc9cc6df3cd514afcc7df\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teamName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6d83ad6afebcc9cc6df3cd514afcc7df\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">Owner</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>uniqueName</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">Owner</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a633dd59a4d0aa138b1c0d1cc1697e495\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a633dd59a4d0aa138b1c0d1cc1697e495\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a633dd59a4d0aa138b1c0d1cc1697e495\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a90a0a1d9031d28da3293ab9ca03bdd8e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a90a0a1d9031d28da3293ab9ca03bdd8e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a90a0a1d9031d28da3293ab9ca03bdd8e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a047cb2c8cd6dc196104d00359a9784c2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a047cb2c8cd6dc196104d00359a9784c2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uniqueName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a047cb2c8cd6dc196104d00359a9784c2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\">ParallelExecution</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parallelExecutionType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\">ParallelExecution</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a30b6d23389d44207df06ab725e83f84b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a30b6d23389d44207df06ab725e83f84b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parallelExecutionType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a30b6d23389d44207df06ab725e83f84b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\">PostDeployApprovals</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>approvals</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\">PostDeployApprovals</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab5c17a61fadbe5c5e0973858fab6e27d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab5c17a61fadbe5c5e0973858fab6e27d\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">Approval</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>approvals</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab5c17a61fadbe5c5e0973858fab6e27d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\">PreDeployApprovals</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>approvals</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\">PreDeployApprovals</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:add3c6cde94fb0bfbf0691853ddf0ca9e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add3c6cde94fb0bfbf0691853ddf0ca9e\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">Approval</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>approvals</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add3c6cde94fb0bfbf0691853ddf0ca9e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1b7b87af9cff7411624a9bed02835f99\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1b7b87af9cff7411624a9bed02835f99\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1b7b87af9cff7411624a9bed02835f99\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7f3466f6040eec66001380871526321d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7f3466f6040eec66001380871526321d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7f3466f6040eec66001380871526321d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">ReleaseDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>artifacts</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>environments</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastRelease</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>releaseNameFormat</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>triggers</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>variableGroups</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>variables</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">ReleaseDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6e7d0929e4f25179b8f32efd68f59a68\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6e7d0929e4f25179b8f32efd68f59a68\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6e7d0929e4f25179b8f32efd68f59a68\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a79e6706e08c4fcb6d1ad15772873a689\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a79e6706e08c4fcb6d1ad15772873a689\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastRelease</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a79e6706e08c4fcb6d1ad15772873a689\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a407f7f40feb041bdebaf20f7975ec48d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a407f7f40feb041bdebaf20f7975ec48d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a407f7f40feb041bdebaf20f7975ec48d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaa9184d7d6bc0cccc30116dfc3af4751\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa9184d7d6bc0cccc30116dfc3af4751\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html\">Variables</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>variables</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa9184d7d6bc0cccc30116dfc3af4751\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aacf55c822c64017831011a8f52a3176f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aacf55c822c64017831011a8f52a3176f\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>variableGroups</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aacf55c822c64017831011a8f52a3176f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad4354e002f7864357c6ab1c4ec0ac821\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad4354e002f7864357c6ab1c4ec0ac821\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">Environment</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>environments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad4354e002f7864357c6ab1c4ec0ac821\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a914cd813bcc8a528496183d05f199580\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a914cd813bcc8a528496183d05f199580\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">Artifact</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>artifacts</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a914cd813bcc8a528496183d05f199580\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab9694bcf5561e170f772e804e6dcf6c4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab9694bcf5561e170f772e804e6dcf6c4\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">Trigger</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>triggers</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab9694bcf5561e170f772e804e6dcf6c4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4425a95f8e63f8fe439f219d4a8ae3cc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4425a95f8e63f8fe439f219d4a8ae3cc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>releaseNameFormat</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4425a95f8e63f8fe439f219d4a8ae3cc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">RetentionPolicy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>daysToKeep</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>releasesToKeep</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>retainBuild</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">RetentionPolicy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6244199885f6cae444ea9040ede92eb2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6244199885f6cae444ea9040ede92eb2\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>daysToKeep</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6244199885f6cae444ea9040ede92eb2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a833e7df1248dd241a8b996b4fa792d6b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a833e7df1248dd241a8b996b4fa792d6b\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>releasesToKeep</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a833e7df1248dd241a8b996b4fa792d6b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab431facb8188b44ad8247e43cb5327ca\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab431facb8188b44ad8247e43cb5327ca\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>retainBuild</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab431facb8188b44ad8247e43cb5327ca\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">Task</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>alwaysRun</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>continueOnError</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>definitionType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>enabled</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>inputs</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>taskId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>timeoutInMinutes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>version</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">Task</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a8abbd9e75d4b02b29b85822e32b4bfe2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8abbd9e75d4b02b29b85822e32b4bfe2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>taskId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8abbd9e75d4b02b29b85822e32b4bfe2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a163208fed7092d1ec2aa6c7497d0f53b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a163208fed7092d1ec2aa6c7497d0f53b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>version</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a163208fed7092d1ec2aa6c7497d0f53b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5a638f694776215e250ada038ecfb958\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5a638f694776215e250ada038ecfb958\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5a638f694776215e250ada038ecfb958\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acf1b0977a474dfc7634cf282edd4bf27\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acf1b0977a474dfc7634cf282edd4bf27\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acf1b0977a474dfc7634cf282edd4bf27\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a959daebdcca103882c539a5f1aef5d34\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a959daebdcca103882c539a5f1aef5d34\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>alwaysRun</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a959daebdcca103882c539a5f1aef5d34\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ace43f136a32fb9863d927c08fd43b92c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ace43f136a32fb9863d927c08fd43b92c\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>continueOnError</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ace43f136a32fb9863d927c08fd43b92c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abc2e5f2fd65201a622c1a452e726494a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abc2e5f2fd65201a622c1a452e726494a\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>timeoutInMinutes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abc2e5f2fd65201a622c1a452e726494a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae3b71c88b17ca448e5b93dad8b2f4b20\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae3b71c88b17ca448e5b93dad8b2f4b20\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>definitionType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae3b71c88b17ca448e5b93dad8b2f4b20\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a23bc3f4927d21fd2557f7ab7851d2a74\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a23bc3f4927d21fd2557f7ab7851d2a74\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">Inputs</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>inputs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a23bc3f4927d21fd2557f7ab7851d2a74\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">Trigger</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>artifactAlias</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>triggerType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">Trigger</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a8bdef2f98892ee8510e0cb31462e1982\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8bdef2f98892ee8510e0cb31462e1982\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>artifactAlias</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8bdef2f98892ee8510e0cb31462e1982\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac719487b4de80ead00917417f29cee40\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac719487b4de80ead00917417f29cee40\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>triggerType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac719487b4de80ead00917417f29cee40\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Variables Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html\">Variables</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Variables Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">Release</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7f4e5dc8f96e1441fc0958660704a545\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7f4e5dc8f96e1441fc0958660704a545\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7f4e5dc8f96e1441fc0958660704a545\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aff71f503069d0f9c57f01cf0a80dec14\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aff71f503069d0f9c57f01cf0a80dec14\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aff71f503069d0f9c57f01cf0a80dec14\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:afb5394a3fe8da222a178e6e806f2872c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb5394a3fe8da222a178e6e806f2872c\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb5394a3fe8da222a178e6e806f2872c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ReleaseDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_repository_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.RepositoryResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\">RepositoryResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.RepositoryResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">Repository</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/RepositoryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\">RepositoryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">Repository</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\">RepositoryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">Repository</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a443cabc56e299869574a726ba5e7371d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a443cabc56e299869574a726ba5e7371d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a443cabc56e299869574a726ba5e7371d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a25068dbd4594d583515bb3c93ba780f0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a25068dbd4594d583515bb3c93ba780f0\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a25068dbd4594d583515bb3c93ba780f0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/RepositoryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\">RepositoryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\">RepositoryResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a0547a6060aa8fe67095fe830311ee2ba\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0547a6060aa8fe67095fe830311ee2ba\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0547a6060aa8fe67095fe830311ee2ba\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afde66aac0587f278ab01da21e25e8a8f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afde66aac0587f278ab01da21e25e8a8f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afde66aac0587f278ab01da21e25e8a8f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/RepositoryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">Authorization</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">parameter</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">Service</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ServiceEndPointsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">Authorization</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parameters</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>scheme</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">Authorization</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a89bba93441920c0fbf005a934eeed2e7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a89bba93441920c0fbf005a934eeed2e7\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">parameter</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parameters</b> = new <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">parameter</a> { subscriptionId = &quot;&quot; }</td></tr>\n<tr class=\"separator:a89bba93441920c0fbf005a934eeed2e7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a9904c30620d2950438c983f92f0b6d4e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9904c30620d2950438c983f92f0b6d4e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>scheme</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9904c30620d2950438c983f92f0b6d4e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ServiceEndPointsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">Service</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">Service</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a60c19e07d0cd4047e9240627d58c0a14\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a60c19e07d0cd4047e9240627d58c0a14\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a60c19e07d0cd4047e9240627d58c0a14\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abe6c1d50ac869778f9b44db7e3fa11d4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abe6c1d50ac869778f9b44db7e3fa11d4\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abe6c1d50ac869778f9b44db7e3fa11d4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ServiceEndPointsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>authorization</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isReady</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>subscriptionId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a283dfd40444d79055c057cd5c88eedf3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a283dfd40444d79055c057cd5c88eedf3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>subscriptionId</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:a283dfd40444d79055c057cd5c88eedf3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:af4e1f7cf94cf943081056566cc375942\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af4e1f7cf94cf943081056566cc375942\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af4e1f7cf94cf943081056566cc375942\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2a356b27524d3be69b63112eff9b7bf7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2a356b27524d3be69b63112eff9b7bf7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2a356b27524d3be69b63112eff9b7bf7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5c7a2ed5d0a9b58ed446539fd11f782e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5c7a2ed5d0a9b58ed446539fd11f782e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5c7a2ed5d0a9b58ed446539fd11f782e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9c91335bfaf5f073dfd682447748f339\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9c91335bfaf5f073dfd682447748f339\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9c91335bfaf5f073dfd682447748f339\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a766f0fdaa0a599f29d19e1294af65ed0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a766f0fdaa0a599f29d19e1294af65ed0\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">Authorization</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>authorization</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a766f0fdaa0a599f29d19e1294af65ed0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6e04a5a66a805992bd58ca8804e42e73\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6e04a5a66a805992bd58ca8804e42e73\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isReady</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6e04a5a66a805992bd58ca8804e42e73\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ServiceEndPointsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">parameter</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>password</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>subscriptionId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>username</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">parameter</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:ae65bda60fc4cabb303817f5b4ab29772\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae65bda60fc4cabb303817f5b4ab29772\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>subscriptionId</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:ae65bda60fc4cabb303817f5b4ab29772\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a969b6b3f173d72d7fb3f12a2059a602b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a969b6b3f173d72d7fb3f12a2059a602b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>username</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a969b6b3f173d72d7fb3f12a2059a602b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa19b7de451aebcd7a4dbb1ec29de9cc9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa19b7de451aebcd7a4dbb1ec29de9cc9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>password</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa19b7de451aebcd7a4dbb1ec29de9cc9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/ServiceEndPointsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.SourceCodeResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">Code</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\">GitSource</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\">Parameters</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/SourceCodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">Code</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">Code</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:af659c27ae4c78d14ad13674a30a0a3bb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af659c27ae4c78d14ad13674a30a0a3bb\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af659c27ae4c78d14ad13674a30a0a3bb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a03a16172f059d9d98f141d304ee85c35\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a03a16172f059d9d98f141d304ee85c35\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a03a16172f059d9d98f141d304ee85c35\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/SourceCodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\">GitSource</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.GitSource Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.GitSource</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.GitSource</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.GitSource</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.SourceCodeResponse.GitSource Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\">GitSource</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.GitSource Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab5c23de77706b0d87f683f6f82787467\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab5c23de77706b0d87f683f6f82787467\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab5c23de77706b0d87f683f6f82787467\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/SourceCodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\">Parameters</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Parameters Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Parameters</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>gitSource</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Parameters</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Parameters</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Parameters Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\">Parameters</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Parameters Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a9750bbdbfd562736c964bd5a46b362e2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9750bbdbfd562736c964bd5a46b362e2\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\">GitSource</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>gitSource</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9750bbdbfd562736c964bd5a46b362e2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/SourceCodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>deleteServiceEndpointAfterImportIsDone</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>parameters</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>serviceEndpointId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:affff163626c11597354d48e523397c98\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"affff163626c11597354d48e523397c98\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>serviceEndpointId</b> = &quot;&quot;</td></tr>\n<tr class=\"separator:affff163626c11597354d48e523397c98\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1fa8bd4e81fad1256ce731575f153e6d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1fa8bd4e81fad1256ce731575f153e6d\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deleteServiceEndpointAfterImportIsDone</b> = true</td></tr>\n<tr class=\"separator:a1fa8bd4e81fad1256ce731575f153e6d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:adeada7b965588f933b95e236ff5c3c35\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adeada7b965588f933b95e236ff5c3c35\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\">Parameters</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parameters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adeada7b965588f933b95e236ff5c3c35\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/SourceCodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_teams_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.TeamsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\">TeamsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.TeamsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">Team</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/TeamsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\">TeamsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">Team</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Team Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Team</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Team</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Team</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.TeamsResponse.Team Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\">TeamsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">Team</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Team Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:acb59c348a06ea2c60040cce5e242da2e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acb59c348a06ea2c60040cce5e242da2e\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acb59c348a06ea2c60040cce5e242da2e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9791ef6d060c878531144c98f4c6a6f3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9791ef6d060c878531144c98f4c6a6f3\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9791ef6d060c878531144c98f4c6a6f3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/TeamsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\">TeamsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.TeamsResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\">TeamsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a65bc346e80fb6ab81a248cda3f10edd8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a65bc346e80fb6ab81a248cda3f10edd8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a65bc346e80fb6ab81a248cda3f10edd8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4d4c214685f06bf31f1ad04ac0bcc2ac\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4d4c214685f06bf31f1ad04ac0bcc2ac\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4d4c214685f06bf31f1ad04ac0bcc2ac\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/TeamsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">Dashboard</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">Position</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">SettingsVersion</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">Size</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">Widget</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WidgetAndChartResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>eTag</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a44021a2e3ab5a06ab4e240a68490a87a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a44021a2e3ab5a06ab4e240a68490a87a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>eTag</b> = &quot;$eTag$&quot;</td></tr>\n<tr class=\"separator:a44021a2e3ab5a06ab4e240a68490a87a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WidgetAndChartResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">Position</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>column</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>row</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">Position</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4d19c60f9ddb7937a047d4e906a18f85\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4d19c60f9ddb7937a047d4e906a18f85\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>row</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4d19c60f9ddb7937a047d4e906a18f85\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a983021e38e6e4eaaffb333e1cbb11232\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a983021e38e6e4eaaffb333e1cbb11232\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>column</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a983021e38e6e4eaaffb333e1cbb11232\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WidgetAndChartResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">SettingsVersion</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>major</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>minor</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>patch</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">SettingsVersion</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aaf706eefe326678f8223769360501da2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaf706eefe326678f8223769360501da2\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>major</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaf706eefe326678f8223769360501da2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad324aa849cdd74903ed41f32f4a726d4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad324aa849cdd74903ed41f32f4a726d4\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>minor</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad324aa849cdd74903ed41f32f4a726d4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1fb2e8d98d82e357c22178c29f4596b7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1fb2e8d98d82e357c22178c29f4596b7\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>patch</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1fb2e8d98d82e357c22178c29f4596b7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WidgetAndChartResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">Size</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>columnSpan</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rowSpan</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">Size</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6bfe41ace6ca24ae523c35944624128e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6bfe41ace6ca24ae523c35944624128e\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rowSpan</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6bfe41ace6ca24ae523c35944624128e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a59f85888773e62833b16650db365026d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a59f85888773e62833b16650db365026d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>columnSpan</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a59f85888773e62833b16650db365026d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WidgetAndChartResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>contributionId</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>dashboard</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>position</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>settings</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>settingsVersion</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>size</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a118636b0c921bd76f1c288fe349a50b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a118636b0c921bd76f1c288fe349a50b2\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">Dashboard</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>dashboard</b> = new <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">Dashboard</a>() { eTag = &quot;$eTag$&quot; }</td></tr>\n<tr class=\"separator:a118636b0c921bd76f1c288fe349a50b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a5275f16fcce463c10b9f717c3c51ca7a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5275f16fcce463c10b9f717c3c51ca7a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5275f16fcce463c10b9f717c3c51ca7a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aeddbeae9ff68e4625d91fc9c9aec7e90\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aeddbeae9ff68e4625d91fc9c9aec7e90\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">Position</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>position</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aeddbeae9ff68e4625d91fc9c9aec7e90\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7a2a9eb0c801762cae7710a82f537765\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7a2a9eb0c801762cae7710a82f537765\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">Size</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>size</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7a2a9eb0c801762cae7710a82f537765\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a00078ef8995d038f610c2e95c4849424\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a00078ef8995d038f610c2e95c4849424\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>settings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a00078ef8995d038f610c2e95c4849424\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac40970a04ee3de060d16f2d35a8d7f23\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac40970a04ee3de060d16f2d35a8d7f23\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">SettingsVersion</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>settingsVersion</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac40970a04ee3de060d16f2d35a8d7f23\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1473a6b2f5dbb188fa4c7828855b3d37\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1473a6b2f5dbb188fa4c7828855b3d37\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>contributionId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1473a6b2f5dbb188fa4c7828855b3d37\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WidgetAndChartResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">Widget</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">Widget</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae41b9ab8da5844b6d2aa0752b6e755ea\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae41b9ab8da5844b6d2aa0752b6e755ea\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae41b9ab8da5844b6d2aa0752b6e755ea\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acebd461467fe27052945cb1cfbbcc1a3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acebd461467fe27052945cb1cfbbcc1a3\"></a>\nIList&lt; <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acebd461467fe27052945cb1cfbbcc1a3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WidgetAndChartResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">Attributes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">Fields</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">Relations</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItems</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WorkItemFetchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>comment</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isLocked</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3899821a24f7519a9e4e375e978e98cc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3899821a24f7519a9e4e375e978e98cc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isLocked</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3899821a24f7519a9e4e375e978e98cc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0ebaacf76544873b0c4d4375daca56ce\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0ebaacf76544873b0c4d4375daca56ce\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>comment</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0ebaacf76544873b0c4d4375daca56ce\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WorkItemFetchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSCommonPriority</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MicrosoftVSTSSchedulingEffort</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSSchedulingRemainingWork</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MicrosoftVSTSTCMAutomationStatus</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSTCMLocalDataSource</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MicrosoftVSTSTCMParameters</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSTCMSteps</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemAreaPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemAssignedTo</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemBoardLane</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemChangedBy</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemChangedDate</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemCreatedBy</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemCreatedDate</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemDescription</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemHistory</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemIterationPath</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemReason</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemState</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemTags</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemTeamProject</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemTitle</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemWorkItemType</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a45623af0ca1600dc00d35269ee5b2209\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a45623af0ca1600dc00d35269ee5b2209\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemAreaPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a45623af0ca1600dc00d35269ee5b2209\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab40188df9e1fa8177bb741265ed07ad4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab40188df9e1fa8177bb741265ed07ad4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemTeamProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab40188df9e1fa8177bb741265ed07ad4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a78a514576cd11f399b6714617f1665e0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a78a514576cd11f399b6714617f1665e0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemIterationPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a78a514576cd11f399b6714617f1665e0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af3184f4764f1accc54ea222cf5d6823b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af3184f4764f1accc54ea222cf5d6823b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemWorkItemType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af3184f4764f1accc54ea222cf5d6823b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a56bd8025e8f4e85625e7d8577c91e2c2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a56bd8025e8f4e85625e7d8577c91e2c2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemState</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a56bd8025e8f4e85625e7d8577c91e2c2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afac12997c4856d5b17059c1b0ee6e16a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afac12997c4856d5b17059c1b0ee6e16a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemReason</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afac12997c4856d5b17059c1b0ee6e16a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af00032729e6673a6c87d8799e88a27ec\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af00032729e6673a6c87d8799e88a27ec\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemCreatedDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af00032729e6673a6c87d8799e88a27ec\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a75ce5fc7be8feed79c99b7636c0c4d79\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a75ce5fc7be8feed79c99b7636c0c4d79\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemCreatedBy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a75ce5fc7be8feed79c99b7636c0c4d79\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7500ce909a2fc078a26d4fc82eeef807\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7500ce909a2fc078a26d4fc82eeef807\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemChangedDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7500ce909a2fc078a26d4fc82eeef807\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a25900cbcaff6ca9d4f5fac4721e543b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a25900cbcaff6ca9d4f5fac4721e543b2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemChangedBy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a25900cbcaff6ca9d4f5fac4721e543b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa19646215db26e94d1664a8c76242ac2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa19646215db26e94d1664a8c76242ac2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemTitle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa19646215db26e94d1664a8c76242ac2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a91ad8317108f5208be334923da6010b1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a91ad8317108f5208be334923da6010b1\"></a>\nfloat&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSSchedulingEffort</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a91ad8317108f5208be334923da6010b1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6baa4a7747e158fe885433c2e1bc8d04\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6baa4a7747e158fe885433c2e1bc8d04\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemDescription</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6baa4a7747e158fe885433c2e1bc8d04\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0e476032acc74976eefc53f60196349d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0e476032acc74976eefc53f60196349d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemAssignedTo</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0e476032acc74976eefc53f60196349d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aff8db890aeab5f1e2698f54af7a76058\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aff8db890aeab5f1e2698f54af7a76058\"></a>\nfloat&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSSchedulingRemainingWork</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aff8db890aeab5f1e2698f54af7a76058\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8ed9724ede04d0fe653f20780336242d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8ed9724ede04d0fe653f20780336242d\"></a>\nfloat&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSCommonPriority</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8ed9724ede04d0fe653f20780336242d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a56d9cc68d898ee549087b1831b557794\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a56d9cc68d898ee549087b1831b557794\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemBoardLane</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a56d9cc68d898ee549087b1831b557794\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2b2b537b1a2deb5abb93528918b3e052\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2b2b537b1a2deb5abb93528918b3e052\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemTags</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2b2b537b1a2deb5abb93528918b3e052\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5e5a6bffbbea6a72aa6c4062b1e10133\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5e5a6bffbbea6a72aa6c4062b1e10133\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSTCMSteps</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5e5a6bffbbea6a72aa6c4062b1e10133\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9aa625252644667607bc0c12f1a03c21\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9aa625252644667607bc0c12f1a03c21\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSTCMParameters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9aa625252644667607bc0c12f1a03c21\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae079e4c0bf70dd3c271a75757be22b89\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae079e4c0bf70dd3c271a75757be22b89\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSTCMLocalDataSource</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae079e4c0bf70dd3c271a75757be22b89\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a78f76a189bab963e5ea53554befff96e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a78f76a189bab963e5ea53554befff96e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSTCMAutomationStatus</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a78f76a189bab963e5ea53554befff96e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab617410c7610c02da27f5e96a71a1a6d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab617410c7610c02da27f5e96a71a1a6d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemHistory</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab617410c7610c02da27f5e96a71a1a6d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WorkItemFetchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">Relations</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>attributes</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rel</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">Relations</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad309a858400b6dfb3ee59dde4042cfd1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad309a858400b6dfb3ee59dde4042cfd1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rel</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad309a858400b6dfb3ee59dde4042cfd1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6c926c5f7589702d85c26aa9a78334c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6c926c5f7589702d85c26aa9a78334c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6c926c5f7589702d85c26aa9a78334c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a41b54378c223e826d29af0cc8bc686e8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a41b54378c223e826d29af0cc8bc686e8\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>attributes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a41b54378c223e826d29af0cc8bc686e8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WorkItemFetchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fields</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>relations</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rev</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab498c33bc993e4293b9d59efa097329b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab498c33bc993e4293b9d59efa097329b\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab498c33bc993e4293b9d59efa097329b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad0c9eff1b121ac7f2d8b6800b89572b7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad0c9eff1b121ac7f2d8b6800b89572b7\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rev</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad0c9eff1b121ac7f2d8b6800b89572b7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa88e0e20098cdbcc3821f8da1b377282\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa88e0e20098cdbcc3821f8da1b377282\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">Fields</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fields</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa88e0e20098cdbcc3821f8da1b377282\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae7f7685b4af50a7a744768dd9b8b7820\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae7f7685b4af50a7a744768dd9b8b7820\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">Relations</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>relations</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae7f7685b4af50a7a744768dd9b8b7820\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abb85efbd3086d5add5c7101d2235d46a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abb85efbd3086d5add5c7101d2235d46a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abb85efbd3086d5add5c7101d2235d46a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WorkItemFetchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItems</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItems</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.png\" usemap=\"#TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems_map\" alt=\"\"/>\n  <map id=\"TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems_map\" name=\"TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems_map\">\n<area href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\" alt=\"TemplatesGeneratorTool.ViewModel.BaseViewModel\" shape=\"rect\" coords=\"0,0,419,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a57d6663c312c9e721e9dd9361e4ef6ab\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a57d6663c312c9e721e9dd9361e4ef6ab\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a57d6663c312c9e721e9dd9361e4ef6ab\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad0c131ead2429c1cad29975be6d1aec8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad0c131ead2429c1cad29975be6d1aec8\"></a>\n<a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad0c131ead2429c1cad29975be6d1aec8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:a419a1f92ce6ec21394cb8b025a2c38c3 inherit properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a419a1f92ce6ec21394cb8b025a2c38c3\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a419a1f92ce6ec21394cb8b025a2c38c3 inherit properties_class_templates_generator_tool_1_1_view_model_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel/WorkItemFetchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_bundle_config-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\">BundleConfig</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.BundleConfig Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\">VstsDemoBuilder.BundleConfig</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>RegisterBundles</b>(BundleCollection bundles) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\">VstsDemoBuilder.BundleConfig</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\">VstsDemoBuilder.BundleConfig</a></td><td class=\"entry\"><span class=\"mlabel\">static</span></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_bundle_config.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.BundleConfig Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\">BundleConfig</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-static-methods\">Static Public Member Functions</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_bundle_config-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.BundleConfig Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-static-methods\"></a>\nStatic Public Member Functions</h2></td></tr>\n<tr class=\"memitem:aa07a45768680a6710f679b0c8d88e902\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa07a45768680a6710f679b0c8d88e902\"></a>\nstatic void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>RegisterBundles</b> (BundleCollection bundles)</td></tr>\n<tr class=\"separator:aa07a45768680a6710f679b0c8d88e902\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/App_Start/BundleConfig.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_controllers_1_1_account_controller-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">Controllers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">AccountController</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Controllers.AccountController Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">VstsDemoBuilder.Controllers.AccountController</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ae8d17a5a4622885c1ae042f2cbe8103e\">GetAccountName</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">VstsDemoBuilder.Controllers.AccountController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ac36624619c06ea1c9e9df88c06d9a80f\">Index</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">VstsDemoBuilder.Controllers.AccountController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#abbf468c027b199a26ccc4a12fdad7fbe\">SignOut</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">VstsDemoBuilder.Controllers.AccountController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#a6d42be6f0b98a238c2575e225940ff6e\">Verify</a>(LoginModel model, string id)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">VstsDemoBuilder.Controllers.AccountController</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Controllers.AccountController Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">Controllers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">AccountController</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Controllers.AccountController Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsDemoBuilder.Controllers.AccountController:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.png\" usemap=\"#VstsDemoBuilder.Controllers.AccountController_map\" alt=\"\"/>\n  <map id=\"VstsDemoBuilder.Controllers.AccountController_map\" name=\"VstsDemoBuilder.Controllers.AccountController_map\">\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a6d42be6f0b98a238c2575e225940ff6e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">ActionResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#a6d42be6f0b98a238c2575e225940ff6e\">Verify</a> (<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">LoginModel</a> model, string id)</td></tr>\n<tr class=\"memdesc:a6d42be6f0b98a238c2575e225940ff6e\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Verify View  <a href=\"#a6d42be6f0b98a238c2575e225940ff6e\">More...</a><br /></td></tr>\n<tr class=\"separator:a6d42be6f0b98a238c2575e225940ff6e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae8d17a5a4622885c1ae042f2cbe8103e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ae8d17a5a4622885c1ae042f2cbe8103e\">GetAccountName</a> ()</td></tr>\n<tr class=\"memdesc:ae8d17a5a4622885c1ae042f2cbe8103e\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Account at the end of project provision  <a href=\"#ae8d17a5a4622885c1ae042f2cbe8103e\">More...</a><br /></td></tr>\n<tr class=\"separator:ae8d17a5a4622885c1ae042f2cbe8103e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac36624619c06ea1c9e9df88c06d9a80f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">ActionResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ac36624619c06ea1c9e9df88c06d9a80f\">Index</a> ()</td></tr>\n<tr class=\"memdesc:ac36624619c06ea1c9e9df88c06d9a80f\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Index view which calls VSTS OAuth  <a href=\"#ac36624619c06ea1c9e9df88c06d9a80f\">More...</a><br /></td></tr>\n<tr class=\"separator:ac36624619c06ea1c9e9df88c06d9a80f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abbf468c027b199a26ccc4a12fdad7fbe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">ActionResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#abbf468c027b199a26ccc4a12fdad7fbe\">SignOut</a> ()</td></tr>\n<tr class=\"memdesc:abbf468c027b199a26ccc4a12fdad7fbe\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Sign out  <a href=\"#abbf468c027b199a26ccc4a12fdad7fbe\">More...</a><br /></td></tr>\n<tr class=\"separator:abbf468c027b199a26ccc4a12fdad7fbe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"ae8d17a5a4622885c1ae042f2cbe8103e\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ae8d17a5a4622885c1ae042f2cbe8103e\">&#9670;&nbsp;</a></span>GetAccountName()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsDemoBuilder.Controllers.AccountController.GetAccountName </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Account at the end of project provision </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ac36624619c06ea1c9e9df88c06d9a80f\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ac36624619c06ea1c9e9df88c06d9a80f\">&#9670;&nbsp;</a></span>Index()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">ActionResult VstsDemoBuilder.Controllers.AccountController.Index </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Index view which calls VSTS OAuth </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"abbf468c027b199a26ccc4a12fdad7fbe\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#abbf468c027b199a26ccc4a12fdad7fbe\">&#9670;&nbsp;</a></span>SignOut()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">ActionResult VstsDemoBuilder.Controllers.AccountController.SignOut </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Sign out </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a6d42be6f0b98a238c2575e225940ff6e\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a6d42be6f0b98a238c2575e225940ff6e\">&#9670;&nbsp;</a></span>Verify()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">ActionResult VstsDemoBuilder.Controllers.AccountController.Verify </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">LoginModel</a>&#160;</td>\n          <td class=\"paramname\"><em>model</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>id</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Verify View </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n    <tr><td class=\"paramname\">id</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Controllers/AccountController.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_controllers_1_1_environment_controller-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">Controllers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">EnvironmentController</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Controllers.EnvironmentController Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>AddMessage</b>(string id, string message) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a4ea213c905f5eb8d420e09d7a919a55d\">CheckForInstalledExtensions</a>(string selectedTemplate, string token, string Account)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac7c3e39375100aa8c8c3597d5c95c7a1\">CheckSession</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a05d657b039fcb027c054e24cf53e5941\">Create</a>(Project model)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a78d06b5fc70004a4b23a10a22670b04e\">CreateProjectEnvironment</a>(Project model, string PAT, string accountName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ab1802a3d21c416002c2c7ff57019b6f8\">CreateQueryAndWidgets</a>(string templatesFolder, Project model, List&lt; string &gt; lstQueries, Configuration _defaultConfiguration, Configuration _configuration2, Configuration _configuration3, Configuration releaseConfig)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>CreateRelease</b>(string templatesFolder, Project model, string json, Configuration _configuration, string id, int releaseDefinitionId) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ada15b3cbf0e3c37b0c9e0036b45671c2\">EndEnvironmentSetupProcess</a>(IAsyncResult result)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac983d0c1775718689aff6f7a17c0b929\">GenerateRequestPostData</a>(string appSecret, string authCode, string callbackUrl)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a9726501c86319171adf04dedab87a6a0\">GetAccessToken</a>(string body)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#af9d72d23dec7248e6a8b5106209e6e6d\">GetAccounts</a>(string MemberID, AccessDetails Details)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GetCurrentProgress</b>(string id) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a3b9b20acff06038e1aed58b3bfaaebd4\">GetGroups</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a1a7a16aa8a18f17e1fafb079e5ec5de4\">GetMembers</a>(string accountName, string AccessToken)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8d6dfbb168d7d87651c361e953feb9d9\">GetProfile</a>(AccessDetails accessDetails)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ae36d3258bea98714970d2fdc5fec6bf3\">GetStatusMessage</a>(string id)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a386641d021e2872eb8a614db7d3b1a6e\">GetTemplate</a>(string TemplateName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c6be4b2363680d958e6fdee4e74b91a\">InstallExtensions</a>(Project model, string accountName, string PAT)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isDefaultRepoTodetele</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>projectName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c1a9720f499884448fa692a6fc8b514\">Refresh_AccessToken</a>(string refreshToken)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>RemoveKey</b>(string id) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a990cb5c0fd92cee0d4926b92a5951436\">RenameIterations</a>(Project model, Configuration _defaultConfiguration, Dictionary&lt; string, string &gt; renameIterations)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a69d4ebc71322d09e96bab8cd604ebb46\">SendEmail</a>(Email model)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ad6b69ff448fc483cb517729d55c55dcc\">StartEnvironmentSetupProcess</a>(Project model)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>templateUsed</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>websiteUrl</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Controllers.EnvironmentController Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">Controllers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">EnvironmentController</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Controllers.EnvironmentController Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsDemoBuilder.Controllers.EnvironmentController:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.png\" usemap=\"#VstsDemoBuilder.Controllers.EnvironmentController_map\" alt=\"\"/>\n  <map id=\"VstsDemoBuilder.Controllers.EnvironmentController_map\" name=\"VstsDemoBuilder.Controllers.EnvironmentController_map\">\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a2f78966d13ebfc59cdc8e09014229705\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2f78966d13ebfc59cdc8e09014229705\"></a>\nvoid&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>AddMessage</b> (string id, string message)</td></tr>\n<tr class=\"separator:a2f78966d13ebfc59cdc8e09014229705\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8bc07279221b8cf2476ab015e6a0a38e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8bc07279221b8cf2476ab015e6a0a38e\"></a>\nvoid&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>RemoveKey</b> (string id)</td></tr>\n<tr class=\"separator:a8bc07279221b8cf2476ab015e6a0a38e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aba5b74b6978113f797e33255ed69ce5e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aba5b74b6978113f797e33255ed69ce5e\"></a>\nContentResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GetCurrentProgress</b> (string id)</td></tr>\n<tr class=\"separator:aba5b74b6978113f797e33255ed69ce5e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae36d3258bea98714970d2fdc5fec6bf3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ae36d3258bea98714970d2fdc5fec6bf3\">GetStatusMessage</a> (string id)</td></tr>\n<tr class=\"memdesc:ae36d3258bea98714970d2fdc5fec6bf3\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get status message to resplay  <a href=\"#ae36d3258bea98714970d2fdc5fec6bf3\">More...</a><br /></td></tr>\n<tr class=\"separator:ae36d3258bea98714970d2fdc5fec6bf3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a386641d021e2872eb8a614db7d3b1a6e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">ContentResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a386641d021e2872eb8a614db7d3b1a6e\">GetTemplate</a> (string TemplateName)</td></tr>\n<tr class=\"memdesc:a386641d021e2872eb8a614db7d3b1a6e\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Template Name to display  <a href=\"#a386641d021e2872eb8a614db7d3b1a6e\">More...</a><br /></td></tr>\n<tr class=\"separator:a386641d021e2872eb8a614db7d3b1a6e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3b9b20acff06038e1aed58b3bfaaebd4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">JsonResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a3b9b20acff06038e1aed58b3bfaaebd4\">GetGroups</a> ()</td></tr>\n<tr class=\"memdesc:a3b9b20acff06038e1aed58b3bfaaebd4\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get groups. based on group selection get template  <a href=\"#a3b9b20acff06038e1aed58b3bfaaebd4\">More...</a><br /></td></tr>\n<tr class=\"separator:a3b9b20acff06038e1aed58b3bfaaebd4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a05d657b039fcb027c054e24cf53e5941\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">ActionResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a05d657b039fcb027c054e24cf53e5941\">Create</a> (<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a> model)</td></tr>\n<tr class=\"memdesc:a05d657b039fcb027c054e24cf53e5941\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Call to Create View()  <a href=\"#a05d657b039fcb027c054e24cf53e5941\">More...</a><br /></td></tr>\n<tr class=\"separator:a05d657b039fcb027c054e24cf53e5941\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac983d0c1775718689aff6f7a17c0b929\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac983d0c1775718689aff6f7a17c0b929\">GenerateRequestPostData</a> (string appSecret, string authCode, string callbackUrl)</td></tr>\n<tr class=\"memdesc:ac983d0c1775718689aff6f7a17c0b929\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Formatting the request for OAuth  <a href=\"#ac983d0c1775718689aff6f7a17c0b929\">More...</a><br /></td></tr>\n<tr class=\"separator:ac983d0c1775718689aff6f7a17c0b929\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9726501c86319171adf04dedab87a6a0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a9726501c86319171adf04dedab87a6a0\">GetAccessToken</a> (string body)</td></tr>\n<tr class=\"memdesc:a9726501c86319171adf04dedab87a6a0\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Generate Access Token  <a href=\"#a9726501c86319171adf04dedab87a6a0\">More...</a><br /></td></tr>\n<tr class=\"separator:a9726501c86319171adf04dedab87a6a0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8d6dfbb168d7d87651c361e953feb9d9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">ProfileDetails</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8d6dfbb168d7d87651c361e953feb9d9\">GetProfile</a> (<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a> accessDetails)</td></tr>\n<tr class=\"memdesc:a8d6dfbb168d7d87651c361e953feb9d9\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Profile details  <a href=\"#a8d6dfbb168d7d87651c361e953feb9d9\">More...</a><br /></td></tr>\n<tr class=\"separator:a8d6dfbb168d7d87651c361e953feb9d9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8c1a9720f499884448fa692a6fc8b514\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c1a9720f499884448fa692a6fc8b514\">Refresh_AccessToken</a> (string refreshToken)</td></tr>\n<tr class=\"memdesc:a8c1a9720f499884448fa692a6fc8b514\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Refresh access token  <a href=\"#a8c1a9720f499884448fa692a6fc8b514\">More...</a><br /></td></tr>\n<tr class=\"separator:a8c1a9720f499884448fa692a6fc8b514\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af9d72d23dec7248e6a8b5106209e6e6d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">Accounts.AccountList</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#af9d72d23dec7248e6a8b5106209e6e6d\">GetAccounts</a> (string MemberID, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a> Details)</td></tr>\n<tr class=\"memdesc:af9d72d23dec7248e6a8b5106209e6e6d\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get list of accounts  <a href=\"#af9d72d23dec7248e6a8b5106209e6e6d\">More...</a><br /></td></tr>\n<tr class=\"separator:af9d72d23dec7248e6a8b5106209e6e6d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1a7a16aa8a18f17e1fafb079e5ec5de4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">JsonResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a1a7a16aa8a18f17e1fafb079e5ec5de4\">GetMembers</a> (string accountName, string AccessToken)</td></tr>\n<tr class=\"memdesc:a1a7a16aa8a18f17e1fafb079e5ec5de4\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get members of the account- Not using now  <a href=\"#a1a7a16aa8a18f17e1fafb079e5ec5de4\">More...</a><br /></td></tr>\n<tr class=\"separator:a1a7a16aa8a18f17e1fafb079e5ec5de4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad6b69ff448fc483cb517729d55c55dcc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ad6b69ff448fc483cb517729d55c55dcc\">StartEnvironmentSetupProcess</a> (<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a> model)</td></tr>\n<tr class=\"memdesc:ad6b69ff448fc483cb517729d55c55dcc\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Start the process  <a href=\"#ad6b69ff448fc483cb517729d55c55dcc\">More...</a><br /></td></tr>\n<tr class=\"separator:ad6b69ff448fc483cb517729d55c55dcc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ada15b3cbf0e3c37b0c9e0036b45671c2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ada15b3cbf0e3c37b0c9e0036b45671c2\">EndEnvironmentSetupProcess</a> (IAsyncResult result)</td></tr>\n<tr class=\"memdesc:ada15b3cbf0e3c37b0c9e0036b45671c2\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">End the process  <a href=\"#ada15b3cbf0e3c37b0c9e0036b45671c2\">More...</a><br /></td></tr>\n<tr class=\"separator:ada15b3cbf0e3c37b0c9e0036b45671c2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a78d06b5fc70004a4b23a10a22670b04e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a78d06b5fc70004a4b23a10a22670b04e\">CreateProjectEnvironment</a> (<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a> model, string PAT, string accountName)</td></tr>\n<tr class=\"memdesc:a78d06b5fc70004a4b23a10a22670b04e\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">start provisioning project - calls required  <a href=\"#a78d06b5fc70004a4b23a10a22670b04e\">More...</a><br /></td></tr>\n<tr class=\"separator:a78d06b5fc70004a4b23a10a22670b04e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a990cb5c0fd92cee0d4926b92a5951436\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a990cb5c0fd92cee0d4926b92a5951436\">RenameIterations</a> (<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a> model, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a> _defaultConfiguration, Dictionary&lt; string, string &gt; renameIterations)</td></tr>\n<tr class=\"memdesc:a990cb5c0fd92cee0d4926b92a5951436\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Rename Iterations  <a href=\"#a990cb5c0fd92cee0d4926b92a5951436\">More...</a><br /></td></tr>\n<tr class=\"separator:a990cb5c0fd92cee0d4926b92a5951436\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:affdad07d90ffee27284c3215d538d673\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"affdad07d90ffee27284c3215d538d673\"></a>\nvoid&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CreateRelease</b> (string templatesFolder, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a> model, string json, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a> _configuration, string id, int releaseDefinitionId)</td></tr>\n<tr class=\"separator:affdad07d90ffee27284c3215d538d673\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab1802a3d21c416002c2c7ff57019b6f8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ab1802a3d21c416002c2c7ff57019b6f8\">CreateQueryAndWidgets</a> (string templatesFolder, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a> model, List&lt; string &gt; lstQueries, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a> _defaultConfiguration, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a> _configuration2, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a> _configuration3, <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a> releaseConfig)</td></tr>\n<tr class=\"memdesc:ab1802a3d21c416002c2c7ff57019b6f8\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Dashboard set up operations  <a href=\"#ab1802a3d21c416002c2c7ff57019b6f8\">More...</a><br /></td></tr>\n<tr class=\"separator:ab1802a3d21c416002c2c7ff57019b6f8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4ea213c905f5eb8d420e09d7a919a55d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">JsonResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a4ea213c905f5eb8d420e09d7a919a55d\">CheckForInstalledExtensions</a> (string selectedTemplate, string token, string <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">Account</a>)</td></tr>\n<tr class=\"memdesc:a4ea213c905f5eb8d420e09d7a919a55d\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Checking for Extenison in the account  <a href=\"#a4ea213c905f5eb8d420e09d7a919a55d\">More...</a><br /></td></tr>\n<tr class=\"separator:a4ea213c905f5eb8d420e09d7a919a55d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8c6be4b2363680d958e6fdee4e74b91a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c6be4b2363680d958e6fdee4e74b91a\">InstallExtensions</a> (<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a> model, string accountName, string PAT)</td></tr>\n<tr class=\"memdesc:a8c6be4b2363680d958e6fdee4e74b91a\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Installing <a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_extensions.html\">Extensions</a>  <a href=\"#a8c6be4b2363680d958e6fdee4e74b91a\">More...</a><br /></td></tr>\n<tr class=\"separator:a8c6be4b2363680d958e6fdee4e74b91a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a69d4ebc71322d09e96bab8cd604ebb46\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">JsonResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a69d4ebc71322d09e96bab8cd604ebb46\">SendEmail</a> (<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">Email</a> model)</td></tr>\n<tr class=\"memdesc:a69d4ebc71322d09e96bab8cd604ebb46\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Mail Configuration  <a href=\"#a69d4ebc71322d09e96bab8cd604ebb46\">More...</a><br /></td></tr>\n<tr class=\"separator:a69d4ebc71322d09e96bab8cd604ebb46\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac7c3e39375100aa8c8c3597d5c95c7a1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">JsonResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac7c3e39375100aa8c8c3597d5c95c7a1\">CheckSession</a> ()</td></tr>\n<tr class=\"memdesc:ac7c3e39375100aa8c8c3597d5c95c7a1\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Session data  <a href=\"#ac7c3e39375100aa8c8c3597d5c95c7a1\">More...</a><br /></td></tr>\n<tr class=\"separator:ac7c3e39375100aa8c8c3597d5c95c7a1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:af94f136b0440248a4048ff67e1ca68b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af94f136b0440248a4048ff67e1ca68b2\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isDefaultRepoTodetele</b> = true</td></tr>\n<tr class=\"separator:af94f136b0440248a4048ff67e1ca68b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a84d9d22a1ae3761fd179efca7282ed22\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a84d9d22a1ae3761fd179efca7282ed22\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>websiteUrl</b> = string.Empty</td></tr>\n<tr class=\"separator:a84d9d22a1ae3761fd179efca7282ed22\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaa5b31ea5984e96e2074aa83a18da16c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa5b31ea5984e96e2074aa83a18da16c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>templateUsed</b> = string.Empty</td></tr>\n<tr class=\"separator:aaa5b31ea5984e96e2074aa83a18da16c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a34b9e8b110384be7a22653ab3203d407\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a34b9e8b110384be7a22653ab3203d407\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>projectName</b> = string.Empty</td></tr>\n<tr class=\"separator:a34b9e8b110384be7a22653ab3203d407\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a4ea213c905f5eb8d420e09d7a919a55d\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a4ea213c905f5eb8d420e09d7a919a55d\">&#9670;&nbsp;</a></span>CheckForInstalledExtensions()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">JsonResult VstsDemoBuilder.Controllers.EnvironmentController.CheckForInstalledExtensions </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>selectedTemplate</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>token</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Account</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Checking for Extenison in the account </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">selectedTemplate</td><td></td></tr>\n    <tr><td class=\"paramname\">token</td><td></td></tr>\n    <tr><td class=\"paramname\">Account</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ac7c3e39375100aa8c8c3597d5c95c7a1\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ac7c3e39375100aa8c8c3597d5c95c7a1\">&#9670;&nbsp;</a></span>CheckSession()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">JsonResult VstsDemoBuilder.Controllers.EnvironmentController.CheckSession </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Session data </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a05d657b039fcb027c054e24cf53e5941\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a05d657b039fcb027c054e24cf53e5941\">&#9670;&nbsp;</a></span>Create()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">ActionResult VstsDemoBuilder.Controllers.EnvironmentController.Create </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a>&#160;</td>\n          <td class=\"paramname\"><em>model</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Call to Create View() </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd>View()</dd></dl>\n\n</div>\n</div>\n<a id=\"a78d06b5fc70004a4b23a10a22670b04e\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a78d06b5fc70004a4b23a10a22670b04e\">&#9670;&nbsp;</a></span>CreateProjectEnvironment()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string [] VstsDemoBuilder.Controllers.EnvironmentController.CreateProjectEnvironment </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a>&#160;</td>\n          <td class=\"paramname\"><em>model</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>PAT</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>accountName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>start provisioning project - calls required </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n    <tr><td class=\"paramname\">PAT</td><td></td></tr>\n    <tr><td class=\"paramname\">accountName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ab1802a3d21c416002c2c7ff57019b6f8\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ab1802a3d21c416002c2c7ff57019b6f8\">&#9670;&nbsp;</a></span>CreateQueryAndWidgets()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsDemoBuilder.Controllers.EnvironmentController.CreateQueryAndWidgets </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>templatesFolder</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a>&#160;</td>\n          <td class=\"paramname\"><em>model</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">List&lt; string &gt;&#160;</td>\n          <td class=\"paramname\"><em>lstQueries</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a>&#160;</td>\n          <td class=\"paramname\"><em>_defaultConfiguration</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a>&#160;</td>\n          <td class=\"paramname\"><em>_configuration2</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a>&#160;</td>\n          <td class=\"paramname\"><em>_configuration3</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a>&#160;</td>\n          <td class=\"paramname\"><em>releaseConfig</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Dashboard set up operations </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">templatesFolder</td><td></td></tr>\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n    <tr><td class=\"paramname\">lstQueries</td><td></td></tr>\n    <tr><td class=\"paramname\">_defaultConfiguration</td><td></td></tr>\n    <tr><td class=\"paramname\">_configuration2</td><td></td></tr>\n    <tr><td class=\"paramname\">_configuration3</td><td></td></tr>\n    <tr><td class=\"paramname\">releaseConfig</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"ada15b3cbf0e3c37b0c9e0036b45671c2\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ada15b3cbf0e3c37b0c9e0036b45671c2\">&#9670;&nbsp;</a></span>EndEnvironmentSetupProcess()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsDemoBuilder.Controllers.EnvironmentController.EndEnvironmentSetupProcess </td>\n          <td>(</td>\n          <td class=\"paramtype\">IAsyncResult&#160;</td>\n          <td class=\"paramname\"><em>result</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>End the process </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">result</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"ac983d0c1775718689aff6f7a17c0b929\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ac983d0c1775718689aff6f7a17c0b929\">&#9670;&nbsp;</a></span>GenerateRequestPostData()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsDemoBuilder.Controllers.EnvironmentController.GenerateRequestPostData </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>appSecret</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>authCode</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>callbackUrl</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Formatting the request for OAuth </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">appSecret</td><td></td></tr>\n    <tr><td class=\"paramname\">authCode</td><td></td></tr>\n    <tr><td class=\"paramname\">callbackUrl</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a9726501c86319171adf04dedab87a6a0\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a9726501c86319171adf04dedab87a6a0\">&#9670;&nbsp;</a></span>GetAccessToken()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a> VstsDemoBuilder.Controllers.EnvironmentController.GetAccessToken </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>body</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Generate Access Token </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">body</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"af9d72d23dec7248e6a8b5106209e6e6d\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#af9d72d23dec7248e6a8b5106209e6e6d\">&#9670;&nbsp;</a></span>GetAccounts()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">Accounts.AccountList</a> VstsDemoBuilder.Controllers.EnvironmentController.GetAccounts </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>MemberID</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a>&#160;</td>\n          <td class=\"paramname\"><em>Details</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get list of accounts </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">MemberID</td><td></td></tr>\n    <tr><td class=\"paramname\">Details</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a3b9b20acff06038e1aed58b3bfaaebd4\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a3b9b20acff06038e1aed58b3bfaaebd4\">&#9670;&nbsp;</a></span>GetGroups()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">JsonResult VstsDemoBuilder.Controllers.EnvironmentController.GetGroups </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get groups. based on group selection get template </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a1a7a16aa8a18f17e1fafb079e5ec5de4\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a1a7a16aa8a18f17e1fafb079e5ec5de4\">&#9670;&nbsp;</a></span>GetMembers()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">JsonResult VstsDemoBuilder.Controllers.EnvironmentController.GetMembers </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>accountName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>AccessToken</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get members of the account- Not using now </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">accountName</td><td></td></tr>\n    <tr><td class=\"paramname\">AccessToken</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a8d6dfbb168d7d87651c361e953feb9d9\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a8d6dfbb168d7d87651c361e953feb9d9\">&#9670;&nbsp;</a></span>GetProfile()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">ProfileDetails</a> VstsDemoBuilder.Controllers.EnvironmentController.GetProfile </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a>&#160;</td>\n          <td class=\"paramname\"><em>accessDetails</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Profile details </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">accessDetails</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ae36d3258bea98714970d2fdc5fec6bf3\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ae36d3258bea98714970d2fdc5fec6bf3\">&#9670;&nbsp;</a></span>GetStatusMessage()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsDemoBuilder.Controllers.EnvironmentController.GetStatusMessage </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>id</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get status message to resplay </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">id</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a386641d021e2872eb8a614db7d3b1a6e\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a386641d021e2872eb8a614db7d3b1a6e\">&#9670;&nbsp;</a></span>GetTemplate()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">ContentResult VstsDemoBuilder.Controllers.EnvironmentController.GetTemplate </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>TemplateName</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Template Name to display </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">TemplateName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a8c6be4b2363680d958e6fdee4e74b91a\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a8c6be4b2363680d958e6fdee4e74b91a\">&#9670;&nbsp;</a></span>InstallExtensions()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsDemoBuilder.Controllers.EnvironmentController.InstallExtensions </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a>&#160;</td>\n          <td class=\"paramname\"><em>model</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>accountName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>PAT</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Installing <a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_extensions.html\">Extensions</a> </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n    <tr><td class=\"paramname\">accountName</td><td></td></tr>\n    <tr><td class=\"paramname\">PAT</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a8c1a9720f499884448fa692a6fc8b514\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a8c1a9720f499884448fa692a6fc8b514\">&#9670;&nbsp;</a></span>Refresh_AccessToken()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a> VstsDemoBuilder.Controllers.EnvironmentController.Refresh_AccessToken </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>refreshToken</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Refresh access token </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">refreshToken</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a990cb5c0fd92cee0d4926b92a5951436\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a990cb5c0fd92cee0d4926b92a5951436\">&#9670;&nbsp;</a></span>RenameIterations()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsDemoBuilder.Controllers.EnvironmentController.RenameIterations </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a>&#160;</td>\n          <td class=\"paramname\"><em>model</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a>&#160;</td>\n          <td class=\"paramname\"><em>_defaultConfiguration</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">Dictionary&lt; string, string &gt;&#160;</td>\n          <td class=\"paramname\"><em>renameIterations</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Rename Iterations </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n    <tr><td class=\"paramname\">_defaultConfiguration</td><td></td></tr>\n    <tr><td class=\"paramname\">renameIterations</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"a69d4ebc71322d09e96bab8cd604ebb46\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a69d4ebc71322d09e96bab8cd604ebb46\">&#9670;&nbsp;</a></span>SendEmail()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">JsonResult VstsDemoBuilder.Controllers.EnvironmentController.SendEmail </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">Email</a>&#160;</td>\n          <td class=\"paramname\"><em>model</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Mail Configuration </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ad6b69ff448fc483cb517729d55c55dcc\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ad6b69ff448fc483cb517729d55c55dcc\">&#9670;&nbsp;</a></span>StartEnvironmentSetupProcess()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsDemoBuilder.Controllers.EnvironmentController.StartEnvironmentSetupProcess </td>\n          <td>(</td>\n          <td class=\"paramtype\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a>&#160;</td>\n          <td class=\"paramname\"><em>model</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Start the process </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">model</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Controllers/EnvironmentController.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_controllers_1_1_home_controller-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">Controllers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\">HomeController</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Controllers.HomeController Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\">VstsDemoBuilder.Controllers.HomeController</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Index</b>() (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\">VstsDemoBuilder.Controllers.HomeController</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\">VstsDemoBuilder.Controllers.HomeController</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Controllers.HomeController Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">Controllers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\">HomeController</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Controllers.HomeController Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsDemoBuilder.Controllers.HomeController:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.png\" usemap=\"#VstsDemoBuilder.Controllers.HomeController_map\" alt=\"\"/>\n  <map id=\"VstsDemoBuilder.Controllers.HomeController_map\" name=\"VstsDemoBuilder.Controllers.HomeController_map\">\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a21680270614e05be813b5ee0db2ae8cc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a21680270614e05be813b5ee0db2ae8cc\"></a>\nActionResult&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Index</b> ()</td></tr>\n<tr class=\"separator:a21680270614e05be813b5ee0db2ae8cc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Controllers/HomeController.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_error_handler.html\">ErrorHandler</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\">AiHandleErrorAttribute</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\">VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>OnException</b>(ExceptionContext filterContext) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\">VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\">VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_error_handler.html\">ErrorHandler</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\">AiHandleErrorAttribute</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.png\" usemap=\"#VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute_map\" alt=\"\"/>\n  <map id=\"VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute_map\" name=\"VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute_map\">\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a9fbe20a7f02cbe252d91e4e4f4308771\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9fbe20a7f02cbe252d91e4e4f4308771\"></a>\noverride void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>OnException</b> (ExceptionContext filterContext)</td></tr>\n<tr class=\"separator:a9fbe20a7f02cbe252d91e4e4f4308771\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/ErrorHandler/AiHandleErrorAttribute.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_filter_config-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\">FilterConfig</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.FilterConfig Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\">VstsDemoBuilder.FilterConfig</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>RegisterGlobalFilters</b>(GlobalFilterCollection filters) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\">VstsDemoBuilder.FilterConfig</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\">VstsDemoBuilder.FilterConfig</a></td><td class=\"entry\"><span class=\"mlabel\">static</span></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_filter_config.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.FilterConfig Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\">FilterConfig</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-static-methods\">Static Public Member Functions</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_filter_config-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.FilterConfig Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-static-methods\"></a>\nStatic Public Member Functions</h2></td></tr>\n<tr class=\"memitem:a6015bf13865a83d8815e945da8cc5c63\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6015bf13865a83d8815e945da8cc5c63\"></a>\nstatic void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>RegisterGlobalFilters</b> (GlobalFilterCollection filters)</td></tr>\n<tr class=\"separator:a6015bf13865a83d8815e945da8cc5c63\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/App_Start/FilterConfig.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_access_details-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.AccessDetails Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>access_token</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>expires_in</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>refresh_token</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>token_type</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">VstsDemoBuilder.Models.AccessDetails</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_access_details.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.AccessDetails Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_access_details-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.AccessDetails Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad770a95321992a2b7e5dcf0da2503218\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad770a95321992a2b7e5dcf0da2503218\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>access_token</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad770a95321992a2b7e5dcf0da2503218\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad8757717118d3d821bbc585703b02e1a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad8757717118d3d821bbc585703b02e1a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>token_type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad8757717118d3d821bbc585703b02e1a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0e8fb9803440b6ffa3e19e7e0bbe7d87\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0e8fb9803440b6ffa3e19e7e0bbe7d87\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>expires_in</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0e8fb9803440b6ffa3e19e7e0bbe7d87\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adaa172c0bf79ee4dba0a09bb927a6732\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adaa172c0bf79ee4dba0a09bb927a6732\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>refresh_token</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adaa172c0bf79ee4dba0a09bb927a6732\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/AccessDetails.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_accounts.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Accounts Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\">Accounts</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Accounts Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">AccountList</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html\">Properties</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Accounts.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\">Accounts</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">AccountList</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Accounts.AccountList Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">VstsDemoBuilder.Models.Accounts.AccountList</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">VstsDemoBuilder.Models.Accounts.AccountList</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">VstsDemoBuilder.Models.Accounts.AccountList</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">VstsDemoBuilder.Models.Accounts.AccountList</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">VstsDemoBuilder.Models.Accounts.AccountList</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Accounts.AccountList Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\">Accounts</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">AccountList</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Accounts.AccountList Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab63c68247ebcf8bb05246680552cf7ed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab63c68247ebcf8bb05246680552cf7ed\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab63c68247ebcf8bb05246680552cf7ed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acd245a7b9929ba5e54f9e202b290bd6b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acd245a7b9929ba5e54f9e202b290bd6b\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acd245a7b9929ba5e54f9e202b290bd6b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Accounts.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Accounts.Properties Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\">Accounts</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Accounts.Properties Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Accounts.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\">Accounts</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Accounts.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accountId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>accountName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accountUri</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>properties</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">VstsDemoBuilder.Models.Accounts.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Accounts.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\">Accounts</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Accounts.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a26885c246867daa01714a87804d1e1f7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a26885c246867daa01714a87804d1e1f7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a26885c246867daa01714a87804d1e1f7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2a1074d2650306b1b5a5c5d1daa727c0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2a1074d2650306b1b5a5c5d1daa727c0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountUri</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2a1074d2650306b1b5a5c5d1daa727c0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa4deb7dca3b4e0505738ccbdb13d4551\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa4deb7dca3b4e0505738ccbdb13d4551\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa4deb7dca3b4e0505738ccbdb13d4551\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aebacab9f01af2d1f0bd56d50e9cc50ae\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aebacab9f01af2d1f0bd56d50e9cc50ae\"></a>\n<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html\">Properties</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>properties</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aebacab9f01af2d1f0bd56d50e9cc50ae\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Accounts.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_build_def-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">BuildDef</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.BuildDef Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FileName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Id</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">VstsDemoBuilder.Models.BuildDef</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_build_def.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.BuildDef Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">BuildDef</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_build_def-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.BuildDef Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7807b5c73b1a48f22a056d025edcc7f8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7807b5c73b1a48f22a056d025edcc7f8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7807b5c73b1a48f22a056d025edcc7f8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac1f8bd359a21b8d9d0dc8a4712bcde23\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac1f8bd359a21b8d9d0dc8a4712bcde23\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FileName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac1f8bd359a21b8d9d0dc8a4712bcde23\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab9a4e1088379f47f026efb64855e5d72\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab9a4e1088379f47f026efb64855e5d72\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab9a4e1088379f47f026efb64855e5d72\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a373db5f3de494cb95ca3c2e7c8b18f2e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a373db5f3de494cb95ca3c2e7c8b18f2e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a373db5f3de494cb95ca3c2e7c8b18f2e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_build_release_mapping-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">BuildReleaseMapping</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.BuildReleaseMapping Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">VstsDemoBuilder.Models.BuildReleaseMapping</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>build</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">VstsDemoBuilder.Models.BuildReleaseMapping</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">VstsDemoBuilder.Models.BuildReleaseMapping</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>BuildDefinition</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">VstsDemoBuilder.Models.BuildReleaseMapping</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">VstsDemoBuilder.Models.BuildReleaseMapping</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>release</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">VstsDemoBuilder.Models.BuildReleaseMapping</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">VstsDemoBuilder.Models.BuildReleaseMapping</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.BuildReleaseMapping Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">BuildReleaseMapping</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.BuildReleaseMapping Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4a7df09fd712be9a530363224bd72de2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4a7df09fd712be9a530363224bd72de2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>build</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4a7df09fd712be9a530363224bd72de2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a09afd04f6453408c133562fbdb91d85a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a09afd04f6453408c133562fbdb91d85a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>release</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a09afd04f6453408c133562fbdb91d85a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abc048f76f984b52ded47927a0786ae7a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abc048f76f984b52ded47927a0786ae7a\"></a>\n<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">BuildDef</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BuildDefinition</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abc048f76f984b52ded47927a0786ae7a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_configuration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Configuration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GitRepositoryId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Identity</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MoveToProject</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PersonalAccessToken</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PickListId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProcessId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Project</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Query</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>QueryId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Team</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UriString</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WorkItemId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WorkItemIds</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_configuration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Configuration Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_configuration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Configuration Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsDemoBuilder.Models.Configuration:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_demo_builder_1_1_models_1_1_configuration.png\" usemap=\"#VstsDemoBuilder.Models.Configuration_map\" alt=\"\"/>\n  <map id=\"VstsDemoBuilder.Models.Configuration_map\" name=\"VstsDemoBuilder.Models.Configuration_map\">\n<area href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\" alt=\"VstsDemoBuilder.Models.IConfiguration\" shape=\"rect\" coords=\"0,0,236,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a49ef7c13c560fcc1d904e1bd7d72c362\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a49ef7c13c560fcc1d904e1bd7d72c362\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a49ef7c13c560fcc1d904e1bd7d72c362\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3dd6c28f29140b6906eacc12bf63dccc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3dd6c28f29140b6906eacc12bf63dccc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3dd6c28f29140b6906eacc12bf63dccc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aab58def26e87d87427d67c038ccbc74c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aab58def26e87d87427d67c038ccbc74c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aab58def26e87d87427d67c038ccbc74c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aac8f7f53606b3dbb14067f1d5cc8e2a9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aac8f7f53606b3dbb14067f1d5cc8e2a9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aac8f7f53606b3dbb14067f1d5cc8e2a9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afc3f4ce499cd78d5c5ee7d13b3126fbe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afc3f4ce499cd78d5c5ee7d13b3126fbe\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afc3f4ce499cd78d5c5ee7d13b3126fbe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5556b6940f590eab9ac3f0338ac64057\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5556b6940f590eab9ac3f0338ac64057\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5556b6940f590eab9ac3f0338ac64057\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3f411263b998799eda0f12636e7de046\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3f411263b998799eda0f12636e7de046\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3f411263b998799eda0f12636e7de046\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0cd19d96a6ba887c62e98a68c32e5279\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0cd19d96a6ba887c62e98a68c32e5279\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0cd19d96a6ba887c62e98a68c32e5279\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a872d730a9d11bbb980a2ec44839560af\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a872d730a9d11bbb980a2ec44839560af\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a872d730a9d11bbb980a2ec44839560af\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a094f39daafad11ca981773b26173324a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a094f39daafad11ca981773b26173324a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a094f39daafad11ca981773b26173324a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1c7379beb181f56174ed59e08a07c323\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1c7379beb181f56174ed59e08a07c323\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1c7379beb181f56174ed59e08a07c323\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abe1c0d9c7249cad2b5f716406edeb80f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abe1c0d9c7249cad2b5f716406edeb80f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abe1c0d9c7249cad2b5f716406edeb80f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6703afd0b93a6173a209e13cc3bf12b5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6703afd0b93a6173a209e13cc3bf12b5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6703afd0b93a6173a209e13cc3bf12b5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a26d98dc92342fe5304a1bbbedc1fc9e6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a26d98dc92342fe5304a1bbbedc1fc9e6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a26d98dc92342fe5304a1bbbedc1fc9e6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td></tr>\n<tr class=\"memitem:a89ee71042990665905fbf2213963fc4f inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a89ee71042990665905fbf2213963fc4f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a89ee71042990665905fbf2213963fc4f inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1449400a879343330ea98cba0598a83d inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1449400a879343330ea98cba0598a83d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1449400a879343330ea98cba0598a83d inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5f0c8c64f8cf50cc4a5f2412b71a75c0 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5f0c8c64f8cf50cc4a5f2412b71a75c0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5f0c8c64f8cf50cc4a5f2412b71a75c0 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a269cb80f7418ecf4c172e45a00f06f28 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a269cb80f7418ecf4c172e45a00f06f28\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a269cb80f7418ecf4c172e45a00f06f28 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9f489f687fa444323ddeceb22e5a11d9 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9f489f687fa444323ddeceb22e5a11d9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9f489f687fa444323ddeceb22e5a11d9 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7749ca3465bb17e7fc2417f7211e0715 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7749ca3465bb17e7fc2417f7211e0715\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7749ca3465bb17e7fc2417f7211e0715 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ace8abf7dd9b043defbd2a54f0e0f3f22 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ace8abf7dd9b043defbd2a54f0e0f3f22\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ace8abf7dd9b043defbd2a54f0e0f3f22 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a11d38bf8e1537bda5bc8f09a9cb9ed54 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a11d38bf8e1537bda5bc8f09a9cb9ed54\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a11d38bf8e1537bda5bc8f09a9cb9ed54 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a15c943c58b8136080dac36039fd1fb4d inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a15c943c58b8136080dac36039fd1fb4d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a15c943c58b8136080dac36039fd1fb4d inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a23acfb4a7652b43337df401da10e49a5 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a23acfb4a7652b43337df401da10e49a5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a23acfb4a7652b43337df401da10e49a5 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac5390f18f0b97ff00d0ea96d380da39a inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac5390f18f0b97ff00d0ea96d380da39a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac5390f18f0b97ff00d0ea96d380da39a inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a129b27cd04dbbae4d176fa4ce97ef2b6 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a129b27cd04dbbae4d176fa4ce97ef2b6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a129b27cd04dbbae4d176fa4ce97ef2b6 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aedb08f3de9e8cc57587feb6edea899fe inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aedb08f3de9e8cc57587feb6edea899fe\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aedb08f3de9e8cc57587feb6edea899fe inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7339cd106daaa6d93e722ffc0ebe8286 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7339cd106daaa6d93e722ffc0ebe8286\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7339cd106daaa6d93e722ffc0ebe8286 inherit properties_interface_vsts_demo_builder_1_1_models_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Configuration.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_dashboard-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Dashboard Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accessToken</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>accountName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accountsForDdl</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>accURL</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Email</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ErrList</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>errors</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>errpath</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>hasAccount</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>NewPat</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>NewProjectName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Projects</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>refreshToken</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SelectedID</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>srcProjectId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SrcProjectName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>srcTeamId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SuccessMsg</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>TargetAccountName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>uid</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>VersionControl</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_dashboard.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Dashboard Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Dashboard Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a45f08b7efcf4cb170eab2782339f3930\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a45f08b7efcf4cb170eab2782339f3930\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uid</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a45f08b7efcf4cb170eab2782339f3930\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a610e172846abd50f5f5faa1b858561ff\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a610e172846abd50f5f5faa1b858561ff\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a610e172846abd50f5f5faa1b858561ff\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a91f820032dad2fbee0458f66a6636374\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a91f820032dad2fbee0458f66a6636374\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a91f820032dad2fbee0458f66a6636374\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8e01eaa13b64f6ad1b1a92cc9c6574d8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8e01eaa13b64f6ad1b1a92cc9c6574d8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8e01eaa13b64f6ad1b1a92cc9c6574d8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aedb01b2a1f0ceeba764b0743f3563ed1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aedb01b2a1f0ceeba764b0743f3563ed1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TargetAccountName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aedb01b2a1f0ceeba764b0743f3563ed1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae834a3fb5c72e9d2ebb3fbb537f715cd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae834a3fb5c72e9d2ebb3fbb537f715cd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>VersionControl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae834a3fb5c72e9d2ebb3fbb537f715cd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab5b90e5b22d4f5a22b46e4651944d74a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab5b90e5b22d4f5a22b46e4651944d74a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>refreshToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab5b90e5b22d4f5a22b46e4651944d74a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa9c4e4c53baca677de5243212de28851\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa9c4e4c53baca677de5243212de28851\"></a>\n<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Projects</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa9c4e4c53baca677de5243212de28851\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a67830760c0e391683c8ad3580b9b780d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a67830760c0e391683c8ad3580b9b780d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>srcProjectId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a67830760c0e391683c8ad3580b9b780d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a12ce3641ce4635d0bfc82b9fa77bd3f9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a12ce3641ce4635d0bfc82b9fa77bd3f9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>srcTeamId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a12ce3641ce4635d0bfc82b9fa77bd3f9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a54348204f48922fbdc91d34ed8896ebb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a54348204f48922fbdc91d34ed8896ebb\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountsForDdl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a54348204f48922fbdc91d34ed8896ebb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acd0f32d2322049acc3f613cbf9c9555c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acd0f32d2322049acc3f613cbf9c9555c\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasAccount</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acd0f32d2322049acc3f613cbf9c9555c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5c36032c5576602d39d3d98ca4fdecf8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5c36032c5576602d39d3d98ca4fdecf8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accURL</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5c36032c5576602d39d3d98ca4fdecf8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3b21e2d2610c7a225bc5bb3f02777498\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3b21e2d2610c7a225bc5bb3f02777498\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SuccessMsg</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3b21e2d2610c7a225bc5bb3f02777498\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae1a2bbfc0fc8961a006bdf4b1258947f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae1a2bbfc0fc8961a006bdf4b1258947f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ErrList</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae1a2bbfc0fc8961a006bdf4b1258947f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abe6af95134ba30b7e84023831259a542\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abe6af95134ba30b7e84023831259a542\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Email</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abe6af95134ba30b7e84023831259a542\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa9ce909bccd542c921cf00a1b6d2510a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa9ce909bccd542c921cf00a1b6d2510a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa9ce909bccd542c921cf00a1b6d2510a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a44a4116411c907de7fbc25e6c88d7932\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a44a4116411c907de7fbc25e6c88d7932\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>errpath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a44a4116411c907de7fbc25e6c88d7932\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a916a844e263e53bae22f6a347f7efab8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a916a844e263e53bae22f6a347f7efab8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>NewPat</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a916a844e263e53bae22f6a347f7efab8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac680af908d76bd9749feeec5b0e80c2a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac680af908d76bd9749feeec5b0e80c2a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac680af908d76bd9749feeec5b0e80c2a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9ed85c4105f240d8d89dcbe1fd49c10a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9ed85c4105f240d8d89dcbe1fd49c10a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SelectedID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9ed85c4105f240d8d89dcbe1fd49c10a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0f5889ddb5f53fe7c5642a877559be3f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0f5889ddb5f53fe7c5642a877559be3f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SrcProjectName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0f5889ddb5f53fe7c5642a877559be3f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae481413d4d32703e46e35b4ab7e1d541\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae481413d4d32703e46e35b4ab7e1d541\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>NewProjectName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae481413d4d32703e46e35b4ab7e1d541\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afb9f0dcd0ea528f3241a555d9cf457cd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb9f0dcd0ea528f3241a555d9cf457cd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>errors</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb9f0dcd0ea528f3241a555d9cf457cd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Dashboard.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_default-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">Default</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Default Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Agile</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>CMMI</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Queue</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SCRUM</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">VstsDemoBuilder.Models.Default</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_default.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Default Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">Default</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_default-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Default Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a834adb000f112c563b53a3e4bcd7556f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a834adb000f112c563b53a3e4bcd7556f\"></a>\nconst string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Agile</b> = &quot;adcc42ab-9882-485e-a3ed-7678f01f66bc&quot;</td></tr>\n<tr class=\"separator:a834adb000f112c563b53a3e4bcd7556f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af36e8fdd6c0363967684cadcf557987a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af36e8fdd6c0363967684cadcf557987a\"></a>\nconst string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SCRUM</b> = &quot;6b724908-ef14-45cf-84f8-768b5384da45&quot;</td></tr>\n<tr class=\"separator:af36e8fdd6c0363967684cadcf557987a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a573c93615c5f14cac91a142f154d1e05\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a573c93615c5f14cac91a142f154d1e05\"></a>\nconst string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CMMI</b> = &quot;27450541-8e31-4150-9947-dc59f998fc01&quot;</td></tr>\n<tr class=\"separator:a573c93615c5f14cac91a142f154d1e05\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a121050e849c5ce86c3a08223dcc680b4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a121050e849c5ce86c3a08223dcc680b4\"></a>\nconst string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Queue</b> = &quot;Hosted&quot;</td></tr>\n<tr class=\"separator:a121050e849c5ce86c3a08223dcc680b4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Default.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_email-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">Email</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Email Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>AccountName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>EmailAddress</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ErrorLog</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SendEmail</b>(string toEmail, string body, string subject) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">VstsDemoBuilder.Models.Email</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_email.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Email Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">Email</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_email-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Email Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:af683ce06cdb3cadc83109f361755b355\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af683ce06cdb3cadc83109f361755b355\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SendEmail</b> (string toEmail, string body, string subject)</td></tr>\n<tr class=\"separator:af683ce06cdb3cadc83109f361755b355\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a21fcc33db645c455b085ffe43bf85a64\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a21fcc33db645c455b085ffe43bf85a64\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>EmailAddress</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a21fcc33db645c455b085ffe43bf85a64\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad331a6cc88cefa517a6478a57af51af6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad331a6cc88cefa517a6478a57af51af6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>AccountName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad331a6cc88cefa517a6478a57af51af6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7e6ff04fb2e03180641c4a4070bb4d69\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7e6ff04fb2e03180641c4a4070bb4d69\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ErrorLog</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7e6ff04fb2e03180641c4a4070bb4d69\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Email.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_environment_values-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">EnvironmentValues</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.EnvironmentValues Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>AgentQueues</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>BoardRowFieldName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProjectId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ProjectName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>pullRequests</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>RepositoryIdList</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ServiceEndpoints</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UserUniqueId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>UserUniquename</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_environment_values.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.EnvironmentValues Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">EnvironmentValues</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.EnvironmentValues Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:afff108206c2a97aeedec03d8444de566\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afff108206c2a97aeedec03d8444de566\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UserUniquename</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afff108206c2a97aeedec03d8444de566\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a966854431abd3cb9252bc774d25c42f7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a966854431abd3cb9252bc774d25c42f7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UserUniqueId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a966854431abd3cb9252bc774d25c42f7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a95aade294cd2464a8051249c246a03d1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a95aade294cd2464a8051249c246a03d1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProjectId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a95aade294cd2464a8051249c246a03d1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a14d52f1184707c3500ddb70eccb8f968\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a14d52f1184707c3500ddb70eccb8f968\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProjectName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a14d52f1184707c3500ddb70eccb8f968\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adb9b7ab8dff7853a585e1e6e4a45a515\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb9b7ab8dff7853a585e1e6e4a45a515\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>RepositoryIdList</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adb9b7ab8dff7853a585e1e6e4a45a515\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a24b3c5061e59d57c9049b86047c6d7af\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a24b3c5061e59d57c9049b86047c6d7af\"></a>\nDictionary&lt; string, int &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>AgentQueues</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a24b3c5061e59d57c9049b86047c6d7af\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8d22f62f2440b7839ca33c734f6d8015\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8d22f62f2440b7839ca33c734f6d8015\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ServiceEndpoints</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8d22f62f2440b7839ca33c734f6d8015\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afcd78f1075e5452e5b4bea83ee95980c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afcd78f1075e5452e5b4bea83ee95980c\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pullRequests</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afcd78f1075e5452e5b4bea83ee95980c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae65872c9d63cdf80c673233af785eb31\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae65872c9d63cdf80c673233af785eb31\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BoardRowFieldName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae65872c9d63cdf80c673233af785eb31\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_group_details-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">GroupDetails</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.GroupDetails Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">VstsDemoBuilder.Models.GroupDetails</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Groups</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">VstsDemoBuilder.Models.GroupDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">VstsDemoBuilder.Models.GroupDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GroupwiseTemplates</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">VstsDemoBuilder.Models.GroupDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">VstsDemoBuilder.Models.GroupDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PrivateGroups</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">VstsDemoBuilder.Models.GroupDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">VstsDemoBuilder.Models.GroupDetails</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_group_details.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.GroupDetails Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">GroupDetails</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_group_details-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.GroupDetails Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a9140b302a4b84f5c2795e24abfa0da07\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9140b302a4b84f5c2795e24abfa0da07\"></a>\nIList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Groups</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9140b302a4b84f5c2795e24abfa0da07\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad6e7527fcd0f3a9754ee51825290987f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad6e7527fcd0f3a9754ee51825290987f\"></a>\nIList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PrivateGroups</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad6e7527fcd0f3a9754ee51825290987f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8a1a6e2d5ab2404e1109c763a47edf9b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8a1a6e2d5ab2404e1109c763a47edf9b\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">GroupwiseTemplate</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GroupwiseTemplates</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8a1a6e2d5ab2404e1109c763a47edf9b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_groupwise_template-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">GroupwiseTemplate</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.GroupwiseTemplate Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">VstsDemoBuilder.Models.GroupwiseTemplate</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Groups</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">VstsDemoBuilder.Models.GroupwiseTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">VstsDemoBuilder.Models.GroupwiseTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Template</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">VstsDemoBuilder.Models.GroupwiseTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">VstsDemoBuilder.Models.GroupwiseTemplate</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.GroupwiseTemplate Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">GroupwiseTemplate</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.GroupwiseTemplate Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4c953711dc5fbad16f53dee452ede241\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4c953711dc5fbad16f53dee452ede241\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Groups</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4c953711dc5fbad16f53dee452ede241\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a07113f35e3c16fe11906eacf091bbee2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a07113f35e3c16fe11906eacf091bbee2\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">Template</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Template</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a07113f35e3c16fe11906eacf091bbee2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_location.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Location Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location.html\">Location</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Location Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">IPHostGenerator</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Location.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location.html\">Location</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">IPHostGenerator</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Location.IPHostGenerator Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">VstsDemoBuilder.Models.Location.IPHostGenerator</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>GetLocation</b>(string varIPAddress) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">VstsDemoBuilder.Models.Location.IPHostGenerator</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">VstsDemoBuilder.Models.Location.IPHostGenerator</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GetVisitorDetails</b>() (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">VstsDemoBuilder.Models.Location.IPHostGenerator</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">VstsDemoBuilder.Models.Location.IPHostGenerator</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Location.IPHostGenerator Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location.html\">Location</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">IPHostGenerator</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Location.IPHostGenerator Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a93b89fccc091c7b5785c2ccb4c57456f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a93b89fccc091c7b5785c2ccb4c57456f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GetVisitorDetails</b> ()</td></tr>\n<tr class=\"separator:a93b89fccc091c7b5785c2ccb4c57456f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a44af429710c012d700855d7c7694a9fe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a44af429710c012d700855d7c7694a9fe\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GetLocation</b> (string varIPAddress)</td></tr>\n<tr class=\"separator:a44af429710c012d700855d7c7694a9fe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Location.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_login_model-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">LoginModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.LoginModel Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>AccountName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Event</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PAT</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>templateid</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">VstsDemoBuilder.Models.LoginModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_login_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.LoginModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">LoginModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_login_model-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.LoginModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6f209339823fa33195a7def95a4d3b9d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6f209339823fa33195a7def95a4d3b9d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>AccountName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6f209339823fa33195a7def95a4d3b9d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a122f945e352c68056de07da5d7210735\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a122f945e352c68056de07da5d7210735\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PAT</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a122f945e352c68056de07da5d7210735\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af7d1a8a1ba5838923f177f2a2fb97077\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af7d1a8a1ba5838923f177f2a2fb97077\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af7d1a8a1ba5838923f177f2a2fb97077\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a62b348381f38b140681f5033d84a4c24\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a62b348381f38b140681f5033d84a4c24\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Event</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a62b348381f38b140681f5033d84a4c24\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a886e886d769c190d7dbce95c2ea910c4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a886e886d769c190d7dbce95c2ea910c4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a886e886d769c190d7dbce95c2ea910c4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac9c49546450495d8133bb0b3ddd612e6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac9c49546450495d8133bb0b3ddd612e6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>templateid</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac9c49546450495d8133bb0b3ddd612e6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/LoginModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_profile_details-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">ProfileDetails</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProfileDetails Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>coreRevision</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>emailAddress</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ErrorMessage</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>publicAlias</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>revision</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>timeStamp</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_profile_details.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.ProfileDetails Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">ProfileDetails</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProfileDetails Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a481185fb4c116a77d5f32f86a0967496\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a481185fb4c116a77d5f32f86a0967496\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a481185fb4c116a77d5f32f86a0967496\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acd95115877450662df4cc1b5ecec8bd6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acd95115877450662df4cc1b5ecec8bd6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>publicAlias</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acd95115877450662df4cc1b5ecec8bd6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af35ff9b7f1ad04f147321b9adc60cad0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af35ff9b7f1ad04f147321b9adc60cad0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>emailAddress</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af35ff9b7f1ad04f147321b9adc60cad0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a31ca994ce3fbb302d0754eed7e40a0d4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a31ca994ce3fbb302d0754eed7e40a0d4\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>coreRevision</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a31ca994ce3fbb302d0754eed7e40a0d4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a66296d3b10d96a433e9e47facebd1897\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a66296d3b10d96a433e9e47facebd1897\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>timeStamp</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a66296d3b10d96a433e9e47facebd1897\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad14d0dff00d36cafddf37c5cd2ff40f3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad14d0dff00d36cafddf37c5cd2ff40f3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad14d0dff00d36cafddf37c5cd2ff40f3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9e0a0256996b79722bdd8b40c66c0f3e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9e0a0256996b79722bdd8b40c66c0f3e\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>revision</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9e0a0256996b79722bdd8b40c66c0f3e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae5ab4728c36b94b7ece9e073f630b54c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae5ab4728c36b94b7ece9e073f630b54c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ErrorMessage</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae5ab4728c36b94b7ece9e073f630b54c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/ProfileDetails.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Project Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accessToken</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>accountName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accountsForDropdown</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>accountUsersForDdl</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accountUsersForWi</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>BuildDefinitions</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>BuildReleaseMap</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Email</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Environment</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Greeting</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>hasAccount</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isAgreeTerms</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>IsAuthenticated</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isExtensionNeeded</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MemberID</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Parameters</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProjectName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>refreshToken</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Region</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ReleaseDefinitions</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SelectedTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>selectedUsers</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SonarQubeDNS</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SupportEmail</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TemplateId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>TemplateName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Templates</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UserMethod</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>websiteUrl</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">VstsDemoBuilder.Models.Project</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Project Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_project-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Project Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a0c0277935a8686381b5fb9efbbb87cec\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0c0277935a8686381b5fb9efbbb87cec\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Greeting</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0c0277935a8686381b5fb9efbbb87cec\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3a0f333f49c0c1a3156ff23dc0790a45\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3a0f333f49c0c1a3156ff23dc0790a45\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3a0f333f49c0c1a3156ff23dc0790a45\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abc6e3061b14842b05afbd786031f4930\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abc6e3061b14842b05afbd786031f4930\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MemberID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abc6e3061b14842b05afbd786031f4930\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8080a638e54e7cd84c855221cde0d9f1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8080a638e54e7cd84c855221cde0d9f1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProjectName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8080a638e54e7cd84c855221cde0d9f1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9fcfe1d053802068f14b42db25a15dbe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9fcfe1d053802068f14b42db25a15dbe\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SelectedTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9fcfe1d053802068f14b42db25a15dbe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a613c64cebf8d74852c4b887bba2a5c2e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a613c64cebf8d74852c4b887bba2a5c2e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TemplateId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a613c64cebf8d74852c4b887bba2a5c2e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a97154e026bc8595161caecb85f1977f2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a97154e026bc8595161caecb85f1977f2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TemplateName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a97154e026bc8595161caecb85f1977f2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5dfff66d1cd47b56e6d6c476e4dfeab8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5dfff66d1cd47b56e6d6c476e4dfeab8\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>IsAuthenticated</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5dfff66d1cd47b56e6d6c476e4dfeab8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9fb529501a68f05f81832c4fcedcf186\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9fb529501a68f05f81832c4fcedcf186\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SupportEmail</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9fb529501a68f05f81832c4fcedcf186\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5f955e3faba94e1f2a70d71373f9e4c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5f955e3faba94e1f2a70d71373f9e4c6\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Templates</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5f955e3faba94e1f2a70d71373f9e4c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a24c214655e6054fea9912291b5e90784\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a24c214655e6054fea9912291b5e90784\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Parameters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a24c214655e6054fea9912291b5e90784\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0a762bf66370d5ea965e4ddcb0188f26\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0a762bf66370d5ea965e4ddcb0188f26\"></a>\n<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">EnvironmentValues</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Environment</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0a762bf66370d5ea965e4ddcb0188f26\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abf6af4dbb443468a224a5bc141dddb93\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abf6af4dbb443468a224a5bc141dddb93\"></a>\nList&lt; <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">BuildDef</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BuildDefinitions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abf6af4dbb443468a224a5bc141dddb93\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a374999e2e8573bcc276c5cc744148823\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a374999e2e8573bcc276c5cc744148823\"></a>\nList&lt; <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">ReleaseDef</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ReleaseDefinitions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a374999e2e8573bcc276c5cc744148823\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a11b610344214c332e10dfe99f2c7947c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a11b610344214c332e10dfe99f2c7947c\"></a>\nList&lt; <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">BuildReleaseMapping</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BuildReleaseMap</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a11b610344214c332e10dfe99f2c7947c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3cb7947f29055627c166d6618902d42e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3cb7947f29055627c166d6618902d42e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UserMethod</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3cb7947f29055627c166d6618902d42e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a95ed5779dfd552be873814e1bfffd96b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a95ed5779dfd552be873814e1bfffd96b\"></a>\nList&lt; SelectListItem &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountUsersForDdl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a95ed5779dfd552be873814e1bfffd96b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad7f7f4ecf13fae0f611a0861aea85dcc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad7f7f4ecf13fae0f611a0861aea85dcc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>selectedUsers</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad7f7f4ecf13fae0f611a0861aea85dcc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6a1875c41f325dd321c43262286b2979\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a1875c41f325dd321c43262286b2979\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountUsersForWi</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6a1875c41f325dd321c43262286b2979\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab559c5b913753f14fc751cac4ac84221\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab559c5b913753f14fc751cac4ac84221\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SonarQubeDNS</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab559c5b913753f14fc751cac4ac84221\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0648ea481a7e847cc302efd3c55a75a3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0648ea481a7e847cc302efd3c55a75a3\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isExtensionNeeded</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0648ea481a7e847cc302efd3c55a75a3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af0ae998c87bcdf22268891f82a1d8440\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af0ae998c87bcdf22268891f82a1d8440\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isAgreeTerms</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af0ae998c87bcdf22268891f82a1d8440\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a06f60791aa4dde9bc531f3a84f1d1939\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a06f60791aa4dde9bc531f3a84f1d1939\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>websiteUrl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a06f60791aa4dde9bc531f3a84f1d1939\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ace0a364b35f26d68aab4a90fe2c75b34\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ace0a364b35f26d68aab4a90fe2c75b34\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Region</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ace0a364b35f26d68aab4a90fe2c75b34\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a267d05cf6abba285d7a022f19455c842\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a267d05cf6abba285d7a022f19455c842\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a267d05cf6abba285d7a022f19455c842\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac49b9798afa7390972695e84db803f8a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac49b9798afa7390972695e84db803f8a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>refreshToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac49b9798afa7390972695e84db803f8a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9cffa5b0282a6692aa022d25799337c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9cffa5b0282a6692aa022d25799337c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Email</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9cffa5b0282a6692aa022d25799337c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a405df8a6ec98ef5eb5d4a367da3816a3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a405df8a6ec98ef5eb5d4a367da3816a3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a405df8a6ec98ef5eb5d4a367da3816a3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af663447ab93ef1567f9e2a0cc94479cc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af663447ab93ef1567f9e2a0cc94479cc\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountsForDropdown</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af663447ab93ef1567f9e2a0cc94479cc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a90ad284d1e3a22bd64b5fbcda755db72\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a90ad284d1e3a22bd64b5fbcda755db72\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a90ad284d1e3a22bd64b5fbcda755db72\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a326a1449d44e4c8c56d3b36bf6a61343\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a326a1449d44e4c8c56d3b36bf6a61343\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasAccount</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a326a1449d44e4c8c56d3b36bf6a61343\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_list.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.ProjectList Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectList Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">Authentication</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">ProjectCount</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/ProjectList.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">Authentication</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectList.Authentication Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accname</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>accURL</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ErrList</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>errors</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>pat</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SelectedID</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SuccessMsg</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.ProjectList.Authentication Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">Authentication</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectList.Authentication Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aaa03e81ba8d39cf82640a42b700c10be\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa03e81ba8d39cf82640a42b700c10be\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accname</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa03e81ba8d39cf82640a42b700c10be\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a010149b22480c055e08b96dd07d734e0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a010149b22480c055e08b96dd07d734e0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pat</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a010149b22480c055e08b96dd07d734e0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae322b953630707537020cfdb09ce60b1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae322b953630707537020cfdb09ce60b1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae322b953630707537020cfdb09ce60b1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac52b39875c02f785d4824fd7ccaa4ce3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac52b39875c02f785d4824fd7ccaa4ce3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ErrList</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac52b39875c02f785d4824fd7ccaa4ce3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3cfe694d8fbab0856c0e3df730635701\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3cfe694d8fbab0856c0e3df730635701\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SuccessMsg</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3cfe694d8fbab0856c0e3df730635701\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a530413b0ce6aab641d523ba202b2830a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a530413b0ce6aab641d523ba202b2830a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>errors</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a530413b0ce6aab641d523ba202b2830a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a60dba0f9d005888ac332814acbbfaa97\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a60dba0f9d005888ac332814acbbfaa97\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accURL</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a60dba0f9d005888ac332814acbbfaa97\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0f846cdcd43a89ff84fd3616c9d73de3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0f846cdcd43a89ff84fd3616c9d73de3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SelectedID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0f846cdcd43a89ff84fd3616c9d73de3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/ProjectList.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">ProjectCount</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectList.ProjectCount Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>AccName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>accURL</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>errmsg</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PAT</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ProjectList</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProjectName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SelectedID</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>successcode</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SuccessMsg</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.ProjectList.ProjectCount Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">ProjectCount</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectList.ProjectCount Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:af69ea396e01f98a6751799e78a5fd393\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af69ea396e01f98a6751799e78a5fd393\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af69ea396e01f98a6751799e78a5fd393\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae397d09bba16ff3e99d735e3bb49bc94\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae397d09bba16ff3e99d735e3bb49bc94\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>successcode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae397d09bba16ff3e99d735e3bb49bc94\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaeb01291b73626bd99c4e5653906cd8d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaeb01291b73626bd99c4e5653906cd8d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaeb01291b73626bd99c4e5653906cd8d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6a54cb39fcfe8ac4a2f2d0f0125c9b8b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a54cb39fcfe8ac4a2f2d0f0125c9b8b\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6a54cb39fcfe8ac4a2f2d0f0125c9b8b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad2c63a0af6c8cb6beceed423b783ac46\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad2c63a0af6c8cb6beceed423b783ac46\"></a>\nSelectList&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProjectList</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad2c63a0af6c8cb6beceed423b783ac46\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab21a9482cfc10028e2190d4e48d5355b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab21a9482cfc10028e2190d4e48d5355b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SelectedID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab21a9482cfc10028e2190d4e48d5355b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7e5608ef4295907e94fb4bdea57fab28\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7e5608ef4295907e94fb4bdea57fab28\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7e5608ef4295907e94fb4bdea57fab28\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5867fa1a63aecda34ad93215ea343a5b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5867fa1a63aecda34ad93215ea343a5b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProjectName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5867fa1a63aecda34ad93215ea343a5b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab195b07b6970b69378a7fd47a87638e3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab195b07b6970b69378a7fd47a87638e3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>AccName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab195b07b6970b69378a7fd47a87638e3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6275496cc39b7dd4e4ac86383f89eda3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6275496cc39b7dd4e4ac86383f89eda3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PAT</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6275496cc39b7dd4e4ac86383f89eda3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4230e7ad20a2e085c10ba938f48c14f9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4230e7ad20a2e085c10ba938f48c14f9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>errmsg</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4230e7ad20a2e085c10ba938f48c14f9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac44a88bb704a8f73fee84b7fe9c4eb17\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac44a88bb704a8f73fee84b7fe9c4eb17\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SuccessMsg</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac44a88bb704a8f73fee84b7fe9c4eb17\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3e8ae9c629b12366e5e1286c90ee2cc6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3e8ae9c629b12366e5e1286c90ee2cc6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accURL</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3e8ae9c629b12366e5e1286c90ee2cc6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/ProjectList.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectList.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>state</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">VstsDemoBuilder.Models.ProjectList.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.ProjectList.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectList.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a9a3fbc720df776930f76f1b5454e604b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9a3fbc720df776930f76f1b5454e604b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9a3fbc720df776930f76f1b5454e604b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0f3aa52fb2af1d4062bc43002bbe268d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0f3aa52fb2af1d4062bc43002bbe268d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0f3aa52fb2af1d4062bc43002bbe268d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac600d128a9cb48f61de71b548d628159\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac600d128a9cb48f61de71b548d628159\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac600d128a9cb48f61de71b548d628159\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8253d295e4aafa3c4896cf145bcbafa4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8253d295e4aafa3c4896cf145bcbafa4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8253d295e4aafa3c4896cf145bcbafa4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a33eac25f37d706af302e88d5a3a873b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a33eac25f37d706af302e88d5a3a873b2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>state</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a33eac25f37d706af302e88d5a3a873b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/ProjectList.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_settings-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">ProjectSettings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectSettings Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>queues</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>renameIterations</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>tags</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>users</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">VstsDemoBuilder.Models.ProjectSettings</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_settings.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.ProjectSettings Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">ProjectSettings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectSettings Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a999a942bda5892828a654da33c06ebd7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a999a942bda5892828a654da33c06ebd7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a999a942bda5892828a654da33c06ebd7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aec56e0cb72c447475a52b78c6bb71586\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aec56e0cb72c447475a52b78c6bb71586\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>users</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aec56e0cb72c447475a52b78c6bb71586\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a416eb8213fd93fdc0ebf34b0bc1d7090\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a416eb8213fd93fdc0ebf34b0bc1d7090\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tags</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a416eb8213fd93fdc0ebf34b0bc1d7090\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a697265f3a72e96c3ec57840c428264fb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a697265f3a72e96c3ec57840c428264fb\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queues</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a697265f3a72e96c3ec57840c428264fb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a65bb397817b7799fa88acd0f882ffc17\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a65bb397817b7799fa88acd0f882ffc17\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>renameIterations</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a65bb397817b7799fa88acd0f882ffc17\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_template-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">ProjectTemplate</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectTemplate Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>BoardColumns</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>BoardRows</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>BugfromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>CardField</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>CardStyle</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Chart</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>CreateService</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Description</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>EpicfromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>FeaturefromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PBIfromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProjectSettings</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SetEpic</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SourceCode</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>TaskfromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TeamArea</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Teams</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TestCasefromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>TestPlanfromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TestSuitefromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UserStoriesFromTemplate</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Widget</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_project_template.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.ProjectTemplate Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">ProjectTemplate</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_project_template-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ProjectTemplate Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aed53eb7d47aa4378d2f4ca8f56a9018e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aed53eb7d47aa4378d2f4ca8f56a9018e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aed53eb7d47aa4378d2f4ca8f56a9018e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7050077555157d7ac6c3fba1d25fefcb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7050077555157d7ac6c3fba1d25fefcb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7050077555157d7ac6c3fba1d25fefcb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af3a7dff5c70f1cf3d3279e98666f4fd2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af3a7dff5c70f1cf3d3279e98666f4fd2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Teams</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af3a7dff5c70f1cf3d3279e98666f4fd2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a039d8579ab74e3ba91f59e30d52eaf8f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a039d8579ab74e3ba91f59e30d52eaf8f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SourceCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a039d8579ab74e3ba91f59e30d52eaf8f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6f2971a6346acc9cd2ee2f3e6da0065c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6f2971a6346acc9cd2ee2f3e6da0065c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CreateService</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6f2971a6346acc9cd2ee2f3e6da0065c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a54e6f4d249a3c55ff0736059ac3a97b4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a54e6f4d249a3c55ff0736059ac3a97b4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BoardColumns</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a54e6f4d249a3c55ff0736059ac3a97b4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab192ddcbbe3728c9a7b6d5b41f1a6c3d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab192ddcbbe3728c9a7b6d5b41f1a6c3d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProjectSettings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab192ddcbbe3728c9a7b6d5b41f1a6c3d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1f2337e2c38e5bc07bafef0016deb7f9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1f2337e2c38e5bc07bafef0016deb7f9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CardStyle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1f2337e2c38e5bc07bafef0016deb7f9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0b1e47a8900dffca7cfb36cd6562ade0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0b1e47a8900dffca7cfb36cd6562ade0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CardField</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0b1e47a8900dffca7cfb36cd6562ade0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac1c0e3b3edc617835bc0e16afbc1150b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac1c0e3b3edc617835bc0e16afbc1150b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PBIfromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac1c0e3b3edc617835bc0e16afbc1150b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af94cd6bcbc6dc573773cac0cc4e13a31\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af94cd6bcbc6dc573773cac0cc4e13a31\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BugfromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af94cd6bcbc6dc573773cac0cc4e13a31\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8740c2e68ac9c015129461b6ad038445\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8740c2e68ac9c015129461b6ad038445\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>EpicfromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8740c2e68ac9c015129461b6ad038445\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aae215557e2875b894e5f18dc6731e1d7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aae215557e2875b894e5f18dc6731e1d7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TaskfromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aae215557e2875b894e5f18dc6731e1d7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad7d22ddf5493652ef5fb36f01328dea8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad7d22ddf5493652ef5fb36f01328dea8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TestCasefromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad7d22ddf5493652ef5fb36f01328dea8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af7062665ac65d21e8933d24684be3987\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af7062665ac65d21e8933d24684be3987\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FeaturefromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af7062665ac65d21e8933d24684be3987\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9c4f942e528508d3e640b2f1de68f38f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9c4f942e528508d3e640b2f1de68f38f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UserStoriesFromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9c4f942e528508d3e640b2f1de68f38f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aec8d459c2bb1eca7e05f3b0cd439a683\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aec8d459c2bb1eca7e05f3b0cd439a683\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SetEpic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aec8d459c2bb1eca7e05f3b0cd439a683\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3fd0aa2479055ecb94bab632c8c379c1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3fd0aa2479055ecb94bab632c8c379c1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BoardRows</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3fd0aa2479055ecb94bab632c8c379c1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a63ab7c3094a05cf51d2b241fe1775b97\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a63ab7c3094a05cf51d2b241fe1775b97\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Widget</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a63ab7c3094a05cf51d2b241fe1775b97\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af377911831dddd06581d32d8d8761172\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af377911831dddd06581d32d8d8761172\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Chart</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af377911831dddd06581d32d8d8761172\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a93b64ac05fa6973f3bde031ec58e7058\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a93b64ac05fa6973f3bde031ec58e7058\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TeamArea</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a93b64ac05fa6973f3bde031ec58e7058\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab678d4520341927ca9a056f05bdbee57\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab678d4520341927ca9a056f05bdbee57\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TestPlanfromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab678d4520341927ca9a056f05bdbee57\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aee470b9e03da4ef4511a69f836ae17ef\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aee470b9e03da4ef4511a69f836ae17ef\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TestSuitefromTemplate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aee470b9e03da4ef4511a69f836ae17ef\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_query-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">Query</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Query Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">VstsDemoBuilder.Models.Query</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">VstsDemoBuilder.Models.Query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">VstsDemoBuilder.Models.Query</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>wiql</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">VstsDemoBuilder.Models.Query</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">VstsDemoBuilder.Models.Query</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_query.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Query Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">Query</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_query-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Query Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:abd4490faed1729ff5da1c2ce44e687b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abd4490faed1729ff5da1c2ce44e687b2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abd4490faed1729ff5da1c2ce44e687b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a29f040d61f1e22299d94f9ff3c67e1c4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a29f040d61f1e22299d94f9ff3c67e1c4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>wiql</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a29f040d61f1e22299d94f9ff3c67e1c4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Query.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_release_def-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">ReleaseDef</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ReleaseDef Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FileName</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Id</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">VstsDemoBuilder.Models.ReleaseDef</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_release_def.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.ReleaseDef Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">ReleaseDef</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_release_def-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.ReleaseDef Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa497a0d5a40660db1de0ccd9066eef6e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa497a0d5a40660db1de0ccd9066eef6e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa497a0d5a40660db1de0ccd9066eef6e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3572aaf01adf4934eb9d978979a4d1c7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3572aaf01adf4934eb9d978979a4d1c7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FileName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3572aaf01adf4934eb9d978979a4d1c7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad3d60906e7d486d0ceff56b80b09c304\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad3d60906e7d486d0ceff56b80b09c304\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad3d60906e7d486d0ceff56b80b09c304\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae65fc069a7e7988469c17cbd548eebeb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae65fc069a7e7988469c17cbd548eebeb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae65fc069a7e7988469c17cbd548eebeb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_required_extensions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.RequiredExtensions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\">RequiredExtensions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.RequiredExtensions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\">Extension</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">ExtensionWithLink</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\">RequiredExtensions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\">Extension</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.RequiredExtensions.Extension Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\">VstsDemoBuilder.Models.RequiredExtensions.Extension</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Extensions</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\">VstsDemoBuilder.Models.RequiredExtensions.Extension</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\">VstsDemoBuilder.Models.RequiredExtensions.Extension</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.RequiredExtensions.Extension Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\">RequiredExtensions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\">Extension</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.RequiredExtensions.Extension Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aed03e95fbcf10bd7d2753e5df7abf4ff\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aed03e95fbcf10bd7d2753e5df7abf4ff\"></a>\n<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">ExtensionWithLink</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Extensions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aed03e95fbcf10bd7d2753e5df7abf4ff\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\">RequiredExtensions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">ExtensionWithLink</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ExtensionId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>License</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>link</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Publisher</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PublisherId</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\">RequiredExtensions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">ExtensionWithLink</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a5eea6a6e469849a4d053425f8bb3ee53\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5eea6a6e469849a4d053425f8bb3ee53\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5eea6a6e469849a4d053425f8bb3ee53\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aac6c1de60baa19d9cc849e708e305bb3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aac6c1de60baa19d9cc849e708e305bb3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>link</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aac6c1de60baa19d9cc849e708e305bb3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afb3e00a5308870392a3120f38a9eec26\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb3e00a5308870392a3120f38a9eec26\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PublisherId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb3e00a5308870392a3120f38a9eec26\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a220091ea339885776d50c3b826e977a2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a220091ea339885776d50c3b826e977a2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ExtensionId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a220091ea339885776d50c3b826e977a2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a456ae1f71768c6c44c38b4c0b0250658\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a456ae1f71768c6c44c38b4c0b0250658\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Publisher</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a456ae1f71768c6c44c38b4c0b0250658\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a542e94f369ac908d86e85953e5ca61c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a542e94f369ac908d86e85953e5ca61c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>License</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a542e94f369ac908d86e85953e5ca61c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_template-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">Template</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Template Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">VstsDemoBuilder.Models.Template</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Description</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">VstsDemoBuilder.Models.Template</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">VstsDemoBuilder.Models.Template</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">VstsDemoBuilder.Models.Template</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">VstsDemoBuilder.Models.Template</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_template.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.Template Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">Template</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_template-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.Template Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa5f86b7b070608b30186e1e146f40ce2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa5f86b7b070608b30186e1e146f40ce2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa5f86b7b070608b30186e1e146f40ce2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a54c184f68304e7707884906003dfd8c0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a54c184f68304e7707884906003dfd8c0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a54c184f68304e7707884906003dfd8c0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_template_setting-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">TemplateSetting</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TemplateSetting Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">VstsDemoBuilder.Models.TemplateSetting</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>privateTemplateKeys</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">VstsDemoBuilder.Models.TemplateSetting</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">VstsDemoBuilder.Models.TemplateSetting</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>privateTemplates</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">VstsDemoBuilder.Models.TemplateSetting</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">VstsDemoBuilder.Models.TemplateSetting</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_template_setting.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.TemplateSetting Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">TemplateSetting</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TemplateSetting Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac57d426bce9483bd012c0715a65a3874\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac57d426bce9483bd012c0715a65a3874\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>privateTemplates</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac57d426bce9483bd012c0715a65a3874\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9b914ee363bfb1c227d03ad91ad90f0d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9b914ee363bfb1c227d03ad91ad90f0d\"></a>\n<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">templateKeyValue</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>privateTemplateKeys</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9b914ee363bfb1c227d03ad91ad90f0d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_case-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\">TestCase</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestCase Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\">VstsDemoBuilder.Models.TestCase</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TestCases</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\">VstsDemoBuilder.Models.TestCase</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\">VstsDemoBuilder.Models.TestCase</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_case.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.TestCase Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\">TestCase</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_test_case-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestCase Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a0ed63b167633e704c3a80350322a7021\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0ed63b167633e704c3a80350322a7021\"></a>\nList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TestCases</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0ed63b167633e704c3a80350322a7021\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_suite.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.TestSuite Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestSuite Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">Plan</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">TestSuites</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">Plan</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestSuite.Plan Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">VstsDemoBuilder.Models.TestSuite.Plan</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">VstsDemoBuilder.Models.TestSuite.Plan</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">VstsDemoBuilder.Models.TestSuite.Plan</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">VstsDemoBuilder.Models.TestSuite.Plan</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">VstsDemoBuilder.Models.TestSuite.Plan</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.TestSuite.Plan Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">Plan</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestSuite.Plan Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a05461d82b84396d383d9932e1661d87c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a05461d82b84396d383d9932e1661d87c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a05461d82b84396d383d9932e1661d87c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9c02984bb9d5deaa1d8376091729a155\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9c02984bb9d5deaa1d8376091729a155\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9c02984bb9d5deaa1d8376091729a155\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">TestSuites</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestSuite.TestSuites Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">VstsDemoBuilder.Models.TestSuite.TestSuites</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">VstsDemoBuilder.Models.TestSuite.TestSuites</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">VstsDemoBuilder.Models.TestSuite.TestSuites</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">VstsDemoBuilder.Models.TestSuite.TestSuites</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">VstsDemoBuilder.Models.TestSuite.TestSuites</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.TestSuite.TestSuites Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">TestSuites</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestSuite.TestSuites Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a41004d031eacc1bf43cad6aafabeec77\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a41004d031eacc1bf43cad6aafabeec77\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a41004d031eacc1bf43cad6aafabeec77\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acb3e1c850a03b06c28a77a7f16191f68\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acb3e1c850a03b06c28a77a7f16191f68\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acb3e1c850a03b06c28a77a7f16191f68\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestSuite.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>inheritDefaultConfigurations</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>plan</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>requirementIds</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>revision</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>state</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>suiteType</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>TestCases</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.TestSuite.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.TestSuite.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a615e954feefdd1cd48ab92d57126fd5c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a615e954feefdd1cd48ab92d57126fd5c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a615e954feefdd1cd48ab92d57126fd5c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aecd100401ad7c33f54b6fa29d7b5f6e3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aecd100401ad7c33f54b6fa29d7b5f6e3\"></a>\n<a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">Plan</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>plan</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aecd100401ad7c33f54b6fa29d7b5f6e3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2eda6ad92cf02bed3c9d636db9e6b2f2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2eda6ad92cf02bed3c9d636db9e6b2f2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>suiteType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2eda6ad92cf02bed3c9d636db9e6b2f2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad8509fbd7248139548bc00437fd7f62e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad8509fbd7248139548bc00437fd7f62e\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>inheritDefaultConfigurations</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad8509fbd7248139548bc00437fd7f62e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a67893944ec810fc82b32177d62ca54fa\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a67893944ec810fc82b32177d62ca54fa\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>state</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a67893944ec810fc82b32177d62ca54fa\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae29c9fd0947aaf90104ee0221474571c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae29c9fd0947aaf90104ee0221474571c\"></a>\nIList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TestCases</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae29c9fd0947aaf90104ee0221474571c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:add503d78504fd8f9ddadbaed9546a50d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add503d78504fd8f9ddadbaed9546a50d\"></a>\nIList&lt; string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>requirementIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add503d78504fd8f9ddadbaed9546a50d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1c1f9d36673f58235767f1cbc0bd55e8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1c1f9d36673f58235767f1cbc0bd55e8\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>revision</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1c1f9d36673f58235767f1cbc0bd55e8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1template_key_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">templateKeyValue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.templateKeyValue Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">VstsDemoBuilder.Models.templateKeyValue</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>key</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">VstsDemoBuilder.Models.templateKeyValue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">VstsDemoBuilder.Models.templateKeyValue</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">VstsDemoBuilder.Models.templateKeyValue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">VstsDemoBuilder.Models.templateKeyValue</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_models_1_1template_key_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.templateKeyValue Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">templateKeyValue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.templateKeyValue Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:abc6cf206fc1b5228c7cddc53f3dc88b6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abc6cf206fc1b5228c7cddc53f3dc88b6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>key</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abc6cf206fc1b5228c7cddc53f3dc88b6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a430c19afb3353a009dada59dfc7ee8d9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a430c19afb3353a009dada59dfc7ee8d9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a430c19afb3353a009dada59dfc7ee8d9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/Project.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_mvc_application-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\">MvcApplication</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.MvcApplication Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\">VstsDemoBuilder.MvcApplication</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Application_Start</b>() (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\">VstsDemoBuilder.MvcApplication</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\">VstsDemoBuilder.MvcApplication</a></td><td class=\"entry\"><span class=\"mlabel\">protected</span></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_mvc_application.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.MvcApplication Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\">MvcApplication</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pro-methods\">Protected Member Functions</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_mvc_application-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.MvcApplication Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsDemoBuilder.MvcApplication:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_demo_builder_1_1_mvc_application.png\" usemap=\"#VstsDemoBuilder.MvcApplication_map\" alt=\"\"/>\n  <map id=\"VstsDemoBuilder.MvcApplication_map\" name=\"VstsDemoBuilder.MvcApplication_map\">\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pro-methods\"></a>\nProtected Member Functions</h2></td></tr>\n<tr class=\"memitem:a90a8975d11f57fb4aa8786689d98ff8f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a90a8975d11f57fb4aa8786689d98ff8f\"></a>\nvoid&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Application_Start</b> ()</td></tr>\n<tr class=\"separator:a90a8975d11f57fb4aa8786689d98ff8f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Global.asax.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_route_config-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\">RouteConfig</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.RouteConfig Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\">VstsDemoBuilder.RouteConfig</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>RegisterRoutes</b>(RouteCollection routes) (defined in <a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\">VstsDemoBuilder.RouteConfig</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\">VstsDemoBuilder.RouteConfig</a></td><td class=\"entry\"><span class=\"mlabel\">static</span></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_demo_builder_1_1_route_config.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.RouteConfig Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\">RouteConfig</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-static-methods\">Static Public Member Functions</a> &#124;\n<a href=\"class_vsts_demo_builder_1_1_route_config-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.RouteConfig Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-static-methods\"></a>\nStatic Public Member Functions</h2></td></tr>\n<tr class=\"memitem:a7ef2583f903b80260413a0d34a0c04fe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7ef2583f903b80260413a0d34a0c04fe\"></a>\nstatic void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>RegisterRoutes</b> (RouteCollection routes)</td></tr>\n<tr class=\"separator:a7ef2583f903b80260413a0d34a0c04fe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/App_Start/RouteConfig.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_build_1_1_build_definition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">BuildDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Build.BuildDefinition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">VstsRestAPI.Build.BuildDefinition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>BuildDefinition</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">VstsRestAPI.Build.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">VstsRestAPI.Build.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6b0baf93fe915e1eb9a9f028a9f0136a\">CreateBuildDefinition</a>(string json, string project, string SelectedTemplate)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">VstsRestAPI.Build.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">VstsRestAPI.Build.BuildDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">VstsRestAPI.Build.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6f176c07809293c0b2efd1d3eb0cffcc\">QueueBuild</a>(string json, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">VstsRestAPI.Build.BuildDefinition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Build.BuildDefinition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">BuildDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Build.BuildDefinition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:acaf28338b85b2eb9b5c5f8b6ebe43c51\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acaf28338b85b2eb9b5c5f8b6ebe43c51\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BuildDefinition</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:acaf28338b85b2eb9b5c5f8b6ebe43c51\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6b0baf93fe915e1eb9a9f028a9f0136a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6b0baf93fe915e1eb9a9f028a9f0136a\">CreateBuildDefinition</a> (string json, string project, string SelectedTemplate)</td></tr>\n<tr class=\"memdesc:a6b0baf93fe915e1eb9a9f028a9f0136a\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create <a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_build.html\">Build</a> Definition  <a href=\"#a6b0baf93fe915e1eb9a9f028a9f0136a\">More...</a><br /></td></tr>\n<tr class=\"separator:a6b0baf93fe915e1eb9a9f028a9f0136a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6f176c07809293c0b2efd1d3eb0cffcc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">int&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6f176c07809293c0b2efd1d3eb0cffcc\">QueueBuild</a> (string json, string project)</td></tr>\n<tr class=\"memdesc:a6f176c07809293c0b2efd1d3eb0cffcc\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Queue a build after provisioning project  <a href=\"#a6f176c07809293c0b2efd1d3eb0cffcc\">More...</a><br /></td></tr>\n<tr class=\"separator:a6f176c07809293c0b2efd1d3eb0cffcc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a3a51743edc98c77291926915e35b76c0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3a51743edc98c77291926915e35b76c0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a3a51743edc98c77291926915e35b76c0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a6b0baf93fe915e1eb9a9f028a9f0136a\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a6b0baf93fe915e1eb9a9f028a9f0136a\">&#9670;&nbsp;</a></span>CreateBuildDefinition()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string [] VstsRestAPI.Build.BuildDefinition.CreateBuildDefinition </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>SelectedTemplate</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create <a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_build.html\">Build</a> Definition </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">SelectedTemplate</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a6f176c07809293c0b2efd1d3eb0cffcc\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a6f176c07809293c0b2efd1d3eb0cffcc\">&#9670;&nbsp;</a></span>QueueBuild()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">int VstsRestAPI.Build.BuildDefinition.QueueBuild </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Queue a build after provisioning project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Build/BuildDefinition.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_configuration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">Configuration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Configuration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GitRepositoryId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Identity</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MoveToProject</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PersonalAccessToken</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PickListId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProcessId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Project</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Query</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>QueryId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Team</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UriString</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>VersionNumber</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WorkItemId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WorkItemIds</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">VstsRestAPI.Configuration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_configuration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Configuration Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">Configuration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_configuration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Configuration Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Configuration:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_configuration.png\" usemap=\"#VstsRestAPI.Configuration_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Configuration_map\" name=\"VstsRestAPI.Configuration_map\">\n<area href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\" alt=\"VstsRestAPI.IConfiguration\" shape=\"rect\" coords=\"0,0,163,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:abd5e90510865a2799395ce6762fbbdcc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abd5e90510865a2799395ce6762fbbdcc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abd5e90510865a2799395ce6762fbbdcc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a63a68c11c10bf1faf680ed0b46abf41d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a63a68c11c10bf1faf680ed0b46abf41d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a63a68c11c10bf1faf680ed0b46abf41d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0a2c84fdf0be261d3457155046dbe2db\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0a2c84fdf0be261d3457155046dbe2db\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0a2c84fdf0be261d3457155046dbe2db\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a066a03fd21ca3aa6bb975e122a800ef9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a066a03fd21ca3aa6bb975e122a800ef9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a066a03fd21ca3aa6bb975e122a800ef9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a02f955193381d72fc24fd2535f9b7320\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a02f955193381d72fc24fd2535f9b7320\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a02f955193381d72fc24fd2535f9b7320\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0de95c2f6e851e816007d9daae110c6e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0de95c2f6e851e816007d9daae110c6e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0de95c2f6e851e816007d9daae110c6e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af981101615710e660dc3c954e8a8e00f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af981101615710e660dc3c954e8a8e00f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af981101615710e660dc3c954e8a8e00f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae8227b87080c760e3b4d81ef746121d7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae8227b87080c760e3b4d81ef746121d7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae8227b87080c760e3b4d81ef746121d7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6a318c11c19bb1f57bc00c6cc0e12f4e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a318c11c19bb1f57bc00c6cc0e12f4e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6a318c11c19bb1f57bc00c6cc0e12f4e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a53a7cac1a429b2aa4bfaa04a08840318\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a53a7cac1a429b2aa4bfaa04a08840318\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a53a7cac1a429b2aa4bfaa04a08840318\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad12123a7877f666299ea72e3f234a436\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad12123a7877f666299ea72e3f234a436\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad12123a7877f666299ea72e3f234a436\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aecc0b78e15cfb0f61fd3699bad83211a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aecc0b78e15cfb0f61fd3699bad83211a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aecc0b78e15cfb0f61fd3699bad83211a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afd73ff022d8969e254d375ced75db832\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afd73ff022d8969e254d375ced75db832\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afd73ff022d8969e254d375ced75db832\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae9e3abdb70d02de16b5cd44e25875452\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae9e3abdb70d02de16b5cd44e25875452\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae9e3abdb70d02de16b5cd44e25875452\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a21235089b15bff042218bd3bd143b705\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a21235089b15bff042218bd3bd143b705\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>VersionNumber</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a21235089b15bff042218bd3bd143b705\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_interface_vsts_rest_a_p_i_1_1_i_configuration')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td></tr>\n<tr class=\"memitem:a813691cf9d17074e51e686d2a5cf985c inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a813691cf9d17074e51e686d2a5cf985c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a813691cf9d17074e51e686d2a5cf985c inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad66b04853ab66c25d6731cd4383e88dd inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad66b04853ab66c25d6731cd4383e88dd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad66b04853ab66c25d6731cd4383e88dd inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9dd2efb330ae6a1d7c76717ae0139f94 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9dd2efb330ae6a1d7c76717ae0139f94\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9dd2efb330ae6a1d7c76717ae0139f94 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad27fccf7e4eead048623466bacc9b048 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad27fccf7e4eead048623466bacc9b048\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad27fccf7e4eead048623466bacc9b048 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1d926b3b5ab5b5a9a06eab549800731b inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1d926b3b5ab5b5a9a06eab549800731b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1d926b3b5ab5b5a9a06eab549800731b inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa08db220ec11bd517af3461990ddce69 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa08db220ec11bd517af3461990ddce69\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa08db220ec11bd517af3461990ddce69 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a144a3fc93020217a0be6cf40c2a2ee4b inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a144a3fc93020217a0be6cf40c2a2ee4b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a144a3fc93020217a0be6cf40c2a2ee4b inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a815952327d0b6e0b36ce010c796291ef inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a815952327d0b6e0b36ce010c796291ef\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a815952327d0b6e0b36ce010c796291ef inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af9784ef28fff8504eed017e13e73d004 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af9784ef28fff8504eed017e13e73d004\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af9784ef28fff8504eed017e13e73d004 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad52b4d6075b65fbe76d78e364a2eea91 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad52b4d6075b65fbe76d78e364a2eea91\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad52b4d6075b65fbe76d78e364a2eea91 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a89f0800499d73104d3873334063bc3a0 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a89f0800499d73104d3873334063bc3a0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a89f0800499d73104d3873334063bc3a0 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aec7a1ed105d4f03c76e7b45baf12b741 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aec7a1ed105d4f03c76e7b45baf12b741\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aec7a1ed105d4f03c76e7b45baf12b741 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa273021f5daa05ba5d3e76043ec8e8ce inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa273021f5daa05ba5d3e76043ec8e8ce\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa273021f5daa05ba5d3e76043ec8e8ce inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a78f3ee27299039ca4c7fa8d51b998421 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a78f3ee27299039ca4c7fa8d51b998421\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a78f3ee27299039ca4c7fa8d51b998421 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0c8e680fdd299351251205e7648a5279 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0c8e680fdd299351251205e7648a5279\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>VersionNumber</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0c8e680fdd299351251205e7648a5279 inherit properties_interface_vsts_rest_a_p_i_1_1_i_configuration\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Configuration.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_delivery_plans.html\">DeliveryPlans</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">Plans</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.DeliveryPlans.Plans Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">VstsRestAPI.DeliveryPlans.Plans</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html#a8ed2253f78a26bc96e9717c84a881355\">AddDeliveryPlan</a>(string json, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">VstsRestAPI.DeliveryPlans.Plans</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">VstsRestAPI.DeliveryPlans.Plans</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">VstsRestAPI.DeliveryPlans.Plans</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Plans</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">VstsRestAPI.DeliveryPlans.Plans</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">VstsRestAPI.DeliveryPlans.Plans</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.DeliveryPlans.Plans Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_delivery_plans.html\">DeliveryPlans</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">Plans</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.DeliveryPlans.Plans Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:abb95b3f5c4e3bf5310ab6786a1a463bf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abb95b3f5c4e3bf5310ab6786a1a463bf\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Plans</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:abb95b3f5c4e3bf5310ab6786a1a463bf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8ed2253f78a26bc96e9717c84a881355\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html#a8ed2253f78a26bc96e9717c84a881355\">AddDeliveryPlan</a> (string json, string project)</td></tr>\n<tr class=\"memdesc:a8ed2253f78a26bc96e9717c84a881355\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Delivery plans  <a href=\"#a8ed2253f78a26bc96e9717c84a881355\">More...</a><br /></td></tr>\n<tr class=\"separator:a8ed2253f78a26bc96e9717c84a881355\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a90d0e421c773cbe53c37ff93bfe1f216\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a90d0e421c773cbe53c37ff93bfe1f216\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a90d0e421c773cbe53c37ff93bfe1f216\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a8ed2253f78a26bc96e9717c84a881355\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a8ed2253f78a26bc96e9717c84a881355\">&#9670;&nbsp;</a></span>AddDeliveryPlan()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.DeliveryPlans.Plans.AddDeliveryPlan </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Delivery plans </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/DeliveryPlans/Plans.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_git_1_1_repository-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_git.html\">Git</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">Repository</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Git.Repository Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a5c50b0035797a2b59071162bff47135c\">AddCommentToThread</a>(string repositorId, string pullRequestId, string threadId, string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a9284efc83831e33d74892b68ff58b276\">CreateCommentThread</a>(string repositorId, string pullRequestId, string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#af74451a9ec41478f8a16fdb498ea96a0\">CreatePullRequest</a>(string json, string repositoryId)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a2623c37a03e528aa6e0dd4f7bcac3a04\">CreateRepositorie</a>(string name, string projectId)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#ae9bdfeecb8846a51d3900752166d6d74\">DeleteRepository</a>(string repositoryId)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a6cf8983ffb2539bb9d3d5eb2a1657c28\">GetAllRepositories</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a0188a1509a001dc7bafc7ca6829daa8e\">GetDefaultRepository</a>(string RepoName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#adb713f76b948694752aff2d111a3ed85\">GetRepositoryToDelete</a>(string Project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a46daa5b9a35a6efb4267c6ee4494df31\">getSourceCodeFromGitHub</a>(string json, string Project, string RepositoryID)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Repository</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">VstsRestAPI.Git.Repository</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_git_1_1_repository.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Git.Repository Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_git.html\">Git</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">Repository</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Git.Repository Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a3eaf35b7d85a3b7a1d736eaf25e5338f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3eaf35b7d85a3b7a1d736eaf25e5338f\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Repository</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a3eaf35b7d85a3b7a1d736eaf25e5338f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a46daa5b9a35a6efb4267c6ee4494df31\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a46daa5b9a35a6efb4267c6ee4494df31\">getSourceCodeFromGitHub</a> (string json, string Project, string RepositoryID)</td></tr>\n<tr class=\"memdesc:a46daa5b9a35a6efb4267c6ee4494df31\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Source Code from <a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_git.html\">Git</a> Hub  <a href=\"#a46daa5b9a35a6efb4267c6ee4494df31\">More...</a><br /></td></tr>\n<tr class=\"separator:a46daa5b9a35a6efb4267c6ee4494df31\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adb713f76b948694752aff2d111a3ed85\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#adb713f76b948694752aff2d111a3ed85\">GetRepositoryToDelete</a> (string Project)</td></tr>\n<tr class=\"memdesc:adb713f76b948694752aff2d111a3ed85\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Delete the default repository  <a href=\"#adb713f76b948694752aff2d111a3ed85\">More...</a><br /></td></tr>\n<tr class=\"separator:adb713f76b948694752aff2d111a3ed85\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0188a1509a001dc7bafc7ca6829daa8e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a0188a1509a001dc7bafc7ca6829daa8e\">GetDefaultRepository</a> (string RepoName)</td></tr>\n<tr class=\"memdesc:a0188a1509a001dc7bafc7ca6829daa8e\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Default repository to delete  <a href=\"#a0188a1509a001dc7bafc7ca6829daa8e\">More...</a><br /></td></tr>\n<tr class=\"separator:a0188a1509a001dc7bafc7ca6829daa8e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6cf8983ffb2539bb9d3d5eb2a1657c28\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">GetAllRepositoriesResponse.Repositories</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a6cf8983ffb2539bb9d3d5eb2a1657c28\">GetAllRepositories</a> ()</td></tr>\n<tr class=\"memdesc:a6cf8983ffb2539bb9d3d5eb2a1657c28\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get list of Repositories  <a href=\"#a6cf8983ffb2539bb9d3d5eb2a1657c28\">More...</a><br /></td></tr>\n<tr class=\"separator:a6cf8983ffb2539bb9d3d5eb2a1657c28\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2623c37a03e528aa6e0dd4f7bcac3a04\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a2623c37a03e528aa6e0dd4f7bcac3a04\">CreateRepositorie</a> (string name, string projectId)</td></tr>\n<tr class=\"memdesc:a2623c37a03e528aa6e0dd4f7bcac3a04\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Creates <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">Repository</a>  <a href=\"#a2623c37a03e528aa6e0dd4f7bcac3a04\">More...</a><br /></td></tr>\n<tr class=\"separator:a2623c37a03e528aa6e0dd4f7bcac3a04\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae9bdfeecb8846a51d3900752166d6d74\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#ae9bdfeecb8846a51d3900752166d6d74\">DeleteRepository</a> (string repositoryId)</td></tr>\n<tr class=\"memdesc:ae9bdfeecb8846a51d3900752166d6d74\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Delete repository  <a href=\"#ae9bdfeecb8846a51d3900752166d6d74\">More...</a><br /></td></tr>\n<tr class=\"separator:ae9bdfeecb8846a51d3900752166d6d74\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af74451a9ec41478f8a16fdb498ea96a0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#af74451a9ec41478f8a16fdb498ea96a0\">CreatePullRequest</a> (string json, string repositoryId)</td></tr>\n<tr class=\"memdesc:af74451a9ec41478f8a16fdb498ea96a0\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Pull Request  <a href=\"#af74451a9ec41478f8a16fdb498ea96a0\">More...</a><br /></td></tr>\n<tr class=\"separator:af74451a9ec41478f8a16fdb498ea96a0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9284efc83831e33d74892b68ff58b276\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a9284efc83831e33d74892b68ff58b276\">CreateCommentThread</a> (string repositorId, string pullRequestId, string json)</td></tr>\n<tr class=\"memdesc:a9284efc83831e33d74892b68ff58b276\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Comment thread for pull request  <a href=\"#a9284efc83831e33d74892b68ff58b276\">More...</a><br /></td></tr>\n<tr class=\"separator:a9284efc83831e33d74892b68ff58b276\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5c50b0035797a2b59071162bff47135c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a5c50b0035797a2b59071162bff47135c\">AddCommentToThread</a> (string repositorId, string pullRequestId, string threadId, string json)</td></tr>\n<tr class=\"memdesc:a5c50b0035797a2b59071162bff47135c\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Add Comment thread  <a href=\"#a5c50b0035797a2b59071162bff47135c\">More...</a><br /></td></tr>\n<tr class=\"separator:a5c50b0035797a2b59071162bff47135c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:ad6665ada35d88c15727b7b9b1c21e687\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad6665ada35d88c15727b7b9b1c21e687\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:ad6665ada35d88c15727b7b9b1c21e687\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a5c50b0035797a2b59071162bff47135c\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a5c50b0035797a2b59071162bff47135c\">&#9670;&nbsp;</a></span>AddCommentToThread()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsRestAPI.Git.Repository.AddCommentToThread </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>repositorId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>pullRequestId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>threadId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Add Comment thread </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">repositorId</td><td></td></tr>\n    <tr><td class=\"paramname\">pullRequestId</td><td></td></tr>\n    <tr><td class=\"paramname\">threadId</td><td></td></tr>\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"a9284efc83831e33d74892b68ff58b276\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a9284efc83831e33d74892b68ff58b276\">&#9670;&nbsp;</a></span>CreateCommentThread()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.Git.Repository.CreateCommentThread </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>repositorId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>pullRequestId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Comment thread for pull request </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">repositorId</td><td></td></tr>\n    <tr><td class=\"paramname\">pullRequestId</td><td></td></tr>\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"af74451a9ec41478f8a16fdb498ea96a0\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#af74451a9ec41478f8a16fdb498ea96a0\">&#9670;&nbsp;</a></span>CreatePullRequest()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string [] VstsRestAPI.Git.Repository.CreatePullRequest </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>repositoryId</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Pull Request </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">repositoryId</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a2623c37a03e528aa6e0dd4f7bcac3a04\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a2623c37a03e528aa6e0dd4f7bcac3a04\">&#9670;&nbsp;</a></span>CreateRepositorie()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string [] VstsRestAPI.Git.Repository.CreateRepositorie </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>name</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectId</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Creates <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">Repository</a> </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">name</td><td></td></tr>\n    <tr><td class=\"paramname\">projectId</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ae9bdfeecb8846a51d3900752166d6d74\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ae9bdfeecb8846a51d3900752166d6d74\">&#9670;&nbsp;</a></span>DeleteRepository()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.Git.Repository.DeleteRepository </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>repositoryId</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Delete repository </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">repositoryId</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a6cf8983ffb2539bb9d3d5eb2a1657c28\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a6cf8983ffb2539bb9d3d5eb2a1657c28\">&#9670;&nbsp;</a></span>GetAllRepositories()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">GetAllRepositoriesResponse.Repositories</a> VstsRestAPI.Git.Repository.GetAllRepositories </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get list of Repositories </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a0188a1509a001dc7bafc7ca6829daa8e\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a0188a1509a001dc7bafc7ca6829daa8e\">&#9670;&nbsp;</a></span>GetDefaultRepository()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string [] VstsRestAPI.Git.Repository.GetDefaultRepository </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>RepoName</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Default repository to delete </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">RepoName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"adb713f76b948694752aff2d111a3ed85\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#adb713f76b948694752aff2d111a3ed85\">&#9670;&nbsp;</a></span>GetRepositoryToDelete()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.Git.Repository.GetRepositoryToDelete </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Delete the default repository </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">Project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a46daa5b9a35a6efb4267c6ee4494df31\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a46daa5b9a35a6efb4267c6ee4494df31\">&#9670;&nbsp;</a></span>getSourceCodeFromGitHub()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.Git.Repository.getSourceCodeFromGitHub </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>RepositoryID</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Source Code from <a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_git.html\">Git</a> Hub </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">Project</td><td></td></tr>\n    <tr><td class=\"paramname\">RepositoryID</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Git/Repository.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">ProjectsAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">Account</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.ProjectsAndTeams.Account Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">VstsRestAPI.ProjectsAndTeams.Account</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Account</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">VstsRestAPI.ProjectsAndTeams.Account</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">VstsRestAPI.ProjectsAndTeams.Account</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html#a0b98e88fa8e05a3d17b55a0932e1e8f6\">GetAccountMembers</a>(string accountName, string AccessToken)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">VstsRestAPI.ProjectsAndTeams.Account</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">VstsRestAPI.ProjectsAndTeams.Account</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">VstsRestAPI.ProjectsAndTeams.Account</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.ProjectsAndTeams.Account Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">ProjectsAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">Account</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.ProjectsAndTeams.Account Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a3311df1b111ffd6c3fbcb7162f0fb400\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3311df1b111ffd6c3fbcb7162f0fb400\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Account</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a3311df1b111ffd6c3fbcb7162f0fb400\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0b98e88fa8e05a3d17b55a0932e1e8f6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">AccountMembers.Account</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html#a0b98e88fa8e05a3d17b55a0932e1e8f6\">GetAccountMembers</a> (string accountName, string AccessToken)</td></tr>\n<tr class=\"memdesc:a0b98e88fa8e05a3d17b55a0932e1e8f6\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">Account</a> members  <a href=\"#a0b98e88fa8e05a3d17b55a0932e1e8f6\">More...</a><br /></td></tr>\n<tr class=\"separator:a0b98e88fa8e05a3d17b55a0932e1e8f6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:ab46ba987676d8cb72e787e4eefbb4055\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab46ba987676d8cb72e787e4eefbb4055\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:ab46ba987676d8cb72e787e4eefbb4055\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a0b98e88fa8e05a3d17b55a0932e1e8f6\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a0b98e88fa8e05a3d17b55a0932e1e8f6\">&#9670;&nbsp;</a></span>GetAccountMembers()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">AccountMembers.Account</a> VstsRestAPI.ProjectsAndTeams.Account.GetAccountMembers </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>accountName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>AccessToken</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">Account</a> members </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">accountName</td><td></td></tr>\n    <tr><td class=\"paramname\">AccessToken</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/ProjectsAndTeams/Account.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">ProjectsAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">Projects</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.ProjectsAndTeams.Projects Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a2dc9bc6f325831b4f86c91cdfbd2bcc9\">CreateTeamProject</a>(string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a488712df438d066911a1065f15556cbc\">GetProjectIdByName</a>(string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#abd2b8fa4ffdb672a1975b61964f9d72f\">GetProjectStateByName</a>(string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a5972180d08f6a32c0a22c03f94622904\">IsAccountHasProjects</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#afd4729308614a2d4f4124c7eedafecfc\">ListOfProjects</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Projects</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">VstsRestAPI.ProjectsAndTeams.Projects</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.ProjectsAndTeams.Projects Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">ProjectsAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">Projects</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.ProjectsAndTeams.Projects Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:ab4361982eb517567e884317df447132f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab4361982eb517567e884317df447132f\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Projects</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:ab4361982eb517567e884317df447132f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5972180d08f6a32c0a22c03f94622904\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a5972180d08f6a32c0a22c03f94622904\">IsAccountHasProjects</a> ()</td></tr>\n<tr class=\"memdesc:a5972180d08f6a32c0a22c03f94622904\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Check for the existance of project  <a href=\"#a5972180d08f6a32c0a22c03f94622904\">More...</a><br /></td></tr>\n<tr class=\"separator:a5972180d08f6a32c0a22c03f94622904\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afd4729308614a2d4f4124c7eedafecfc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">ListofProjectsResponse.Projects</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#afd4729308614a2d4f4124c7eedafecfc\">ListOfProjects</a> ()</td></tr>\n<tr class=\"memdesc:afd4729308614a2d4f4124c7eedafecfc\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get List of project  <a href=\"#afd4729308614a2d4f4124c7eedafecfc\">More...</a><br /></td></tr>\n<tr class=\"separator:afd4729308614a2d4f4124c7eedafecfc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2dc9bc6f325831b4f86c91cdfbd2bcc9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a2dc9bc6f325831b4f86c91cdfbd2bcc9\">CreateTeamProject</a> (string json)</td></tr>\n<tr class=\"memdesc:a2dc9bc6f325831b4f86c91cdfbd2bcc9\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create team project  <a href=\"#a2dc9bc6f325831b4f86c91cdfbd2bcc9\">More...</a><br /></td></tr>\n<tr class=\"separator:a2dc9bc6f325831b4f86c91cdfbd2bcc9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a488712df438d066911a1065f15556cbc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a488712df438d066911a1065f15556cbc\">GetProjectIdByName</a> (string projectName)</td></tr>\n<tr class=\"memdesc:a488712df438d066911a1065f15556cbc\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Project id  <a href=\"#a488712df438d066911a1065f15556cbc\">More...</a><br /></td></tr>\n<tr class=\"separator:a488712df438d066911a1065f15556cbc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abd2b8fa4ffdb672a1975b61964f9d72f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#abd2b8fa4ffdb672a1975b61964f9d72f\">GetProjectStateByName</a> (string project)</td></tr>\n<tr class=\"memdesc:abd2b8fa4ffdb672a1975b61964f9d72f\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get project to know the status of the project  <a href=\"#abd2b8fa4ffdb672a1975b61964f9d72f\">More...</a><br /></td></tr>\n<tr class=\"separator:abd2b8fa4ffdb672a1975b61964f9d72f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a498b140ca253c7976fb8129793c2650e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a498b140ca253c7976fb8129793c2650e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a498b140ca253c7976fb8129793c2650e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a2dc9bc6f325831b4f86c91cdfbd2bcc9\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a2dc9bc6f325831b4f86c91cdfbd2bcc9\">&#9670;&nbsp;</a></span>CreateTeamProject()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.ProjectsAndTeams.Projects.CreateTeamProject </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create team project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a488712df438d066911a1065f15556cbc\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a488712df438d066911a1065f15556cbc\">&#9670;&nbsp;</a></span>GetProjectIdByName()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.ProjectsAndTeams.Projects.GetProjectIdByName </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Project id </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"abd2b8fa4ffdb672a1975b61964f9d72f\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#abd2b8fa4ffdb672a1975b61964f9d72f\">&#9670;&nbsp;</a></span>GetProjectStateByName()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.ProjectsAndTeams.Projects.GetProjectStateByName </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get project to know the status of the project </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a5972180d08f6a32c0a22c03f94622904\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a5972180d08f6a32c0a22c03f94622904\">&#9670;&nbsp;</a></span>IsAccountHasProjects()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.ProjectsAndTeams.Projects.IsAccountHasProjects </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Check for the existance of project </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"afd4729308614a2d4f4124c7eedafecfc\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#afd4729308614a2d4f4124c7eedafecfc\">&#9670;&nbsp;</a></span>ListOfProjects()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">ListofProjectsResponse.Projects</a> VstsRestAPI.ProjectsAndTeams.Projects.ListOfProjects </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get List of project </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/ProjectsAndTeams/Projects.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">ProjectsAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.ProjectsAndTeams.Team Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab57dd1be0d460862a1b4cd64a69b81b8\">CreateArea</a>(string projectName, string areaName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab42d1bd636a827438a8151f795fedca0\">CreateNewTeam</a>(string json, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a719daa0225d480d779037baaa901c201\">GetAllIterations</a>(string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a252afe1d5826c3251ace46c5e36dcb39\">GetTeamByName</a>(string projectName, string teamaName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a08de9d00456ae8e5407adfb6e3f1f135\">GetTeamMembers</a>(string projectName, string teamaName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#af1ece216c9baa58c5e8b2a527318ba3c\">GetTeamSetting</a>(string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab7ec4e48d49881e50a0a7aae20ede38a\">SetAreaForTeams</a>(string projectName, string teamName, string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a9edc630def2d89f784812cf88f706a4c\">SetBackLogIterationForTeam</a>(string IterationId, string projectName, string teamName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a513442a4bc421f2b3f0fb980d1c6ed72\">SetIterationsForTeam</a>(string IterationId, string teamName, string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Team</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.ProjectsAndTeams.Team Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">ProjectsAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.ProjectsAndTeams.Team Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a9f31252f6d3ccf04bae84eb976c7bc00\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9f31252f6d3ccf04bae84eb976c7bc00\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a9f31252f6d3ccf04bae84eb976c7bc00\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab42d1bd636a827438a8151f795fedca0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">GetTeamResponse.Team</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab42d1bd636a827438a8151f795fedca0\">CreateNewTeam</a> (string json, string project)</td></tr>\n<tr class=\"memdesc:ab42d1bd636a827438a8151f795fedca0\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create teams  <a href=\"#ab42d1bd636a827438a8151f795fedca0\">More...</a><br /></td></tr>\n<tr class=\"separator:ab42d1bd636a827438a8151f795fedca0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a08de9d00456ae8e5407adfb6e3f1f135\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">TeamMemberResponse.TeamMembers</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a08de9d00456ae8e5407adfb6e3f1f135\">GetTeamMembers</a> (string projectName, string teamaName)</td></tr>\n<tr class=\"memdesc:a08de9d00456ae8e5407adfb6e3f1f135\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a> members  <a href=\"#a08de9d00456ae8e5407adfb6e3f1f135\">More...</a><br /></td></tr>\n<tr class=\"separator:a08de9d00456ae8e5407adfb6e3f1f135\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab57dd1be0d460862a1b4cd64a69b81b8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab57dd1be0d460862a1b4cd64a69b81b8\">CreateArea</a> (string projectName, string areaName)</td></tr>\n<tr class=\"memdesc:ab57dd1be0d460862a1b4cd64a69b81b8\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Area  <a href=\"#ab57dd1be0d460862a1b4cd64a69b81b8\">More...</a><br /></td></tr>\n<tr class=\"separator:ab57dd1be0d460862a1b4cd64a69b81b8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab7ec4e48d49881e50a0a7aae20ede38a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab7ec4e48d49881e50a0a7aae20ede38a\">SetAreaForTeams</a> (string projectName, string teamName, string json)</td></tr>\n<tr class=\"memdesc:ab7ec4e48d49881e50a0a7aae20ede38a\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Assign areas for teams  <a href=\"#ab7ec4e48d49881e50a0a7aae20ede38a\">More...</a><br /></td></tr>\n<tr class=\"separator:ab7ec4e48d49881e50a0a7aae20ede38a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af1ece216c9baa58c5e8b2a527318ba3c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#af1ece216c9baa58c5e8b2a527318ba3c\">GetTeamSetting</a> (string projectName)</td></tr>\n<tr class=\"memdesc:af1ece216c9baa58c5e8b2a527318ba3c\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get team setting  <a href=\"#af1ece216c9baa58c5e8b2a527318ba3c\">More...</a><br /></td></tr>\n<tr class=\"separator:af1ece216c9baa58c5e8b2a527318ba3c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9edc630def2d89f784812cf88f706a4c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a9edc630def2d89f784812cf88f706a4c\">SetBackLogIterationForTeam</a> (string IterationId, string projectName, string teamName)</td></tr>\n<tr class=\"memdesc:a9edc630def2d89f784812cf88f706a4c\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Set Iteration for team  <a href=\"#a9edc630def2d89f784812cf88f706a4c\">More...</a><br /></td></tr>\n<tr class=\"separator:a9edc630def2d89f784812cf88f706a4c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a719daa0225d480d779037baaa901c201\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">TeamIterationsResponse.Iterations</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a719daa0225d480d779037baaa901c201\">GetAllIterations</a> (string projectName)</td></tr>\n<tr class=\"memdesc:a719daa0225d480d779037baaa901c201\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get All Iterations  <a href=\"#a719daa0225d480d779037baaa901c201\">More...</a><br /></td></tr>\n<tr class=\"separator:a719daa0225d480d779037baaa901c201\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a513442a4bc421f2b3f0fb980d1c6ed72\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a513442a4bc421f2b3f0fb980d1c6ed72\">SetIterationsForTeam</a> (string IterationId, string teamName, string projectName)</td></tr>\n<tr class=\"memdesc:a513442a4bc421f2b3f0fb980d1c6ed72\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Set Iteration for team  <a href=\"#a513442a4bc421f2b3f0fb980d1c6ed72\">More...</a><br /></td></tr>\n<tr class=\"separator:a513442a4bc421f2b3f0fb980d1c6ed72\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a252afe1d5826c3251ace46c5e36dcb39\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">TeamResponse</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a252afe1d5826c3251ace46c5e36dcb39\">GetTeamByName</a> (string projectName, string teamaName)</td></tr>\n<tr class=\"memdesc:a252afe1d5826c3251ace46c5e36dcb39\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a> details by <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a> name  <a href=\"#a252afe1d5826c3251ace46c5e36dcb39\">More...</a><br /></td></tr>\n<tr class=\"separator:a252afe1d5826c3251ace46c5e36dcb39\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a0dc4246efe1e364632516d878b9c17fb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0dc4246efe1e364632516d878b9c17fb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a0dc4246efe1e364632516d878b9c17fb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"ab57dd1be0d460862a1b4cd64a69b81b8\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ab57dd1be0d460862a1b4cd64a69b81b8\">&#9670;&nbsp;</a></span>CreateArea()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.ProjectsAndTeams.Team.CreateArea </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>areaName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Area </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">areaName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ab42d1bd636a827438a8151f795fedca0\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ab42d1bd636a827438a8151f795fedca0\">&#9670;&nbsp;</a></span>CreateNewTeam()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">GetTeamResponse.Team</a> VstsRestAPI.ProjectsAndTeams.Team.CreateNewTeam </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create teams </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a719daa0225d480d779037baaa901c201\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a719daa0225d480d779037baaa901c201\">&#9670;&nbsp;</a></span>GetAllIterations()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">TeamIterationsResponse.Iterations</a> VstsRestAPI.ProjectsAndTeams.Team.GetAllIterations </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get All Iterations </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a252afe1d5826c3251ace46c5e36dcb39\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a252afe1d5826c3251ace46c5e36dcb39\">&#9670;&nbsp;</a></span>GetTeamByName()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">TeamResponse</a> VstsRestAPI.ProjectsAndTeams.Team.GetTeamByName </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>teamaName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a> details by <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a> name </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">teamaName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a08de9d00456ae8e5407adfb6e3f1f135\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a08de9d00456ae8e5407adfb6e3f1f135\">&#9670;&nbsp;</a></span>GetTeamMembers()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">TeamMemberResponse.TeamMembers</a> VstsRestAPI.ProjectsAndTeams.Team.GetTeamMembers </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>teamaName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a> members </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">teamaName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"af1ece216c9baa58c5e8b2a527318ba3c\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#af1ece216c9baa58c5e8b2a527318ba3c\">&#9670;&nbsp;</a></span>GetTeamSetting()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.ProjectsAndTeams.Team.GetTeamSetting </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get team setting </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ab7ec4e48d49881e50a0a7aae20ede38a\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ab7ec4e48d49881e50a0a7aae20ede38a\">&#9670;&nbsp;</a></span>SetAreaForTeams()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.ProjectsAndTeams.Team.SetAreaForTeams </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>teamName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Assign areas for teams </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">teamName</td><td></td></tr>\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a9edc630def2d89f784812cf88f706a4c\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a9edc630def2d89f784812cf88f706a4c\">&#9670;&nbsp;</a></span>SetBackLogIterationForTeam()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.ProjectsAndTeams.Team.SetBackLogIterationForTeam </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>IterationId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>teamName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Set Iteration for team </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">IterationId</td><td></td></tr>\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">teamName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a513442a4bc421f2b3f0fb980d1c6ed72\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a513442a4bc421f2b3f0fb980d1c6ed72\">&#9670;&nbsp;</a></span>SetIterationsForTeam()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.ProjectsAndTeams.Team.SetIterationsForTeam </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>IterationId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>teamName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Set Iteration for team </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">IterationId</td><td></td></tr>\n    <tr><td class=\"paramname\">teamName</td><td></td></tr>\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/ProjectsAndTeams/Team.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">Querys</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.QuerysAndWidgets.Querys Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a819bd19bb1d6657c86418a3f3ef3c86b\">CreateNewDashBoard</a>(string project, string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aefe4b14dbc3475676cfcc8f3a007546e\">CreateQuery</a>(string project, string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a6e8876d7b58b992e3cde03d1c13e3d5a\">CreateWidget</a>(string project, string dashBoardId, string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#adc1b3bd0066fd1340db2fbf49b56934f\">DeleteDefaultDashboard</a>(string project, string dashBoardId)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a367ee3271ff58e50273a73e2bb5da282\">GetDashboardeTag</a>(string dashboardId, string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aef10c7b2cf6ce84aece4df4fc87a9fd6\">GetDashBoardId</a>(string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a8cf2beece89d16eb8b96e0c3c34142b2\">GetQueryByPathAndName</a>(string project, string queryName, string path)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Querys</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#ad50ab1e6c58ac12bd8d39ee52a514e0d\">UpdateQuery</a>(string query, string project, string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.QuerysAndWidgets.Querys Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">Querys</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.QuerysAndWidgets.Querys Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a63c737d81f8ff1a145f88aee77345cae\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a63c737d81f8ff1a145f88aee77345cae\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Querys</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a63c737d81f8ff1a145f88aee77345cae\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aef10c7b2cf6ce84aece4df4fc87a9fd6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aef10c7b2cf6ce84aece4df4fc87a9fd6\">GetDashBoardId</a> (string projectName)</td></tr>\n<tr class=\"memdesc:aef10c7b2cf6ce84aece4df4fc87a9fd6\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Dashboard by ID  <a href=\"#aef10c7b2cf6ce84aece4df4fc87a9fd6\">More...</a><br /></td></tr>\n<tr class=\"separator:aef10c7b2cf6ce84aece4df4fc87a9fd6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a367ee3271ff58e50273a73e2bb5da282\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a367ee3271ff58e50273a73e2bb5da282\">GetDashboardeTag</a> (string dashboardId, string projectName)</td></tr>\n<tr class=\"memdesc:a367ee3271ff58e50273a73e2bb5da282\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Dashboard eTag  <a href=\"#a367ee3271ff58e50273a73e2bb5da282\">More...</a><br /></td></tr>\n<tr class=\"separator:a367ee3271ff58e50273a73e2bb5da282\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aefe4b14dbc3475676cfcc8f3a007546e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">QueryResponse</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aefe4b14dbc3475676cfcc8f3a007546e\">CreateQuery</a> (string project, string json)</td></tr>\n<tr class=\"memdesc:aefe4b14dbc3475676cfcc8f3a007546e\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Query  <a href=\"#aefe4b14dbc3475676cfcc8f3a007546e\">More...</a><br /></td></tr>\n<tr class=\"separator:aefe4b14dbc3475676cfcc8f3a007546e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad50ab1e6c58ac12bd8d39ee52a514e0d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#ad50ab1e6c58ac12bd8d39ee52a514e0d\">UpdateQuery</a> (string query, string project, string json)</td></tr>\n<tr class=\"memdesc:ad50ab1e6c58ac12bd8d39ee52a514e0d\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update existing query  <a href=\"#ad50ab1e6c58ac12bd8d39ee52a514e0d\">More...</a><br /></td></tr>\n<tr class=\"separator:ad50ab1e6c58ac12bd8d39ee52a514e0d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6e8876d7b58b992e3cde03d1c13e3d5a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a6e8876d7b58b992e3cde03d1c13e3d5a\">CreateWidget</a> (string project, string dashBoardId, string json)</td></tr>\n<tr class=\"memdesc:a6e8876d7b58b992e3cde03d1c13e3d5a\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create widget for dashboard  <a href=\"#a6e8876d7b58b992e3cde03d1c13e3d5a\">More...</a><br /></td></tr>\n<tr class=\"separator:a6e8876d7b58b992e3cde03d1c13e3d5a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8cf2beece89d16eb8b96e0c3c34142b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">QueryResponse</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a8cf2beece89d16eb8b96e0c3c34142b2\">GetQueryByPathAndName</a> (string project, string queryName, string path)</td></tr>\n<tr class=\"memdesc:a8cf2beece89d16eb8b96e0c3c34142b2\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Query by path  <a href=\"#a8cf2beece89d16eb8b96e0c3c34142b2\">More...</a><br /></td></tr>\n<tr class=\"separator:a8cf2beece89d16eb8b96e0c3c34142b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adc1b3bd0066fd1340db2fbf49b56934f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#adc1b3bd0066fd1340db2fbf49b56934f\">DeleteDefaultDashboard</a> (string project, string dashBoardId)</td></tr>\n<tr class=\"memdesc:adc1b3bd0066fd1340db2fbf49b56934f\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Delete default dashboard  <a href=\"#adc1b3bd0066fd1340db2fbf49b56934f\">More...</a><br /></td></tr>\n<tr class=\"separator:adc1b3bd0066fd1340db2fbf49b56934f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a819bd19bb1d6657c86418a3f3ef3c86b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a819bd19bb1d6657c86418a3f3ef3c86b\">CreateNewDashBoard</a> (string project, string json)</td></tr>\n<tr class=\"memdesc:a819bd19bb1d6657c86418a3f3ef3c86b\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create new dashboard  <a href=\"#a819bd19bb1d6657c86418a3f3ef3c86b\">More...</a><br /></td></tr>\n<tr class=\"separator:a819bd19bb1d6657c86418a3f3ef3c86b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a2409c19fabbee091d0252ab43a9f20a7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2409c19fabbee091d0252ab43a9f20a7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a2409c19fabbee091d0252ab43a9f20a7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a819bd19bb1d6657c86418a3f3ef3c86b\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a819bd19bb1d6657c86418a3f3ef3c86b\">&#9670;&nbsp;</a></span>CreateNewDashBoard()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.QuerysAndWidgets.Querys.CreateNewDashBoard </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create new dashboard </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"aefe4b14dbc3475676cfcc8f3a007546e\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#aefe4b14dbc3475676cfcc8f3a007546e\">&#9670;&nbsp;</a></span>CreateQuery()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">QueryResponse</a> VstsRestAPI.QuerysAndWidgets.Querys.CreateQuery </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Query </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a6e8876d7b58b992e3cde03d1c13e3d5a\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a6e8876d7b58b992e3cde03d1c13e3d5a\">&#9670;&nbsp;</a></span>CreateWidget()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.QuerysAndWidgets.Querys.CreateWidget </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>dashBoardId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create widget for dashboard </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">dashBoardId</td><td></td></tr>\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"adc1b3bd0066fd1340db2fbf49b56934f\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#adc1b3bd0066fd1340db2fbf49b56934f\">&#9670;&nbsp;</a></span>DeleteDefaultDashboard()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.QuerysAndWidgets.Querys.DeleteDefaultDashboard </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>dashBoardId</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Delete default dashboard </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">dashBoardId</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a367ee3271ff58e50273a73e2bb5da282\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a367ee3271ff58e50273a73e2bb5da282\">&#9670;&nbsp;</a></span>GetDashboardeTag()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.QuerysAndWidgets.Querys.GetDashboardeTag </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>dashboardId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Dashboard eTag </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">dashboardId</td><td></td></tr>\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"aef10c7b2cf6ce84aece4df4fc87a9fd6\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#aef10c7b2cf6ce84aece4df4fc87a9fd6\">&#9670;&nbsp;</a></span>GetDashBoardId()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.QuerysAndWidgets.Querys.GetDashBoardId </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Dashboard by ID </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a8cf2beece89d16eb8b96e0c3c34142b2\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a8cf2beece89d16eb8b96e0c3c34142b2\">&#9670;&nbsp;</a></span>GetQueryByPathAndName()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">QueryResponse</a> VstsRestAPI.QuerysAndWidgets.Querys.GetQueryByPathAndName </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>queryName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>path</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Query by path </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">queryName</td><td></td></tr>\n    <tr><td class=\"paramname\">path</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ad50ab1e6c58ac12bd8d39ee52a514e0d\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ad50ab1e6c58ac12bd8d39ee52a514e0d\">&#9670;&nbsp;</a></span>UpdateQuery()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.QuerysAndWidgets.Querys.UpdateQuery </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>query</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update existing query </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">query</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/QuerysAndWidgets/Querys.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_queues_1_1_queue-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_queues.html\">Queues</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">Queue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Queues.Queue Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">VstsRestAPI.Queues.Queue</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>CreateQueue</b>(string name) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">VstsRestAPI.Queues.Queue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">VstsRestAPI.Queues.Queue</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html#a25b076002dd514e7a069197b24e9de56\">GetQueues</a>()</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">VstsRestAPI.Queues.Queue</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">VstsRestAPI.Queues.Queue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">VstsRestAPI.Queues.Queue</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Queue</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">VstsRestAPI.Queues.Queue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">VstsRestAPI.Queues.Queue</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Queues.Queue Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_queues.html\">Queues</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">Queue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Queues.Queue Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:af4f41af0b2fcff3a7fce8e852d020fb8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af4f41af0b2fcff3a7fce8e852d020fb8\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Queue</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:af4f41af0b2fcff3a7fce8e852d020fb8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a25b076002dd514e7a069197b24e9de56\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">Dictionary&lt; string, int &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html#a25b076002dd514e7a069197b24e9de56\">GetQueues</a> ()</td></tr>\n<tr class=\"memdesc:a25b076002dd514e7a069197b24e9de56\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Agent queue  <a href=\"#a25b076002dd514e7a069197b24e9de56\">More...</a><br /></td></tr>\n<tr class=\"separator:a25b076002dd514e7a069197b24e9de56\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a70ffbed55a315ec9077a6efd3ae1f1b0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a70ffbed55a315ec9077a6efd3ae1f1b0\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CreateQueue</b> (string name)</td></tr>\n<tr class=\"separator:a70ffbed55a315ec9077a6efd3ae1f1b0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a5ec3420e27cf685d0d2fea8b4246fe3a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5ec3420e27cf685d0d2fea8b4246fe3a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a5ec3420e27cf685d0d2fea8b4246fe3a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a25b076002dd514e7a069197b24e9de56\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a25b076002dd514e7a069197b24e9de56\">&#9670;&nbsp;</a></span>GetQueues()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">Dictionary&lt;string, int&gt; VstsRestAPI.Queues.Queue.GetQueues </td>\n          <td>(</td>\n          <td class=\"paramname\"></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Agent queue </p>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Queues/Queue.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_release_1_1_release_definition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_release.html\">Release</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">ReleaseDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Release.ReleaseDefinition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>CreateRelease</b>(string json, string project) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html#a3e03bd4ea027dca1c1cda2e0fe8ca73d\">CreateReleaseDefinition</a>(string json, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>GetEnvironmentIdsByName</b>(string project, string definitionName, string environment1, string environment2) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ReleaseDefinition</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">VstsRestAPI.Release.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Release.ReleaseDefinition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_release.html\">Release</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">ReleaseDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Release.ReleaseDefinition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a7e29d1c6493b62537d3bd70990fab5f7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7e29d1c6493b62537d3bd70990fab5f7\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ReleaseDefinition</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a7e29d1c6493b62537d3bd70990fab5f7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3e03bd4ea027dca1c1cda2e0fe8ca73d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html#a3e03bd4ea027dca1c1cda2e0fe8ca73d\">CreateReleaseDefinition</a> (string json, string project)</td></tr>\n<tr class=\"memdesc:a3e03bd4ea027dca1c1cda2e0fe8ca73d\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create <a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_release.html\">Release</a> Definition  <a href=\"#a3e03bd4ea027dca1c1cda2e0fe8ca73d\">More...</a><br /></td></tr>\n<tr class=\"separator:a3e03bd4ea027dca1c1cda2e0fe8ca73d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6b9d8b14e1417216140cf0493a55b013\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6b9d8b14e1417216140cf0493a55b013\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>CreateRelease</b> (string json, string project)</td></tr>\n<tr class=\"separator:a6b9d8b14e1417216140cf0493a55b013\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad1c33d32a37963808c99742b82010bf8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad1c33d32a37963808c99742b82010bf8\"></a>\nint []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GetEnvironmentIdsByName</b> (string project, string definitionName, string environment1, string environment2)</td></tr>\n<tr class=\"separator:ad1c33d32a37963808c99742b82010bf8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a0e13c618a8d0efeabb6fd8751249387a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0e13c618a8d0efeabb6fd8751249387a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a0e13c618a8d0efeabb6fd8751249387a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a3e03bd4ea027dca1c1cda2e0fe8ca73d\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a3e03bd4ea027dca1c1cda2e0fe8ca73d\">&#9670;&nbsp;</a></span>CreateReleaseDefinition()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string [] VstsRestAPI.Release.ReleaseDefinition.CreateReleaseDefinition </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create <a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_release.html\">Release</a> Definition </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Release/ReleaseDefinition.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">ServiceEndPoint</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Service.ServiceEndPoint Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">VstsRestAPI.Service.ServiceEndPoint</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html#a6243f8d6d7cf88a7327d1f99acf974c5\">CreateServiceEndPoint</a>(string json, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">VstsRestAPI.Service.ServiceEndPoint</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">VstsRestAPI.Service.ServiceEndPoint</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">VstsRestAPI.Service.ServiceEndPoint</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ServiceEndPoint</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">VstsRestAPI.Service.ServiceEndPoint</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">VstsRestAPI.Service.ServiceEndPoint</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Service.ServiceEndPoint Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">ServiceEndPoint</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Service.ServiceEndPoint Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:adb7dd1bfe4949e2a7551809eeff98600\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb7dd1bfe4949e2a7551809eeff98600\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ServiceEndPoint</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:adb7dd1bfe4949e2a7551809eeff98600\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6243f8d6d7cf88a7327d1f99acf974c5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">ServiceEndpointModel</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html#a6243f8d6d7cf88a7327d1f99acf974c5\">CreateServiceEndPoint</a> (string json, string project)</td></tr>\n<tr class=\"memdesc:a6243f8d6d7cf88a7327d1f99acf974c5\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create service endpoints  <a href=\"#a6243f8d6d7cf88a7327d1f99acf974c5\">More...</a><br /></td></tr>\n<tr class=\"separator:a6243f8d6d7cf88a7327d1f99acf974c5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a02dbf9151844c000fd955917c4c59c35\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a02dbf9151844c000fd955917c4c59c35\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a02dbf9151844c000fd955917c4c59c35\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a6243f8d6d7cf88a7327d1f99acf974c5\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a6243f8d6d7cf88a7327d1f99acf974c5\">&#9670;&nbsp;</a></span>CreateServiceEndPoint()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">ServiceEndpointModel</a> VstsRestAPI.Service.ServiceEndPoint.CreateServiceEndPoint </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create service endpoints </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Service/ServiceEndPoint.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_test_management.html\">TestManagement</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">TestManagement</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.TestManagement.TestManagement Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">VstsRestAPI.TestManagement.TestManagement</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a0c52041b2fed39904f0452d7ea26f51c\">AddTestCasesToSuite</a>(string testCases, string testPlan, string testSuite, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">VstsRestAPI.TestManagement.TestManagement</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a32fa8edefb9a51e435dc084a0a05c542\">CreateTestPlan</a>(string json, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">VstsRestAPI.TestManagement.TestManagement</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a5327dfbebb20e530b39cfa6a95ddaa4a\">CreatTestSuite</a>(string json, string testPlan, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">VstsRestAPI.TestManagement.TestManagement</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">VstsRestAPI.TestManagement.TestManagement</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">VstsRestAPI.TestManagement.TestManagement</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TestManagement</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">VstsRestAPI.TestManagement.TestManagement</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">VstsRestAPI.TestManagement.TestManagement</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.TestManagement.TestManagement Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_test_management.html\">TestManagement</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">TestManagement</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.TestManagement.TestManagement Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:aaa430e73de355d3670c0eee2af182389\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa430e73de355d3670c0eee2af182389\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TestManagement</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:aaa430e73de355d3670c0eee2af182389\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a32fa8edefb9a51e435dc084a0a05c542\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a32fa8edefb9a51e435dc084a0a05c542\">CreateTestPlan</a> (string json, string project)</td></tr>\n<tr class=\"memdesc:a32fa8edefb9a51e435dc084a0a05c542\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create test plans  <a href=\"#a32fa8edefb9a51e435dc084a0a05c542\">More...</a><br /></td></tr>\n<tr class=\"separator:a32fa8edefb9a51e435dc084a0a05c542\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5327dfbebb20e530b39cfa6a95ddaa4a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a5327dfbebb20e530b39cfa6a95ddaa4a\">CreatTestSuite</a> (string json, string testPlan, string project)</td></tr>\n<tr class=\"memdesc:a5327dfbebb20e530b39cfa6a95ddaa4a\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create test suites  <a href=\"#a5327dfbebb20e530b39cfa6a95ddaa4a\">More...</a><br /></td></tr>\n<tr class=\"separator:a5327dfbebb20e530b39cfa6a95ddaa4a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0c52041b2fed39904f0452d7ea26f51c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a0c52041b2fed39904f0452d7ea26f51c\">AddTestCasesToSuite</a> (string testCases, string testPlan, string testSuite, string project)</td></tr>\n<tr class=\"memdesc:a0c52041b2fed39904f0452d7ea26f51c\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Add test cases to test suites  <a href=\"#a0c52041b2fed39904f0452d7ea26f51c\">More...</a><br /></td></tr>\n<tr class=\"separator:a0c52041b2fed39904f0452d7ea26f51c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a59641e836cfa3e8872233db4f8d64da4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a59641e836cfa3e8872233db4f8d64da4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a59641e836cfa3e8872233db4f8d64da4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a0c52041b2fed39904f0452d7ea26f51c\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a0c52041b2fed39904f0452d7ea26f51c\">&#9670;&nbsp;</a></span>AddTestCasesToSuite()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.TestManagement.TestManagement.AddTestCasesToSuite </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>testCases</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>testPlan</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>testSuite</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Add test cases to test suites </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">testCases</td><td></td></tr>\n    <tr><td class=\"paramname\">testPlan</td><td></td></tr>\n    <tr><td class=\"paramname\">testSuite</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a32fa8edefb9a51e435dc084a0a05c542\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a32fa8edefb9a51e435dc084a0a05c542\">&#9670;&nbsp;</a></span>CreateTestPlan()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string [] VstsRestAPI.TestManagement.TestManagement.CreateTestPlan </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create test plans </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a5327dfbebb20e530b39cfa6a95ddaa4a\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a5327dfbebb20e530b39cfa6a95ddaa4a\">&#9670;&nbsp;</a></span>CreatTestSuite()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string [] VstsRestAPI.TestManagement.TestManagement.CreatTestSuite </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>testPlan</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create test suites </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">testPlan</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/TestManagement/TestManagement.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_utility-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\">Utility</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Utility Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\">VstsRestAPI.Utility</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>GeterroMessage</b>(string Exception) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\">VstsRestAPI.Utility</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\">VstsRestAPI.Utility</a></td><td class=\"entry\"><span class=\"mlabel\">static</span></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_utility.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Utility Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\">Utility</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-static-methods\">Static Public Member Functions</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_utility-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Utility Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-static-methods\"></a>\nStatic Public Member Functions</h2></td></tr>\n<tr class=\"memitem:ac76d3eef465a4c5708878000c2160394\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac76d3eef465a4c5708878000c2160394\"></a>\nstatic string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GeterroMessage</b> (string Exception)</td></tr>\n<tr class=\"separator:ac76d3eef465a4c5708878000c2160394\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Utility.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">BaseViewModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.BaseViewModel Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.BaseViewModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">BaseViewModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.BaseViewModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.BaseViewModel:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.png\" usemap=\"#VstsRestAPI.Viewmodel.BaseViewModel_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.BaseViewModel_map\" name=\"VstsRestAPI.Viewmodel.BaseViewModel_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\" alt=\"VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions\" shape=\"rect\" coords=\"473,56,936,80\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\" alt=\"VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team\" shape=\"rect\" coords=\"473,112,936,136\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\" alt=\"VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects\" shape=\"rect\" coords=\"473,168,936,192\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\" alt=\"VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard\" shape=\"rect\" coords=\"473,224,936,248\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\" alt=\"VstsRestAPI.Viewmodel.Queue.QueueModel\" shape=\"rect\" coords=\"473,280,936,304\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\" alt=\"VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories\" shape=\"rect\" coords=\"473,336,936,360\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules\" shape=\"rect\" coords=\"473,392,936,416\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.ColumnPost\" shape=\"rect\" coords=\"473,448,936,472\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node\" shape=\"rect\" coords=\"473,504,936,528\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse\" shape=\"rect\" coords=\"473,560,936,584\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards\" shape=\"rect\" coords=\"473,616,936,640\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node\" shape=\"rect\" coords=\"473,672,936,696\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes\" shape=\"rect\" coords=\"473,728,936,752\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results\" shape=\"rect\" coords=\"473,784,936,808\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems\" shape=\"rect\" coords=\"473,840,936,864\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities\" shape=\"rect\" coords=\"473,896,936,920\"/>\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\" alt=\"VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem\" shape=\"rect\" coords=\"473,952,936,976\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/BaseViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">Authoredby</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">Definitions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">Pool</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">Project</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">Queue</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Build/BuildGetListofBuildDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">Authoredby</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>imageUrl</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>uniqueName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">Authoredby</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:afa7b12df5581506f53f57604a95cec9d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afa7b12df5581506f53f57604a95cec9d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afa7b12df5581506f53f57604a95cec9d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6f0a2cc67020d84e355177333e5db1b4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6f0a2cc67020d84e355177333e5db1b4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6f0a2cc67020d84e355177333e5db1b4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a321f55b50ee50661813b6a8223ca602a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a321f55b50ee50661813b6a8223ca602a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uniqueName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a321f55b50ee50661813b6a8223ca602a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a234fd3132c3a95e6d96d0b0b08420ba6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a234fd3132c3a95e6d96d0b0b08420ba6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a234fd3132c3a95e6d96d0b0b08420ba6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adb8215e3c26c55b8a53fab110693a053\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb8215e3c26c55b8a53fab110693a053\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>imageUrl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adb8215e3c26c55b8a53fab110693a053\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Build/BuildGetListofBuildDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">Definitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">Definitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.png\" usemap=\"#VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions_map\" name=\"VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,463,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab80c2ddbb80ec387c275c67aed68b15c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab80c2ddbb80ec387c275c67aed68b15c\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab80c2ddbb80ec387c275c67aed68b15c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa9315e4be59c2b63dd0db4cbe3fdda5f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa9315e4be59c2b63dd0db4cbe3fdda5f\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa9315e4be59c2b63dd0db4cbe3fdda5f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Build/BuildGetListofBuildDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">Pool</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">Pool</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a987515e5795e7e6b1d7556907cf5c964\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a987515e5795e7e6b1d7556907cf5c964\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a987515e5795e7e6b1d7556907cf5c964\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab61cd4b03d139ddd224f36b363e34e6b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab61cd4b03d139ddd224f36b363e34e6b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab61cd4b03d139ddd224f36b363e34e6b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Build/BuildGetListofBuildDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>revision</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>state</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6677a252672515c3d7fb9b860757df64\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6677a252672515c3d7fb9b860757df64\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6677a252672515c3d7fb9b860757df64\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a91282ace08f724a9534ff84e9fb0ecfa\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a91282ace08f724a9534ff84e9fb0ecfa\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a91282ace08f724a9534ff84e9fb0ecfa\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5c8a53f8b0e60d4954d81feb3fe6f1ac\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5c8a53f8b0e60d4954d81feb3fe6f1ac\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5c8a53f8b0e60d4954d81feb3fe6f1ac\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a49cff0b1c4490f2a7e16095ca8a2f30c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a49cff0b1c4490f2a7e16095ca8a2f30c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>state</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a49cff0b1c4490f2a7e16095ca8a2f30c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a44fe87571c65dd4461e017bd642ef90d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a44fe87571c65dd4461e017bd642ef90d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>revision</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a44fe87571c65dd4461e017bd642ef90d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Build/BuildGetListofBuildDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">Queue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>pool</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">Queue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2dc082008a07ca9574e15c12c4cc253f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2dc082008a07ca9574e15c12c4cc253f\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">Pool</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pool</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2dc082008a07ca9574e15c12c4cc253f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a60263c65260d552ae98f1af0c2d7786c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a60263c65260d552ae98f1af0c2d7786c\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a60263c65260d552ae98f1af0c2d7786c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaa3f1bb55d4b4e80d625d401ba755a1d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa3f1bb55d4b4e80d625d401ba755a1d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa3f1bb55d4b4e80d625d401ba755a1d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Build/BuildGetListofBuildDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>authoredBy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>createdDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>project</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>quality</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>queue</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>revision</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>uri</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:af440cec3a191a35ca439e72516b9e875\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af440cec3a191a35ca439e72516b9e875\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>quality</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af440cec3a191a35ca439e72516b9e875\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a84f979fef2ff852010a35eeb5af9e79e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a84f979fef2ff852010a35eeb5af9e79e\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">Authoredby</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>authoredBy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a84f979fef2ff852010a35eeb5af9e79e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a18667c0eb0b64790c70fa719ec2cfb39\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a18667c0eb0b64790c70fa719ec2cfb39\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">Queue</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queue</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a18667c0eb0b64790c70fa719ec2cfb39\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aceb820cb9324d66ba11358bf863f4e08\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aceb820cb9324d66ba11358bf863f4e08\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uri</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aceb820cb9324d66ba11358bf863f4e08\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a626aaa08956450c44f844b595324e9ad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a626aaa08956450c44f844b595324e9ad\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a626aaa08956450c44f844b595324e9ad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2bb81221575164f9c07068a4f5fa725e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2bb81221575164f9c07068a4f5fa725e\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>revision</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2bb81221575164f9c07068a4f5fa725e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ade5d699e00ff840bc92104bd6272b04a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ade5d699e00ff840bc92104bd6272b04a\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>createdDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ade5d699e00ff840bc92104bd6272b04a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3c074fa1d36d7a6c518d6f76ec575355\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3c074fa1d36d7a6c518d6f76ec575355\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3c074fa1d36d7a6c518d6f76ec575355\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a62817abe4b71fd36666fe15875e8e064\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a62817abe4b71fd36666fe15875e8e064\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a62817abe4b71fd36666fe15875e8e064\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a112b95a7eae22f6f65cbe99992cfb65c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a112b95a7eae22f6f65cbe99992cfb65c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a112b95a7eae22f6f65cbe99992cfb65c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab29fc9c7f73e377bf4744ccacc17ca52\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab29fc9c7f73e377bf4744ccacc17ca52\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">Project</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab29fc9c7f73e377bf4744ccacc17ca52\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Build/BuildGetListofBuildDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">AccessLevel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">Account</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">Links</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">Member</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\">Memberships</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\">Self</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">AccessLevel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accountLicenseType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>licenseDisplayName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>licensingSource</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>status</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>statusMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">AccessLevel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad2670b6be0a8c5c57bc6c03d305715ab\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad2670b6be0a8c5c57bc6c03d305715ab\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>licensingSource</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad2670b6be0a8c5c57bc6c03d305715ab\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a734b5bc139b7ff2853abebd2324efd94\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a734b5bc139b7ff2853abebd2324efd94\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accountLicenseType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a734b5bc139b7ff2853abebd2324efd94\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac84352bdf1bd74892f48c45e08043345\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac84352bdf1bd74892f48c45e08043345\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>licenseDisplayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac84352bdf1bd74892f48c45e08043345\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6b6973963c804ed16ad0f1c62e77bbed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6b6973963c804ed16ad0f1c62e77bbed\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>status</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6b6973963c804ed16ad0f1c62e77bbed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae1cdf85b202e1e83d3caba81f1b2d97e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae1cdf85b202e1e83d3caba81f1b2d97e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>statusMessage</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae1cdf85b202e1e83d3caba81f1b2d97e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">Account</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">Account</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4d7117986f891ea51391e42b5f76216d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4d7117986f891ea51391e42b5f76216d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4d7117986f891ea51391e42b5f76216d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad21109183f9784899def1e6d88991f77\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad21109183f9784899def1e6d88991f77\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad21109183f9784899def1e6d88991f77\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>memberships</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>self</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a780b4699eadd82ff0c3110045f40a770\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a780b4699eadd82ff0c3110045f40a770\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\">Self</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>self</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a780b4699eadd82ff0c3110045f40a770\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abc1c126555dbb8c135baf083e97ec19d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abc1c126555dbb8c135baf083e97ec19d\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\">Memberships</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>memberships</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abc1c126555dbb8c135baf083e97ec19d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">Member</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>_links</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>descriptor</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>domain</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>mailAddress</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>metaTypeId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>origin</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>originId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>principalName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>subjectKind</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">Member</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae76e6dfacc3509d9c8653377aea861af\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae76e6dfacc3509d9c8653377aea861af\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>subjectKind</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae76e6dfacc3509d9c8653377aea861af\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4b482a850be57ec5b3b13b0ea1cb8e3e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4b482a850be57ec5b3b13b0ea1cb8e3e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>domain</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4b482a850be57ec5b3b13b0ea1cb8e3e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aba6d9ef18e4fcfb5fcafd63f345214e7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aba6d9ef18e4fcfb5fcafd63f345214e7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>principalName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aba6d9ef18e4fcfb5fcafd63f345214e7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab0e96f12cb4c03107bf137e87cec0bf2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab0e96f12cb4c03107bf137e87cec0bf2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>mailAddress</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab0e96f12cb4c03107bf137e87cec0bf2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aae69588aa8859890d91d3d879aa4383a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aae69588aa8859890d91d3d879aa4383a\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>metaTypeId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aae69588aa8859890d91d3d879aa4383a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8bcaa025e5516d6e4e82f8f020c056ac\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8bcaa025e5516d6e4e82f8f020c056ac\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>origin</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8bcaa025e5516d6e4e82f8f020c056ac\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aea4e9eddeee1ff39b9146037cda65f34\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aea4e9eddeee1ff39b9146037cda65f34\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>originId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aea4e9eddeee1ff39b9146037cda65f34\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:add2539ca93cfa38e91fdf20a64841fa9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add2539ca93cfa38e91fdf20a64841fa9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add2539ca93cfa38e91fdf20a64841fa9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a040f706d5c11f9b3c5b390b5f8037e64\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a040f706d5c11f9b3c5b390b5f8037e64\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a040f706d5c11f9b3c5b390b5f8037e64\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6619fb57d1889ec6d1b9cb96b859a2d3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6619fb57d1889ec6d1b9cb96b859a2d3\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">Links</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>_links</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6619fb57d1889ec6d1b9cb96b859a2d3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a679643cbd1becf678381e2510633b01f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a679643cbd1becf678381e2510633b01f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a679643cbd1becf678381e2510633b01f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a420d2c653ba15c9f7b9f97e7a42b10de\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a420d2c653ba15c9f7b9f97e7a42b10de\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>descriptor</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a420d2c653ba15c9f7b9f97e7a42b10de\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\">Memberships</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Memberships Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Memberships</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Memberships</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Memberships</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Memberships Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\">Memberships</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Memberships Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1f58f3047c337c46d5008d24eb6a5b6a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1f58f3047c337c46d5008d24eb6a5b6a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1f58f3047c337c46d5008d24eb6a5b6a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\">Self</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\">Self</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7878a81e3fa8477336c85dd2c9af9047\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7878a81e3fa8477336c85dd2c9af9047\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7878a81e3fa8477336c85dd2c9af9047\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>accessLevel</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>extensions</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>lastAccessedDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>member</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>projectEntitlements</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a911ad756779568c5e9be66a5237c8672\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a911ad756779568c5e9be66a5237c8672\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a911ad756779568c5e9be66a5237c8672\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa626210ffea01ca2863fccddd411e789\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa626210ffea01ca2863fccddd411e789\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">Member</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>member</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa626210ffea01ca2863fccddd411e789\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3411e097dddb65c626ef454bbb2a29d5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3411e097dddb65c626ef454bbb2a29d5\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">AccessLevel</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>accessLevel</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3411e097dddb65c626ef454bbb2a29d5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad438d502c7f30336aaf266d6e5ae4bcf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad438d502c7f30336aaf266d6e5ae4bcf\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastAccessedDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad438d502c7f30336aaf266d6e5ae4bcf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a47618fc1fe3e1be8438a4ffbe216d589\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a47618fc1fe3e1be8438a4ffbe216d589\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>projectEntitlements</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a47618fc1fe3e1be8438a4ffbe216d589\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aca66fd1518971dd92f632efe911a97fb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aca66fd1518971dd92f632efe911a97fb\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>extensions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aca66fd1518971dd92f632efe911a97fb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html\">GetTeamResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">Team</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/GetTeamResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html\">GetTeamResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">Team</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>identityUrl</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html\">GetTeamResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">Team</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.png\" usemap=\"#VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team_map\" name=\"VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,390,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a59cfd92d37217a0566520b85dc5783bc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a59cfd92d37217a0566520b85dc5783bc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a59cfd92d37217a0566520b85dc5783bc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa109c97281b2caf5641627cff42115f6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa109c97281b2caf5641627cff42115f6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa109c97281b2caf5641627cff42115f6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3b256bbd1b9a36052e78607949502f71\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3b256bbd1b9a36052e78607949502f71\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3b256bbd1b9a36052e78607949502f71\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a18107ae513aa399eb8f10414a08ec327\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a18107ae513aa399eb8f10414a08ec327\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a18107ae513aa399eb8f10414a08ec327\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3cbd8c2ef7a550d34a05f5b0017fc585\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3cbd8c2ef7a550d34a05f5b0017fc585\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>identityUrl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3cbd8c2ef7a550d34a05f5b0017fc585\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/GetTeamResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\">ListofProjectsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">Projects</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/ListofProjectsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\">ListofProjectsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">Projects</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\">ListofProjectsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">Projects</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.png\" usemap=\"#VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects_map\" name=\"VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,433,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a8638df4a5290bea231a3be01c79e85de\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8638df4a5290bea231a3be01c79e85de\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8638df4a5290bea231a3be01c79e85de\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a36c9f352d4f57dc5259b4ebee169b389\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a36c9f352d4f57dc5259b4ebee169b389\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a36c9f352d4f57dc5259b4ebee169b389\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/ListofProjectsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\">ListofProjectsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>state</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\">ListofProjectsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7db91f69af44f72f327ec2ae6c8529ba\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7db91f69af44f72f327ec2ae6c8529ba\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7db91f69af44f72f327ec2ae6c8529ba\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a183ad4f36e41446744538fbd52336c17\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a183ad4f36e41446744538fbd52336c17\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a183ad4f36e41446744538fbd52336c17\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a686d6fe50e5c5ac604eb47f55f120f4a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a686d6fe50e5c5ac604eb47f55f120f4a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a686d6fe50e5c5ac604eb47f55f120f4a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaa15b8fef7feb0ccae36ba5afb47b735\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa15b8fef7feb0ccae36ba5afb47b735\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa15b8fef7feb0ccae36ba5afb47b735\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab209f4ddc0a1718c5901312fb5b1a8aa\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab209f4ddc0a1718c5901312fb5b1a8aa\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>state</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab209f4ddc0a1718c5901312fb5b1a8aa\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/ListofProjectsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\">TeamIterationsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">Iterations</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamIterationsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\">TeamIterationsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">Iterations</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\">TeamIterationsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">Iterations</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a54db76fe063397795c904a2c0436454f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a54db76fe063397795c904a2c0436454f\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a54db76fe063397795c904a2c0436454f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afab0780afc84be7c46ca7bb8965452b7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afab0780afc84be7c46ca7bb8965452b7\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afab0780afc84be7c46ca7bb8965452b7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamIterationsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\">TeamIterationsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\">TeamIterationsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4f201b177a24d28a3d4b8c7010af3aaf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4f201b177a24d28a3d4b8c7010af3aaf\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4f201b177a24d28a3d4b8c7010af3aaf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afcb825dddcf28d63d9c9bcad4a87c4ff\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afcb825dddcf28d63d9c9bcad4a87c4ff\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afcb825dddcf28d63d9c9bcad4a87c4ff\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamIterationsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">TeamMemberResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">TeamMemberResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">TeamMembers</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac8fa9b94da46315d6e811a46524da3bf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac8fa9b94da46315d6e811a46524da3bf\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac8fa9b94da46315d6e811a46524da3bf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamMemberResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">TeamMemberResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">TeamMembers</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">TeamMemberResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">TeamMembers</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae22a38ce7738099aa3bfd61de9de6e87\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae22a38ce7738099aa3bfd61de9de6e87\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae22a38ce7738099aa3bfd61de9de6e87\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8600625a39141b6ce5ee38176d7eb1d7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8600625a39141b6ce5ee38176d7eb1d7\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8600625a39141b6ce5ee38176d7eb1d7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamMemberResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">TeamMemberResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>imageUrl</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>uniqueName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">TeamMemberResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aae4c285f57075decbf785b8401767e94\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aae4c285f57075decbf785b8401767e94\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aae4c285f57075decbf785b8401767e94\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9cc1b8cc03d8f9e7e14319a5936f1792\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9cc1b8cc03d8f9e7e14319a5936f1792\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9cc1b8cc03d8f9e7e14319a5936f1792\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3bff363ed90a0d556ffc51386756d07f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3bff363ed90a0d556ffc51386756d07f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uniqueName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3bff363ed90a0d556ffc51386756d07f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adc0b57b12662ecfe25b288d67dff9433\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adc0b57b12662ecfe25b288d67dff9433\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adc0b57b12662ecfe25b288d67dff9433\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae6ecd8cdc92da4df5f47d7f208414f2e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae6ecd8cdc92da4df5f47d7f208414f2e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>imageUrl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae6ecd8cdc92da4df5f47d7f208414f2e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamMemberResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">TeamResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">TeamResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7b00fa436c03e268191cc5bce752843f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7b00fa436c03e268191cc5bce752843f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7b00fa436c03e268191cc5bce752843f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3f626b4adacc157852d885b399cfa667\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3f626b4adacc157852d885b399cfa667\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3f626b4adacc157852d885b399cfa667\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">BacklogIteration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">DefaultIteration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\">Project</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">TeamSetting</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamSettingResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">BacklogIteration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">BacklogIteration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a400170499c4c32cc8cc695a2f9daf4d7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a400170499c4c32cc8cc695a2f9daf4d7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a400170499c4c32cc8cc695a2f9daf4d7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0fbee32ba8600b0325f2f183a4c00d4a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0fbee32ba8600b0325f2f183a4c00d4a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0fbee32ba8600b0325f2f183a4c00d4a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae59ff3ce86f2331d64cae2edbaacea2f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae59ff3ce86f2331d64cae2edbaacea2f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae59ff3ce86f2331d64cae2edbaacea2f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa67513791bdc29d1826fd6838f0ba281\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa67513791bdc29d1826fd6838f0ba281\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa67513791bdc29d1826fd6838f0ba281\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamSettingResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">DefaultIteration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">DefaultIteration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3e7c1306aed82e9353d91c0496f6dac2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3e7c1306aed82e9353d91c0496f6dac2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3e7c1306aed82e9353d91c0496f6dac2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0755ad31b0d1a96b694e0b72e4269d43\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0755ad31b0d1a96b694e0b72e4269d43\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0755ad31b0d1a96b694e0b72e4269d43\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8227a2e1bf8e062a6edeaf270cedcc18\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8227a2e1bf8e062a6edeaf270cedcc18\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8227a2e1bf8e062a6edeaf270cedcc18\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8b7a799a6121732ac6135301074857cd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8b7a799a6121732ac6135301074857cd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8b7a799a6121732ac6135301074857cd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamSettingResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a55e065680341841c4a6e3b21e69b2d9d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a55e065680341841c4a6e3b21e69b2d9d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a55e065680341841c4a6e3b21e69b2d9d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamSettingResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">TeamSetting</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>backlogIteration</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>defaultIteration</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">TeamSetting</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6acc011bee96d0dafceb4754c24d8710\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6acc011bee96d0dafceb4754c24d8710\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">BacklogIteration</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>backlogIteration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6acc011bee96d0dafceb4754c24d8710\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7b5f7c6453580e5553e2efc9dcef36b3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7b5f7c6453580e5553e2efc9dcef36b3\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">DefaultIteration</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>defaultIteration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7b5f7c6453580e5553e2efc9dcef36b3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamSettingResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html\">DashBoardeTagResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">Dashboard</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/QuerysAndWidgets/DashBoardeTagResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html\">DashBoardeTagResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>eTag</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>position</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html\">DashBoardeTagResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:af88d55e822bd728da88a8ae9cc312ec7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af88d55e822bd728da88a8ae9cc312ec7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af88d55e822bd728da88a8ae9cc312ec7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0a3c816fde6a02f5ba000a593c089833\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0a3c816fde6a02f5ba000a593c089833\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0a3c816fde6a02f5ba000a593c089833\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af3f903c668469de3677eec779bc56faa\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af3f903c668469de3677eec779bc56faa\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>position</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af3f903c668469de3677eec779bc56faa\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac2ea0442a11125cf4a57081573e4a514\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac2ea0442a11125cf4a57081573e4a514\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>eTag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac2ea0442a11125cf4a57081573e4a514\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/QuerysAndWidgets/DashBoardeTagResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\">DashboardResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\">Dashboard</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/QuerysAndWidgets/DashboardResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\">DashboardResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>dashboardEntries</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\">DashboardResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\">Dashboard</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.png\" usemap=\"#VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard_map\" name=\"VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,445,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae51b380c89a04e8a479a1e52b2ace90f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae51b380c89a04e8a479a1e52b2ace90f\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>dashboardEntries</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae51b380c89a04e8a479a1e52b2ace90f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/QuerysAndWidgets/DashboardResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\">DashboardResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\">DashboardResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad336af95505e3ec4d0f21354dca93f50\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad336af95505e3ec4d0f21354dca93f50\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad336af95505e3ec4d0f21354dca93f50\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9e47849119251c5a5744481c978080c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9e47849119251c5a5744481c978080c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9e47849119251c5a5744481c978080c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/QuerysAndWidgets/DashboardResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">QueryResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">QueryResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae3ded70cb703583f41a46ec9904a49de\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae3ded70cb703583f41a46ec9904a49de\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae3ded70cb703583f41a46ec9904a49de\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a549a257b3bd977f12af645953d87aa3d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a549a257b3bd977f12af645953d87aa3d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a549a257b3bd977f12af645953d87aa3d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/QuerysAndWidgets/QueryResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">AgentQueueModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>groupScopeId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>pool</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>projectId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Queue.AgentQueueModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">AgentQueueModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a33eeed21eb919d4db697fb669f034a0f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a33eeed21eb919d4db697fb669f034a0f\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a33eeed21eb919d4db697fb669f034a0f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a68f7bf83165f893e8cb1e44b14757026\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a68f7bf83165f893e8cb1e44b14757026\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>projectId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a68f7bf83165f893e8cb1e44b14757026\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a30542813a3d1a92b671e1f2f6fcabd4e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a30542813a3d1a92b671e1f2f6fcabd4e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a30542813a3d1a92b671e1f2f6fcabd4e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae9ebf579b404b485fd3428182f6d9a52\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae9ebf579b404b485fd3428182f6d9a52\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>groupScopeId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae9ebf579b404b485fd3428182f6d9a52\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1e5df5ab4a8f1255871afe23dcd9600e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1e5df5ab4a8f1255871afe23dcd9600e\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">Pool</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pool</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1e5df5ab4a8f1255871afe23dcd9600e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Queue/QueueModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">Pool</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue.Pool Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">VstsRestAPI.Viewmodel.Queue.Pool</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">VstsRestAPI.Viewmodel.Queue.Pool</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">VstsRestAPI.Viewmodel.Queue.Pool</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>poolType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">VstsRestAPI.Viewmodel.Queue.Pool</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">VstsRestAPI.Viewmodel.Queue.Pool</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Queue.Pool Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">Pool</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue.Pool Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad75826bbfd4290efbbf23daaa0c8759b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad75826bbfd4290efbbf23daaa0c8759b\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad75826bbfd4290efbbf23daaa0c8759b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae1e50c35efe45110a7d6fad19fc2103b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae1e50c35efe45110a7d6fad19fc2103b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>poolType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae1e50c35efe45110a7d6fad19fc2103b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Queue/QueueModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">QueueModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue.QueueModel Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">VstsRestAPI.Viewmodel.Queue.QueueModel</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">VstsRestAPI.Viewmodel.Queue.QueueModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">VstsRestAPI.Viewmodel.Queue.QueueModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">VstsRestAPI.Viewmodel.Queue.QueueModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">VstsRestAPI.Viewmodel.Queue.QueueModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Queue.QueueModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">QueueModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue.QueueModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.Queue.QueueModel:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.png\" usemap=\"#VstsRestAPI.Viewmodel.Queue.QueueModel_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.Queue.QueueModel_map\" name=\"VstsRestAPI.Viewmodel.Queue.QueueModel_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,264,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4f8d502dfe624167b4ba40c922c1296c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4f8d502dfe624167b4ba40c922c1296c\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4f8d502dfe624167b4ba40c922c1296c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af3ef37f6850474d688bf96afa9db231b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af3ef37f6850474d688bf96afa9db231b\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">AgentQueueModel</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af3ef37f6850474d688bf96afa9db231b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Queue/QueueModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">VstsRestAPI.Viewmodel.Queue.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">VstsRestAPI.Viewmodel.Queue.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">VstsRestAPI.Viewmodel.Queue.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">VstsRestAPI.Viewmodel.Queue.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">VstsRestAPI.Viewmodel.Queue.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>projectId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">VstsRestAPI.Viewmodel.Queue.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">VstsRestAPI.Viewmodel.Queue.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Queue.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a17e35cd3f104c34ed32e81d044b0086f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a17e35cd3f104c34ed32e81d044b0086f\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a17e35cd3f104c34ed32e81d044b0086f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a549176f8b14f23448ee05baec3e5cef5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a549176f8b14f23448ee05baec3e5cef5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>projectId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a549176f8b14f23448ee05baec3e5cef5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6cd4d3a7617dd2d25ed49125661ab730\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6cd4d3a7617dd2d25ed49125661ab730\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6cd4d3a7617dd2d25ed49125661ab730\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Queue/QueueModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">Approval</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">Approver</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">Artifact</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">Condition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">Definition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">DefinitionReference</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">DeploymentInput</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">DeployPhas</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\">DeployStep</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">Environment</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">EnvironmentOptions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">ExecutionPolicy</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">Inputs</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">Owner</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\">ParallelExecution</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\">PostDeployApprovals</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\">PreDeployApprovals</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">Project</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">ReleaseDefinition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">RetentionPolicy</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">Task</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">Trigger</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html\">Variables</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">Approval</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>approver</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isAutomated</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isNotificationOn</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rank</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">Approval</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a738f28ccdd552ca533e0a08f3668f935\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a738f28ccdd552ca533e0a08f3668f935\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rank</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a738f28ccdd552ca533e0a08f3668f935\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a95c3867f012b34bf522b32927c041990\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a95c3867f012b34bf522b32927c041990\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isAutomated</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a95c3867f012b34bf522b32927c041990\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8c4101d10d4d2a503161a672e1d09843\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8c4101d10d4d2a503161a672e1d09843\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isNotificationOn</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8c4101d10d4d2a503161a672e1d09843\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa008882e47635065f657f6bebbb419ca\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa008882e47635065f657f6bebbb419ca\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">Approver</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>approver</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa008882e47635065f657f6bebbb419ca\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">Approver</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>uniqueName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">Approver</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aef9118bf25b236ff48252f2001a7bcbc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aef9118bf25b236ff48252f2001a7bcbc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aef9118bf25b236ff48252f2001a7bcbc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a818ec1a441895767253d08fab1bd4702\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a818ec1a441895767253d08fab1bd4702\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a818ec1a441895767253d08fab1bd4702\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0014d4aa6c662a1ed9a7b19ca0fbe9bd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0014d4aa6c662a1ed9a7b19ca0fbe9bd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uniqueName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0014d4aa6c662a1ed9a7b19ca0fbe9bd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">Artifact</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>alias</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>definitionReference</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isPrimary</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>sourceId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">Artifact</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aaa31f78ea05ecb462350b9ef4f8fdc42\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa31f78ea05ecb462350b9ef4f8fdc42\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>sourceId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa31f78ea05ecb462350b9ef4f8fdc42\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac62beb38a0e8dc63c95560a973c15b10\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac62beb38a0e8dc63c95560a973c15b10\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac62beb38a0e8dc63c95560a973c15b10\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac4d248a0f9d6154546cbb1a5aa80ee2f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac4d248a0f9d6154546cbb1a5aa80ee2f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>alias</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac4d248a0f9d6154546cbb1a5aa80ee2f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae376bb1b225afff0dbaf2009167953bb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae376bb1b225afff0dbaf2009167953bb\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">DefinitionReference</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>definitionReference</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae376bb1b225afff0dbaf2009167953bb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a538e6ded1965d3cf0c5cc4248dfe389c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a538e6ded1965d3cf0c5cc4248dfe389c\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isPrimary</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a538e6ded1965d3cf0c5cc4248dfe389c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">Condition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>conditionType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">Condition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2dc0f2c5d95b9dbe29885220c5739399\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2dc0f2c5d95b9dbe29885220c5739399\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2dc0f2c5d95b9dbe29885220c5739399\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac0c7e1e76bf837d0e50458944f6ac589\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac0c7e1e76bf837d0e50458944f6ac589\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>conditionType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac0c7e1e76bf837d0e50458944f6ac589\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7aa80352f078a7f5a9f420e8fbaa2917\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7aa80352f078a7f5a9f420e8fbaa2917\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7aa80352f078a7f5a9f420e8fbaa2917\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">Definition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">Definition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad24a7de4cdd8e34d7255287dd7c6817f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad24a7de4cdd8e34d7255287dd7c6817f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad24a7de4cdd8e34d7255287dd7c6817f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afd5e834b5f9d117ffe2bd4063eecfa66\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afd5e834b5f9d117ffe2bd4063eecfa66\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afd5e834b5f9d117ffe2bd4063eecfa66\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">DefinitionReference</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>definition</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>project</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">DefinitionReference</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a645d9321e9c5957ebdd68dc1fe9c330d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a645d9321e9c5957ebdd68dc1fe9c330d\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">Definition</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>definition</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a645d9321e9c5957ebdd68dc1fe9c330d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a64759e5bfa519f6b2acde2f620d4c88f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a64759e5bfa519f6b2acde2f620d4c88f\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">Project</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a64759e5bfa519f6b2acde2f620d4c88f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">DeployPhas</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>deploymentInput</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>phaseType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rank</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>workflowTasks</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">DeployPhas</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:add8ab9271cbdc5cbf69bdfe264c03bd0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add8ab9271cbdc5cbf69bdfe264c03bd0\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">DeploymentInput</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deploymentInput</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add8ab9271cbdc5cbf69bdfe264c03bd0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa49e4d4097f602a928aa53d2e642aa98\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa49e4d4097f602a928aa53d2e642aa98\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rank</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa49e4d4097f602a928aa53d2e642aa98\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a66dc849eb1219bb4e8ee7aa2032d6eed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a66dc849eb1219bb4e8ee7aa2032d6eed\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>phaseType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a66dc849eb1219bb4e8ee7aa2032d6eed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad22fbe991def025e5251f8d782d45c4e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad22fbe991def025e5251f8d782d45c4e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad22fbe991def025e5251f8d782d45c4e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a949c21f6f53a23b783ee52e0a03e507f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a949c21f6f53a23b783ee52e0a03e507f\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workflowTasks</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a949c21f6f53a23b783ee52e0a03e507f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\">DeployStep</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>tasks</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\">DeployStep</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a53b540e1ceb3aa500ed2db1f84d2137c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a53b540e1ceb3aa500ed2db1f84d2137c\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">Task</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tasks</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a53b540e1ceb3aa500ed2db1f84d2137c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">DeploymentInput</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>clean</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>cleanOptions</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>demands</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>enableAccessToken</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parallelExecution</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>queueId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>skipArtifactsDownload</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>timeoutInMinutes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">DeploymentInput</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3d58b86157f2819f21b79a2514eb5e48\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3d58b86157f2819f21b79a2514eb5e48\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\">ParallelExecution</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parallelExecution</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3d58b86157f2819f21b79a2514eb5e48\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4d7b502c119e2a7096e1e6817f8db7ec\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4d7b502c119e2a7096e1e6817f8db7ec\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>skipArtifactsDownload</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4d7b502c119e2a7096e1e6817f8db7ec\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a84c09ec253c1af79ca59e4e78157f7ef\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a84c09ec253c1af79ca59e4e78157f7ef\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>timeoutInMinutes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a84c09ec253c1af79ca59e4e78157f7ef\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9e3da15147e68c74e820958dfd7d9839\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9e3da15147e68c74e820958dfd7d9839\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queueId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9e3da15147e68c74e820958dfd7d9839\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab06c939f61d36d9298cc186c2329cbcf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab06c939f61d36d9298cc186c2329cbcf\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>demands</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab06c939f61d36d9298cc186c2329cbcf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abb2c85247f0b6df51db8d23f6954a629\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abb2c85247f0b6df51db8d23f6954a629\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abb2c85247f0b6df51db8d23f6954a629\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a69664154235b5cca6627459fbe6b8301\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a69664154235b5cca6627459fbe6b8301\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>clean</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a69664154235b5cca6627459fbe6b8301\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2024cac2e40ae3086044aaedf7d0a76e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2024cac2e40ae3086044aaedf7d0a76e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cleanOptions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2024cac2e40ae3086044aaedf7d0a76e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">Environment</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>conditions</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>demands</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>deployPhases</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>deployStep</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>environmentOptions</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>executionPolicy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>owner</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>postDeployApprovals</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>preDeployApprovals</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>queueId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>rank</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>retentionPolicy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>schedules</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>variables</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">Environment</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3c73147599c057efbde02a1386eda03e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3c73147599c057efbde02a1386eda03e\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3c73147599c057efbde02a1386eda03e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9ca83c26fc3397939065d1d04b27acc3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9ca83c26fc3397939065d1d04b27acc3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9ca83c26fc3397939065d1d04b27acc3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aad85c51184d84637303431779a53d58d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aad85c51184d84637303431779a53d58d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rank</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aad85c51184d84637303431779a53d58d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a320180c5e1020291f662f742d4195e18\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a320180c5e1020291f662f742d4195e18\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">Owner</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>owner</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a320180c5e1020291f662f742d4195e18\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaa7830d03a579c9f1279c6341b8a9854\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa7830d03a579c9f1279c6341b8a9854\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html\">Variables</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>variables</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa7830d03a579c9f1279c6341b8a9854\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adbe259c5fef4b532e7893fdbfe6eb0ad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adbe259c5fef4b532e7893fdbfe6eb0ad\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\">PreDeployApprovals</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>preDeployApprovals</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adbe259c5fef4b532e7893fdbfe6eb0ad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a93133eea85a827bc0f40b752d9159f34\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a93133eea85a827bc0f40b752d9159f34\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\">DeployStep</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deployStep</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a93133eea85a827bc0f40b752d9159f34\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afb61cd9afcad35e46f21e805b364ccd9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb61cd9afcad35e46f21e805b364ccd9\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\">PostDeployApprovals</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>postDeployApprovals</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb61cd9afcad35e46f21e805b364ccd9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a720af3d4d2e40ef2e16823aee81a4346\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a720af3d4d2e40ef2e16823aee81a4346\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">DeployPhas</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deployPhases</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a720af3d4d2e40ef2e16823aee81a4346\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a06a732567eed0435fb2f8a8ce62df299\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a06a732567eed0435fb2f8a8ce62df299\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">EnvironmentOptions</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>environmentOptions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a06a732567eed0435fb2f8a8ce62df299\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad5ce964d90041c221144fc21182dc1b4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad5ce964d90041c221144fc21182dc1b4\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>demands</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad5ce964d90041c221144fc21182dc1b4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a186a7ebacb950451589c43604a4ff35e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a186a7ebacb950451589c43604a4ff35e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queueId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a186a7ebacb950451589c43604a4ff35e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1bfe51c643c9d47fc07d88c17d01ee29\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1bfe51c643c9d47fc07d88c17d01ee29\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">Condition</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>conditions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1bfe51c643c9d47fc07d88c17d01ee29\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a095a8c5a98bcaa06c37c3bf157015d60\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a095a8c5a98bcaa06c37c3bf157015d60\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">ExecutionPolicy</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>executionPolicy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a095a8c5a98bcaa06c37c3bf157015d60\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2530ca2b2a8d5fb0f765fdbd08a0b93a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2530ca2b2a8d5fb0f765fdbd08a0b93a\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>schedules</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2530ca2b2a8d5fb0f765fdbd08a0b93a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa663455adc46f106e23854ce08341f69\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa663455adc46f106e23854ce08341f69\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">RetentionPolicy</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>retentionPolicy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa663455adc46f106e23854ce08341f69\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">EnvironmentOptions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>emailNotificationType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>emailRecipients</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>enableAccessToken</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>skipArtifactsDownload</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>timeoutInMinutes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">EnvironmentOptions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a9e0f47f36324a349ee4bdcb5c647dfb7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9e0f47f36324a349ee4bdcb5c647dfb7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>emailNotificationType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9e0f47f36324a349ee4bdcb5c647dfb7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af19b886d3ffae54ce2cd2a00059231d7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af19b886d3ffae54ce2cd2a00059231d7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>emailRecipients</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af19b886d3ffae54ce2cd2a00059231d7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a33f39159b65af3def9ddf6c98498166e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a33f39159b65af3def9ddf6c98498166e\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>skipArtifactsDownload</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a33f39159b65af3def9ddf6c98498166e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aad921923c20389b597a5eeda6f7aa57f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aad921923c20389b597a5eeda6f7aa57f\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>timeoutInMinutes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aad921923c20389b597a5eeda6f7aa57f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9b956cd5ea1caeb8e02b0d709aa633a6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9b956cd5ea1caeb8e02b0d709aa633a6\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9b956cd5ea1caeb8e02b0d709aa633a6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">ExecutionPolicy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>concurrencyCount</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>queueDepthCount</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">ExecutionPolicy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac548ec685a7a82c0fe18b6b43de13e71\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac548ec685a7a82c0fe18b6b43de13e71\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>concurrencyCount</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac548ec685a7a82c0fe18b6b43de13e71\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4f9cbe02ddb0d2ac9b6b06f77f1131ce\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4f9cbe02ddb0d2ac9b6b06f77f1131ce\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queueDepthCount</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4f9cbe02ddb0d2ac9b6b06f77f1131ce\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">Inputs</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>action</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>actionClassic</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>additionalApks</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>AdditionalArguments</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>apkFile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>appID</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>appIdentifier</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>arguments</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>authType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>autMachineGroup</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>avgResponseTimeThreshold</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>binaryPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>changeLogFile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>cloudService</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>codeCoverageEnabled</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>configuration</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>connectedServiceName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ConnectedServiceName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ConnectedServiceNameARM</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ConnectedServiceNameClassic</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ConnectedServiceNameSelector</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>csmFile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>csmParametersFile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>customSlicingEnabled</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>DacpacFile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>DatabaseName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>DeleteFirewallRule</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>deploymentMode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>DeployToSlotFlag</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>doNotDelete</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>dropLocation</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>enableDeploymentPrerequisitesForCreate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>enableDeploymentPrerequisitesForSelect</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>EndIpAddress</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ExcludeFilesFromAppDataFlag</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>failOnStandardError</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>filename</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>geoLocation</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>InlineAdditionalArguments</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ipaPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>IpDetectionMethod</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>location</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>machineType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>mandatory</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>metadataPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>metadataRootPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>minDelta</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>modifyEnvironment</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>nativeLibraryPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>notes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>notesPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>notify</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Operator</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>outputVariable</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>overrideParameters</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>overrideRunParams</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Package</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>password</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>platform</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>publish</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PublishProfile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>releaseNotes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>releaseTrack</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>RemoveAdditionalFilesFlag</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ResourceGroupName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>resourceGroupName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>runDuration</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>runSettingsFile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>screenshotsPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ServerName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>serviceAccountKey</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>serviceEndpoint</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SetParametersFile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>shouldAttachMetadata</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>shouldAutoRelease</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>shouldSkipSubmission</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>shouldSkipWaitingForProcessing</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>shouldSubmitForReview</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>skipBinaryUpload</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Slot</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SlotName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>sourcefilters</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SqlAdditionalArguments</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SqlFile</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SqlInline</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SqlPassword</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SqlUsername</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>StartIpAddress</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>symbolsPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>tags</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>TakeAppOfflineFlag</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>TaskNameSelector</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>teamId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>teamName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>teams</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testConfiguration</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testConfigurations</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testFilterCriteria</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testMachineGroup</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testPlan</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testRunTitle</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>testSelection</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>testSuite</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>track</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>uploadMetadata</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>uploadScreenshots</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>userFraction</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>username</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>users</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>UseWebDeploy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>VirtualApplication</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>vuLoad</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WebAppName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WebAppUri</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WebSiteLocation</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WebSiteName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>websiteUrl</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>workingFolder</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">Inputs</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:add5e6c793e74115c070647cf5dfa18a5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add5e6c793e74115c070647cf5dfa18a5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ConnectedServiceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add5e6c793e74115c070647cf5dfa18a5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aff3b929b95fffa3eb5e084edd401d0c3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aff3b929b95fffa3eb5e084edd401d0c3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebAppName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aff3b929b95fffa3eb5e084edd401d0c3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abed34a5092f9ca3c8379ad6a18b94e90\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abed34a5092f9ca3c8379ad6a18b94e90\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>DeployToSlotFlag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abed34a5092f9ca3c8379ad6a18b94e90\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1676b5b52947be81d66b7ac3a0d72eb7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1676b5b52947be81d66b7ac3a0d72eb7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ResourceGroupName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1676b5b52947be81d66b7ac3a0d72eb7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9702e26dc003ba9971ce339828b4f533\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9702e26dc003ba9971ce339828b4f533\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SlotName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9702e26dc003ba9971ce339828b4f533\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9faea8656bef7bea2832d2a95345ac87\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9faea8656bef7bea2832d2a95345ac87\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Package</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9faea8656bef7bea2832d2a95345ac87\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4dfdc3081d3c34068264dcb58540ce72\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4dfdc3081d3c34068264dcb58540ce72\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SetParametersFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4dfdc3081d3c34068264dcb58540ce72\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a951c3fe47edbf9970763b4c7c3655751\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a951c3fe47edbf9970763b4c7c3655751\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UseWebDeploy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a951c3fe47edbf9970763b4c7c3655751\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a10c39c3b80b4670c50c2110cc53cb33b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a10c39c3b80b4670c50c2110cc53cb33b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>RemoveAdditionalFilesFlag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a10c39c3b80b4670c50c2110cc53cb33b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6e71779ed54282aa4827c4932e540790\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6e71779ed54282aa4827c4932e540790\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ExcludeFilesFromAppDataFlag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6e71779ed54282aa4827c4932e540790\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad71522f603c0218b5d13dadaf07056b6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad71522f603c0218b5d13dadaf07056b6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TakeAppOfflineFlag</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad71522f603c0218b5d13dadaf07056b6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a68afbb37aca144d93cf4ccfe8c15b6e4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a68afbb37aca144d93cf4ccfe8c15b6e4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>VirtualApplication</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a68afbb37aca144d93cf4ccfe8c15b6e4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1f0ffc867ab5306b2b03c4a7756c0de4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1f0ffc867ab5306b2b03c4a7756c0de4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>AdditionalArguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1f0ffc867ab5306b2b03c4a7756c0de4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a779174e11e4f0c665f5ee738487ef8c0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a779174e11e4f0c665f5ee738487ef8c0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebAppUri</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a779174e11e4f0c665f5ee738487ef8c0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ade5bdc252006b250f8bb0750ca2499be\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ade5bdc252006b250f8bb0750ca2499be\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ConnectedServiceNameSelector</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ade5bdc252006b250f8bb0750ca2499be\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af4e157ca16b9039499e5217e6417d3d9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af4e157ca16b9039499e5217e6417d3d9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ConnectedServiceNameARM</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af4e157ca16b9039499e5217e6417d3d9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5e4a0fa4b3153bac6fc08f3745134b72\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5e4a0fa4b3153bac6fc08f3745134b72\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ServerName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5e4a0fa4b3153bac6fc08f3745134b72\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4b09b30a5f10f2decf7dac662b6c4123\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4b09b30a5f10f2decf7dac662b6c4123\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>DatabaseName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4b09b30a5f10f2decf7dac662b6c4123\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af0eaabd7995c0c0e6e1ad59d11d49c02\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af0eaabd7995c0c0e6e1ad59d11d49c02\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlUsername</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af0eaabd7995c0c0e6e1ad59d11d49c02\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a91fb55192f49a10c427d2d7cbdc66e92\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a91fb55192f49a10c427d2d7cbdc66e92\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlPassword</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a91fb55192f49a10c427d2d7cbdc66e92\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6a9996a754176042ccb0b30292816a70\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a9996a754176042ccb0b30292816a70\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TaskNameSelector</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6a9996a754176042ccb0b30292816a70\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5f0beec83d492303d8955d074625e113\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5f0beec83d492303d8955d074625e113\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>DacpacFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5f0beec83d492303d8955d074625e113\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad79267133cd85f7f31b81bfc1622096d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad79267133cd85f7f31b81bfc1622096d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad79267133cd85f7f31b81bfc1622096d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aad0731f3b8aa0ebcb96bd2fadbeb0285\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aad0731f3b8aa0ebcb96bd2fadbeb0285\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlInline</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aad0731f3b8aa0ebcb96bd2fadbeb0285\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9f10a6b3d88f96246c5c52588a0b8629\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9f10a6b3d88f96246c5c52588a0b8629\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PublishProfile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9f10a6b3d88f96246c5c52588a0b8629\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7cd7baf9ad2bbce054e9d8c3cac16847\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7cd7baf9ad2bbce054e9d8c3cac16847\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SqlAdditionalArguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7cd7baf9ad2bbce054e9d8c3cac16847\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa57bc15abb74b4085f88c31b49e567d6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa57bc15abb74b4085f88c31b49e567d6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>InlineAdditionalArguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa57bc15abb74b4085f88c31b49e567d6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a62b1d715816bd95544a1d500d5ef4cbe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a62b1d715816bd95544a1d500d5ef4cbe\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>IpDetectionMethod</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a62b1d715816bd95544a1d500d5ef4cbe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:add375d0f6dbfb109821338b2c5b035b5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add375d0f6dbfb109821338b2c5b035b5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>StartIpAddress</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add375d0f6dbfb109821338b2c5b035b5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afb5cc348534683d22fc5c716b395969d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb5cc348534683d22fc5c716b395969d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>EndIpAddress</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb5cc348534683d22fc5c716b395969d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0ff28e3ca5d1d0fcefc5801940e09640\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0ff28e3ca5d1d0fcefc5801940e09640\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>DeleteFirewallRule</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0ff28e3ca5d1d0fcefc5801940e09640\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad56ab1c6c3d6960a6136299bf07f3b89\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad56ab1c6c3d6960a6136299bf07f3b89\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>appID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad56ab1c6c3d6960a6136299bf07f3b89\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7b5805d267c6ac6ac41bc75fac73b590\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7b5805d267c6ac6ac41bc75fac73b590\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>binaryPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7b5805d267c6ac6ac41bc75fac73b590\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae74a12349b479ecd6ccc480687205597\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae74a12349b479ecd6ccc480687205597\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>symbolsPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae74a12349b479ecd6ccc480687205597\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1be010d9cd5cee7704ccfbae027a473f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1be010d9cd5cee7704ccfbae027a473f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>nativeLibraryPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1be010d9cd5cee7704ccfbae027a473f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1ed3a0879c5b50af20eedc21d4d1e6dc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1ed3a0879c5b50af20eedc21d4d1e6dc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notesPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1ed3a0879c5b50af20eedc21d4d1e6dc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4ed93d10f916663c38796519986a36a3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4ed93d10f916663c38796519986a36a3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4ed93d10f916663c38796519986a36a3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:addd399b27950adabb7562a305353238b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"addd399b27950adabb7562a305353238b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>publish</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:addd399b27950adabb7562a305353238b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a06d19fc81b8e83ad948034d2c797145c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a06d19fc81b8e83ad948034d2c797145c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>mandatory</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a06d19fc81b8e83ad948034d2c797145c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae9aa6768f21abf6f029e1d10c6eccd56\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae9aa6768f21abf6f029e1d10c6eccd56\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>notify</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae9aa6768f21abf6f029e1d10c6eccd56\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a919678d55825726c052d12b36515aaed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a919678d55825726c052d12b36515aaed\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tags</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a919678d55825726c052d12b36515aaed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a65681e7d8154e27d428ecc67624b9195\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a65681e7d8154e27d428ecc67624b9195\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teams</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a65681e7d8154e27d428ecc67624b9195\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a21ebb3eaf5d760864948ca48a33642f5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a21ebb3eaf5d760864948ca48a33642f5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>users</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a21ebb3eaf5d760864948ca48a33642f5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae81a87b05b73b481aa2c88a9f9ccc56a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae81a87b05b73b481aa2c88a9f9ccc56a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>authType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae81a87b05b73b481aa2c88a9f9ccc56a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3e966c242829f0fa62f0643ede3452c0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3e966c242829f0fa62f0643ede3452c0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>serviceEndpoint</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3e966c242829f0fa62f0643ede3452c0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adb91e3029d25418dd1e7dc5a648fe9ad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb91e3029d25418dd1e7dc5a648fe9ad\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>serviceAccountKey</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adb91e3029d25418dd1e7dc5a648fe9ad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a82bb2e3b802e75660c2028df764973fa\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a82bb2e3b802e75660c2028df764973fa\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>apkFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a82bb2e3b802e75660c2028df764973fa\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abb685f2402c055e6eb541ff8fecd7acc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abb685f2402c055e6eb541ff8fecd7acc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>track</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abb685f2402c055e6eb541ff8fecd7acc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af82d5f2a269dc59fce1cdbc565e9687d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af82d5f2a269dc59fce1cdbc565e9687d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>userFraction</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af82d5f2a269dc59fce1cdbc565e9687d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad5b60ab0470ebc3176cafd3310ab6e73\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad5b60ab0470ebc3176cafd3310ab6e73\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>changeLogFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad5b60ab0470ebc3176cafd3310ab6e73\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad3770f487ad03326009b6cc813536dd8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad3770f487ad03326009b6cc813536dd8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldAttachMetadata</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad3770f487ad03326009b6cc813536dd8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8e2b375b1d55ab4f922a69a99750d660\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8e2b375b1d55ab4f922a69a99750d660\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>metadataRootPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8e2b375b1d55ab4f922a69a99750d660\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ada631ac4e86e69c1bb6ae839bf515ef3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ada631ac4e86e69c1bb6ae839bf515ef3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>additionalApks</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ada631ac4e86e69c1bb6ae839bf515ef3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a48e2d646281703b1829b62a2e49c53b9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a48e2d646281703b1829b62a2e49c53b9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>minDelta</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a48e2d646281703b1829b62a2e49c53b9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac29139e7b55eaa43364ac52b684f6742\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac29139e7b55eaa43364ac52b684f6742\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Operator</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac29139e7b55eaa43364ac52b684f6742\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a86c3bd93e11c4bb72bc01123c877bdcb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a86c3bd93e11c4bb72bc01123c877bdcb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>username</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a86c3bd93e11c4bb72bc01123c877bdcb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af1efdebc084fc3b79060b307fc37d1a5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af1efdebc084fc3b79060b307fc37d1a5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>password</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af1efdebc084fc3b79060b307fc37d1a5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aca9a0dabdfc5ac5c3b1fe508875ab930\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aca9a0dabdfc5ac5c3b1fe508875ab930\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>filename</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aca9a0dabdfc5ac5c3b1fe508875ab930\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1f5a84cf412c8fa879cc11d31edc8a3f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1f5a84cf412c8fa879cc11d31edc8a3f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>arguments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1f5a84cf412c8fa879cc11d31edc8a3f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3eee09699c8bd83669349c3319c09281\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3eee09699c8bd83669349c3319c09281\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>modifyEnvironment</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3eee09699c8bd83669349c3319c09281\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0d7520b9cab1e7996da880b4b3c25b9c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0d7520b9cab1e7996da880b4b3c25b9c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workingFolder</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0d7520b9cab1e7996da880b4b3c25b9c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9b41e2e89cf83e1769aaf18f4ef0ddda\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9b41e2e89cf83e1769aaf18f4ef0ddda\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>failOnStandardError</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9b41e2e89cf83e1769aaf18f4ef0ddda\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4472d8696f1a4df8d8ec91c7bc5bb986\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4472d8696f1a4df8d8ec91c7bc5bb986\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testMachineGroup</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4472d8696f1a4df8d8ec91c7bc5bb986\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad3eebe5ed599012342194df52e528285\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad3eebe5ed599012342194df52e528285\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>dropLocation</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad3eebe5ed599012342194df52e528285\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2d22bffe61e2069956146768ffe5d0ea\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2d22bffe61e2069956146768ffe5d0ea\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testSelection</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2d22bffe61e2069956146768ffe5d0ea\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaefd5825d92c8baa1d2225c537cb0a53\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaefd5825d92c8baa1d2225c537cb0a53\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testPlan</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaefd5825d92c8baa1d2225c537cb0a53\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a175714f465d5fe42fc8e5e2d793af614\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a175714f465d5fe42fc8e5e2d793af614\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testSuite</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a175714f465d5fe42fc8e5e2d793af614\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6483e96bbabfc2170b51e00fc63b8924\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6483e96bbabfc2170b51e00fc63b8924\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testConfiguration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6483e96bbabfc2170b51e00fc63b8924\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0cbee8b4c9e7e2a424c4a967053ba8ad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0cbee8b4c9e7e2a424c4a967053ba8ad\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>sourcefilters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0cbee8b4c9e7e2a424c4a967053ba8ad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a834ac58b92abe97b567dcb9718e3e968\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a834ac58b92abe97b567dcb9718e3e968\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testFilterCriteria</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a834ac58b92abe97b567dcb9718e3e968\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a53775c99bdc624bb660b82cab475f8c2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a53775c99bdc624bb660b82cab475f8c2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>runSettingsFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a53775c99bdc624bb660b82cab475f8c2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5c628a6e1443f2757d98242f038b2417\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5c628a6e1443f2757d98242f038b2417\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>overrideRunParams</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5c628a6e1443f2757d98242f038b2417\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3ba3170e33d4937a298a13233a63d0a4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3ba3170e33d4937a298a13233a63d0a4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>codeCoverageEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3ba3170e33d4937a298a13233a63d0a4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a08895f7fb7c00434be9cd45bce851164\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a08895f7fb7c00434be9cd45bce851164\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>customSlicingEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a08895f7fb7c00434be9cd45bce851164\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0c9945c83e645d06722d84e00b1ebe15\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0c9945c83e645d06722d84e00b1ebe15\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testRunTitle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0c9945c83e645d06722d84e00b1ebe15\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7f9aeb965882928daa9952941b18d484\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7f9aeb965882928daa9952941b18d484\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>platform</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7f9aeb965882928daa9952941b18d484\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:add5c902cd312ab7b3e0d4abbfd06ed36\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add5c902cd312ab7b3e0d4abbfd06ed36\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>configuration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add5c902cd312ab7b3e0d4abbfd06ed36\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6e16ef1b50456239770114659e1cdac7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6e16ef1b50456239770114659e1cdac7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testConfigurations</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6e16ef1b50456239770114659e1cdac7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acca3442228717e2ca164364de0baa731\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acca3442228717e2ca164364de0baa731\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>autMachineGroup</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acca3442228717e2ca164364de0baa731\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0fa5efb2a0ff423b5117d46c592a6281\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0fa5efb2a0ff423b5117d46c592a6281\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>connectedServiceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0fa5efb2a0ff423b5117d46c592a6281\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afab43d38e5451cb162de4e85166f8cda\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afab43d38e5451cb162de4e85166f8cda\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>websiteUrl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afab43d38e5451cb162de4e85166f8cda\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1d3463ffb69df032062e548f4064fad9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1d3463ffb69df032062e548f4064fad9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>testName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1d3463ffb69df032062e548f4064fad9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2e19f56d39477271d1274ff6effff678\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2e19f56d39477271d1274ff6effff678\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>vuLoad</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2e19f56d39477271d1274ff6effff678\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a91be30010fe332d18597d562e5805680\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a91be30010fe332d18597d562e5805680\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>runDuration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a91be30010fe332d18597d562e5805680\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9955283b60d17df2642c245c5c70ce4a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9955283b60d17df2642c245c5c70ce4a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>geoLocation</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9955283b60d17df2642c245c5c70ce4a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a43d3ed39b8819d7134868448b0e4d97f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a43d3ed39b8819d7134868448b0e4d97f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>machineType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a43d3ed39b8819d7134868448b0e4d97f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4bb09406f2c0529b1d914e450e442837\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4bb09406f2c0529b1d914e450e442837\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>avgResponseTimeThreshold</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4bb09406f2c0529b1d914e450e442837\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0f4ca24a03d191d08dbb929b7c78d620\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0f4ca24a03d191d08dbb929b7c78d620\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ConnectedServiceNameClassic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0f4ca24a03d191d08dbb929b7c78d620\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afd2d2d0c1e3a77ecf9c47e9cb1e285ed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afd2d2d0c1e3a77ecf9c47e9cb1e285ed\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>action</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afd2d2d0c1e3a77ecf9c47e9cb1e285ed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8ba1bdd9f18211a167d37f59f90c0d4a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8ba1bdd9f18211a167d37f59f90c0d4a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>actionClassic</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8ba1bdd9f18211a167d37f59f90c0d4a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2b15e0c0572679191d72673d2a99df0a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2b15e0c0572679191d72673d2a99df0a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>resourceGroupName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2b15e0c0572679191d72673d2a99df0a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7b01660cd47c993294bada32db340f82\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7b01660cd47c993294bada32db340f82\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cloudService</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7b01660cd47c993294bada32db340f82\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abe548af9732cad3e97fce1698c7af876\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abe548af9732cad3e97fce1698c7af876\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>location</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abe548af9732cad3e97fce1698c7af876\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab1c24f8946196c88a43a7bc5ea955d54\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab1c24f8946196c88a43a7bc5ea955d54\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>csmFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab1c24f8946196c88a43a7bc5ea955d54\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3be7b2af91d7b75fc260431f9fe9dc1f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3be7b2af91d7b75fc260431f9fe9dc1f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>csmParametersFile</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3be7b2af91d7b75fc260431f9fe9dc1f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a463650cc6a1dfd4e9e8648e0a6715292\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a463650cc6a1dfd4e9e8648e0a6715292\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>overrideParameters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a463650cc6a1dfd4e9e8648e0a6715292\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afb6126b9ffc15809c7da1032f8369abd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb6126b9ffc15809c7da1032f8369abd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>deploymentMode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb6126b9ffc15809c7da1032f8369abd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ade3c18b70d36aa32bd2971c14ec2b438\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ade3c18b70d36aa32bd2971c14ec2b438\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableDeploymentPrerequisitesForCreate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ade3c18b70d36aa32bd2971c14ec2b438\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a46f4038d4b704d2f7904cc5b4dd997ab\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a46f4038d4b704d2f7904cc5b4dd997ab\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enableDeploymentPrerequisitesForSelect</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a46f4038d4b704d2f7904cc5b4dd997ab\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2f8ccf9c3931e2e0540d453aa40c68bf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2f8ccf9c3931e2e0540d453aa40c68bf\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>outputVariable</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2f8ccf9c3931e2e0540d453aa40c68bf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acb1d4e8c737ffa5840bae982d973e479\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acb1d4e8c737ffa5840bae982d973e479\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebSiteLocation</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acb1d4e8c737ffa5840bae982d973e479\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7d53dd62d17b37fb8902ae8eba20556b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7d53dd62d17b37fb8902ae8eba20556b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebSiteName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7d53dd62d17b37fb8902ae8eba20556b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a343438f93db2be27058716802246a557\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a343438f93db2be27058716802246a557\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Slot</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a343438f93db2be27058716802246a557\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8ba1523211ba6f803dfe2b1450468bf4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8ba1523211ba6f803dfe2b1450468bf4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>doNotDelete</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8ba1523211ba6f803dfe2b1450468bf4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a13abe960371e70dd328199c5a1eec001\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a13abe960371e70dd328199c5a1eec001\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>appIdentifier</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a13abe960371e70dd328199c5a1eec001\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a34a1916c33338a7c090193cf6f3cb575\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a34a1916c33338a7c090193cf6f3cb575\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ipaPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a34a1916c33338a7c090193cf6f3cb575\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8b3129211b784d002fcbcabe1f863e4c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8b3129211b784d002fcbcabe1f863e4c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>releaseTrack</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8b3129211b784d002fcbcabe1f863e4c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3e3342d5b3bd578159cc7e511d6891fe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3e3342d5b3bd578159cc7e511d6891fe\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>skipBinaryUpload</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3e3342d5b3bd578159cc7e511d6891fe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a723b12735ab43644cf1d25778c9cf334\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a723b12735ab43644cf1d25778c9cf334\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uploadMetadata</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a723b12735ab43644cf1d25778c9cf334\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5ebc48b9624bf1188969b6572e48505f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5ebc48b9624bf1188969b6572e48505f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>metadataPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5ebc48b9624bf1188969b6572e48505f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0545b219bea92168cd92dcc322e595c3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0545b219bea92168cd92dcc322e595c3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uploadScreenshots</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0545b219bea92168cd92dcc322e595c3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a35bf78bdbc89a894a2a460d74a247e12\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a35bf78bdbc89a894a2a460d74a247e12\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>screenshotsPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a35bf78bdbc89a894a2a460d74a247e12\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae81ff7b28f5273fae572909384b71b7a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae81ff7b28f5273fae572909384b71b7a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldSubmitForReview</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae81ff7b28f5273fae572909384b71b7a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a879482b425a6e70ef6939407a66741d4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a879482b425a6e70ef6939407a66741d4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldAutoRelease</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a879482b425a6e70ef6939407a66741d4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adef37bf189584e20dd2515f7395e8465\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adef37bf189584e20dd2515f7395e8465\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>releaseNotes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adef37bf189584e20dd2515f7395e8465\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8f0cf3014e0d6f14d53156929d4a4f8f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8f0cf3014e0d6f14d53156929d4a4f8f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldSkipWaitingForProcessing</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8f0cf3014e0d6f14d53156929d4a4f8f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a62897b70effb1f94ca293911f76b4b67\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a62897b70effb1f94ca293911f76b4b67\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>shouldSkipSubmission</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a62897b70effb1f94ca293911f76b4b67\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a01b2ec4b24e3061aabb7e5c0c64701c8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a01b2ec4b24e3061aabb7e5c0c64701c8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teamId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a01b2ec4b24e3061aabb7e5c0c64701c8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a81ed22338ef711d245b4df9033802ae8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a81ed22338ef711d245b4df9033802ae8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>teamName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a81ed22338ef711d245b4df9033802ae8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">Owner</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>uniqueName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">Owner</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:adb87c8564f7e28c615567a06cb2a6773\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb87c8564f7e28c615567a06cb2a6773\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adb87c8564f7e28c615567a06cb2a6773\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aff4ad58c3569fb320272671f8272a95c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aff4ad58c3569fb320272671f8272a95c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aff4ad58c3569fb320272671f8272a95c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a26fdc92d085b67be4fc75a20f13d52b4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a26fdc92d085b67be4fc75a20f13d52b4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uniqueName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a26fdc92d085b67be4fc75a20f13d52b4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\">ParallelExecution</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parallelExecutionType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\">ParallelExecution</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad2b2b8347bb9f612ac2fd20b45e0bff9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad2b2b8347bb9f612ac2fd20b45e0bff9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parallelExecutionType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad2b2b8347bb9f612ac2fd20b45e0bff9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\">PostDeployApprovals</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>approvals</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\">PostDeployApprovals</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7ec2db184858d4fd95d3e967c5d10f68\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7ec2db184858d4fd95d3e967c5d10f68\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">Approval</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>approvals</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7ec2db184858d4fd95d3e967c5d10f68\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\">PreDeployApprovals</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>approvals</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\">PreDeployApprovals</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7d37eb3ab626d01a8805ab3170fc6a74\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7d37eb3ab626d01a8805ab3170fc6a74\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">Approval</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>approvals</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7d37eb3ab626d01a8805ab3170fc6a74\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a0111e0d37cc6af442ab63fab6b688cba\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0111e0d37cc6af442ab63fab6b688cba\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0111e0d37cc6af442ab63fab6b688cba\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aef25f2d9fbe17963c52f438e8dcd65ce\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aef25f2d9fbe17963c52f438e8dcd65ce\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aef25f2d9fbe17963c52f438e8dcd65ce\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">ReleaseDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>artifacts</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>environments</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastRelease</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>releaseNameFormat</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>triggers</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>variableGroups</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>variables</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">ReleaseDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4179d182792f47a09341846aa687ea22\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4179d182792f47a09341846aa687ea22\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4179d182792f47a09341846aa687ea22\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adf29e4447c81bf71bd0fd4d5409e2279\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adf29e4447c81bf71bd0fd4d5409e2279\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastRelease</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adf29e4447c81bf71bd0fd4d5409e2279\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aee23401eef1c648734ab7dbb18860932\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aee23401eef1c648734ab7dbb18860932\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aee23401eef1c648734ab7dbb18860932\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a184c2a39e0b0da9fa8dbc5998eef2614\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a184c2a39e0b0da9fa8dbc5998eef2614\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html\">Variables</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>variables</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a184c2a39e0b0da9fa8dbc5998eef2614\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af3eecb2c30a1e69561800aadcedd3602\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af3eecb2c30a1e69561800aadcedd3602\"></a>\nIList&lt; object &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>variableGroups</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af3eecb2c30a1e69561800aadcedd3602\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af0d5a51c64d23f535eed4e6ed710c29a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af0d5a51c64d23f535eed4e6ed710c29a\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">Environment</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>environments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af0d5a51c64d23f535eed4e6ed710c29a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aad87e117b9824e33d3b47f0716a12279\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aad87e117b9824e33d3b47f0716a12279\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">Artifact</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>artifacts</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aad87e117b9824e33d3b47f0716a12279\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6cffa102464f4ea60c08401c4199a659\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6cffa102464f4ea60c08401c4199a659\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">Trigger</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>triggers</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6cffa102464f4ea60c08401c4199a659\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a721f12b3c1d4b6fd20586b9e4f7606c7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a721f12b3c1d4b6fd20586b9e4f7606c7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>releaseNameFormat</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a721f12b3c1d4b6fd20586b9e4f7606c7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">RetentionPolicy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>daysToKeep</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>releasesToKeep</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>retainBuild</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">RetentionPolicy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a8c085c8b875e35b97474acdad27cf7ad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8c085c8b875e35b97474acdad27cf7ad\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>daysToKeep</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8c085c8b875e35b97474acdad27cf7ad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aab6fc1ef4c3ef032a4c563df4243a787\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aab6fc1ef4c3ef032a4c563df4243a787\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>releasesToKeep</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aab6fc1ef4c3ef032a4c563df4243a787\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a74fd0bb978ac1ae5d4564736abde762a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a74fd0bb978ac1ae5d4564736abde762a\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>retainBuild</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a74fd0bb978ac1ae5d4564736abde762a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">Task</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>alwaysRun</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>continueOnError</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>definitionType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>enabled</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>inputs</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>taskId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>timeoutInMinutes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>version</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">Task</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a80b16ae19503cc52c5fe1e6de7356044\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a80b16ae19503cc52c5fe1e6de7356044\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>taskId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a80b16ae19503cc52c5fe1e6de7356044\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aac36e9f6bcada61c927ba45a9c79ff6b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aac36e9f6bcada61c927ba45a9c79ff6b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>version</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aac36e9f6bcada61c927ba45a9c79ff6b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4fa81fa2fa43c0ff70a171dbf1f895e0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4fa81fa2fa43c0ff70a171dbf1f895e0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4fa81fa2fa43c0ff70a171dbf1f895e0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a24db1ee9c8eb32d7d0e0af329bae0f00\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a24db1ee9c8eb32d7d0e0af329bae0f00\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>enabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a24db1ee9c8eb32d7d0e0af329bae0f00\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a42b2fdd7b5ac3ce9632e408aeb445e2b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a42b2fdd7b5ac3ce9632e408aeb445e2b\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>alwaysRun</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a42b2fdd7b5ac3ce9632e408aeb445e2b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a660539378c18abbf2335c3e66033d065\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a660539378c18abbf2335c3e66033d065\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>continueOnError</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a660539378c18abbf2335c3e66033d065\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8724ad6a7be01b0a647d09c74f1802a6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8724ad6a7be01b0a647d09c74f1802a6\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>timeoutInMinutes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8724ad6a7be01b0a647d09c74f1802a6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9943e1af8b117949183f88b744395b7b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9943e1af8b117949183f88b744395b7b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>definitionType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9943e1af8b117949183f88b744395b7b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a579b0b151c6bb96e6134ed3a42b5cfe2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a579b0b151c6bb96e6134ed3a42b5cfe2\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">Inputs</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>inputs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a579b0b151c6bb96e6134ed3a42b5cfe2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">Trigger</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>artifactAlias</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>triggerType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">Trigger</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab480ceb4bb66161466afb019885cc62d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab480ceb4bb66161466afb019885cc62d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>artifactAlias</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab480ceb4bb66161466afb019885cc62d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5aaf3640c2334fbed82b4987a0e3ab22\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5aaf3640c2334fbed82b4987a0e3ab22\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>triggerType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5aaf3640c2334fbed82b4987a0e3ab22\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Variables Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html\">Variables</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Variables Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">Release</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6a03860789d22df76b4b28a27e452b43\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a03860789d22df76b4b28a27e452b43\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6a03860789d22df76b4b28a27e452b43\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2f0e444f07e70dce9c93c197667b7203\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2f0e444f07e70dce9c93c197667b7203\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2f0e444f07e70dce9c93c197667b7203\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa5d190fdf97f6c3d0097678b69206293\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa5d190fdf97f6c3d0097678b69206293\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa5d190fdf97f6c3d0097678b69206293\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af5e5b045406e8876aafc91a81d0f2393\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af5e5b045406e8876aafc91a81d0f2393\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af5e5b045406e8876aafc91a81d0f2393\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitionsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">Project</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">Repositories</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/GetAllRepositoriesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>revision</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>state</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">Project</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa93e4a4072d552bdea5a912d2d8b43f8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa93e4a4072d552bdea5a912d2d8b43f8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa93e4a4072d552bdea5a912d2d8b43f8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6f41ccbf88e8fb4ff33bc6472b95cae9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6f41ccbf88e8fb4ff33bc6472b95cae9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6f41ccbf88e8fb4ff33bc6472b95cae9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a47f4d3463a6b78bf9a33c2718df1b66c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a47f4d3463a6b78bf9a33c2718df1b66c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a47f4d3463a6b78bf9a33c2718df1b66c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac4682274e4cd61f0adc35f245d61ac2c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac4682274e4cd61f0adc35f245d61ac2c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac4682274e4cd61f0adc35f245d61ac2c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adad64a69083aa5dcf63f27f3d3b66123\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adad64a69083aa5dcf63f27f3d3b66123\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>state</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adad64a69083aa5dcf63f27f3d3b66123\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aefccc2024ddb73177425f544053ab1d2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aefccc2024ddb73177425f544053ab1d2\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>revision</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aefccc2024ddb73177425f544053ab1d2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/GetAllRepositoriesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">Repositories</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">Repositories</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.png\" usemap=\"#VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories_map\" name=\"VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,444,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:abf5161f2d81fe7fb5d944c52f3be2463\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abf5161f2d81fe7fb5d944c52f3be2463\"></a>\nList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abf5161f2d81fe7fb5d944c52f3be2463\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a63e9e77dd4b94359e306fe90d091d883\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a63e9e77dd4b94359e306fe90d091d883\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a63e9e77dd4b94359e306fe90d091d883\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/GetAllRepositoriesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>defaultBranch</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>project</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>remoteUrl</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:abd02bd4021b28e40f8d4e18bee6731da\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abd02bd4021b28e40f8d4e18bee6731da\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abd02bd4021b28e40f8d4e18bee6731da\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4e3bc3d3e3870795b801557ad750acc7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4e3bc3d3e3870795b801557ad750acc7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4e3bc3d3e3870795b801557ad750acc7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a45dd67413433e60c2762ac54a928ae4b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a45dd67413433e60c2762ac54a928ae4b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a45dd67413433e60c2762ac54a928ae4b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a73f0fd683d617bd50902293f26269011\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a73f0fd683d617bd50902293f26269011\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">Project</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a73f0fd683d617bd50902293f26269011\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae1eaf73f86bec8112106e3c84ccd5b0b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae1eaf73f86bec8112106e3c84ccd5b0b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>defaultBranch</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae1eaf73f86bec8112106e3c84ccd5b0b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a26df2d3b1a13f5128565f186b13bf7cd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a26df2d3b1a13f5128565f186b13bf7cd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>remoteUrl</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a26df2d3b1a13f5128565f186b13bf7cd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/GetAllRepositoriesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">Comment</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">Comments</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">IterationContext</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\">Properties</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">PullRequestThreadContext</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">reply</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">RightFileEnd</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">RightFileStart</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">ThreadContext</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">Comment</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>commentType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>content</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parentCommentId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">Comment</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1ecb8332bff68cf7bfd794dfe8ae5cdf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1ecb8332bff68cf7bfd794dfe8ae5cdf\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parentCommentId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1ecb8332bff68cf7bfd794dfe8ae5cdf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3e96b8b9bceaceaffe1f6a40a6e8c017\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3e96b8b9bceaceaffe1f6a40a6e8c017\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>content</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3e96b8b9bceaceaffe1f6a40a6e8c017\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a09fdacac6c3fe79c70bc89842fd1fe6d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a09fdacac6c3fe79c70bc89842fd1fe6d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>commentType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a09fdacac6c3fe79c70bc89842fd1fe6d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">Comments</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">Comments</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3c4050e31769bb719eca764e5766c166\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3c4050e31769bb719eca764e5766c166\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3c4050e31769bb719eca764e5766c166\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8a44951f4e8e461b7afefece151f67a3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8a44951f4e8e461b7afefece151f67a3\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8a44951f4e8e461b7afefece151f67a3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">IterationContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>firstComparingIteration</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>secondComparingIteration</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">IterationContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:add36da611f6eaafc7c1b921f2cb1a20f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add36da611f6eaafc7c1b921f2cb1a20f\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>firstComparingIteration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add36da611f6eaafc7c1b921f2cb1a20f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afa0e2a243d4bc0424938af97ce9589d0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afa0e2a243d4bc0424938af97ce9589d0\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>secondComparingIteration</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afa0e2a243d4bc0424938af97ce9589d0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_29750cc223f84f7f92a682f7e31c6ed9.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_29750cc223f84f7f92a682f7e31c6ed9.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3113af4d25ebe888d1960826d38532cb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3113af4d25ebe888d1960826d38532cb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3113af4d25ebe888d1960826d38532cb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a37f4f8fd1bb3e4968cfcd6dcf3d9674b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a37f4f8fd1bb3e4968cfcd6dcf3d9674b\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a37f4f8fd1bb3e4968cfcd6dcf3d9674b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Microsoft_TeamFoundation_Discussion_SupportsMarkdown</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a37d6460fa9070227bd5ea96442f944a6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a37d6460fa9070227bd5ea96442f944a6\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">MicrosoftTeamFoundationDiscussionSupportsMarkdown</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Microsoft_TeamFoundation_Discussion_SupportsMarkdown</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a37d6460fa9070227bd5ea96442f944a6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">PullRequestThreadContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>changeTrackingId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>iterationContext</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">PullRequestThreadContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2a5d1d2516816c8aacabc095d969b6fc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2a5d1d2516816c8aacabc095d969b6fc\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">IterationContext</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>iterationContext</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2a5d1d2516816c8aacabc095d969b6fc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a62cec21d9ae37e2cbf75c32069521f73\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a62cec21d9ae37e2cbf75c32069521f73\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>changeTrackingId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a62cec21d9ae37e2cbf75c32069521f73\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">RightFileEnd</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>line</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>offset</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">RightFileEnd</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1060faca717be9b5a8f9982c160cb928\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1060faca717be9b5a8f9982c160cb928\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>line</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1060faca717be9b5a8f9982c160cb928\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad0ecbc0cb986a1d10f0f3c868a26fca7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad0ecbc0cb986a1d10f0f3c868a26fca7\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>offset</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad0ecbc0cb986a1d10f0f3c868a26fca7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">RightFileStart</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>line</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>offset</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">RightFileStart</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a67b9a761d660b93cfed7a9fb4bffccf4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a67b9a761d660b93cfed7a9fb4bffccf4\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>line</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a67b9a761d660b93cfed7a9fb4bffccf4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a40b8b7578b9f4d45808f45152b81755c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a40b8b7578b9f4d45808f45152b81755c\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>offset</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a40b8b7578b9f4d45808f45152b81755c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">ThreadContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>filePath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rightFileEnd</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>rightFileStart</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">ThreadContext</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a36628f65bcfc7d4a9ef93f9f8791b060\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a36628f65bcfc7d4a9ef93f9f8791b060\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>filePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a36628f65bcfc7d4a9ef93f9f8791b060\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab18cbbd1bb8572f15576a3c8120b3a0c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab18cbbd1bb8572f15576a3c8120b3a0c\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">RightFileStart</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rightFileStart</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab18cbbd1bb8572f15576a3c8120b3a0c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaa85c8dad0ced6015325f3244d0997c1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa85c8dad0ced6015325f3244d0997c1\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">RightFileEnd</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rightFileEnd</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa85c8dad0ced6015325f3244d0997c1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>comments</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>properties</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>pullRequestThreadContext</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Replies</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>status</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>threadContext</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab41492ddbe1d82d0293325968280ad42\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab41492ddbe1d82d0293325968280ad42\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">Comment</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>comments</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab41492ddbe1d82d0293325968280ad42\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab2642190cabd7911d350d8a9258597cd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab2642190cabd7911d350d8a9258597cd\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\">Properties</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>properties</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab2642190cabd7911d350d8a9258597cd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7ee24a6bdfb38994d6d6894724fd249a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7ee24a6bdfb38994d6d6894724fd249a\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>status</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7ee24a6bdfb38994d6d6894724fd249a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a830443609b9a16fdc0407cc20fb01154\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a830443609b9a16fdc0407cc20fb01154\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">PullRequestThreadContext</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pullRequestThreadContext</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a830443609b9a16fdc0407cc20fb01154\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afbab8e16de0af5199c0d0c9581a65080\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afbab8e16de0af5199c0d0c9581a65080\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">ThreadContext</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>threadContext</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afbab8e16de0af5199c0d0c9581a65080\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5522652389a138760b522fca2e814b95\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5522652389a138760b522fca2e814b95\"></a>\nIList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">reply</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Replies</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5522652389a138760b522fca2e814b95\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">reply</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>commentType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>content</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parentCommentId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">reply</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab71585c9da0bbe4ebb31deb6f3584bdb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab71585c9da0bbe4ebb31deb6f3584bdb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>content</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab71585c9da0bbe4ebb31deb6f3584bdb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8af082f32397abdfbc3348ff43429b59\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8af082f32397abdfbc3348ff43429b59\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parentCommentId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8af082f32397abdfbc3348ff43429b59\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6257c7888300ae25fae38ef6f782d5fc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6257c7888300ae25fae38ef6f782d5fc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>commentType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6257c7888300ae25fae38ef6f782d5fc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\">Authorization</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Service.Authorization Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\">VstsRestAPI.Viewmodel.Service.Authorization</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>scheme</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\">VstsRestAPI.Viewmodel.Service.Authorization</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\">VstsRestAPI.Viewmodel.Service.Authorization</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Service.Authorization Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\">Authorization</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Service.Authorization Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a95ffbc7b2477e40057768b43a8803662\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a95ffbc7b2477e40057768b43a8803662\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>scheme</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a95ffbc7b2477e40057768b43a8803662\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Service/ServiceEndpointModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">CreatedBy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Service.CreatedBy Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">VstsRestAPI.Viewmodel.Service.CreatedBy</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>displayName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">VstsRestAPI.Viewmodel.Service.CreatedBy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">VstsRestAPI.Viewmodel.Service.CreatedBy</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">VstsRestAPI.Viewmodel.Service.CreatedBy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">VstsRestAPI.Viewmodel.Service.CreatedBy</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>uniqueName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">VstsRestAPI.Viewmodel.Service.CreatedBy</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">VstsRestAPI.Viewmodel.Service.CreatedBy</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Service.CreatedBy Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">CreatedBy</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Service.CreatedBy Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:af08b09d975f3f929c55fad5b2ab24286\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af08b09d975f3f929c55fad5b2ab24286\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af08b09d975f3f929c55fad5b2ab24286\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3f588beb70f49c0a090e7745072a88ef\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3f588beb70f49c0a090e7745072a88ef\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>displayName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3f588beb70f49c0a090e7745072a88ef\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a14eaf9841de447efb614c7aadbc99d38\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a14eaf9841de447efb614c7aadbc99d38\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uniqueName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a14eaf9841de447efb614c7aadbc99d38\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Service/ServiceEndpointModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Service.Data Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html\">Data</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Service.Data Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Service/ServiceEndpointModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">ServiceEndpointModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>authorization</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>createdBy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>data</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isReady</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>type</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Service.ServiceEndpointModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">Service</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">ServiceEndpointModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:adcc13fd199d022549df787a3762ceacc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adcc13fd199d022549df787a3762ceacc\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html\">Data</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>data</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adcc13fd199d022549df787a3762ceacc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab99fecf2317bedbee35d4521ee2a4d83\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab99fecf2317bedbee35d4521ee2a4d83\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab99fecf2317bedbee35d4521ee2a4d83\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa78143d876fead2e4f6d6cf3121e0518\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa78143d876fead2e4f6d6cf3121e0518\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa78143d876fead2e4f6d6cf3121e0518\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a115f21d8fd99b78328276b945e4f9ef2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a115f21d8fd99b78328276b945e4f9ef2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>type</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a115f21d8fd99b78328276b945e4f9ef2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a13c9534e11114bef9d7fa6ebda8cbad4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a13c9534e11114bef9d7fa6ebda8cbad4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a13c9534e11114bef9d7fa6ebda8cbad4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a481b493702ac12dee9ac451f6ba35051\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a481b493702ac12dee9ac451f6ba35051\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">CreatedBy</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>createdBy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a481b493702ac12dee9ac451f6ba35051\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9d3ee5ddc1bbc6c917adfa55c4ef4973\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9d3ee5ddc1bbc6c917adfa55c4ef4973\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\">Authorization</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>authorization</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9d3ee5ddc1bbc6c917adfa55c4ef4973\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acdce8d0c7a68e2ca078e40639e058ca1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acdce8d0c7a68e2ca078e40639e058ca1\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isReady</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acdce8d0c7a68e2ca078e40639e058ca1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Service/ServiceEndpointModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">BatchRequest</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>body</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>headers</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>method</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>uri</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.BatchRequest Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">BatchRequest</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\">Attributes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a941c29142e8a78650b7ab3a4d544b9da\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a941c29142e8a78650b7ab3a4d544b9da\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>method</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a941c29142e8a78650b7ab3a4d544b9da\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa4def25e1e525eb3792bfeb84eeb732c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa4def25e1e525eb3792bfeb84eeb732c\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>headers</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa4def25e1e525eb3792bfeb84eeb732c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5abde03bf474916d95c1c240615f38a2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5abde03bf474916d95c1c240615f38a2\"></a>\nobject []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>body</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5abde03bf474916d95c1c240615f38a2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:add855464778b210044708bc4623a0a4a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add855464778b210044708bc4623a0a4a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>uri</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add855464778b210044708bc4623a0a4a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/BatchRequest.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">BatchRequest</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>comment</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">BatchRequest</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:af90ffdd2adac5647655e4ab4e1131ea7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af90ffdd2adac5647655e4ab4e1131ea7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>comment</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af90ffdd2adac5647655e4ab4e1131ea7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/BatchRequest.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">BatchRequest</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>attributes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rel</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">BatchRequest</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a0bffacb011159656521f687b4387ae49\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0bffacb011159656521f687b4387ae49\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rel</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0bffacb011159656521f687b4387ae49\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3ca12befdbb22c37ba04295921741b76\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3ca12befdbb22c37ba04295921741b76\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3ca12befdbb22c37ba04295921741b76\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a59005c2f94e25a98dfba7e4e815284f4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a59005c2f94e25a98dfba7e4e815284f4\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\">Attributes</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>attributes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a59005c2f94e25a98dfba7e4e815284f4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/BatchRequest.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">Fill</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\">ListofCardStyles</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">Rules</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">TagStyle</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/CardStylesPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">Fill</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>filter</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isEnabled</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>settings</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">Fill</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a65cccd165e5e026535f0375754c8f49c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a65cccd165e5e026535f0375754c8f49c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a65cccd165e5e026535f0375754c8f49c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adc32fb451d7601735fbf2fc43a48d7be\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adc32fb451d7601735fbf2fc43a48d7be\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adc32fb451d7601735fbf2fc43a48d7be\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4688fc0b36d338c86235a12379515826\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4688fc0b36d338c86235a12379515826\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>filter</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4688fc0b36d338c86235a12379515826\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac9190c5e0fe094c4f1dcd8bd31f7affb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac9190c5e0fe094c4f1dcd8bd31f7affb\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>settings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac9190c5e0fe094c4f1dcd8bd31f7affb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/CardStylesPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\">ListofCardStyles</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.ListofCardStyles Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.ListofCardStyles</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>rules</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.ListofCardStyles</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.ListofCardStyles</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.ListofCardStyles Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\">ListofCardStyles</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.ListofCardStyles Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4ec646e962581c487c4859fdee154e37\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4ec646e962581c487c4859fdee154e37\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">Rules</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rules</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4ec646e962581c487c4859fdee154e37\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/CardStylesPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">Rules</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fill</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>tagstyle</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">Rules</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,333,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2f8f2febc87bf7919be781f603cafd74\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2f8f2febc87bf7919be781f603cafd74\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">Fill</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fill</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2f8f2febc87bf7919be781f603cafd74\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afc7900c8b7007cc1d340cf65645e91d0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afc7900c8b7007cc1d340cf65645e91d0\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">TagStyle</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>tagstyle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afc7900c8b7007cc1d340cf65645e91d0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/CardStylesPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">TagStyle</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isEnabled</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>settings</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">TagStyle</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa22291d9115cbcc380d184a94e7e2674\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa22291d9115cbcc380d184a94e7e2674\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa22291d9115cbcc380d184a94e7e2674\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2186abffb373a28f30620c166a76a2af\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2186abffb373a28f30620c166a76a2af\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isEnabled</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2186abffb373a28f30620c166a76a2af\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7bb091f585958ad5dd5dc67959543727\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7bb091f585958ad5dd5dc67959543727\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>settings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7bb091f585958ad5dd5dc67959543727\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/CardStylesPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">ColumnPost</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>columnType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isSplit</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>itemLimit</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>stateMappings</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.ColumnPost Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">ColumnPost</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.ColumnPost:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.ColumnPost_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.ColumnPost_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.ColumnPost_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,270,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a2a3851567272f18669086141c11c3172\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2a3851567272f18669086141c11c3172\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2a3851567272f18669086141c11c3172\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa022ffbeabf0a1eb2878a0eafb7f3a2b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa022ffbeabf0a1eb2878a0eafb7f3a2b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa022ffbeabf0a1eb2878a0eafb7f3a2b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afe27cad2954eb9f89d7ce36563756fd5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afe27cad2954eb9f89d7ce36563756fd5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>itemLimit</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afe27cad2954eb9f89d7ce36563756fd5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac28734984da3475d7e3bee6e4921d200\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac28734984da3475d7e3bee6e4921d200\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isSplit</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac28734984da3475d7e3bee6e4921d200\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5ca1c1147bb56c508dc89181d37d8a99\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5ca1c1147bb56c508dc89181d37d8a99\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5ca1c1147bb56c508dc89181d37d8a99\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af2a5aa290684d42398cd836593fb974b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af2a5aa290684d42398cd836593fb974b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>columnType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af2a5aa290684d42398cd836593fb974b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abefd7fea4e7eb7b1013ab972ed67d21c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abefd7fea4e7eb7b1013ab972ed67d21c\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">StateMappings</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>stateMappings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abefd7fea4e7eb7b1013ab972ed67d21c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ColumnPost.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\">CreateUpdateNodeViewModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">Attributes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">Node</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/CreateUpdateNodeViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\">CreateUpdateNodeViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>finishDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>startDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\">CreateUpdateNodeViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a566c22ea34bb8728474727260ac4e8d0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a566c22ea34bb8728474727260ac4e8d0\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>startDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a566c22ea34bb8728474727260ac4e8d0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaf82c7b004efa8872f2eea6a4a204618\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaf82c7b004efa8872f2eea6a4a204618\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>finishDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaf82c7b004efa8872f2eea6a4a204618\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/CreateUpdateNodeViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\">CreateUpdateNodeViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">Node</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>attributes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\">CreateUpdateNodeViewModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">Node</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,408,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a0925513df29c064d38b264758547578c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0925513df29c064d38b264758547578c\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0925513df29c064d38b264758547578c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a970f0727dddc9d4e47654a54d2445117\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a970f0727dddc9d4e47654a54d2445117\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a970f0727dddc9d4e47654a54d2445117\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a030c993e6c05f1b67d6a52d7a2d1e9e6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a030c993e6c05f1b67d6a52d7a2d1e9e6\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">Attributes</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>attributes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a030c993e6c05f1b67d6a52d7a2d1e9e6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/CreateUpdateNodeViewModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">ColumnResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">Field</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">Fields</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">StateMappings</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetBoardColumnResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">ColumnResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>columns</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fields</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">ColumnResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,455,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a643b06eae953cc06269cc05ad678273e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a643b06eae953cc06269cc05ad678273e\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a643b06eae953cc06269cc05ad678273e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6d5e35ed4c85bc3071c2c010e262cc5c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6d5e35ed4c85bc3071c2c010e262cc5c\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>columns</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6d5e35ed4c85bc3071c2c010e262cc5c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5364062711e0c5bc8e7554d60d5f048f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5364062711e0c5bc8e7554d60d5f048f\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">Fields</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fields</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5364062711e0c5bc8e7554d60d5f048f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetBoardColumnResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">Field</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>referenceName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">Field</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad1f39e5825d8c585e28639de786b29ab\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad1f39e5825d8c585e28639de786b29ab\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>referenceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad1f39e5825d8c585e28639de786b29ab\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac44319a9f92f784e3b6e0aa1f63ceff7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac44319a9f92f784e3b6e0aa1f63ceff7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac44319a9f92f784e3b6e0aa1f63ceff7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetBoardColumnResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>columnField</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>doneField</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>rowField</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:af6e72a1a12b00cd6c88947edad665778\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af6e72a1a12b00cd6c88947edad665778\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">Field</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>columnField</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af6e72a1a12b00cd6c88947edad665778\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad05ee1cb6a18b64b86871a73205985d6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad05ee1cb6a18b64b86871a73205985d6\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">Field</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rowField</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad05ee1cb6a18b64b86871a73205985d6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab9ddcd96dbe4eadb5b0d06d9ffa9a665\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab9ddcd96dbe4eadb5b0d06d9ffa9a665\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">Field</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>doneField</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab9ddcd96dbe4eadb5b0d06d9ffa9a665\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetBoardColumnResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">StateMappings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>bug</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PBI</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">StateMappings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad63a3440ac5c2962722f72f0cb150aed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad63a3440ac5c2962722f72f0cb150aed\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PBI</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad63a3440ac5c2962722f72f0cb150aed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab96c2cc0d1407b8063b9c75c23d2e64a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab96c2cc0d1407b8063b9c75c23d2e64a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>bug</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab96c2cc0d1407b8063b9c75c23d2e64a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetBoardColumnResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>columnType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>description</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isSplit</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>itemLimit</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>stateMappings</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa3c70674c1ba00f4d105c9592629cbfb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa3c70674c1ba00f4d105c9592629cbfb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa3c70674c1ba00f4d105c9592629cbfb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a82956117de332238aff0637925947b8d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a82956117de332238aff0637925947b8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a82956117de332238aff0637925947b8d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1343a864191dd132e3973c0b32940f11\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1343a864191dd132e3973c0b32940f11\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>itemLimit</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1343a864191dd132e3973c0b32940f11\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab3386898c2a78947b7b7ba99b8dcfc48\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab3386898c2a78947b7b7ba99b8dcfc48\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isSplit</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab3386898c2a78947b7b7ba99b8dcfc48\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8d75062eb2d2dd4a5b7fe8fcb79acae1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8d75062eb2d2dd4a5b7fe8fcb79acae1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>description</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8d75062eb2d2dd4a5b7fe8fcb79acae1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a50181a91ed336cd9a1e118842fd2546d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a50181a91ed336cd9a1e118842fd2546d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>columnType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a50181a91ed336cd9a1e118842fd2546d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2381bc2a31031d7121a291a00adde602\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2381bc2a31031d7121a291a00adde602\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">StateMappings</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>stateMappings</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2381bc2a31031d7121a291a00adde602\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetBoardColumnResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\">GetCardFieldResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">Cards</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\">ListofCards</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetCardFieldResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\">GetCardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">Cards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>bugs</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>pbis</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\">GetCardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">Cards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,372,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:afc24699866a9541f3317538b12bc4ccc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afc24699866a9541f3317538b12bc4ccc\"></a>\nDictionary&lt; string, string &gt; []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>bugs</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afc24699866a9541f3317538b12bc4ccc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae0829a5e583c4c779d26bfaa846df14c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae0829a5e583c4c779d26bfaa846df14c\"></a>\nDictionary&lt; string, string &gt; []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pbis</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae0829a5e583c4c779d26bfaa846df14c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetCardFieldResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\">GetCardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\">ListofCards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.ListofCards Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.ListofCards</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>cards</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.ListofCards</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.ListofCards</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.ListofCards Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\">GetCardFieldResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\">ListofCards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.ListofCards Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a9a757939b4aef47eb51a15d0edcf6d8b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9a757939b4aef47eb51a15d0edcf6d8b\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">Cards</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>cards</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9a757939b4aef47eb51a15d0edcf6d8b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetCardFieldResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">_Links</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">Attributes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">Node</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\">Parent</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\">Self</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">_Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>parent</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>self</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">_Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:afb22b1d590f7a8a1d70e9af9d6b21be6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb22b1d590f7a8a1d70e9af9d6b21be6\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\">Self</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>self</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb22b1d590f7a8a1d70e9af9d6b21be6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a425b7de55dbfe6684aaf67cccd5ce04f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a425b7de55dbfe6684aaf67cccd5ce04f\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\">Parent</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>parent</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a425b7de55dbfe6684aaf67cccd5ce04f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>finishDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>startDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ab0f5f7ad16ca175fb94d8820ae9617ca\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab0f5f7ad16ca175fb94d8820ae9617ca\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>startDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab0f5f7ad16ca175fb94d8820ae9617ca\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8c5d54b66442d513882f6a164221b489\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8c5d54b66442d513882f6a164221b489\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>finishDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8c5d54b66442d513882f6a164221b489\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">Node</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>_links</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>attributes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>hasChildren</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>structureType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">Node</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,342,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac11f772ac6047ee95147de9bc6aa34a5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac11f772ac6047ee95147de9bc6aa34a5\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac11f772ac6047ee95147de9bc6aa34a5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad785fac547041b1d875189d59db73da9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad785fac547041b1d875189d59db73da9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad785fac547041b1d875189d59db73da9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3a3803f1ca104b775a699e9b7ce1e57c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3a3803f1ca104b775a699e9b7ce1e57c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>structureType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3a3803f1ca104b775a699e9b7ce1e57c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aeef732e42587b1d0bec597af4ee2e559\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aeef732e42587b1d0bec597af4ee2e559\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasChildren</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aeef732e42587b1d0bec597af4ee2e559\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a20028568f99e2f9d98d6ff5eee556fb5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a20028568f99e2f9d98d6ff5eee556fb5\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">Attributes</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>attributes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a20028568f99e2f9d98d6ff5eee556fb5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae739e209dba9b8082f251b43a4e789d9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae739e209dba9b8082f251b43a4e789d9\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">_Links</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>_links</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae739e209dba9b8082f251b43a4e789d9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac120f23a4f8c6ae28a732ebbf2d6e008\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac120f23a4f8c6ae28a732ebbf2d6e008\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac120f23a4f8c6ae28a732ebbf2d6e008\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\">Parent</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Parent Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Parent</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Parent</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Parent</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Parent Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\">Parent</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Parent Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6bc834fb37470016bb61b09b632e477f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6bc834fb37470016bb61b09b632e477f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6bc834fb37470016bb61b09b632e477f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\">Self</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\">Self</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a62c9e0727248025b45031fb4c7bab4ac\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a62c9e0727248025b45031fb4c7bab4ac\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a62c9e0727248025b45031fb4c7bab4ac\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodeResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\">_Links</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">Attributes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">Child</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">Child1</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">Nodes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\">Self</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\">_Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>self</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\">_Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1ab9e264fd0e5331d719d1f21d498926\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1ab9e264fd0e5331d719d1f21d498926\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\">Self</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>self</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1ab9e264fd0e5331d719d1f21d498926\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>finishDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>startDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac3bd426c7299a390731c5c6cb45a75b6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac3bd426c7299a390731c5c6cb45a75b6\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>startDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac3bd426c7299a390731c5c6cb45a75b6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae607562b150f531e2eacf7a7fe71c339\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae607562b150f531e2eacf7a7fe71c339\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>finishDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae607562b150f531e2eacf7a7fe71c339\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">Child</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>children</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>hasChildren</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>structureType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">Child</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a496751316cbcd5754f4fa0b4bad5d27b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a496751316cbcd5754f4fa0b4bad5d27b\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a496751316cbcd5754f4fa0b4bad5d27b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aecf82d9cece71f663998d983b51fd3b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aecf82d9cece71f663998d983b51fd3b2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aecf82d9cece71f663998d983b51fd3b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af38ec0c4fefff7796c4d6b9bef5138cd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af38ec0c4fefff7796c4d6b9bef5138cd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>structureType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af38ec0c4fefff7796c4d6b9bef5138cd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad30387cc0fe1d16e4bebf951872481cf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad30387cc0fe1d16e4bebf951872481cf\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasChildren</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad30387cc0fe1d16e4bebf951872481cf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9c70dc5c0ca6c7827d24a3a36650399a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9c70dc5c0ca6c7827d24a3a36650399a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9c70dc5c0ca6c7827d24a3a36650399a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aab5a0a0693a289ed7d1976db710cd25b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aab5a0a0693a289ed7d1976db710cd25b\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">Child</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>children</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aab5a0a0693a289ed7d1976db710cd25b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">Child1</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1 Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>attributes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>hasChildren</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>structureType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1 Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">Child1</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1 Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:abef269538b44293abf147a19e43a8399\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abef269538b44293abf147a19e43a8399\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abef269538b44293abf147a19e43a8399\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0db9b2cac4d048f905b28b0daabca045\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0db9b2cac4d048f905b28b0daabca045\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0db9b2cac4d048f905b28b0daabca045\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5ab2bd90ad484f47b9b489564d4356ed\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5ab2bd90ad484f47b9b489564d4356ed\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>structureType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5ab2bd90ad484f47b9b489564d4356ed\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab04fbd79e94f67ab4af5ab1da1396bb9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab04fbd79e94f67ab4af5ab1da1396bb9\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasChildren</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab04fbd79e94f67ab4af5ab1da1396bb9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a024f795fe2cb0f63d7f05ed119ada517\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a024f795fe2cb0f63d7f05ed119ada517\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a024f795fe2cb0f63d7f05ed119ada517\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8d9508721f8e0c5e703f05f9e9b627d3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8d9508721f8e0c5e703f05f9e9b627d3\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">Attributes</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>attributes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8d9508721f8e0c5e703f05f9e9b627d3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">Nodes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>_links</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>children</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>hasChildren</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>structureType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">Nodes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,354,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a562353f1584435c995eff6665ee5718d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a562353f1584435c995eff6665ee5718d\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a562353f1584435c995eff6665ee5718d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1405df5e2b34142d2ce9bc4dae9e16e4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1405df5e2b34142d2ce9bc4dae9e16e4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1405df5e2b34142d2ce9bc4dae9e16e4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0ab6a563bd98c3e2af3a0fa47f10065d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0ab6a563bd98c3e2af3a0fa47f10065d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>structureType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0ab6a563bd98c3e2af3a0fa47f10065d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a985437989a89573c78eb350536864d7e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a985437989a89573c78eb350536864d7e\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>hasChildren</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a985437989a89573c78eb350536864d7e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adc7c9315e6b36efcb5a86e4685db6913\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adc7c9315e6b36efcb5a86e4685db6913\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">Child</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>children</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adc7c9315e6b36efcb5a86e4685db6913\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab87e7d5e03e18c0e197ee1b85c8c8fae\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab87e7d5e03e18c0e197ee1b85c8c8fae\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\">_Links</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>_links</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab87e7d5e03e18c0e197ee1b85c8c8fae\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a83d552cec045b67b247bbb744843d8d8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a83d552cec045b67b247bbb744843d8d8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a83d552cec045b67b247bbb744843d8d8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\">Self</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\">Self</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a70c146e805a9ef37f4a4364410a1ed77\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a70c146e805a9ef37f4a4364410a1ed77\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a70c146e805a9ef37f4a4364410a1ed77\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetNodesResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">Column</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">Results</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">Workitem</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetWorkItemsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">Column</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>referenceName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">Column</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a5c47788ad3702fbc94f931e59c2c00fc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5c47788ad3702fbc94f931e59c2c00fc\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>referenceName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5c47788ad3702fbc94f931e59c2c00fc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a25c31255f4bd63e6f73c33c7748f90a8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a25c31255f4bd63e6f73c33c7748f90a8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a25c31255f4bd63e6f73c33c7748f90a8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a966ad06af96a847b93d38036fc00939d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a966ad06af96a847b93d38036fc00939d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a966ad06af96a847b93d38036fc00939d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetWorkItemsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">Results</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>asOf</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>columns</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>queryResultType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>queryType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>workItems</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">Results</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,379,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a4e60d4ceb5b0b5cee6ba2a1a3b819aa8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4e60d4ceb5b0b5cee6ba2a1a3b819aa8\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queryType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4e60d4ceb5b0b5cee6ba2a1a3b819aa8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a3fad88481a7cd78c973803c290568784\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3fad88481a7cd78c973803c290568784\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>queryResultType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3fad88481a7cd78c973803c290568784\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab211d9a35f8657ed061afc21ed638cfe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab211d9a35f8657ed061afc21ed638cfe\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>asOf</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab211d9a35f8657ed061afc21ed638cfe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a94d45e36b688ac13be0872be31132869\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a94d45e36b688ac13be0872be31132869\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">Column</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>columns</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a94d45e36b688ac13be0872be31132869\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac9b660c5081d01e40cc2492f6b4cc445\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac9b660c5081d01e40cc2492f6b4cc445\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">Workitem</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workItems</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac9b660c5081d01e40cc2492f6b4cc445\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetWorkItemsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">Workitem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">Workitem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a26a63738fe325d954fbe89329e7cfc33\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a26a63738fe325d954fbe89329e7cfc33\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a26a63738fe325d954fbe89329e7cfc33\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2f3619f75bf6bb55c4e15c9b6d6d54b5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2f3619f75bf6bb55c4e15c9b6d6d54b5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2f3619f75bf6bb55c4e15c9b6d6d54b5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/GetWorkItemsResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">Attributes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">Fields</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">Relations</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">WorkItems</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ImportWorkItemModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>comment</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>isLocked</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a5db4afe0583decdab21bd8f47a05720c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5db4afe0583decdab21bd8f47a05720c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isLocked</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5db4afe0583decdab21bd8f47a05720c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abef54917cbfe8ed78a745e0cc02913bf\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abef54917cbfe8ed78a745e0cc02913bf\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>comment</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abef54917cbfe8ed78a745e0cc02913bf\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ImportWorkItemModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSCommonAcceptanceCriteria</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MicrosoftVSTSCommonPriority</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSSchedulingEffort</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MicrosoftVSTSSchedulingRemainingWork</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSTCMAutomationStatus</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MicrosoftVSTSTCMLocalDataSource</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSTCMParameters</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MicrosoftVSTSTCMSteps</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemAreaPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemAssignedTo</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemBoardLane</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemChangedBy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemChangedDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemCreatedBy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemCreatedDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemDescription</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemIterationPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemReason</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemState</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemTags</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemTeamProject</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemTitle</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemWorkItemType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a09432a150c5c2f3b5fc6dd7216fee2f5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a09432a150c5c2f3b5fc6dd7216fee2f5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemAreaPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a09432a150c5c2f3b5fc6dd7216fee2f5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acea4c9dc3fbfa1b10949e2b71f0ae587\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acea4c9dc3fbfa1b10949e2b71f0ae587\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemTeamProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acea4c9dc3fbfa1b10949e2b71f0ae587\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2fab0c90785b30d9be2cbf7b3b182b95\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2fab0c90785b30d9be2cbf7b3b182b95\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemIterationPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2fab0c90785b30d9be2cbf7b3b182b95\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac52b20d6204ce2459d7f457381913da9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac52b20d6204ce2459d7f457381913da9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemWorkItemType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac52b20d6204ce2459d7f457381913da9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a164563fc200d793fde101f11209e1654\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a164563fc200d793fde101f11209e1654\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemState</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a164563fc200d793fde101f11209e1654\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1d70a6f28fbdd1f460046b7827b146cd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1d70a6f28fbdd1f460046b7827b146cd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemReason</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1d70a6f28fbdd1f460046b7827b146cd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a76f3cff0fa0d524fa6c2be9c4083c7d1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a76f3cff0fa0d524fa6c2be9c4083c7d1\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemCreatedDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a76f3cff0fa0d524fa6c2be9c4083c7d1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a322ea8250514dd82991cd8fce794c6fb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a322ea8250514dd82991cd8fce794c6fb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemCreatedBy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a322ea8250514dd82991cd8fce794c6fb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab8faf606d9224d4fa384c1f69c415a13\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab8faf606d9224d4fa384c1f69c415a13\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemChangedDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ab8faf606d9224d4fa384c1f69c415a13\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:affd6fe766988b8b54443d16c6d145c46\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"affd6fe766988b8b54443d16c6d145c46\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemChangedBy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:affd6fe766988b8b54443d16c6d145c46\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad806a546dcdad3a79fcf9a6f92a7004f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad806a546dcdad3a79fcf9a6f92a7004f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemTitle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad806a546dcdad3a79fcf9a6f92a7004f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a003e4ce6a3c5eff817d0cd5877dd4b7c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a003e4ce6a3c5eff817d0cd5877dd4b7c\"></a>\nfloat&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSSchedulingEffort</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a003e4ce6a3c5eff817d0cd5877dd4b7c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a035d7fe526a125e593f94e4a7388bae3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a035d7fe526a125e593f94e4a7388bae3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemDescription</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a035d7fe526a125e593f94e4a7388bae3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aca20c4cd284de6a61124e6410931f937\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aca20c4cd284de6a61124e6410931f937\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemAssignedTo</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aca20c4cd284de6a61124e6410931f937\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afde07687e67102e24c9ed876c4ba566a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afde07687e67102e24c9ed876c4ba566a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemBoardLane</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afde07687e67102e24c9ed876c4ba566a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4966845fdb8811f63675b8200e3001a9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4966845fdb8811f63675b8200e3001a9\"></a>\nfloat&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSSchedulingRemainingWork</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4966845fdb8811f63675b8200e3001a9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a03c6becdfa223e0d209c010e67997773\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a03c6becdfa223e0d209c010e67997773\"></a>\nfloat&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSCommonPriority</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a03c6becdfa223e0d209c010e67997773\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a8623f08ea6d709a2b7d2d6508797c51a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a8623f08ea6d709a2b7d2d6508797c51a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemTags</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a8623f08ea6d709a2b7d2d6508797c51a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acd11024da97102d6c174b785d0234a93\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acd11024da97102d6c174b785d0234a93\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSTCMSteps</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acd11024da97102d6c174b785d0234a93\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a708e5f00d7b21865317bd63ecde46223\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a708e5f00d7b21865317bd63ecde46223\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSTCMParameters</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a708e5f00d7b21865317bd63ecde46223\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6b282e82dcfc7319d1f156c962cce2b1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6b282e82dcfc7319d1f156c962cce2b1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSTCMLocalDataSource</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6b282e82dcfc7319d1f156c962cce2b1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a116bbcb6788fd4ce687540364fa531d9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a116bbcb6788fd4ce687540364fa531d9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSTCMAutomationStatus</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a116bbcb6788fd4ce687540364fa531d9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5bddb96d7a6da1b5e98f3914cecc4650\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5bddb96d7a6da1b5e98f3914cecc4650\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSCommonAcceptanceCriteria</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5bddb96d7a6da1b5e98f3914cecc4650\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ImportWorkItemModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">Relations</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>attributes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rel</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">Relations</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad905d200d8a9c75d1582271de144b5ad\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad905d200d8a9c75d1582271de144b5ad\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rel</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad905d200d8a9c75d1582271de144b5ad\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad94e58e3836f42d3e612ac32759b21d4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad94e58e3836f42d3e612ac32759b21d4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad94e58e3836f42d3e612ac32759b21d4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2e51839fbf3bd8b56aebac80060070e6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2e51839fbf3bd8b56aebac80060070e6\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>attributes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2e51839fbf3bd8b56aebac80060070e6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ImportWorkItemModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fields</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>relations</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rev</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aac0da0a306ab1c3712c61b8bca7597cd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aac0da0a306ab1c3712c61b8bca7597cd\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aac0da0a306ab1c3712c61b8bca7597cd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af8316b53120f94ba8b404360c7702ddd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af8316b53120f94ba8b404360c7702ddd\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rev</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af8316b53120f94ba8b404360c7702ddd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae774423a23c965b7b06b1337245102ab\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae774423a23c965b7b06b1337245102ab\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">Fields</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fields</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae774423a23c965b7b06b1337245102ab\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:add03237e31255cbf6a45cc17b81124ac\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"add03237e31255cbf6a45cc17b81124ac\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">Relations</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>relations</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:add03237e31255cbf6a45cc17b81124ac\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa0e385ffcfb4a57a36c11e1822cbc5a9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa0e385ffcfb4a57a36c11e1822cbc5a9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa0e385ffcfb4a57a36c11e1822cbc5a9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ImportWorkItemModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">WorkItems</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">WorkItems</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,385,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a423cd7d0de2b9d41c5a340eb1a38bd90\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a423cd7d0de2b9d41c5a340eb1a38bd90\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a423cd7d0de2b9d41c5a340eb1a38bd90\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aac7408f377464af62f3901ac083ed801\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aac7408f377464af62f3901ac083ed801\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">Value</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aac7408f377464af62f3901ac083ed801\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ImportWorkItemModel.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">ReturnException</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ReturnException Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>errorCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>eventId</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>innerException</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>typeKey</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>typeName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.ReturnException Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">ReturnException</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.ReturnException Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a51989d31d0d16a238c26618b6665ea57\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a51989d31d0d16a238c26618b6665ea57\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a51989d31d0d16a238c26618b6665ea57\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a00b0af108d6945ae2b8596f69d415df1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a00b0af108d6945ae2b8596f69d415df1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>innerException</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a00b0af108d6945ae2b8596f69d415df1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a17922f8541bdbe246f297b2acc23a93b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a17922f8541bdbe246f297b2acc23a93b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a17922f8541bdbe246f297b2acc23a93b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aaa7297bec34f6fcd5c58a81959158c01\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aaa7297bec34f6fcd5c58a81959158c01\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>typeName</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aaa7297bec34f6fcd5c58a81959158c01\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa06536d9bb6bce613845e07bb05fc2c3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa06536d9bb6bce613845e07bb05fc2c3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>typeKey</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa06536d9bb6bce613845e07bb05fc2c3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7139a7dd321ede09a260d9cb04280422\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7139a7dd321ede09a260d9cb04280422\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>errorCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7139a7dd321ede09a260d9cb04280422\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4184b4d921685c2c96e15a34d51bb6de\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4184b4d921685c2c96e15a34d51bb6de\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>eventId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4184b4d921685c2c96e15a34d51bb6de\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ReturnException.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\">SetEpicSettings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">BacklogVisibilities</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\">Epiclist</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/SetEpicSettings.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\">SetEpicSettings</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">BacklogVisibilities</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>epi</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>pbi</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Req</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\">SetEpicSettings</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">BacklogVisibilities</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,396,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a07c1edc7094917bee5ede0f972bef4a3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a07c1edc7094917bee5ede0f972bef4a3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>epi</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a07c1edc7094917bee5ede0f972bef4a3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af8487683a549f2bf1edd0eb490dbae71\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af8487683a549f2bf1edd0eb490dbae71\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>pbi</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af8487683a549f2bf1edd0eb490dbae71\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a52d3ee01620d7d425764844a249ce375\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a52d3ee01620d7d425764844a249ce375\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Req</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a52d3ee01620d7d425764844a249ce375\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/SetEpicSettings.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\">SetEpicSettings</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\">Epiclist</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.Epiclist Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.Epiclist</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>backlogVisibilities</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.Epiclist</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.Epiclist</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.Epiclist Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\">SetEpicSettings</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\">Epiclist</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.Epiclist Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3645bd8639271372fe3c003c98cf46f4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3645bd8639271372fe3c003c98cf46f4\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">BacklogVisibilities</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>backlogVisibilities</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3645bd8639271372fe3c003c98cf46f4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/SetEpicSettings.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">StateMappings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.StateMappings Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.StateMappings</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>bug</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.StateMappings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.StateMappings</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PBI</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.StateMappings</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">VstsRestAPI.Viewmodel.WorkItem.StateMappings</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.StateMappings Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">StateMappings</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.StateMappings Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aabcbcf068fd0dda0fc7fc920d64d3a0c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aabcbcf068fd0dda0fc7fc920d64d3a0c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PBI</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aabcbcf068fd0dda0fc7fc920d64d3a0c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac5ec66dbf9bd4ed8c50d638ae8930ffb\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac5ec66dbf9bd4ed8c50d638ae8930ffb\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>bug</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac5ec66dbf9bd4ed8c50d638ae8930ffb\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/ColumnPost.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">WorkItemBatchPostResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>count</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>values</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">WorkItemBatchPostResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a> &#124;\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a7ed365459c1813f21d1295356b4ca023\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7ed365459c1813f21d1295356b4ca023\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>count</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7ed365459c1813f21d1295356b4ca023\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a245364d6705ad42a815ccf7ecae1bb82\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a245364d6705ad42a815ccf7ecae1bb82\"></a>\nList&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">Value</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>values</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a245364d6705ad42a815ccf7ecae1bb82\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemBatchPostResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">WorkItemBatchPostResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>body</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>code</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>headers</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">WorkItemBatchPostResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a3600b35f9593daf9e9fd51a8ab26f193\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3600b35f9593daf9e9fd51a8ab26f193\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>code</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a3600b35f9593daf9e9fd51a8ab26f193\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a578ca8c2d2441e5f4e80ae9f797833a2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a578ca8c2d2441e5f4e80ae9f797833a2\"></a>\nDictionary&lt; string, string &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>headers</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a578ca8c2d2441e5f4e80ae9f797833a2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9d74cf34e34c90c803cbc36875bca04b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9d74cf34e34c90c803cbc36875bca04b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>body</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9d74cf34e34c90c803cbc36875bca04b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemBatchPostResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">Attributes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">Field</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>comment</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>name</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:afb2c8090955bd7e91f69e09ee4a953f5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afb2c8090955bd7e91f69e09ee4a953f5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>comment</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afb2c8090955bd7e91f69e09ee4a953f5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a86b398c16d9513a15e70ccef16e400d3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a86b398c16d9513a15e70ccef16e400d3\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>name</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a86b398c16d9513a15e70ccef16e400d3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">Field</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>op</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>path</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>value</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">Field</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a47484809be9e029acf2c0a9025cfc973\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a47484809be9e029acf2c0a9025cfc973\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>op</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a47484809be9e029acf2c0a9025cfc973\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a16dff5a6958e684bd3cf9794a46f7641\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a16dff5a6958e684bd3cf9794a46f7641\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>path</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a16dff5a6958e684bd3cf9794a46f7641\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abb949b7e7d4a2a1bc6b05d0e5f2370b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abb949b7e7d4a2a1bc6b05d0e5f2370b2\"></a>\nobject&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>value</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abb949b7e7d4a2a1bc6b05d0e5f2370b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>attributes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rel</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">Value</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a60193a1ddcce4e012fc8065062996af4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a60193a1ddcce4e012fc8065062996af4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rel</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a60193a1ddcce4e012fc8065062996af4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acb0e41224a9c01cc2ddbf327cab8ad18\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acb0e41224a9c01cc2ddbf327cab8ad18\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acb0e41224a9c01cc2ddbf327cab8ad18\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6a7c2edadb18597e58b66fef476dfba6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a7c2edadb18597e58b66fef476dfba6\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">Attributes</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>attributes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6a7c2edadb18597e58b66fef476dfba6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatch.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">_Links</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\">Attributes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">Fields</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\">Fields1</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\">Html</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">Relation</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\">Self</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">WorkItem</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\">Workitemhistory</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\">Workitemrevisions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\">Workitemtype</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\">Workitemupdates</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">_Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>fields</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>html</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>self</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>workItemHistory</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>workItemRevisions</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>workItemType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>workItemUpdates</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">_Links</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aa993e17cfb2c362e7ef0f78895d6de1d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa993e17cfb2c362e7ef0f78895d6de1d\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\">Self</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>self</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa993e17cfb2c362e7ef0f78895d6de1d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac04306e846f461282053d664e0849e7c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac04306e846f461282053d664e0849e7c\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\">Workitemupdates</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workItemUpdates</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac04306e846f461282053d664e0849e7c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aac79ea3367d4da870fbac1f7cac5cf3f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aac79ea3367d4da870fbac1f7cac5cf3f\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\">Workitemrevisions</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workItemRevisions</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aac79ea3367d4da870fbac1f7cac5cf3f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a628707bdbf8a4b3d5d5adc8da4107b4e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a628707bdbf8a4b3d5d5adc8da4107b4e\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\">Workitemhistory</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workItemHistory</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a628707bdbf8a4b3d5d5adc8da4107b4e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a611f044cd7c00afb7e93f8bba29d3c07\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a611f044cd7c00afb7e93f8bba29d3c07\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\">Html</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>html</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a611f044cd7c00afb7e93f8bba29d3c07\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6d538d613eb43f7b992a63da1ecc3207\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6d538d613eb43f7b992a63da1ecc3207\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\">Workitemtype</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>workItemType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6d538d613eb43f7b992a63da1ecc3207\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2a683bdbb46271ecb2a653e5cd0d804d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2a683bdbb46271ecb2a653e5cd0d804d\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\">Fields1</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fields</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2a683bdbb46271ecb2a653e5cd0d804d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>isLocked</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\">Attributes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a962d30b02b3b0695da6123a9bba59631\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a962d30b02b3b0695da6123a9bba59631\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>isLocked</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a962d30b02b3b0695da6123a9bba59631\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSCommonBusinessValue</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MicrosoftVSTSCommonPriority</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>MicrosoftVSTSCommonValueArea</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemAreaPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemBoardColumn</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemBoardColumnDone</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemChangedBy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemChangedDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemCreatedBy</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemCreatedDate</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemDescription</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemHistory</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemIterationPath</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemReason</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemState</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemTeamProject</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>SystemTitle</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SystemWorkItemType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">Fields</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ad4fad9482221d9d5c337a39172d7b7c1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad4fad9482221d9d5c337a39172d7b7c1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemAreaPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad4fad9482221d9d5c337a39172d7b7c1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6a5b31e7ffe497441ad8cfba8a3818b0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6a5b31e7ffe497441ad8cfba8a3818b0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemTeamProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6a5b31e7ffe497441ad8cfba8a3818b0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a19660db0d9b8e5255f8b62801f77bf19\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a19660db0d9b8e5255f8b62801f77bf19\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemIterationPath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a19660db0d9b8e5255f8b62801f77bf19\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a24fc4358ea7f83361ceda80b7587faea\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a24fc4358ea7f83361ceda80b7587faea\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemWorkItemType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a24fc4358ea7f83361ceda80b7587faea\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae258055360a73f778538c4a10e5446d0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae258055360a73f778538c4a10e5446d0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemState</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae258055360a73f778538c4a10e5446d0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7c6aa17dcded25cb38921e98368bcd7d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7c6aa17dcded25cb38921e98368bcd7d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemReason</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7c6aa17dcded25cb38921e98368bcd7d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0b9ac584a27836c1bf19461e02356f0b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0b9ac584a27836c1bf19461e02356f0b\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemCreatedDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0b9ac584a27836c1bf19461e02356f0b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac50fd6c3cce0a74a98f90421b1b755be\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac50fd6c3cce0a74a98f90421b1b755be\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemCreatedBy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac50fd6c3cce0a74a98f90421b1b755be\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a2bc6a4993e61db8d15521849dda88355\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2bc6a4993e61db8d15521849dda88355\"></a>\nDateTime&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemChangedDate</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a2bc6a4993e61db8d15521849dda88355\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abc4215bc977d48e040b61ce24f9216c1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abc4215bc977d48e040b61ce24f9216c1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemChangedBy</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abc4215bc977d48e040b61ce24f9216c1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a453a872311bda0cf9bc5d02d502a5195\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a453a872311bda0cf9bc5d02d502a5195\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemTitle</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a453a872311bda0cf9bc5d02d502a5195\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1638474550567286db044b30643ea28f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1638474550567286db044b30643ea28f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemBoardColumn</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1638474550567286db044b30643ea28f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad1a0b3f356b32dc993e7b526569cf6ab\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad1a0b3f356b32dc993e7b526569cf6ab\"></a>\nbool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemBoardColumnDone</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad1a0b3f356b32dc993e7b526569cf6ab\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a482d17caaad9fa932e375869186112d1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a482d17caaad9fa932e375869186112d1\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSCommonPriority</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a482d17caaad9fa932e375869186112d1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a37a19843ca741dda048d72dc4c1f851e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a37a19843ca741dda048d72dc4c1f851e\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSCommonBusinessValue</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a37a19843ca741dda048d72dc4c1f851e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac6f79c6fe16fc6a6c211f5ccbbb004a0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac6f79c6fe16fc6a6c211f5ccbbb004a0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MicrosoftVSTSCommonValueArea</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac6f79c6fe16fc6a6c211f5ccbbb004a0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a42ae60434cd1825bcc03671151834de7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a42ae60434cd1825bcc03671151834de7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemDescription</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a42ae60434cd1825bcc03671151834de7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7bffc4fb7a7d8b3b7c287559b1fafcc0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7bffc4fb7a7d8b3b7c287559b1fafcc0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SystemHistory</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7bffc4fb7a7d8b3b7c287559b1fafcc0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\">Fields1</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields1 Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields1</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields1</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields1</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields1 Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\">Fields1</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields1 Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac2e34f6d54fc718a6063e858c73adee0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac2e34f6d54fc718a6063e858c73adee0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac2e34f6d54fc718a6063e858c73adee0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\">Html</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Html Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Html</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Html</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Html</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Html Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\">Html</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Html Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a6067d030830321b15bef015e8bdd223d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a6067d030830321b15bef015e8bdd223d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a6067d030830321b15bef015e8bdd223d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">Relation</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>attributes</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>rel</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">Relation</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a57cddec88b507196493c0e347136d2e9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a57cddec88b507196493c0e347136d2e9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rel</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a57cddec88b507196493c0e347136d2e9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7f263bebda80e0f171b12e0b0c3eb26a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7f263bebda80e0f171b12e0b0c3eb26a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7f263bebda80e0f171b12e0b0c3eb26a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4276c3702491dd865ec2a175043cca73\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4276c3702491dd865ec2a175043cca73\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\">Attributes</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>attributes</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a4276c3702491dd865ec2a175043cca73\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\">Self</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\">Self</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a63a134ea5cd73294e9ad4c4572491fe1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a63a134ea5cd73294e9ad4c4572491fe1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a63a134ea5cd73294e9ad4c4572491fe1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">WorkItem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>_links</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>fields</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>HttpStatusCode</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>id</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Message</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>relations</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>rev</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>url</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">WorkItem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.png\" usemap=\"#VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem_map\" name=\"VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" alt=\"VstsRestAPI.Viewmodel.BaseViewModel\" shape=\"rect\" coords=\"0,0,397,24\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a068ac9922589ccc48ea539046201131b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a068ac9922589ccc48ea539046201131b\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>id</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a068ac9922589ccc48ea539046201131b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a62c2255d5138b246a3a355f9df857651\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a62c2255d5138b246a3a355f9df857651\"></a>\nint&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rev</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a62c2255d5138b246a3a355f9df857651\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa082c296a382019beeae5f6cd49e3a9e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa082c296a382019beeae5f6cd49e3a9e\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">Fields</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>fields</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa082c296a382019beeae5f6cd49e3a9e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a81fd7be2a3821fa49713324e21b73ab0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a81fd7be2a3821fa49713324e21b73ab0\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">Relation</a> []&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>relations</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a81fd7be2a3821fa49713324e21b73ab0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a79c00338c2f0c1892adda0bf262fa9d8\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a79c00338c2f0c1892adda0bf262fa9d8\"></a>\n<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">_Links</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>_links</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a79c00338c2f0c1892adda0bf262fa9d8\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a63dc7b03976b6160f085de0485d69007\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a63dc7b03976b6160f085de0485d69007\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>url</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a63dc7b03976b6160f085de0485d69007\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"inherit_header properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td colspan=\"2\" onclick=\"javascript:toggleInherit('properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model')\"><img src=\"closed.png\" alt=\"-\"/>&#160;Properties inherited from <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">VstsRestAPI.Viewmodel.BaseViewModel</a></td></tr>\n<tr class=\"memitem:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac836c52d1e4aa236141f001c78cdc418\"></a>\nHttpStatusCode&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>HttpStatusCode</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac836c52d1e4aa236141f001c78cdc418 inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a398b7712f9fa75337a9e46d26406de8d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Message</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a398b7712f9fa75337a9e46d26406de8d inherit properties_class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\">Workitemhistory</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemhistory Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemhistory</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemhistory</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemhistory</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemhistory Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\">Workitemhistory</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemhistory Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a403e4b2d1aaa161299222893bedc949c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a403e4b2d1aaa161299222893bedc949c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a403e4b2d1aaa161299222893bedc949c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\">Workitemrevisions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemrevisions Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemrevisions</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemrevisions</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemrevisions</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemrevisions Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\">Workitemrevisions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemrevisions Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:aad77bb209735e66e82345ec045f74a4a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aad77bb209735e66e82345ec045f74a4a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aad77bb209735e66e82345ec045f74a4a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\">Workitemtype</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemtype Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemtype</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemtype</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemtype</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemtype Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\">Workitemtype</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemtype Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ac3f2657043e8ada951c3787f892ab6e0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac3f2657043e8ada951c3787f892ab6e0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac3f2657043e8ada951c3787f892ab6e0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\">Workitemupdates</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemupdates Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemupdates</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>href</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemupdates</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemupdates</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemupdates Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\">Workitemupdates</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemupdates Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a366e011e5aefe86b97ef996b0a85835a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a366e011e5aefe86b97ef996b0a85835a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>href</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a366e011e5aefe86b97ef996b0a85835a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">BoardColumn</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.BoardColumn Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>BoardColumn</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#ab37fe206629cd139eeb2e6c634e56859\">getBoardColumns</a>(string projectName, string teamName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a6ad605cdf943060efe528fa34b38b225\">RefreshBoard</a>(string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>rowFieldName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a5e492fd7d8cc70eae58565322bd7fcda\">UpdateBoard</a>(string projectName, string fileName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.BoardColumn Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">BoardColumn</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.BoardColumn Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:af8a3fb2feb827f05262695f8bced2cc1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af8a3fb2feb827f05262695f8bced2cc1\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>BoardColumn</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:af8a3fb2feb827f05262695f8bced2cc1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5e492fd7d8cc70eae58565322bd7fcda\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a5e492fd7d8cc70eae58565322bd7fcda\">UpdateBoard</a> (string projectName, string fileName)</td></tr>\n<tr class=\"memdesc:a5e492fd7d8cc70eae58565322bd7fcda\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update kanban board colums styles  <a href=\"#a5e492fd7d8cc70eae58565322bd7fcda\">More...</a><br /></td></tr>\n<tr class=\"separator:a5e492fd7d8cc70eae58565322bd7fcda\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab37fe206629cd139eeb2e6c634e56859\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">GetBoardColumnResponse.ColumnResponse</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#ab37fe206629cd139eeb2e6c634e56859\">getBoardColumns</a> (string projectName, string teamName)</td></tr>\n<tr class=\"memdesc:ab37fe206629cd139eeb2e6c634e56859\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get kanban board columns  <a href=\"#ab37fe206629cd139eeb2e6c634e56859\">More...</a><br /></td></tr>\n<tr class=\"separator:ab37fe206629cd139eeb2e6c634e56859\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a6ad605cdf943060efe528fa34b38b225\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a6ad605cdf943060efe528fa34b38b225\">RefreshBoard</a> (string projectName)</td></tr>\n<tr class=\"memdesc:a6ad605cdf943060efe528fa34b38b225\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Refresh kanban board  <a href=\"#a6ad605cdf943060efe528fa34b38b225\">More...</a><br /></td></tr>\n<tr class=\"separator:a6ad605cdf943060efe528fa34b38b225\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a3cfcdf88f7e8575e5fe3d3b651fc9ad2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3cfcdf88f7e8575e5fe3d3b651fc9ad2\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>rowFieldName</b></td></tr>\n<tr class=\"separator:a3cfcdf88f7e8575e5fe3d3b651fc9ad2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab1d9f3b47971e0dcdca9145c450a72d9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab1d9f3b47971e0dcdca9145c450a72d9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:ab1d9f3b47971e0dcdca9145c450a72d9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"ab37fe206629cd139eeb2e6c634e56859\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ab37fe206629cd139eeb2e6c634e56859\">&#9670;&nbsp;</a></span>getBoardColumns()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">GetBoardColumnResponse.ColumnResponse</a> VstsRestAPI.WorkItemAndTracking.BoardColumn.getBoardColumns </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>teamName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get kanban board columns </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">teamName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a6ad605cdf943060efe528fa34b38b225\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a6ad605cdf943060efe528fa34b38b225\">&#9670;&nbsp;</a></span>RefreshBoard()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsRestAPI.WorkItemAndTracking.BoardColumn.RefreshBoard </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Refresh kanban board </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"a5e492fd7d8cc70eae58565322bd7fcda\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a5e492fd7d8cc70eae58565322bd7fcda\">&#9670;&nbsp;</a></span>UpdateBoard()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.BoardColumn.UpdateBoard </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>fileName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update kanban board colums styles </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">fileName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/BoardColumn.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">Cards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.Cards Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">VstsRestAPI.WorkItemAndTracking.Cards</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a01a9ffa779ba2cdcd5750cc188dc42f1\">ApplyRules</a>(string projectName, string Json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">VstsRestAPI.WorkItemAndTracking.Cards</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Cards</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">VstsRestAPI.WorkItemAndTracking.Cards</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">VstsRestAPI.WorkItemAndTracking.Cards</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a307fb639df853926ff09dadadfd8aa12\">EnablingEpic</a>(string projectName, string Json, string project)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">VstsRestAPI.WorkItemAndTracking.Cards</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>LastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">VstsRestAPI.WorkItemAndTracking.Cards</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">VstsRestAPI.WorkItemAndTracking.Cards</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#aef506846ff57c971ab48a51a39f8cea4\">UpdateCardField</a>(string projectName, string Json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">VstsRestAPI.WorkItemAndTracking.Cards</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.Cards Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">Cards</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.Cards Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:af4078fdba1a2c2b138e1302b31794f4d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af4078fdba1a2c2b138e1302b31794f4d\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Cards</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:af4078fdba1a2c2b138e1302b31794f4d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aef506846ff57c971ab48a51a39f8cea4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#aef506846ff57c971ab48a51a39f8cea4\">UpdateCardField</a> (string projectName, string Json)</td></tr>\n<tr class=\"memdesc:aef506846ff57c971ab48a51a39f8cea4\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update Card fields  <a href=\"#aef506846ff57c971ab48a51a39f8cea4\">More...</a><br /></td></tr>\n<tr class=\"separator:aef506846ff57c971ab48a51a39f8cea4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a01a9ffa779ba2cdcd5750cc188dc42f1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a01a9ffa779ba2cdcd5750cc188dc42f1\">ApplyRules</a> (string projectName, string Json)</td></tr>\n<tr class=\"memdesc:a01a9ffa779ba2cdcd5750cc188dc42f1\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Apply rules to cards  <a href=\"#a01a9ffa779ba2cdcd5750cc188dc42f1\">More...</a><br /></td></tr>\n<tr class=\"separator:a01a9ffa779ba2cdcd5750cc188dc42f1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a307fb639df853926ff09dadadfd8aa12\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a307fb639df853926ff09dadadfd8aa12\">EnablingEpic</a> (string projectName, string Json, string project)</td></tr>\n<tr class=\"memdesc:a307fb639df853926ff09dadadfd8aa12\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Enable Epic  <a href=\"#a307fb639df853926ff09dadadfd8aa12\">More...</a><br /></td></tr>\n<tr class=\"separator:a307fb639df853926ff09dadadfd8aa12\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:ab9717c8763516e21eb0f5623e748394c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ab9717c8763516e21eb0f5623e748394c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>LastFailureMessage</b></td></tr>\n<tr class=\"separator:ab9717c8763516e21eb0f5623e748394c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a01a9ffa779ba2cdcd5750cc188dc42f1\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a01a9ffa779ba2cdcd5750cc188dc42f1\">&#9670;&nbsp;</a></span>ApplyRules()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsRestAPI.WorkItemAndTracking.Cards.ApplyRules </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Apply rules to cards </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">Json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"a307fb639df853926ff09dadadfd8aa12\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a307fb639df853926ff09dadadfd8aa12\">&#9670;&nbsp;</a></span>EnablingEpic()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsRestAPI.WorkItemAndTracking.Cards.EnablingEpic </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Enable Epic </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">Json</td><td></td></tr>\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"aef506846ff57c971ab48a51a39f8cea4\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#aef506846ff57c971ab48a51a39f8cea4\">&#9670;&nbsp;</a></span>UpdateCardField()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsRestAPI.WorkItemAndTracking.Cards.UpdateCardField </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update Card fields </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">Json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/Cards.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">ClassificationNodes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ClassificationNodes</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#ae8b553aaddd3dbd6d03d9ed7400b0667\">CreateIteration</a>(string projectName, string path)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a9b9f298f8ae6cf16fcc809c69f99533a\">GetIterations</a>(string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>LastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a34362d25882c3145b7134f08bf8aae86\">MoveIteration</a>(string projectName, string targetIteration, int sourceIterationId)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aa9ec619ecc43346a57e84ec3206c78e3\">RenameIteration</a>(string projectName, Dictionary&lt; string, string &gt; IterationToUpdate)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aff3aa00e48c8f5419e7ca2a0d35946ef\">UpdateIterationDates</a>(string ProjectName, string templateType)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a06d5cff8ab9703f58ffa2575abb2cdde\">UpdateIterationDates</a>(string project, string path, DateTime startDate, DateTime finishDate)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.ClassificationNodes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">ClassificationNodes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a56901e63fcddff8c3b672404bcd45bfe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a56901e63fcddff8c3b672404bcd45bfe\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ClassificationNodes</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a56901e63fcddff8c3b672404bcd45bfe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9b9f298f8ae6cf16fcc809c69f99533a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">GetNodesResponse.Nodes</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a9b9f298f8ae6cf16fcc809c69f99533a\">GetIterations</a> (string projectName)</td></tr>\n<tr class=\"memdesc:a9b9f298f8ae6cf16fcc809c69f99533a\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Get Iteration  <a href=\"#a9b9f298f8ae6cf16fcc809c69f99533a\">More...</a><br /></td></tr>\n<tr class=\"separator:a9b9f298f8ae6cf16fcc809c69f99533a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae8b553aaddd3dbd6d03d9ed7400b0667\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">GetNodeResponse.Node</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#ae8b553aaddd3dbd6d03d9ed7400b0667\">CreateIteration</a> (string projectName, string path)</td></tr>\n<tr class=\"memdesc:ae8b553aaddd3dbd6d03d9ed7400b0667\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Iterations  <a href=\"#ae8b553aaddd3dbd6d03d9ed7400b0667\">More...</a><br /></td></tr>\n<tr class=\"separator:ae8b553aaddd3dbd6d03d9ed7400b0667\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a34362d25882c3145b7134f08bf8aae86\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">GetNodeResponse.Node</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a34362d25882c3145b7134f08bf8aae86\">MoveIteration</a> (string projectName, string targetIteration, int sourceIterationId)</td></tr>\n<tr class=\"memdesc:a34362d25882c3145b7134f08bf8aae86\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">movie Iteration to parent  <a href=\"#a34362d25882c3145b7134f08bf8aae86\">More...</a><br /></td></tr>\n<tr class=\"separator:a34362d25882c3145b7134f08bf8aae86\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aff3aa00e48c8f5419e7ca2a0d35946ef\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aff3aa00e48c8f5419e7ca2a0d35946ef\">UpdateIterationDates</a> (string ProjectName, string templateType)</td></tr>\n<tr class=\"memdesc:aff3aa00e48c8f5419e7ca2a0d35946ef\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update Iteration Dates- calculating from previous 22 days  <a href=\"#aff3aa00e48c8f5419e7ca2a0d35946ef\">More...</a><br /></td></tr>\n<tr class=\"separator:aff3aa00e48c8f5419e7ca2a0d35946ef\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a06d5cff8ab9703f58ffa2575abb2cdde\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">GetNodeResponse.Node</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a06d5cff8ab9703f58ffa2575abb2cdde\">UpdateIterationDates</a> (string project, string path, DateTime startDate, DateTime finishDate)</td></tr>\n<tr class=\"memdesc:a06d5cff8ab9703f58ffa2575abb2cdde\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update Iteration Dates  <a href=\"#a06d5cff8ab9703f58ffa2575abb2cdde\">More...</a><br /></td></tr>\n<tr class=\"separator:a06d5cff8ab9703f58ffa2575abb2cdde\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa9ec619ecc43346a57e84ec3206c78e3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aa9ec619ecc43346a57e84ec3206c78e3\">RenameIteration</a> (string projectName, Dictionary&lt; string, string &gt; IterationToUpdate)</td></tr>\n<tr class=\"memdesc:aa9ec619ecc43346a57e84ec3206c78e3\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Rename Iteration  <a href=\"#aa9ec619ecc43346a57e84ec3206c78e3\">More...</a><br /></td></tr>\n<tr class=\"separator:aa9ec619ecc43346a57e84ec3206c78e3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a4c0a8a273de79ad69806b8e0bfd4d0d4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a4c0a8a273de79ad69806b8e0bfd4d0d4\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>LastFailureMessage</b></td></tr>\n<tr class=\"separator:a4c0a8a273de79ad69806b8e0bfd4d0d4\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"ae8b553aaddd3dbd6d03d9ed7400b0667\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ae8b553aaddd3dbd6d03d9ed7400b0667\">&#9670;&nbsp;</a></span>CreateIteration()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">GetNodeResponse.Node</a> VstsRestAPI.WorkItemAndTracking.ClassificationNodes.CreateIteration </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>path</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Iterations </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">path</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a9b9f298f8ae6cf16fcc809c69f99533a\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a9b9f298f8ae6cf16fcc809c69f99533a\">&#9670;&nbsp;</a></span>GetIterations()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">GetNodesResponse.Nodes</a> VstsRestAPI.WorkItemAndTracking.ClassificationNodes.GetIterations </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Get Iteration </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a34362d25882c3145b7134f08bf8aae86\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a34362d25882c3145b7134f08bf8aae86\">&#9670;&nbsp;</a></span>MoveIteration()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">GetNodeResponse.Node</a> VstsRestAPI.WorkItemAndTracking.ClassificationNodes.MoveIteration </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>targetIteration</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">int&#160;</td>\n          <td class=\"paramname\"><em>sourceIterationId</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>movie Iteration to parent </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">targetIteration</td><td></td></tr>\n    <tr><td class=\"paramname\">sourceIterationId</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"aa9ec619ecc43346a57e84ec3206c78e3\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#aa9ec619ecc43346a57e84ec3206c78e3\">&#9670;&nbsp;</a></span>RenameIteration()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.ClassificationNodes.RenameIteration </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">Dictionary&lt; string, string &gt;&#160;</td>\n          <td class=\"paramname\"><em>IterationToUpdate</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Rename Iteration </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">IterationToUpdate</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"aff3aa00e48c8f5419e7ca2a0d35946ef\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#aff3aa00e48c8f5419e7ca2a0d35946ef\">&#9670;&nbsp;</a></span>UpdateIterationDates() <span class=\"overload\">[1/2]</span></h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.ClassificationNodes.UpdateIterationDates </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>ProjectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>templateType</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update Iteration Dates- calculating from previous 22 days </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">ProjectName</td><td></td></tr>\n    <tr><td class=\"paramname\">templateType</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a06d5cff8ab9703f58ffa2575abb2cdde\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a06d5cff8ab9703f58ffa2575abb2cdde\">&#9670;&nbsp;</a></span>UpdateIterationDates() <span class=\"overload\">[2/2]</span></h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">GetNodeResponse.Node</a> VstsRestAPI.WorkItemAndTracking.ClassificationNodes.UpdateIterationDates </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>path</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">DateTime&#160;</td>\n          <td class=\"paramname\"><em>startDate</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">DateTime&#160;</td>\n          <td class=\"paramname\"><em>finishDate</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update Iteration Dates </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">path</td><td></td></tr>\n    <tr><td class=\"paramname\">startDate</td><td></td></tr>\n    <tr><td class=\"paramname\">finishDate</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/ClassificationNodes.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">ImportWorkItems</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>boardRowFieldName</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>ImportWorkItems</b>(IConfiguration configuration, string rowFieldName) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a314f15de4c9b09b3911af9d079abe306\">ImportWorkitems</a>(Dictionary&lt; string, string &gt; dicWITypes, string projectName, string uniqueUser, string projectSettingsJson, string attachmentFolderPath, string repositoryID, string projectID, Dictionary&lt; string, string &gt; dictPullRequests, string userMethod, List&lt; string &gt; accountUsers)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a4e9b291e9e8e0c84200d2fa06f0bc068\">PrepareAndUpdateTarget</a>(string workItemType, string workImport, string ProjectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a70dc11cc49f3584702b7269d3ed821b2\">UpdateLink</a>(string workItemType, string WItoUpdate, object[] patchWorkItem)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a0287a32144b543656c69fd06131ee7f3\">UpdateWorkIteminTarget</a>(string workItemType, string old_wi_ID, string ProjectName, Dictionary&lt; string, object &gt; dicWIFields)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#ad85453d724d643b50b25b2d7f39ba95d\">UpdateWorkItemLinks</a>(string workItemTemplateJson)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a5845172621eec8d4991f3633077dc498\">UploadAttchment</a>(string filePath, string fileName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.ImportWorkItems Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">ImportWorkItems</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a2ee1fe393b4ce2879cf0ad53feef7be2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a2ee1fe393b4ce2879cf0ad53feef7be2\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ImportWorkItems</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration, string rowFieldName)</td></tr>\n<tr class=\"separator:a2ee1fe393b4ce2879cf0ad53feef7be2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a314f15de4c9b09b3911af9d079abe306\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">List&lt; <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">WIMapData</a> &gt;&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a314f15de4c9b09b3911af9d079abe306\">ImportWorkitems</a> (Dictionary&lt; string, string &gt; dicWITypes, string projectName, string uniqueUser, string projectSettingsJson, string attachmentFolderPath, string repositoryID, string projectID, Dictionary&lt; string, string &gt; dictPullRequests, string userMethod, List&lt; string &gt; accountUsers)</td></tr>\n<tr class=\"memdesc:a314f15de4c9b09b3911af9d079abe306\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Import Work items form the files  <a href=\"#a314f15de4c9b09b3911af9d079abe306\">More...</a><br /></td></tr>\n<tr class=\"separator:a314f15de4c9b09b3911af9d079abe306\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4e9b291e9e8e0c84200d2fa06f0bc068\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a4e9b291e9e8e0c84200d2fa06f0bc068\">PrepareAndUpdateTarget</a> (string workItemType, string workImport, string ProjectName)</td></tr>\n<tr class=\"memdesc:a4e9b291e9e8e0c84200d2fa06f0bc068\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update the work items in Target with all required field values  <a href=\"#a4e9b291e9e8e0c84200d2fa06f0bc068\">More...</a><br /></td></tr>\n<tr class=\"separator:a4e9b291e9e8e0c84200d2fa06f0bc068\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0287a32144b543656c69fd06131ee7f3\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a0287a32144b543656c69fd06131ee7f3\">UpdateWorkIteminTarget</a> (string workItemType, string old_wi_ID, string ProjectName, Dictionary&lt; string, object &gt; dicWIFields)</td></tr>\n<tr class=\"memdesc:a0287a32144b543656c69fd06131ee7f3\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update work ietm with all required field values  <a href=\"#a0287a32144b543656c69fd06131ee7f3\">More...</a><br /></td></tr>\n<tr class=\"separator:a0287a32144b543656c69fd06131ee7f3\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad85453d724d643b50b25b2d7f39ba95d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#ad85453d724d643b50b25b2d7f39ba95d\">UpdateWorkItemLinks</a> (string workItemTemplateJson)</td></tr>\n<tr class=\"memdesc:ad85453d724d643b50b25b2d7f39ba95d\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update work items links - parent child- Hyperlinks-artifact links-attachments  <a href=\"#ad85453d724d643b50b25b2d7f39ba95d\">More...</a><br /></td></tr>\n<tr class=\"separator:ad85453d724d643b50b25b2d7f39ba95d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a70dc11cc49f3584702b7269d3ed821b2\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a70dc11cc49f3584702b7269d3ed821b2\">UpdateLink</a> (string workItemType, string WItoUpdate, object[] patchWorkItem)</td></tr>\n<tr class=\"memdesc:a70dc11cc49f3584702b7269d3ed821b2\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Udpate Links to work items  <a href=\"#a70dc11cc49f3584702b7269d3ed821b2\">More...</a><br /></td></tr>\n<tr class=\"separator:a70dc11cc49f3584702b7269d3ed821b2\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5845172621eec8d4991f3633077dc498\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">string&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a5845172621eec8d4991f3633077dc498\">UploadAttchment</a> (string filePath, string fileName)</td></tr>\n<tr class=\"memdesc:a5845172621eec8d4991f3633077dc498\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Upload attachments to VSTS server  <a href=\"#a5845172621eec8d4991f3633077dc498\">More...</a><br /></td></tr>\n<tr class=\"separator:a5845172621eec8d4991f3633077dc498\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a3c49805a2d5db76c5e891bb58d55b7ff\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a3c49805a2d5db76c5e891bb58d55b7ff\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>boardRowFieldName</b></td></tr>\n<tr class=\"separator:a3c49805a2d5db76c5e891bb58d55b7ff\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a69a6c66655b4eacd36b981b3a140540a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a69a6c66655b4eacd36b981b3a140540a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a69a6c66655b4eacd36b981b3a140540a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a314f15de4c9b09b3911af9d079abe306\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a314f15de4c9b09b3911af9d079abe306\">&#9670;&nbsp;</a></span>ImportWorkitems()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">List&lt;<a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">WIMapData</a>&gt; VstsRestAPI.WorkItemAndTracking.ImportWorkItems.ImportWorkitems </td>\n          <td>(</td>\n          <td class=\"paramtype\">Dictionary&lt; string, string &gt;&#160;</td>\n          <td class=\"paramname\"><em>dicWITypes</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>uniqueUser</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectSettingsJson</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>attachmentFolderPath</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>repositoryID</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectID</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">Dictionary&lt; string, string &gt;&#160;</td>\n          <td class=\"paramname\"><em>dictPullRequests</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>userMethod</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">List&lt; string &gt;&#160;</td>\n          <td class=\"paramname\"><em>accountUsers</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Import Work items form the files </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">dicWITypes</td><td></td></tr>\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">uniqueUser</td><td></td></tr>\n    <tr><td class=\"paramname\">projectSettingsJson</td><td></td></tr>\n    <tr><td class=\"paramname\">attachmentFolderPath</td><td></td></tr>\n    <tr><td class=\"paramname\">repositoryID</td><td></td></tr>\n    <tr><td class=\"paramname\">projectID</td><td></td></tr>\n    <tr><td class=\"paramname\">dictPullRequests</td><td></td></tr>\n    <tr><td class=\"paramname\">userMethod</td><td></td></tr>\n    <tr><td class=\"paramname\">accountUsers</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a4e9b291e9e8e0c84200d2fa06f0bc068\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a4e9b291e9e8e0c84200d2fa06f0bc068\">&#9670;&nbsp;</a></span>PrepareAndUpdateTarget()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.ImportWorkItems.PrepareAndUpdateTarget </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>workItemType</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>workImport</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>ProjectName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update the work items in Target with all required field values </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">workItemType</td><td></td></tr>\n    <tr><td class=\"paramname\">workImport</td><td></td></tr>\n    <tr><td class=\"paramname\">ProjectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a70dc11cc49f3584702b7269d3ed821b2\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a70dc11cc49f3584702b7269d3ed821b2\">&#9670;&nbsp;</a></span>UpdateLink()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.ImportWorkItems.UpdateLink </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>workItemType</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>WItoUpdate</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">object []&#160;</td>\n          <td class=\"paramname\"><em>patchWorkItem</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Udpate Links to work items </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">workItemType</td><td></td></tr>\n    <tr><td class=\"paramname\">WItoUpdate</td><td></td></tr>\n    <tr><td class=\"paramname\">patchWorkItem</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a0287a32144b543656c69fd06131ee7f3\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a0287a32144b543656c69fd06131ee7f3\">&#9670;&nbsp;</a></span>UpdateWorkIteminTarget()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.ImportWorkItems.UpdateWorkIteminTarget </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>workItemType</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>old_wi_ID</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>ProjectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">Dictionary&lt; string, object &gt;&#160;</td>\n          <td class=\"paramname\"><em>dicWIFields</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update work ietm with all required field values </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">workItemType</td><td></td></tr>\n    <tr><td class=\"paramname\">old_wi_ID</td><td></td></tr>\n    <tr><td class=\"paramname\">ProjectName</td><td></td></tr>\n    <tr><td class=\"paramname\">dicWIFields</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ad85453d724d643b50b25b2d7f39ba95d\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ad85453d724d643b50b25b2d7f39ba95d\">&#9670;&nbsp;</a></span>UpdateWorkItemLinks()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.ImportWorkItems.UpdateWorkItemLinks </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>workItemTemplateJson</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update work items links - parent child- Hyperlinks-artifact links-attachments </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">workItemTemplateJson</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a5845172621eec8d4991f3633077dc498\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a5845172621eec8d4991f3633077dc498\">&#9670;&nbsp;</a></span>UploadAttchment()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">string VstsRestAPI.WorkItemAndTracking.ImportWorkItems.UploadAttchment </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>filePath</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>fileName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Upload attachments to VSTS server </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">filePath</td><td></td></tr>\n    <tr><td class=\"paramname\">fileName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/ImportWorkItems.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\">IssueWI</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.IssueWI Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\">VstsRestAPI.WorkItemAndTracking.IssueWI</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a58345bc764da664648c1fe6530405555\">CreateIssueWI</a>(string Credential, string version, string URL, string issuenName, string description, string projectId)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\">VstsRestAPI.WorkItemAndTracking.IssueWI</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a9e73160c28746c3b6090cfdc8d51b79f\">CreateReportWI</a>(string Credential, string version, string URL, string websiteUrl, string ReportName, string AccountName, string TemplateName, string projectId, string Region)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\">VstsRestAPI.WorkItemAndTracking.IssueWI</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.IssueWI Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\">IssueWI</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.IssueWI Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a58345bc764da664648c1fe6530405555\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a58345bc764da664648c1fe6530405555\">CreateIssueWI</a> (string Credential, string version, string URL, string issuenName, string description, string projectId)</td></tr>\n<tr class=\"memdesc:a58345bc764da664648c1fe6530405555\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Issue Work Items  <a href=\"#a58345bc764da664648c1fe6530405555\">More...</a><br /></td></tr>\n<tr class=\"separator:a58345bc764da664648c1fe6530405555\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9e73160c28746c3b6090cfdc8d51b79f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">void&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a9e73160c28746c3b6090cfdc8d51b79f\">CreateReportWI</a> (string Credential, string version, string URL, string websiteUrl, string ReportName, string AccountName, string TemplateName, string projectId, string Region)</td></tr>\n<tr class=\"memdesc:a9e73160c28746c3b6090cfdc8d51b79f\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Report work items  <a href=\"#a9e73160c28746c3b6090cfdc8d51b79f\">More...</a><br /></td></tr>\n<tr class=\"separator:a9e73160c28746c3b6090cfdc8d51b79f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a58345bc764da664648c1fe6530405555\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a58345bc764da664648c1fe6530405555\">&#9670;&nbsp;</a></span>CreateIssueWI()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsRestAPI.WorkItemAndTracking.IssueWI.CreateIssueWI </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Credential</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>version</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>URL</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>issuenName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>description</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectId</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Issue Work Items </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">Credential</td><td></td></tr>\n    <tr><td class=\"paramname\">version</td><td></td></tr>\n    <tr><td class=\"paramname\">URL</td><td></td></tr>\n    <tr><td class=\"paramname\">issuenName</td><td></td></tr>\n    <tr><td class=\"paramname\">description</td><td></td></tr>\n    <tr><td class=\"paramname\">projectId</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<a id=\"a9e73160c28746c3b6090cfdc8d51b79f\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a9e73160c28746c3b6090cfdc8d51b79f\">&#9670;&nbsp;</a></span>CreateReportWI()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">void VstsRestAPI.WorkItemAndTracking.IssueWI.CreateReportWI </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Credential</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>version</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>URL</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>websiteUrl</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>ReportName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>AccountName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>TemplateName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectId</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>Region</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Report work items </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">Credential</td><td></td></tr>\n    <tr><td class=\"paramname\">version</td><td></td></tr>\n    <tr><td class=\"paramname\">URL</td><td></td></tr>\n    <tr><td class=\"paramname\">websiteUrl</td><td></td></tr>\n    <tr><td class=\"paramname\">ReportName</td><td></td></tr>\n    <tr><td class=\"paramname\">AccountName</td><td></td></tr>\n    <tr><td class=\"paramname\">TemplateName</td><td></td></tr>\n    <tr><td class=\"paramname\">projectId</td><td></td></tr>\n    <tr><td class=\"paramname\">Region</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/IssueWI.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">SwimLanes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.SwimLanes Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>SwimLanes</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a></td><td class=\"entry\"></td></tr>\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html#a4af603283af32f87e7f0de500a5cd578\">UpdateSwimLanes</a>(string json, string projectName)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.SwimLanes Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">SwimLanes</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.SwimLanes Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a75431daa5e0e566f25ead06f6841b85b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a75431daa5e0e566f25ead06f6841b85b\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>SwimLanes</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a75431daa5e0e566f25ead06f6841b85b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a4af603283af32f87e7f0de500a5cd578\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html#a4af603283af32f87e7f0de500a5cd578\">UpdateSwimLanes</a> (string json, string projectName)</td></tr>\n<tr class=\"memdesc:a4af603283af32f87e7f0de500a5cd578\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Update swim lanes  <a href=\"#a4af603283af32f87e7f0de500a5cd578\">More...</a><br /></td></tr>\n<tr class=\"separator:a4af603283af32f87e7f0de500a5cd578\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a79c57d0435c047cea9a3affbdf0c1368\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a79c57d0435c047cea9a3affbdf0c1368\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:a79c57d0435c047cea9a3affbdf0c1368\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a4af603283af32f87e7f0de500a5cd578\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a4af603283af32f87e7f0de500a5cd578\">&#9670;&nbsp;</a></span>UpdateSwimLanes()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.SwimLanes.UpdateSwimLanes </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Update swim lanes </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/SwimLanes.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">WIMapData</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.WIMapData Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">VstsRestAPI.WorkItemAndTracking.WIMapData</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>NewID</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">VstsRestAPI.WorkItemAndTracking.WIMapData</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">VstsRestAPI.WorkItemAndTracking.WIMapData</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>OldID</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">VstsRestAPI.WorkItemAndTracking.WIMapData</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">VstsRestAPI.WorkItemAndTracking.WIMapData</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WIType</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">VstsRestAPI.WorkItemAndTracking.WIMapData</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">VstsRestAPI.WorkItemAndTracking.WIMapData</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.WIMapData Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">WIMapData</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.WIMapData Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a1cb9e281fa7c55a2c729ca94c2294672\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1cb9e281fa7c55a2c729ca94c2294672\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>OldID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1cb9e281fa7c55a2c729ca94c2294672\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:adb9bfede4dd6bceae8bf9beb0d568910\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"adb9bfede4dd6bceae8bf9beb0d568910\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>NewID</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:adb9bfede4dd6bceae8bf9beb0d568910\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5b2161c2d51a4f9e18492397d52dff3a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5b2161c2d51a4f9e18492397d52dff3a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WIType</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5b2161c2d51a4f9e18492397d52dff3a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/ImportWorkItems.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">WorkItemNew</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.WorkItemNew Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#a1643c3e8181a916c62d329085f07995b\">CreateWorkItemUsingByPassRules</a>(string projectName, string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ab6104d3b32004b835a05393a7220a7fc\">GetListOfWorkItems_ByWiql</a>(string project, string WorkItemType)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>lastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ae0eb3a3a473c7a1b117199a77466ab72\">UpdateWorkItemUsingByPassRules</a>(string json, string ProjectName, string currentUser, string jsonSettings)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WorkItemNew</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.WorkItemNew Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">WorkItemNew</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.WorkItemNew Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:a07548faca1ec5d274d10f242f8b71513\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a07548faca1ec5d274d10f242f8b71513\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemNew</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:a07548faca1ec5d274d10f242f8b71513\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1643c3e8181a916c62d329085f07995b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#a1643c3e8181a916c62d329085f07995b\">CreateWorkItemUsingByPassRules</a> (string projectName, string json)</td></tr>\n<tr class=\"memdesc:a1643c3e8181a916c62d329085f07995b\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to create the workItems  <a href=\"#a1643c3e8181a916c62d329085f07995b\">More...</a><br /></td></tr>\n<tr class=\"separator:a1643c3e8181a916c62d329085f07995b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ae0eb3a3a473c7a1b117199a77466ab72\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">bool&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ae0eb3a3a473c7a1b117199a77466ab72\">UpdateWorkItemUsingByPassRules</a> (string json, string ProjectName, string currentUser, string jsonSettings)</td></tr>\n<tr class=\"memdesc:ae0eb3a3a473c7a1b117199a77466ab72\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to update <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">WorkItems</a> based on id and workItem Type  <a href=\"#ae0eb3a3a473c7a1b117199a77466ab72\">More...</a><br /></td></tr>\n<tr class=\"separator:ae0eb3a3a473c7a1b117199a77466ab72\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ab6104d3b32004b835a05393a7220a7fc\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">GetWorkItemsResponse.Results</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ab6104d3b32004b835a05393a7220a7fc\">GetListOfWorkItems_ByWiql</a> (string project, string WorkItemType)</td></tr>\n<tr class=\"memdesc:ab6104d3b32004b835a05393a7220a7fc\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Method to Get the list of all workItems  <a href=\"#ab6104d3b32004b835a05393a7220a7fc\">More...</a><br /></td></tr>\n<tr class=\"separator:ab6104d3b32004b835a05393a7220a7fc\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:ade78bf7b0ab60c4535fdefba0f17001e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ade78bf7b0ab60c4535fdefba0f17001e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>lastFailureMessage</b></td></tr>\n<tr class=\"separator:ade78bf7b0ab60c4535fdefba0f17001e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"a1643c3e8181a916c62d329085f07995b\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a1643c3e8181a916c62d329085f07995b\">&#9670;&nbsp;</a></span>CreateWorkItemUsingByPassRules()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.WorkItemNew.CreateWorkItemUsingByPassRules </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>projectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to create the workItems </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">projectName</td><td></td></tr>\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ab6104d3b32004b835a05393a7220a7fc\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ab6104d3b32004b835a05393a7220a7fc\">&#9670;&nbsp;</a></span>GetListOfWorkItems_ByWiql()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">GetWorkItemsResponse.Results</a> VstsRestAPI.WorkItemAndTracking.WorkItemNew.GetListOfWorkItems_ByWiql </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>project</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>WorkItemType</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to Get the list of all workItems </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">project</td><td></td></tr>\n    <tr><td class=\"paramname\">WorkItemType</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"ae0eb3a3a473c7a1b117199a77466ab72\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ae0eb3a3a473c7a1b117199a77466ab72\">&#9670;&nbsp;</a></span>UpdateWorkItemUsingByPassRules()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\">bool VstsRestAPI.WorkItemAndTracking.WorkItemNew.UpdateWorkItemUsingByPassRules </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>ProjectName</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>currentUser</em>, </td>\n        </tr>\n        <tr>\n          <td class=\"paramkey\"></td>\n          <td></td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>jsonSettings</em>&#160;</td>\n        </tr>\n        <tr>\n          <td></td>\n          <td>)</td>\n          <td></td><td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Method to update <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">WorkItems</a> based on id and workItem Type </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n    <tr><td class=\"paramname\">ProjectName</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/WorkItemNew.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">WorkItems</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.WorkItems Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">VstsRestAPI.WorkItemAndTracking.WorkItems</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr class=\"even\"><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#ac843d9b1bc4583e7952584dd89a63279\">AddLink</a>(string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">VstsRestAPI.WorkItemAndTracking.WorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#a7ff12afa440b5f590d051bc0c6c74e04\">CreateWorkItemUsingByPassRules</a>(string json)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">VstsRestAPI.WorkItemAndTracking.WorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>LastFailureMessage</b> (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">VstsRestAPI.WorkItemAndTracking.WorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">VstsRestAPI.WorkItemAndTracking.WorkItems</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WorkItems</b>(IConfiguration configuration) (defined in <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">VstsRestAPI.WorkItemAndTracking.WorkItems</a>)</td><td class=\"entry\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">VstsRestAPI.WorkItemAndTracking.WorkItems</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking.WorkItems Class Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li><li class=\"navelem\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">WorkItems</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#pub-methods\">Public Member Functions</a> &#124;\n<a href=\"#pub-attribs\">Public Attributes</a> &#124;\n<a href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking.WorkItems Class Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-methods\"></a>\nPublic Member Functions</h2></td></tr>\n<tr class=\"memitem:ad2e130548f5c015c9c81d3582f58ba00\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad2e130548f5c015c9c81d3582f58ba00\"></a>\n&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItems</b> (<a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> configuration)</td></tr>\n<tr class=\"separator:ad2e130548f5c015c9c81d3582f58ba00\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7ff12afa440b5f590d051bc0c6c74e04\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">WorkItemPatchResponse.WorkItem</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#a7ff12afa440b5f590d051bc0c6c74e04\">CreateWorkItemUsingByPassRules</a> (string json)</td></tr>\n<tr class=\"memdesc:a7ff12afa440b5f590d051bc0c6c74e04\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Create Work items bypassing all rules  <a href=\"#a7ff12afa440b5f590d051bc0c6c74e04\">More...</a><br /></td></tr>\n<tr class=\"separator:a7ff12afa440b5f590d051bc0c6c74e04\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac843d9b1bc4583e7952584dd89a63279\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">WorkItemPatchResponse.WorkItem</a>&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#ac843d9b1bc4583e7952584dd89a63279\">AddLink</a> (string json)</td></tr>\n<tr class=\"memdesc:ac843d9b1bc4583e7952584dd89a63279\"><td class=\"mdescLeft\">&#160;</td><td class=\"mdescRight\">Add work items links  <a href=\"#ac843d9b1bc4583e7952584dd89a63279\">More...</a><br /></td></tr>\n<tr class=\"separator:ac843d9b1bc4583e7952584dd89a63279\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"pub-attribs\"></a>\nPublic Attributes</h2></td></tr>\n<tr class=\"memitem:a545dd0c1f3ecb8c72fa6e098e4f15219\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a545dd0c1f3ecb8c72fa6e098e4f15219\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>LastFailureMessage</b></td></tr>\n<tr class=\"separator:a545dd0c1f3ecb8c72fa6e098e4f15219\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<h2 class=\"groupheader\">Member Function Documentation</h2>\n<a id=\"ac843d9b1bc4583e7952584dd89a63279\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#ac843d9b1bc4583e7952584dd89a63279\">&#9670;&nbsp;</a></span>AddLink()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">WorkItemPatchResponse.WorkItem</a> VstsRestAPI.WorkItemAndTracking.WorkItems.AddLink </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Add work items links </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<a id=\"a7ff12afa440b5f590d051bc0c6c74e04\"></a>\n<h2 class=\"memtitle\"><span class=\"permalink\"><a href=\"#a7ff12afa440b5f590d051bc0c6c74e04\">&#9670;&nbsp;</a></span>CreateWorkItemUsingByPassRules()</h2>\n\n<div class=\"memitem\">\n<div class=\"memproto\">\n      <table class=\"memname\">\n        <tr>\n          <td class=\"memname\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">WorkItemPatchResponse.WorkItem</a> VstsRestAPI.WorkItemAndTracking.WorkItems.CreateWorkItemUsingByPassRules </td>\n          <td>(</td>\n          <td class=\"paramtype\">string&#160;</td>\n          <td class=\"paramname\"><em>json</em></td><td>)</td>\n          <td></td>\n        </tr>\n      </table>\n</div><div class=\"memdoc\">\n\n<p>Create Work items bypassing all rules </p>\n<dl class=\"params\"><dt>Parameters</dt><dd>\n  <table class=\"params\">\n    <tr><td class=\"paramname\">json</td><td></td></tr>\n  </table>\n  </dd>\n</dl>\n<dl class=\"section return\"><dt>Returns</dt><dd></dd></dl>\n\n</div>\n</div>\n<hr/>The documentation for this class was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking/WorkItems.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/classes.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Class Index</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n</div><!-- top -->\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Class Index</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"qindex\"><a class=\"qindex\" href=\"#letter__\">_</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_a\">a</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_b\">b</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_c\">c</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_d\">d</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_e\">e</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_f\">f</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_g\">g</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_h\">h</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_i\">i</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_l\">l</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_m\">m</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_n\">n</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_o\">o</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_p\">p</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_q\">q</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_r\">r</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_s\">s</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_t\">t</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_u\">u</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_v\">v</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_w\">w</a></div>\n<table class=\"classindex\">\n<tr><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter__\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;_&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\">PullRequestComments.Comments</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_i\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;i&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\">PullRequestComments.PullRequestThreadContext</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\">GetTeamResponse.Team</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\">PullRequestCommentResponse.Comments</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\">PullRequestCommentResponse.PullRequestThreadContext</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\">PlanViewModel.TeamBacklogMapping</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\">GetNodeResponse._Links</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\">ReleaseDefinitions.Condition</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">IConfiguration</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_q\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;q&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\">TeamIterationsResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\">GetNodesResponse._Links</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\">ReleaseDefinitions.Condition</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">TeamMemberResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\">WorkItemPatchResponse._Links</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">Configuration</a> (<a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">IConfiguration</a> (<a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\">QueryResponse.Query</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\">TeamMemberResponse.TeamMembers</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_a\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;a&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">Query</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">TeamResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">Configuration</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">ImportWorkItems</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\">QueryByPathResponse.query</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\">Teams</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\">PlanViewModel.CoreField</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\">ReleaseDefinitions.Inputs</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\">TeamSettingResponse.TeamSetting</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\">AccountMembers.AccessLevel</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">CreatedBy</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">VstsRestAPI.Viewmodel.Service</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\">BuildDefinitions.Inputs</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">Account</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">VstsRestAPI.ProjectsAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\">CreateUpdateNodeViewModel</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\">ReleaseDefinitions.Inputs</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">QueryResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\">TeamsResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\">AccountMembers.Account</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\">PlanViewModel.Criterion</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\">BuildDefinitions.Inputs1</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">Querys</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html\">VstsRestAPI.QuerysAndWidgets</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">Template</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">AccountController</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">VstsDemoBuilder.Controllers</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_d\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;d&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\">Location.IPHostGenerator</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\">QueryByPathResponse.QueryWithWiql</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">templateKeyValue</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\">Accounts.AccountList</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\">IssueWI</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\">BuildDefinitions.Queue</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">TemplateSetting</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\">WidgetAndChartResponse.Dashboard</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\">PullRequestComments.IterationContext</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">Queue</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_queues.html\">VstsRestAPI.Queues</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\">TestCase</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\">Accounts</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">Dashboard</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\">PullRequestCommentResponse.IterationContext</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\">BuildGetListofBuildDefinitionsResponse.Queue</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">VstsRestAPI.Viewmodel.Build</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">TestManagement</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_test_management.html\">VstsRestAPI.TestManagement</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">AgentQueueModel</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">VstsRestAPI.Viewmodel.Queue</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\">DashBoardResponse.Dashboard</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\">TeamIterationsResponse.Iterations</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">QueueModel</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">VstsRestAPI.Viewmodel.Queue</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\">AiHandleErrorAttribute</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_error_handler.html\">VstsDemoBuilder.ErrorHandler</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\">DashBoardeTagResponse.Dashboard</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_l\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;l&#160;&#160;</div></td></tr></table>\n</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_r\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;r&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\">TestSuite.TestSuites</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\">PlanViewModel.AllPlans</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\">DashboardResponse.Dashboard</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\">PullRequestComments.ThreadContext</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\">ReleaseDefinitions.Approval</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html\">DashBoardeTagResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\">QueryResponse.Links</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\">WorkItemPatchResponse.Relation</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\">PullRequestCommentResponse.ThreadContext</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\">ReleaseDefinitions.Approval</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\">DashBoardResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\">AccountMembers.Links</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\">ImportWorkItemModel.Relations</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\">ReleaseDefinitions.Trigger</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\">ReleaseDefinitions.Approver</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\">DashboardResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\">GetCardFieldResponse.ListofCards</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\">WorkItemFetchResponse.Relations</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\">ReleaseDefinitions.Trigger</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\">ReleaseDefinitions.Approver</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html\">Data</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">VstsRestAPI.Viewmodel.Service</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\">CardStylesPatch.ListofCardStyles</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\">ReleaseDefinitionsResponse.Release</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_u\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;u&#160;&#160;</div></td></tr></table>\n</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\">ReleaseDefinitions.Artifact</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">Default</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\">ListofProjectsResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\">ReleaseDefinitionsResponse.Release</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\">ReleaseDefinitions.Artifact</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\">TeamSettingResponse.DefaultIteration</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location.html\">Location</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">ReleaseDef</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\">Utility</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\">WorkItemFetchResponse.Attributes</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\">ReleaseDefinitions.Definition</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">LoginModel</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\">ReleaseDefinitions.ReleaseDefinition</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_v\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;v&#160;&#160;</div></td></tr></table>\n</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\">BatchRequest.Attributes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\">BuildDefinitions.Definition</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_m\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;m&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\">ReleaseDefinitions.ReleaseDefinition</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\">CreateUpdateNodeViewModel.Attributes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\">ReleaseDefinitions.Definition</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">ReleaseDefinition</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_release.html\">VstsRestAPI.Release</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\">ValidateLogin</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\">GetNodeResponse.Attributes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\">ReleaseDefinitions.DefinitionReference</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\">AccountMembers.Member</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\">ProjectList.Value</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\">GetNodesResponse.Attributes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\">ReleaseDefinitions.DefinitionReference</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\">AccountMembers.Memberships</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\">ReleaseDefinitions</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\">GetAllRepositoriesResponse.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\">ImportWorkItemModel.Attributes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\">BuildGetListofBuildDefinitionsResponse.Definitions</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">VstsRestAPI.Viewmodel.Build</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\">PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\">ListofProjectsResponse.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\">WorkItemPatch.Attributes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\">PlanViewModel.DeliveryPlan</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\">PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\">TeamMemberResponse.value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\">WorkItemPatchResponse.Attributes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\">ReleaseDefinitions.DeploymentInput</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\">MvcApplication</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\">Accounts.Value</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\">ProjectList.Authentication</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\">ReleaseDefinitions.DeploymentInput</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_n\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;n&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\">PullRequestComments.reply</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\">SourceCodeResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\">BuildGetListofBuildDefinitionsResponse.Authoredby</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">VstsRestAPI.Viewmodel.Build</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\">ReleaseDefinitions.DeployPhas</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\">GetAllRepositoriesResponse.Repositories</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\">ReleaseDefinitionsResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\">Authorization</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">VstsRestAPI.Viewmodel.Service</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\">ReleaseDefinitions.DeployPhas</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\">CreateUpdateNodeViewModel.Node</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\">BuildDefinitions.Repository</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\">WorkItemPatch.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\">ServiceEndPointsResponse.Authorization</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\">ReleaseDefinitions.DeployStep</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\">GetNodeResponse.Node</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">Repository</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_git.html\">VstsRestAPI.Git</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\">RepositoryResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_b\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;b&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\">ReleaseDefinitions.DeployStep</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\">GetNodesResponse.Nodes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\">RepositoryResponse.Repository</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\">TestSuite.Value</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td></tr>\n<tr><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_e\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;e&#160;&#160;</div></td></tr></table>\n</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_o\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;o&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\">RepositoryResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">VstsRestAPI.Viewmodel.Queue</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\">TeamSettingResponse.BacklogIteration</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\">RequiredExtensions</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\">AccountMembers.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\">SetEpicSettings.BacklogVisibilities</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">Email</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\">BuildDefinitions.Option</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\">GetBoardRowsResponse.Result</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\">ServiceEndPointsResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">BaseViewModel</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\">ReleaseDefinitions.Environment</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\">ReleaseDefinitions.Owner</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\">GetWorkItemsResponse.Results</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\">BuildGetListofBuildDefinitionsResponse.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">VstsRestAPI.Viewmodel.Build</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">BaseViewModel</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">VstsRestAPI.Viewmodel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\">ReleaseDefinitions.Environment</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\">ReleaseDefinitions.Owner</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\">GetWorkItemsResponse.Results</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\">TeamsResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">BatchRequest</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">EnvironmentController</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">VstsDemoBuilder.Controllers</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_p\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;p&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\">ReleaseDefinitions.RetentionPolicy</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\">QueryResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">BoardColumn</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\">ReleaseDefinitions.EnvironmentOptions</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\">ReleaseDefinitions.RetentionPolicy</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\">PullRequestResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">BoardColumns</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\">ReleaseDefinitions.EnvironmentOptions</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\">ReleaseDefinitions.ParallelExecution</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\">BuildDefinitions.RetentionRule</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\">GetBoardColumnResponse.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">BoardColumnsResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">EnvironmentValues</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\">ReleaseDefinitions.ParallelExecution</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">ReturnException</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\">ImportWorkItemModel.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\">CardFieldResponse.Bug</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\">SetEpicSettings.Epiclist</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\">ServiceEndPointsResponse.parameter</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\">PullRequestResponse.Reviewer</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\">WorkItemFetchResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\">BuildDefinitionResponse.Build</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\">ReleaseDefinitions.ExecutionPolicy</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\">SourceCodeResponse.Parameters</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\">PullRequestComments.RightFileEnd</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\">WidgetAndChartResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\">BuildDefinitions.Build</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\">ReleaseDefinitions.ExecutionPolicy</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\">GetNodeResponse.Parent</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\">PullRequestCommentResponse.RightFileEnd</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\">DashBoardResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\">BuildDefinitions.BuildConfiguration</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\">ExportDashboards</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\">TestSuite.Plan</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\">PullRequestCommentResponse.RightFileStart</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\">PlanViewModel.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">BuildDef</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\">ExportQueries</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">Plans</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_delivery_plans.html\">VstsRestAPI.DeliveryPlans</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\">PullRequestComments.RightFileStart</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\">BatchRequest.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\">BuildDefinitions.BuildDefinition</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\">RequiredExtensions.Extension</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\">RouteConfig</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\">BuildDefinitionResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">BuildDefinition</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_build.html\">VstsRestAPI.Build</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\">RequiredExtensions.ExtensionWithLink</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">Pool</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">VstsRestAPI.Viewmodel.Queue</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\">CardStyleResponse.Rules</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\">GetBoardRowsResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\">BuildDefinitionResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_f\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;f&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\">BuildDefinitions.Pool</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\">CardStylesPatch.Rules</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\">WorkItemBatchPostResponse.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\">BuildGetListofBuildDefinitionsResponse.Pool</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">VstsRestAPI.Viewmodel.Build</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_s\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;s&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\">PullRequestComments.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\">BuildDefinitions</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\">GetBoardColumnResponse.Field</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\">WidgetAndChartResponse.Position</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\">TeamIterationsResponse.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">VstsRestAPI.Viewmodel.Build</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\">WorkItemPatch.Field</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\">ReleaseDefinitions.PostDeployApprovals</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\">AccountMembers.Self</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\">DashboardResponse.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">VstsRestAPI.Viewmodel.QuerysAndWidgets</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\">BuildDefinitions.BuildPlatform</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\">PlanViewModel.Fields</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\">ReleaseDefinitions.PostDeployApprovals</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\">GetNodeResponse.Self</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\">PullRequestCommentResponse.Value</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">BuildReleaseMapping</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\">WorkItemFetchResponse.Fields</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\">ReleaseDefinitions.PreDeployApprovals</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\">GetNodesResponse.Self</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\">ReleaseDefinitionsResponse.Value</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\">BundleConfig</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\">ImportWorkItemModel.Fields</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\">ReleaseDefinitions.PreDeployApprovals</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\">WorkItemPatchResponse.Self</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\">BuildDefinitions.Variables</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_c\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;c&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\">WorkItemPatchResponse.Fields</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\">CardFieldResponse.ProductBacklogItem</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\">ServiceEndPointsResponse.Service</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html\">ReleaseDefinitions.Variables</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\">GetBoardColumnResponse.Fields</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">ProfileDetails</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">ServiceEndPoint</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_service.html\">VstsRestAPI.Service</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html\">ReleaseDefinitions.Variables</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\">WorkItemPatchResponse.Fields1</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\">Program</a> (<a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">ServiceEndpointModel</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">VstsRestAPI.Viewmodel.Service</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_w\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;w&#160;&#160;</div></td></tr></table>\n</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\">CardFieldResponse.CardFields</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\">CardStylesPatch.Fill</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\">ReleaseDefinitions.Project</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">CardFieldsAndCardStyles</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\">CardStyleResponse.Fill</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\">GetAllRepositoriesResponse.Project</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\">SetEpicSettings</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\">WidgetAndChartResponse.Widget</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\">GetCardFieldResponse.Cards</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\">FilterConfig</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\">CardStyleResponse.Settings</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\">CardFieldResponse.Cards</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_g\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;g&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\">BuildGetListofBuildDefinitionsResponse.Project</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">VstsRestAPI.Viewmodel.Build</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\">WidgetAndChartResponse.SettingsVersion</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\">GenerateWIFromSource.WIMapData</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">Cards</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\">ReleaseDefinitions.Project</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\">WidgetAndChartResponse.Size</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">WIMapData</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\">PlanViewModel.CardSettings</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">GenerateWIFromSource</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\">TeamSettingResponse.Project</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\">SourceCode</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\">QueryResponse.Wiql</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\">ProjectList.ProjectCount</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\">GetWorkItemsResponse.Workitem</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\">CardStyleResponse.CardStyles</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">SourceConfiguration</a> (<a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\">WorkItemPatchResponse.WorkItem</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\">GetBoardRowsResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">Projects</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">VstsRestAPI.ProjectsAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\">GetBoardColumnResponse.StateMappings</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\">GetWorkItemsResponse.Workitem</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\">GetNodesResponse.Child</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\">GetCardFieldResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\">ListofProjectsResponse.Projects</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\">BoardColumnsResponse.StateMappings</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">WorkItemBatchPostResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\">QueryByPathResponse.Child</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">ProjectSettings</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">StateMappings</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\">QueryResponse.Child</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">ProjectTemplate</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">SwimLanes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\">WorkItemPatchResponse.Workitemhistory</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\">GetNodesResponse.Child1</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html\">GetTeamResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">VstsRestAPI.Viewmodel.ProjectAndTeams</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\">PlanViewModel.Properties</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\">BuildDefinitions.SystemDebug</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">WorkItemNew</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">ClassificationNodes</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\">BuildDefinitions.Properties</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_t\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;t&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\">SourceCodeResponse.Code</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\">PullRequestComments.Properties</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\">BoardColumnsResponse.Column</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\">SourceCodeResponse.GitSource</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\">PullRequestCommentResponse.Properties</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\">CardStylesPatch.TagStyle</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\">WorkItemPatchResponse.Workitemrevisions</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\">GetWorkItemsResponse.Column</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">GroupDetails</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html\">Accounts.Properties</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\">CardStyleResponse.TagStyle</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\">ImportWorkItemModel.WorkItems</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\">GetWorkItemsResponse.Column</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">GroupwiseTemplate</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">VstsDemoBuilder.Models</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\">PullRequestResponse.PullRequest</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\">BuildDefinitions.Task</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">WorkItems</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">VstsRestAPI.WorkItemAndTracking</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">ColumnPost</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td rowspan=\"2\" valign=\"bottom\"><a name=\"letter_h\"></a><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td><div class=\"ah\">&#160;&#160;h&#160;&#160;</div></td></tr></table>\n</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\">ReleaseDefinitions.Task</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">VstsRestAPI.Viewmodel.ReleaseDefinition</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\">WorkItemFetchResponse.WorkItems</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\">GetBoardColumnResponse.ColumnResponse</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\">ReleaseDefinitions.Task</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\">WorkItemPatchResponse.Workitemtype</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\">PullRequestCommentResponse.Comment</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\">HomeController</a> (<a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">VstsDemoBuilder.Controllers</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\">TeamsResponse.Team</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">TemplatesGeneratorTool.ViewModel</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\">WorkItemPatchResponse.Workitemupdates</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td></tr>\n<tr><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\">PullRequestComments.Comment</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">VstsRestAPI.Viewmodel.Repository</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\">WorkItemPatchResponse.Html</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">VstsRestAPI.Viewmodel.WorkItem</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\">PullRequests</a> (<a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">TemplatesGeneratorTool.Generators</a>)&#160;&#160;&#160;</td><td valign=\"top\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a> (<a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">VstsRestAPI.ProjectsAndTeams</a>)&#160;&#160;&#160;</td><td></td></tr>\n<tr><td></td><td></td><td></td><td></td><td></td></tr>\n</table>\n<div class=\"qindex\"><a class=\"qindex\" href=\"#letter__\">_</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_a\">a</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_b\">b</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_c\">c</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_d\">d</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_e\">e</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_f\">f</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_g\">g</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_h\">h</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_i\">i</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_l\">l</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_m\">m</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_n\">n</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_o\">o</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_p\">p</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_q\">q</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_r\">r</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_s\">s</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_t\">t</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_u\">u</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_v\">v</a>&#160;|&#160;<a class=\"qindex\" href=\"#letter_w\">w</a></div>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_017997a0b3f5c068c38ef56537878898.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/obj/Debug Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_d30f16ee81e03eb83e65e9b6b9a24acd.html\">obj</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_017997a0b3f5c068c38ef56537878898.html\">Debug</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Debug Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Canarys Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_14bc1b0d8e69347ac00f67644bc68d86.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/ErrorHandler Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_14bc1b0d8e69347ac00f67644bc68d86.html\">ErrorHandler</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">ErrorHandler Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_1b5acb66fd97ee8bc5030f4c66c3e615.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Properties Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5d0f8ecf38cdf3409c6cd49b38fddc71.html\">ExportWorkitemsTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_1b5acb66fd97ee8bc5030f4c66c3e615.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Properties Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_23f1e038cc84c4814501ce7655576690.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/DeliveryPlans Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_23f1e038cc84c4814501ce7655576690.html\">DeliveryPlans</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">DeliveryPlans Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_26ec264952ba031792d1d5e034c2c6a8.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/obj/Release Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5d0f8ecf38cdf3409c6cd49b38fddc71.html\">ExportWorkitemsTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_4926449c8296a7c06baeb436dccdcf5a.html\">obj</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_26ec264952ba031792d1d5e034c2c6a8.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Release Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_275089585c7fc1b5fd5d7d42c69cb1da.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D: Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">D: Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_2b03c99514654c964361aa48d3c524f2.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Git Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_2b03c99514654c964361aa48d3c524f2.html\">Git</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Git Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_2b13eca113518fa2aef9d51173c20e77.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/ProjectsAndTeams Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_2b13eca113518fa2aef9d51173c20e77.html\">ProjectsAndTeams</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">ProjectsAndTeams Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_31b18faa310c237834ee7cdb5c935e50.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/Generators Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5d0f8ecf38cdf3409c6cd49b38fddc71.html\">ExportWorkitemsTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_31b18faa310c237834ee7cdb5c935e50.html\">Generators</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Generators Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_3bed722334ea0ec908bd0badaeb5da8e.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ProjectAndTeams Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_3bed722334ea0ec908bd0badaeb5da8e.html\">ProjectAndTeams</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">ProjectAndTeams Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_4926449c8296a7c06baeb436dccdcf5a.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/obj Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5d0f8ecf38cdf3409c6cd49b38fddc71.html\">ExportWorkitemsTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_4926449c8296a7c06baeb436dccdcf5a.html\">obj</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">obj Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"subdirs\"></a>\nDirectories</h2></td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_501d4fec8a42977fdee12c9106f1216c.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Build Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_501d4fec8a42977fdee12c9106f1216c.html\">Build</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Build Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_5129e0ec9b412bf479fa006c88b691f4.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/obj Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5129e0ec9b412bf479fa006c88b691f4.html\">obj</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">obj Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"subdirs\"></a>\nDirectories</h2></td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_5d0f8ecf38cdf3409c6cd49b38fddc71.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5d0f8ecf38cdf3409c6cd49b38fddc71.html\">ExportWorkitemsTool</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">ExportWorkitemsTool Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"subdirs\"></a>\nDirectories</h2></td></tr>\n<tr class=\"memitem:dir_4926449c8296a7c06baeb436dccdcf5a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">directory &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"dir_4926449c8296a7c06baeb436dccdcf5a.html\">obj</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">DemoGeneratorOauth Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"subdirs\"></a>\nDirectories</h2></td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_62eea4cecd721fd6824f9529ec728ccc.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Build Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_62eea4cecd721fd6824f9529ec728ccc.html\">Build</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Build Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_6b3a0f1f2be860223c1b526364e1c35a.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"subdirs\"></a>\nDirectories</h2></td></tr>\n<tr class=\"memitem:dir_5129e0ec9b412bf479fa006c88b691f4\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">directory &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"dir_5129e0ec9b412bf479fa006c88b691f4.html\">obj</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_6d428b65fddc362e76fcd8980d4e3250.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Service Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6d428b65fddc362e76fcd8980d4e3250.html\">Service</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Service Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_71934fab47ba9aec257442ce20788f17.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Queues Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_71934fab47ba9aec257442ce20788f17.html\">Queues</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Queues Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_73c56ef68f7581fa6caa2fd039a0d073.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Viewmodel Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"subdirs\"></a>\nDirectories</h2></td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_82828cad9eac1af1d105b0d85658b3cb.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Service Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_82828cad9eac1af1d105b0d85658b3cb.html\">Service</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Service Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_841a55678232832fe081d96cab010ed4.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/App_Start Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_841a55678232832fe081d96cab010ed4.html\">App_Start</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">App_Start Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_8ae895d431c01c61dbed87c5593ff544.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/WorkItemAndTracking Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_8ae895d431c01c61dbed87c5593ff544.html\">WorkItemAndTracking</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">WorkItemAndTracking Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_8b407aec51ac04cb9493df77308781ae.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/obj/Debug Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5129e0ec9b412bf479fa006c88b691f4.html\">obj</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_8b407aec51ac04cb9493df77308781ae.html\">Debug</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Debug Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_8bd57f7fa5683a9d1530d4db9f109692.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/obj/Release Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5129e0ec9b412bf479fa006c88b691f4.html\">obj</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_8bd57f7fa5683a9d1530d4db9f109692.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Release Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_96031ed330b54330cdc1f7068822a4ef.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"subdirs\"></a>\nDirectories</h2></td></tr>\n<tr class=\"memitem:dir_d30f16ee81e03eb83e65e9b6b9a24acd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">directory &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"dir_d30f16ee81e03eb83e65e9b6b9a24acd.html\">obj</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_9ae313a3fbcba1c33e41f0dcb0ef2c7c.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/obj/Debug Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5d0f8ecf38cdf3409c6cd49b38fddc71.html\">ExportWorkitemsTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_4926449c8296a7c06baeb436dccdcf5a.html\">obj</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_9ae313a3fbcba1c33e41f0dcb0ef2c7c.html\">Debug</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Debug Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_9ce038d66d0510237b6fe8e4439db181.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/ViewModel Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5d0f8ecf38cdf3409c6cd49b38fddc71.html\">ExportWorkitemsTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_9ce038d66d0510237b6fe8e4439db181.html\">ViewModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">ViewModel Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_9e8cbfe76dd5cf12bb30d863fe22a69a.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Queue Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_9e8cbfe76dd5cf12bb30d863fe22a69a.html\">Queue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Queue Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_a1f90321afc92e250fa2f892a4b8a6e9.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/QuerysAndWidgets Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_a1f90321afc92e250fa2f892a4b8a6e9.html\">QuerysAndWidgets</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">QuerysAndWidgets Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_a27ddf7be722707c026f3b433c3c0e97.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/WorkItem Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_a27ddf7be722707c026f3b433c3c0e97.html\">WorkItem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">WorkItem Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_b34989a7d4a0f16828483202a27501ee.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/TestManagement Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_b34989a7d4a0f16828483202a27501ee.html\">TestManagement</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TestManagement Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_b53b2e16f73debb475db3bb264c36e8f.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Extensions Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_b53b2e16f73debb475db3bb264c36e8f.html\">Extensions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Extensions Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_b6c547a233a142f142b9dab2e90ec962.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/ReleaseDefinition Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_b6c547a233a142f142b9dab2e90ec962.html\">ReleaseDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">ReleaseDefinition Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_c06ad235e7dd8e0141d80a12718e244f.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Controllers Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_c06ad235e7dd8e0141d80a12718e244f.html\">Controllers</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Controllers Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_c725b4990a014364b2c93e7e627d31a1.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Viewmodel/Repository Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_73c56ef68f7581fa6caa2fd039a0d073.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_c725b4990a014364b2c93e7e627d31a1.html\">Repository</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Repository Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_ca23324db4a19e8cba4d7d2268687b73.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Properties Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_ca23324db4a19e8cba4d7d2268687b73.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Properties Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_d30f16ee81e03eb83e65e9b6b9a24acd.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/obj Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_d30f16ee81e03eb83e65e9b6b9a24acd.html\">obj</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">obj Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"subdirs\"></a>\nDirectories</h2></td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_d95a7557a1c29d886ce66a3779a6e017.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Properties Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_d95a7557a1c29d886ce66a3779a6e017.html\">Properties</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Properties Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_e807f1dc322d8783ee8c2e548f7c0bda.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Projects Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_f0f5b332b8a95cee7ef646146a51ba92.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_f0f5b332b8a95cee7ef646146a51ba92.html\">Models</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Models Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_f20db2e76df4dc80fe1811fce8d88781.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/Release Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_f20db2e76df4dc80fe1811fce8d88781.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Release Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_fb725a1f5c5e312faec6541f8f9556ec.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/QuerysAndWidgets Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_6b3a0f1f2be860223c1b526364e1c35a.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_fb725a1f5c5e312faec6541f8f9556ec.html\">QuerysAndWidgets</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">QuerysAndWidgets Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/dir_ff627587730686747d9b38e904b07e46.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/obj/Release Directory Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"dir_275089585c7fc1b5fd5d7d42c69cb1da.html\">D:</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_0e8f94f38d80e5b1ff7cab15c7bb859b.html\">Canarys</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_e807f1dc322d8783ee8c2e548f7c0bda.html\">Projects</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_5fb99d38e65a6eac76fdd48d9fefaf7c.html\">DemoGeneratorOauth</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_96031ed330b54330cdc1f7068822a4ef.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_d30f16ee81e03eb83e65e9b6b9a24acd.html\">obj</a></li><li class=\"navelem\"><a class=\"el\" href=\"dir_ff627587730686747d9b38e904b07e46.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Release Directory Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/doxygen.css",
    "content": "/* The standard CSS for doxygen 1.8.14 */\n\nbody, table, div, p, dl {\n\tfont: 400 14px/22px Roboto,sans-serif;\n}\n\np.reference, p.definition {\n\tfont: 400 14px/22px Roboto,sans-serif;\n}\n\n/* @group Heading Levels */\n\nh1.groupheader {\n\tfont-size: 150%;\n}\n\n.title {\n\tfont: 400 14px/28px Roboto,sans-serif;\n\tfont-size: 150%;\n\tfont-weight: bold;\n\tmargin: 10px 2px;\n}\n\nh2.groupheader {\n\tborder-bottom: 1px solid #879ECB;\n\tcolor: #354C7B;\n\tfont-size: 150%;\n\tfont-weight: normal;\n\tmargin-top: 1.75em;\n\tpadding-top: 8px;\n\tpadding-bottom: 4px;\n\twidth: 100%;\n}\n\nh3.groupheader {\n\tfont-size: 100%;\n}\n\nh1, h2, h3, h4, h5, h6 {\n\t-webkit-transition: text-shadow 0.5s linear;\n\t-moz-transition: text-shadow 0.5s linear;\n\t-ms-transition: text-shadow 0.5s linear;\n\t-o-transition: text-shadow 0.5s linear;\n\ttransition: text-shadow 0.5s linear;\n\tmargin-right: 15px;\n}\n\nh1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow {\n\ttext-shadow: 0 0 15px cyan;\n}\n\ndt {\n\tfont-weight: bold;\n}\n\ndiv.multicol {\n\t-moz-column-gap: 1em;\n\t-webkit-column-gap: 1em;\n\t-moz-column-count: 3;\n\t-webkit-column-count: 3;\n}\n\np.startli, p.startdd {\n\tmargin-top: 2px;\n}\n\np.starttd {\n\tmargin-top: 0px;\n}\n\np.endli {\n\tmargin-bottom: 0px;\n}\n\np.enddd {\n\tmargin-bottom: 4px;\n}\n\np.endtd {\n\tmargin-bottom: 2px;\n}\n\n/* @end */\n\ncaption {\n\tfont-weight: bold;\n}\n\nspan.legend {\n        font-size: 70%;\n        text-align: center;\n}\n\nh3.version {\n        font-size: 90%;\n        text-align: center;\n}\n\ndiv.qindex, div.navtab{\n\tbackground-color: #EBEFF6;\n\tborder: 1px solid #A3B4D7;\n\ttext-align: center;\n}\n\ndiv.qindex, div.navpath {\n\twidth: 100%;\n\tline-height: 140%;\n}\n\ndiv.navtab {\n\tmargin-right: 15px;\n}\n\n/* @group Link Styling */\n\na {\n\tcolor: #3D578C;\n\tfont-weight: normal;\n\ttext-decoration: none;\n}\n\n.contents a:visited {\n\tcolor: #4665A2;\n}\n\na:hover {\n\ttext-decoration: underline;\n}\n\na.qindex {\n\tfont-weight: bold;\n}\n\na.qindexHL {\n\tfont-weight: bold;\n\tbackground-color: #9CAFD4;\n\tcolor: #ffffff;\n\tborder: 1px double #869DCA;\n}\n\n.contents a.qindexHL:visited {\n        color: #ffffff;\n}\n\na.el {\n\tfont-weight: bold;\n}\n\na.elRef {\n}\n\na.code, a.code:visited, a.line, a.line:visited {\n\tcolor: #4665A2; \n}\n\na.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited {\n\tcolor: #4665A2; \n}\n\n/* @end */\n\ndl.el {\n\tmargin-left: -1cm;\n}\n\npre.fragment {\n        border: 1px solid #C4CFE5;\n        background-color: #FBFCFD;\n        padding: 4px 6px;\n        margin: 4px 8px 4px 2px;\n        overflow: auto;\n        word-wrap: break-word;\n        font-size:  9pt;\n        line-height: 125%;\n        font-family: monospace, fixed;\n        font-size: 105%;\n}\n\ndiv.fragment {\n        padding: 0px;\n        margin: 4px 8px 4px 2px;\n\tbackground-color: #FBFCFD;\n\tborder: 1px solid #C4CFE5;\n}\n\ndiv.line {\n\tfont-family: monospace, fixed;\n        font-size: 13px;\n\tmin-height: 13px;\n\tline-height: 1.0;\n\ttext-wrap: unrestricted;\n\twhite-space: -moz-pre-wrap; /* Moz */\n\twhite-space: -pre-wrap;     /* Opera 4-6 */\n\twhite-space: -o-pre-wrap;   /* Opera 7 */\n\twhite-space: pre-wrap;      /* CSS3  */\n\tword-wrap: break-word;      /* IE 5.5+ */\n\ttext-indent: -53px;\n\tpadding-left: 53px;\n\tpadding-bottom: 0px;\n\tmargin: 0px;\n\t-webkit-transition-property: background-color, box-shadow;\n\t-webkit-transition-duration: 0.5s;\n\t-moz-transition-property: background-color, box-shadow;\n\t-moz-transition-duration: 0.5s;\n\t-ms-transition-property: background-color, box-shadow;\n\t-ms-transition-duration: 0.5s;\n\t-o-transition-property: background-color, box-shadow;\n\t-o-transition-duration: 0.5s;\n\ttransition-property: background-color, box-shadow;\n\ttransition-duration: 0.5s;\n}\n\ndiv.line:after {\n    content:\"\\000A\";\n    white-space: pre;\n}\n\ndiv.line.glow {\n\tbackground-color: cyan;\n\tbox-shadow: 0 0 10px cyan;\n}\n\n\nspan.lineno {\n\tpadding-right: 4px;\n\ttext-align: right;\n\tborder-right: 2px solid #0F0;\n\tbackground-color: #E8E8E8;\n        white-space: pre;\n}\nspan.lineno a {\n\tbackground-color: #D8D8D8;\n}\n\nspan.lineno a:hover {\n\tbackground-color: #C8C8C8;\n}\n\n.lineno {\n\t-webkit-touch-callout: none;\n\t-webkit-user-select: none;\n\t-khtml-user-select: none;\n\t-moz-user-select: none;\n\t-ms-user-select: none;\n\tuser-select: none;\n}\n\ndiv.ah, span.ah {\n\tbackground-color: black;\n\tfont-weight: bold;\n\tcolor: #ffffff;\n\tmargin-bottom: 3px;\n\tmargin-top: 3px;\n\tpadding: 0.2em;\n\tborder: solid thin #333;\n\tborder-radius: 0.5em;\n\t-webkit-border-radius: .5em;\n\t-moz-border-radius: .5em;\n\tbox-shadow: 2px 2px 3px #999;\n\t-webkit-box-shadow: 2px 2px 3px #999;\n\t-moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;\n\tbackground-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));\n\tbackground-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%);\n}\n\ndiv.classindex ul {\n        list-style: none;\n        padding-left: 0;\n}\n\ndiv.classindex span.ai {\n        display: inline-block;\n}\n\ndiv.groupHeader {\n\tmargin-left: 16px;\n\tmargin-top: 12px;\n\tfont-weight: bold;\n}\n\ndiv.groupText {\n\tmargin-left: 16px;\n\tfont-style: italic;\n}\n\nbody {\n\tbackground-color: white;\n\tcolor: black;\n        margin: 0;\n}\n\ndiv.contents {\n\tmargin-top: 10px;\n\tmargin-left: 12px;\n\tmargin-right: 8px;\n}\n\ntd.indexkey {\n\tbackground-color: #EBEFF6;\n\tfont-weight: bold;\n\tborder: 1px solid #C4CFE5;\n\tmargin: 2px 0px 2px 0;\n\tpadding: 2px 10px;\n        white-space: nowrap;\n        vertical-align: top;\n}\n\ntd.indexvalue {\n\tbackground-color: #EBEFF6;\n\tborder: 1px solid #C4CFE5;\n\tpadding: 2px 10px;\n\tmargin: 2px 0px;\n}\n\ntr.memlist {\n\tbackground-color: #EEF1F7;\n}\n\np.formulaDsp {\n\ttext-align: center;\n}\n\nimg.formulaDsp {\n\t\n}\n\nimg.formulaInl {\n\tvertical-align: middle;\n}\n\ndiv.center {\n\ttext-align: center;\n        margin-top: 0px;\n        margin-bottom: 0px;\n        padding: 0px;\n}\n\ndiv.center img {\n\tborder: 0px;\n}\n\naddress.footer {\n\ttext-align: right;\n\tpadding-right: 12px;\n}\n\nimg.footer {\n\tborder: 0px;\n\tvertical-align: middle;\n}\n\n/* @group Code Colorization */\n\nspan.keyword {\n\tcolor: #008000\n}\n\nspan.keywordtype {\n\tcolor: #604020\n}\n\nspan.keywordflow {\n\tcolor: #e08000\n}\n\nspan.comment {\n\tcolor: #800000\n}\n\nspan.preprocessor {\n\tcolor: #806020\n}\n\nspan.stringliteral {\n\tcolor: #002080\n}\n\nspan.charliteral {\n\tcolor: #008080\n}\n\nspan.vhdldigit { \n\tcolor: #ff00ff \n}\n\nspan.vhdlchar { \n\tcolor: #000000 \n}\n\nspan.vhdlkeyword { \n\tcolor: #700070 \n}\n\nspan.vhdllogic { \n\tcolor: #ff0000 \n}\n\nblockquote {\n        background-color: #F7F8FB;\n        border-left: 2px solid #9CAFD4;\n        margin: 0 24px 0 4px;\n        padding: 0 12px 0 16px;\n}\n\n/* @end */\n\n/*\n.search {\n\tcolor: #003399;\n\tfont-weight: bold;\n}\n\nform.search {\n\tmargin-bottom: 0px;\n\tmargin-top: 0px;\n}\n\ninput.search {\n\tfont-size: 75%;\n\tcolor: #000080;\n\tfont-weight: normal;\n\tbackground-color: #e8eef2;\n}\n*/\n\ntd.tiny {\n\tfont-size: 75%;\n}\n\n.dirtab {\n\tpadding: 4px;\n\tborder-collapse: collapse;\n\tborder: 1px solid #A3B4D7;\n}\n\nth.dirtab {\n\tbackground: #EBEFF6;\n\tfont-weight: bold;\n}\n\nhr {\n\theight: 0px;\n\tborder: none;\n\tborder-top: 1px solid #4A6AAA;\n}\n\nhr.footer {\n\theight: 1px;\n}\n\n/* @group Member Descriptions */\n\ntable.memberdecls {\n\tborder-spacing: 0px;\n\tpadding: 0px;\n}\n\n.memberdecls td, .fieldtable tr {\n\t-webkit-transition-property: background-color, box-shadow;\n\t-webkit-transition-duration: 0.5s;\n\t-moz-transition-property: background-color, box-shadow;\n\t-moz-transition-duration: 0.5s;\n\t-ms-transition-property: background-color, box-shadow;\n\t-ms-transition-duration: 0.5s;\n\t-o-transition-property: background-color, box-shadow;\n\t-o-transition-duration: 0.5s;\n\ttransition-property: background-color, box-shadow;\n\ttransition-duration: 0.5s;\n}\n\n.memberdecls td.glow, .fieldtable tr.glow {\n\tbackground-color: cyan;\n\tbox-shadow: 0 0 15px cyan;\n}\n\n.mdescLeft, .mdescRight,\n.memItemLeft, .memItemRight,\n.memTemplItemLeft, .memTemplItemRight, .memTemplParams {\n\tbackground-color: #F9FAFC;\n\tborder: none;\n\tmargin: 4px;\n\tpadding: 1px 0 0 8px;\n}\n\n.mdescLeft, .mdescRight {\n\tpadding: 0px 8px 4px 8px;\n\tcolor: #555;\n}\n\n.memSeparator {\n        border-bottom: 1px solid #DEE4F0;\n        line-height: 1px;\n        margin: 0px;\n        padding: 0px;\n}\n\n.memItemLeft, .memTemplItemLeft {\n        white-space: nowrap;\n}\n\n.memItemRight {\n\twidth: 100%;\n}\n\n.memTemplParams {\n\tcolor: #4665A2;\n        white-space: nowrap;\n\tfont-size: 80%;\n}\n\n/* @end */\n\n/* @group Member Details */\n\n/* Styles for detailed member documentation */\n\n.memtitle {\n\tpadding: 8px;\n\tborder-top: 1px solid #A8B8D9;\n\tborder-left: 1px solid #A8B8D9;\n\tborder-right: 1px solid #A8B8D9;\n\tborder-top-right-radius: 4px;\n\tborder-top-left-radius: 4px;\n\tmargin-bottom: -1px;\n\tbackground-image: url('nav_f.png');\n\tbackground-repeat: repeat-x;\n\tbackground-color: #E2E8F2;\n\tline-height: 1.25;\n\tfont-weight: 300;\n\tfloat:left;\n}\n\n.permalink\n{\n        font-size: 65%;\n        display: inline-block;\n        vertical-align: middle;\n}\n\n.memtemplate {\n\tfont-size: 80%;\n\tcolor: #4665A2;\n\tfont-weight: normal;\n\tmargin-left: 9px;\n}\n\n.memnav {\n\tbackground-color: #EBEFF6;\n\tborder: 1px solid #A3B4D7;\n\ttext-align: center;\n\tmargin: 2px;\n\tmargin-right: 15px;\n\tpadding: 2px;\n}\n\n.mempage {\n\twidth: 100%;\n}\n\n.memitem {\n\tpadding: 0;\n\tmargin-bottom: 10px;\n\tmargin-right: 5px;\n        -webkit-transition: box-shadow 0.5s linear;\n        -moz-transition: box-shadow 0.5s linear;\n        -ms-transition: box-shadow 0.5s linear;\n        -o-transition: box-shadow 0.5s linear;\n        transition: box-shadow 0.5s linear;\n        display: table !important;\n        width: 100%;\n}\n\n.memitem.glow {\n         box-shadow: 0 0 15px cyan;\n}\n\n.memname {\n        font-weight: 400;\n        margin-left: 6px;\n}\n\n.memname td {\n\tvertical-align: bottom;\n}\n\n.memproto, dl.reflist dt {\n        border-top: 1px solid #A8B8D9;\n        border-left: 1px solid #A8B8D9;\n        border-right: 1px solid #A8B8D9;\n        padding: 6px 0px 6px 0px;\n        color: #253555;\n        font-weight: bold;\n        text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);\n        background-color: #DFE5F1;\n        /* opera specific markup */\n        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);\n        border-top-right-radius: 4px;\n        /* firefox specific markup */\n        -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;\n        -moz-border-radius-topright: 4px;\n        /* webkit specific markup */\n        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);\n        -webkit-border-top-right-radius: 4px;\n\n}\n\n.overload {\n        font-family: \"courier new\",courier,monospace;\n\tfont-size: 65%;\n}\n\n.memdoc, dl.reflist dd {\n        border-bottom: 1px solid #A8B8D9;      \n        border-left: 1px solid #A8B8D9;      \n        border-right: 1px solid #A8B8D9; \n        padding: 6px 10px 2px 10px;\n        background-color: #FBFCFD;\n        border-top-width: 0;\n        background-image:url('nav_g.png');\n        background-repeat:repeat-x;\n        background-color: #FFFFFF;\n        /* opera specific markup */\n        border-bottom-left-radius: 4px;\n        border-bottom-right-radius: 4px;\n        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);\n        /* firefox specific markup */\n        -moz-border-radius-bottomleft: 4px;\n        -moz-border-radius-bottomright: 4px;\n        -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;\n        /* webkit specific markup */\n        -webkit-border-bottom-left-radius: 4px;\n        -webkit-border-bottom-right-radius: 4px;\n        -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);\n}\n\ndl.reflist dt {\n        padding: 5px;\n}\n\ndl.reflist dd {\n        margin: 0px 0px 10px 0px;\n        padding: 5px;\n}\n\n.paramkey {\n\ttext-align: right;\n}\n\n.paramtype {\n\twhite-space: nowrap;\n}\n\n.paramname {\n\tcolor: #602020;\n\twhite-space: nowrap;\n}\n.paramname em {\n\tfont-style: normal;\n}\n.paramname code {\n        line-height: 14px;\n}\n\n.params, .retval, .exception, .tparams {\n        margin-left: 0px;\n        padding-left: 0px;\n}       \n\n.params .paramname, .retval .paramname {\n        font-weight: bold;\n        vertical-align: top;\n}\n        \n.params .paramtype {\n        font-style: italic;\n        vertical-align: top;\n}       \n        \n.params .paramdir {\n        font-family: \"courier new\",courier,monospace;\n        vertical-align: top;\n}\n\ntable.mlabels {\n\tborder-spacing: 0px;\n}\n\ntd.mlabels-left {\n\twidth: 100%;\n\tpadding: 0px;\n}\n\ntd.mlabels-right {\n\tvertical-align: bottom;\n\tpadding: 0px;\n\twhite-space: nowrap;\n}\n\nspan.mlabels {\n        margin-left: 8px;\n}\n\nspan.mlabel {\n        background-color: #728DC1;\n        border-top:1px solid #5373B4;\n        border-left:1px solid #5373B4;\n        border-right:1px solid #C4CFE5;\n        border-bottom:1px solid #C4CFE5;\n\ttext-shadow: none;\n\tcolor: white;\n\tmargin-right: 4px;\n\tpadding: 2px 3px;\n\tborder-radius: 3px;\n\tfont-size: 7pt;\n\twhite-space: nowrap;\n\tvertical-align: middle;\n}\n\n\n\n/* @end */\n\n/* these are for tree view inside a (index) page */\n\ndiv.directory {\n        margin: 10px 0px;\n        border-top: 1px solid #9CAFD4;\n        border-bottom: 1px solid #9CAFD4;\n        width: 100%;\n}\n\n.directory table {\n        border-collapse:collapse;\n}\n\n.directory td {\n        margin: 0px;\n        padding: 0px;\n\tvertical-align: top;\n}\n\n.directory td.entry {\n        white-space: nowrap;\n        padding-right: 6px;\n\tpadding-top: 3px;\n}\n\n.directory td.entry a {\n        outline:none;\n}\n\n.directory td.entry a img {\n        border: none;\n}\n\n.directory td.desc {\n        width: 100%;\n        padding-left: 6px;\n\tpadding-right: 6px;\n\tpadding-top: 3px;\n\tborder-left: 1px solid rgba(0,0,0,0.05);\n}\n\n.directory tr.even {\n\tpadding-left: 6px;\n\tbackground-color: #F7F8FB;\n}\n\n.directory img {\n\tvertical-align: -30%;\n}\n\n.directory .levels {\n        white-space: nowrap;\n        width: 100%;\n        text-align: right;\n        font-size: 9pt;\n}\n\n.directory .levels span {\n        cursor: pointer;\n        padding-left: 2px;\n        padding-right: 2px;\n\tcolor: #3D578C;\n}\n\n.arrow {\n    color: #9CAFD4;\n    -webkit-user-select: none;\n    -khtml-user-select: none;\n    -moz-user-select: none;\n    -ms-user-select: none;\n    user-select: none;\n    cursor: pointer;\n    font-size: 80%;\n    display: inline-block;\n    width: 16px;\n    height: 22px;\n}\n\n.icon {\n    font-family: Arial, Helvetica;\n    font-weight: bold;\n    font-size: 12px;\n    height: 14px;\n    width: 16px;\n    display: inline-block;\n    background-color: #728DC1;\n    color: white;\n    text-align: center;\n    border-radius: 4px;\n    margin-left: 2px;\n    margin-right: 2px;\n}\n\n.icona {\n    width: 24px;\n    height: 22px;\n    display: inline-block;\n}\n\n.iconfopen {\n    width: 24px;\n    height: 18px;\n    margin-bottom: 4px;\n    background-image:url('folderopen.png');\n    background-position: 0px -4px;\n    background-repeat: repeat-y;\n    vertical-align:top;\n    display: inline-block;\n}\n\n.iconfclosed {\n    width: 24px;\n    height: 18px;\n    margin-bottom: 4px;\n    background-image:url('folderclosed.png');\n    background-position: 0px -4px;\n    background-repeat: repeat-y;\n    vertical-align:top;\n    display: inline-block;\n}\n\n.icondoc {\n    width: 24px;\n    height: 18px;\n    margin-bottom: 4px;\n    background-image:url('doc.png');\n    background-position: 0px -4px;\n    background-repeat: repeat-y;\n    vertical-align:top;\n    display: inline-block;\n}\n\ntable.directory {\n    font: 400 14px Roboto,sans-serif;\n}\n\n/* @end */\n\ndiv.dynheader {\n        margin-top: 8px;\n\t-webkit-touch-callout: none;\n\t-webkit-user-select: none;\n\t-khtml-user-select: none;\n\t-moz-user-select: none;\n\t-ms-user-select: none;\n\tuser-select: none;\n}\n\naddress {\n\tfont-style: normal;\n\tcolor: #2A3D61;\n}\n\ntable.doxtable caption {\n\tcaption-side: top;\n}\n\ntable.doxtable {\n\tborder-collapse:collapse;\n        margin-top: 4px;\n        margin-bottom: 4px;\n}\n\ntable.doxtable td, table.doxtable th {\n\tborder: 1px solid #2D4068;\n\tpadding: 3px 7px 2px;\n}\n\ntable.doxtable th {\n\tbackground-color: #374F7F;\n\tcolor: #FFFFFF;\n\tfont-size: 110%;\n\tpadding-bottom: 4px;\n\tpadding-top: 5px;\n}\n\ntable.fieldtable {\n        /*width: 100%;*/\n        margin-bottom: 10px;\n        border: 1px solid #A8B8D9;\n        border-spacing: 0px;\n        -moz-border-radius: 4px;\n        -webkit-border-radius: 4px;\n        border-radius: 4px;\n        -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;\n        -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);\n        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);\n}\n\n.fieldtable td, .fieldtable th {\n        padding: 3px 7px 2px;\n}\n\n.fieldtable td.fieldtype, .fieldtable td.fieldname {\n        white-space: nowrap;\n        border-right: 1px solid #A8B8D9;\n        border-bottom: 1px solid #A8B8D9;\n        vertical-align: top;\n}\n\n.fieldtable td.fieldname {\n        padding-top: 3px;\n}\n\n.fieldtable td.fielddoc {\n        border-bottom: 1px solid #A8B8D9;\n        /*width: 100%;*/\n}\n\n.fieldtable td.fielddoc p:first-child {\n        margin-top: 0px;\n}       \n        \n.fieldtable td.fielddoc p:last-child {\n        margin-bottom: 2px;\n}\n\n.fieldtable tr:last-child td {\n        border-bottom: none;\n}\n\n.fieldtable th {\n        background-image:url('nav_f.png');\n        background-repeat:repeat-x;\n        background-color: #E2E8F2;\n        font-size: 90%;\n        color: #253555;\n        padding-bottom: 4px;\n        padding-top: 5px;\n        text-align:left;\n        font-weight: 400;\n        -moz-border-radius-topleft: 4px;\n        -moz-border-radius-topright: 4px;\n        -webkit-border-top-left-radius: 4px;\n        -webkit-border-top-right-radius: 4px;\n        border-top-left-radius: 4px;\n        border-top-right-radius: 4px;\n        border-bottom: 1px solid #A8B8D9;\n}\n\n\n.tabsearch {\n\ttop: 0px;\n\tleft: 10px;\n\theight: 36px;\n\tbackground-image: url('tab_b.png');\n\tz-index: 101;\n\toverflow: hidden;\n\tfont-size: 13px;\n}\n\n.navpath ul\n{\n\tfont-size: 11px;\n\tbackground-image:url('tab_b.png');\n\tbackground-repeat:repeat-x;\n\tbackground-position: 0 -5px;\n\theight:30px;\n\tline-height:30px;\n\tcolor:#8AA0CC;\n\tborder:solid 1px #C2CDE4;\n\toverflow:hidden;\n\tmargin:0px;\n\tpadding:0px;\n}\n\n.navpath li\n{\n\tlist-style-type:none;\n\tfloat:left;\n\tpadding-left:10px;\n\tpadding-right:15px;\n\tbackground-image:url('bc_s.png');\n\tbackground-repeat:no-repeat;\n\tbackground-position:right;\n\tcolor:#364D7C;\n}\n\n.navpath li.navelem a\n{\n\theight:32px;\n\tdisplay:block;\n\ttext-decoration: none;\n\toutline: none;\n\tcolor: #283A5D;\n\tfont-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;\n\ttext-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);\n\ttext-decoration: none;        \n}\n\n.navpath li.navelem a:hover\n{\n\tcolor:#6884BD;\n}\n\n.navpath li.footer\n{\n        list-style-type:none;\n        float:right;\n        padding-left:10px;\n        padding-right:15px;\n        background-image:none;\n        background-repeat:no-repeat;\n        background-position:right;\n        color:#364D7C;\n        font-size: 8pt;\n}\n\n\ndiv.summary\n{\n\tfloat: right;\n\tfont-size: 8pt;\n\tpadding-right: 5px;\n\twidth: 50%;\n\ttext-align: right;\n}       \n\ndiv.summary a\n{\n\twhite-space: nowrap;\n}\n\ntable.classindex\n{\n        margin: 10px;\n        white-space: nowrap;\n        margin-left: 3%;\n        margin-right: 3%;\n        width: 94%;\n        border: 0;\n        border-spacing: 0; \n        padding: 0;\n}\n\ndiv.ingroups\n{\n\tfont-size: 8pt;\n\twidth: 50%;\n\ttext-align: left;\n}\n\ndiv.ingroups a\n{\n\twhite-space: nowrap;\n}\n\ndiv.header\n{\n        background-image:url('nav_h.png');\n        background-repeat:repeat-x;\n\tbackground-color: #F9FAFC;\n\tmargin:  0px;\n\tborder-bottom: 1px solid #C4CFE5;\n}\n\ndiv.headertitle\n{\n\tpadding: 5px 5px 5px 10px;\n}\n\ndl\n{\n        padding: 0 0 0 10px;\n}\n\n/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */\ndl.section\n{\n\tmargin-left: 0px;\n\tpadding-left: 0px;\n}\n\ndl.note\n{\n        margin-left:-7px;\n        padding-left: 3px;\n        border-left:4px solid;\n        border-color: #D0C000;\n}\n\ndl.warning, dl.attention\n{\n        margin-left:-7px;\n        padding-left: 3px;\n        border-left:4px solid;\n        border-color: #FF0000;\n}\n\ndl.pre, dl.post, dl.invariant\n{\n        margin-left:-7px;\n        padding-left: 3px;\n        border-left:4px solid;\n        border-color: #00D000;\n}\n\ndl.deprecated\n{\n        margin-left:-7px;\n        padding-left: 3px;\n        border-left:4px solid;\n        border-color: #505050;\n}\n\ndl.todo\n{\n        margin-left:-7px;\n        padding-left: 3px;\n        border-left:4px solid;\n        border-color: #00C0E0;\n}\n\ndl.test\n{\n        margin-left:-7px;\n        padding-left: 3px;\n        border-left:4px solid;\n        border-color: #3030E0;\n}\n\ndl.bug\n{\n        margin-left:-7px;\n        padding-left: 3px;\n        border-left:4px solid;\n        border-color: #C08050;\n}\n\ndl.section dd {\n\tmargin-bottom: 6px;\n}\n\n\n#projectlogo\n{\n\ttext-align: center;\n\tvertical-align: bottom;\n\tborder-collapse: separate;\n}\n \n#projectlogo img\n{ \n\tborder: 0px none;\n}\n \n#projectalign\n{\n        vertical-align: middle;\n}\n\n#projectname\n{\n\tfont: 300% Tahoma, Arial,sans-serif;\n\tmargin: 0px;\n\tpadding: 2px 0px;\n}\n    \n#projectbrief\n{\n\tfont: 120% Tahoma, Arial,sans-serif;\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#projectnumber\n{\n\tfont: 50% Tahoma, Arial,sans-serif;\n\tmargin: 0px;\n\tpadding: 0px;\n}\n\n#titlearea\n{\n\tpadding: 0px;\n\tmargin: 0px;\n\twidth: 100%;\n\tborder-bottom: 1px solid #5373B4;\n}\n\n.image\n{\n        text-align: center;\n}\n\n.dotgraph\n{\n        text-align: center;\n}\n\n.mscgraph\n{\n        text-align: center;\n}\n\n.plantumlgraph\n{\n        text-align: center;\n}\n\n.diagraph\n{\n        text-align: center;\n}\n\n.caption\n{\n\tfont-weight: bold;\n}\n\ndiv.zoom\n{\n\tborder: 1px solid #90A5CE;\n}\n\ndl.citelist {\n        margin-bottom:50px;\n}\n\ndl.citelist dt {\n        color:#334975;\n        float:left;\n        font-weight:bold;\n        margin-right:10px;\n        padding:5px;\n}\n\ndl.citelist dd {\n        margin:2px 0;\n        padding:5px 0;\n}\n\ndiv.toc {\n        padding: 14px 25px;\n        background-color: #F4F6FA;\n        border: 1px solid #D8DFEE;\n        border-radius: 7px 7px 7px 7px;\n        float: right;\n        height: auto;\n        margin: 0 8px 10px 10px;\n        width: 200px;\n}\n\ndiv.toc li {\n        background: url(\"bdwn.png\") no-repeat scroll 0 5px transparent;\n        font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif;\n        margin-top: 5px;\n        padding-left: 10px;\n        padding-top: 2px;\n}\n\ndiv.toc h3 {\n        font: bold 12px/1.2 Arial,FreeSans,sans-serif;\n\tcolor: #4665A2;\n        border-bottom: 0 none;\n        margin: 0;\n}\n\ndiv.toc ul {\n        list-style: none outside none;\n        border: medium none;\n        padding: 0px;\n}       \n\ndiv.toc li.level1 {\n        margin-left: 0px;\n}\n\ndiv.toc li.level2 {\n        margin-left: 15px;\n}\n\ndiv.toc li.level3 {\n        margin-left: 30px;\n}\n\ndiv.toc li.level4 {\n        margin-left: 45px;\n}\n\n.inherit_header {\n        font-weight: bold;\n        color: gray;\n        cursor: pointer;\n\t-webkit-touch-callout: none;\n\t-webkit-user-select: none;\n\t-khtml-user-select: none;\n\t-moz-user-select: none;\n\t-ms-user-select: none;\n\tuser-select: none;\n}\n\n.inherit_header td {\n        padding: 6px 0px 2px 5px;\n}\n\n.inherit {\n        display: none;\n}\n\ntr.heading h2 {\n        margin-top: 12px;\n        margin-bottom: 4px;\n}\n\n/* tooltip related style info */\n\n.ttc {\n        position: absolute;\n        display: none;\n}\n\n#powerTip {\n\tcursor: default;\n\twhite-space: nowrap;\n\tbackground-color: white;\n\tborder: 1px solid gray;\n\tborder-radius: 4px 4px 4px 4px;\n\tbox-shadow: 1px 1px 7px gray;\n\tdisplay: none;\n\tfont-size: smaller;\n\tmax-width: 80%;\n\topacity: 0.9;\n\tpadding: 1ex 1em 1em;\n\tposition: absolute;\n\tz-index: 2147483647;\n}\n\n#powerTip div.ttdoc {\n        color: grey;\n\tfont-style: italic;\n}\n\n#powerTip div.ttname a {\n        font-weight: bold;\n}\n\n#powerTip div.ttname {\n        font-weight: bold;\n}\n\n#powerTip div.ttdeci {\n        color: #006318;\n}\n\n#powerTip div {\n        margin: 0px;\n        padding: 0px;\n        font: 12px/16px Roboto,sans-serif;\n}\n\n#powerTip:before, #powerTip:after {\n\tcontent: \"\";\n\tposition: absolute;\n\tmargin: 0px;\n}\n\n#powerTip.n:after,  #powerTip.n:before,\n#powerTip.s:after,  #powerTip.s:before,\n#powerTip.w:after,  #powerTip.w:before,\n#powerTip.e:after,  #powerTip.e:before,\n#powerTip.ne:after, #powerTip.ne:before,\n#powerTip.se:after, #powerTip.se:before,\n#powerTip.nw:after, #powerTip.nw:before,\n#powerTip.sw:after, #powerTip.sw:before {\n\tborder: solid transparent;\n\tcontent: \" \";\n\theight: 0;\n\twidth: 0;\n\tposition: absolute;\n}\n\n#powerTip.n:after,  #powerTip.s:after,\n#powerTip.w:after,  #powerTip.e:after,\n#powerTip.nw:after, #powerTip.ne:after,\n#powerTip.sw:after, #powerTip.se:after {\n\tborder-color: rgba(255, 255, 255, 0);\n}\n\n#powerTip.n:before,  #powerTip.s:before,\n#powerTip.w:before,  #powerTip.e:before,\n#powerTip.nw:before, #powerTip.ne:before,\n#powerTip.sw:before, #powerTip.se:before {\n\tborder-color: rgba(128, 128, 128, 0);\n}\n\n#powerTip.n:after,  #powerTip.n:before,\n#powerTip.ne:after, #powerTip.ne:before,\n#powerTip.nw:after, #powerTip.nw:before {\n\ttop: 100%;\n}\n\n#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after {\n\tborder-top-color: #ffffff;\n\tborder-width: 10px;\n\tmargin: 0px -10px;\n}\n#powerTip.n:before {\n\tborder-top-color: #808080;\n\tborder-width: 11px;\n\tmargin: 0px -11px;\n}\n#powerTip.n:after, #powerTip.n:before {\n\tleft: 50%;\n}\n\n#powerTip.nw:after, #powerTip.nw:before {\n\tright: 14px;\n}\n\n#powerTip.ne:after, #powerTip.ne:before {\n\tleft: 14px;\n}\n\n#powerTip.s:after,  #powerTip.s:before,\n#powerTip.se:after, #powerTip.se:before,\n#powerTip.sw:after, #powerTip.sw:before {\n\tbottom: 100%;\n}\n\n#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after {\n\tborder-bottom-color: #ffffff;\n\tborder-width: 10px;\n\tmargin: 0px -10px;\n}\n\n#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before {\n\tborder-bottom-color: #808080;\n\tborder-width: 11px;\n\tmargin: 0px -11px;\n}\n\n#powerTip.s:after, #powerTip.s:before {\n\tleft: 50%;\n}\n\n#powerTip.sw:after, #powerTip.sw:before {\n\tright: 14px;\n}\n\n#powerTip.se:after, #powerTip.se:before {\n\tleft: 14px;\n}\n\n#powerTip.e:after, #powerTip.e:before {\n\tleft: 100%;\n}\n#powerTip.e:after {\n\tborder-left-color: #ffffff;\n\tborder-width: 10px;\n\ttop: 50%;\n\tmargin-top: -10px;\n}\n#powerTip.e:before {\n\tborder-left-color: #808080;\n\tborder-width: 11px;\n\ttop: 50%;\n\tmargin-top: -11px;\n}\n\n#powerTip.w:after, #powerTip.w:before {\n\tright: 100%;\n}\n#powerTip.w:after {\n\tborder-right-color: #ffffff;\n\tborder-width: 10px;\n\ttop: 50%;\n\tmargin-top: -10px;\n}\n#powerTip.w:before {\n\tborder-right-color: #808080;\n\tborder-width: 11px;\n\ttop: 50%;\n\tmargin-top: -11px;\n}\n\n@media print\n{\n  #top { display: none; }\n  #side-nav { display: none; }\n  #nav-path { display: none; }\n  body { overflow:visible; }\n  h1, h2, h3, h4, h5, h6 { page-break-after: avoid; }\n  .summary { display: none; }\n  .memitem { page-break-inside: avoid; }\n  #doc-content\n  {\n    margin-left:0 !important;\n    height:auto !important;\n    width:auto !important;\n    overflow:inherit;\n    display:inline;\n  }\n}\n\n/* @group Markdown */\n\n/*\ntable.markdownTable {\n\tborder-collapse:collapse;\n        margin-top: 4px;\n        margin-bottom: 4px;\n}\n\ntable.markdownTable td, table.markdownTable th {\n\tborder: 1px solid #2D4068;\n\tpadding: 3px 7px 2px;\n}\n\ntable.markdownTableHead tr {\n}\n\ntable.markdownTableBodyLeft td, table.markdownTable th {\n\tborder: 1px solid #2D4068;\n\tpadding: 3px 7px 2px;\n}\n\nth.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone {\n\tbackground-color: #374F7F;\n\tcolor: #FFFFFF;\n\tfont-size: 110%;\n\tpadding-bottom: 4px;\n\tpadding-top: 5px;\n}\n\nth.markdownTableHeadLeft {\n\ttext-align: left\n}\n\nth.markdownTableHeadRight {\n\ttext-align: right\n}\n\nth.markdownTableHeadCenter {\n\ttext-align: center\n}\n*/\n\ntable.markdownTable {\n\tborder-collapse:collapse;\n        margin-top: 4px;\n        margin-bottom: 4px;\n}\n\ntable.markdownTable td, table.markdownTable th {\n\tborder: 1px solid #2D4068;\n\tpadding: 3px 7px 2px;\n}\n\ntable.markdownTable tr {\n}\n\nth.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone {\n\tbackground-color: #374F7F;\n\tcolor: #FFFFFF;\n\tfont-size: 110%;\n\tpadding-bottom: 4px;\n\tpadding-top: 5px;\n}\n\nth.markdownTableHeadLeft, td.markdownTableBodyLeft {\n\ttext-align: left\n}\n\nth.markdownTableHeadRight, td.markdownTableBodyRight {\n\ttext-align: right\n}\n\nth.markdownTableHeadCenter, td.markdownTableBodyCenter {\n\ttext-align: center\n}\n\n\n/* @end */\n"
  },
  {
    "path": "Report/html/dynsections.js",
    "content": "/*\n @licstart  The following is the entire license notice for the\n JavaScript code in this file.\n\n Copyright (C) 1997-2017 by Dimitri van Heesch\n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\n @licend  The above is the entire license notice\n for the JavaScript code in this file\n */\nfunction toggleVisibility(linkObj)\n{\n var base = $(linkObj).attr('id');\n var summary = $('#'+base+'-summary');\n var content = $('#'+base+'-content');\n var trigger = $('#'+base+'-trigger');\n var src=$(trigger).attr('src');\n if (content.is(':visible')===true) {\n   content.hide();\n   summary.show();\n   $(linkObj).addClass('closed').removeClass('opened');\n   $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png');\n } else {\n   content.show();\n   summary.hide();\n   $(linkObj).removeClass('closed').addClass('opened');\n   $(trigger).attr('src',src.substring(0,src.length-10)+'open.png');\n }\n return false;\n}\n\nfunction updateStripes()\n{\n  $('table.directory tr').\n       removeClass('even').filter(':visible:even').addClass('even');\n}\n\nfunction toggleLevel(level)\n{\n  $('table.directory tr').each(function() {\n    var l = this.id.split('_').length-1;\n    var i = $('#img'+this.id.substring(3));\n    var a = $('#arr'+this.id.substring(3));\n    if (l<level+1) {\n      i.removeClass('iconfopen iconfclosed').addClass('iconfopen');\n      a.html('&#9660;');\n      $(this).show();\n    } else if (l==level+1) {\n      i.removeClass('iconfclosed iconfopen').addClass('iconfclosed');\n      a.html('&#9654;');\n      $(this).show();\n    } else {\n      $(this).hide();\n    }\n  });\n  updateStripes();\n}\n\nfunction toggleFolder(id)\n{\n  // the clicked row\n  var currentRow = $('#row_'+id);\n\n  // all rows after the clicked row\n  var rows = currentRow.nextAll(\"tr\");\n\n  var re = new RegExp('^row_'+id+'\\\\d+_$', \"i\"); //only one sub\n\n  // only match elements AFTER this one (can't hide elements before)\n  var childRows = rows.filter(function() { return this.id.match(re); });\n\n  // first row is visible we are HIDING\n  if (childRows.filter(':first').is(':visible')===true) {\n    // replace down arrow by right arrow for current row\n    var currentRowSpans = currentRow.find(\"span\");\n    currentRowSpans.filter(\".iconfopen\").removeClass(\"iconfopen\").addClass(\"iconfclosed\");\n    currentRowSpans.filter(\".arrow\").html('&#9654;');\n    rows.filter(\"[id^=row_\"+id+\"]\").hide(); // hide all children\n  } else { // we are SHOWING\n    // replace right arrow by down arrow for current row\n    var currentRowSpans = currentRow.find(\"span\");\n    currentRowSpans.filter(\".iconfclosed\").removeClass(\"iconfclosed\").addClass(\"iconfopen\");\n    currentRowSpans.filter(\".arrow\").html('&#9660;');\n    // replace down arrows by right arrows for child rows\n    var childRowsSpans = childRows.find(\"span\");\n    childRowsSpans.filter(\".iconfopen\").removeClass(\"iconfopen\").addClass(\"iconfclosed\");\n    childRowsSpans.filter(\".arrow\").html('&#9654;');\n    childRows.show(); //show all children\n  }\n  updateStripes();\n}\n\n\nfunction toggleInherit(id)\n{\n  var rows = $('tr.inherit.'+id);\n  var img = $('tr.inherit_header.'+id+' img');\n  var src = $(img).attr('src');\n  if (rows.filter(':first').is(':visible')===true) {\n    rows.css('display','none');\n    $(img).attr('src',src.substring(0,src.length-8)+'closed.png');\n  } else {\n    rows.css('display','table-row'); // using show() causes jump in firefox\n    $(img).attr('src',src.substring(0,src.length-10)+'open.png');\n  }\n}\n/* @license-end */\n"
  },
  {
    "path": "Report/html/functions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Class Members</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n</div><!-- top -->\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div class=\"contents\">\n<div class=\"textblock\">Here is a list of all documented class members with links to the class documentation for each member:</div>\n\n<h3><a id=\"index_a\"></a>- a -</h3><ul>\n<li>AddCommentToThread()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a5c50b0035797a2b59071162bff47135c\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>AddDeliveryPlan()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html#a8ed2253f78a26bc96e9717c84a881355\">VstsRestAPI.DeliveryPlans.Plans</a>\n</li>\n<li>AddLink()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#ac843d9b1bc4583e7952584dd89a63279\">VstsRestAPI.WorkItemAndTracking.WorkItems</a>\n</li>\n<li>AddTestCasesToSuite()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a0c52041b2fed39904f0452d7ea26f51c\">VstsRestAPI.TestManagement.TestManagement</a>\n</li>\n<li>ApplyRules()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a01a9ffa779ba2cdcd5750cc188dc42f1\">VstsRestAPI.WorkItemAndTracking.Cards</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_c\"></a>- c -</h3><ul>\n<li>CheckForInstalledExtensions()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a4ea213c905f5eb8d420e09d7a919a55d\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>CheckSession()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac7c3e39375100aa8c8c3597d5c95c7a1\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>Create()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a05d657b039fcb027c054e24cf53e5941\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>CreateArea()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab57dd1be0d460862a1b4cd64a69b81b8\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>CreateBuildDefinition()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6b0baf93fe915e1eb9a9f028a9f0136a\">VstsRestAPI.Build.BuildDefinition</a>\n</li>\n<li>CreateCommentThread()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a9284efc83831e33d74892b68ff58b276\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>CreateIssueWI()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a58345bc764da664648c1fe6530405555\">VstsRestAPI.WorkItemAndTracking.IssueWI</a>\n</li>\n<li>CreateIteration()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#ae8b553aaddd3dbd6d03d9ed7400b0667\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n<li>CreateNewDashBoard()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a819bd19bb1d6657c86418a3f3ef3c86b\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>CreateNewTeam()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab42d1bd636a827438a8151f795fedca0\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>CreateProjectEnvironment()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a78d06b5fc70004a4b23a10a22670b04e\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>CreatePullRequest()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#af74451a9ec41478f8a16fdb498ea96a0\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>CreateQuery()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aefe4b14dbc3475676cfcc8f3a007546e\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>CreateQueryAndWidgets()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ab1802a3d21c416002c2c7ff57019b6f8\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>CreateReleaseDefinition()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html#a3e03bd4ea027dca1c1cda2e0fe8ca73d\">VstsRestAPI.Release.ReleaseDefinition</a>\n</li>\n<li>CreateReportWI()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a9e73160c28746c3b6090cfdc8d51b79f\">VstsRestAPI.WorkItemAndTracking.IssueWI</a>\n</li>\n<li>CreateRepositorie()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a2623c37a03e528aa6e0dd4f7bcac3a04\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>CreateServiceEndPoint()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html#a6243f8d6d7cf88a7327d1f99acf974c5\">VstsRestAPI.Service.ServiceEndPoint</a>\n</li>\n<li>CreateTeamProject()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a2dc9bc6f325831b4f86c91cdfbd2bcc9\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n<li>CreateTestPlan()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a32fa8edefb9a51e435dc084a0a05c542\">VstsRestAPI.TestManagement.TestManagement</a>\n</li>\n<li>CreateWidget()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a6e8876d7b58b992e3cde03d1c13e3d5a\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>CreateWorkItemUsingByPassRules()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#a1643c3e8181a916c62d329085f07995b\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>\n, <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#a7ff12afa440b5f590d051bc0c6c74e04\">VstsRestAPI.WorkItemAndTracking.WorkItems</a>\n</li>\n<li>CreatTestSuite()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a5327dfbebb20e530b39cfa6a95ddaa4a\">VstsRestAPI.TestManagement.TestManagement</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_d\"></a>- d -</h3><ul>\n<li>DeleteDefaultDashboard()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#adc1b3bd0066fd1340db2fbf49b56934f\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>DeleteRepository()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#ae9bdfeecb8846a51d3900752166d6d74\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>DownloadAttachedFiles()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a20c36bbbe10bb56f7f0472e8dd05b8bf\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_e\"></a>- e -</h3><ul>\n<li>EnablingEpic()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a307fb639df853926ff09dadadfd8aa12\">VstsRestAPI.WorkItemAndTracking.Cards</a>\n</li>\n<li>EndEnvironmentSetupProcess()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ada15b3cbf0e3c37b0c9e0036b45671c2\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>ExportBoardColumns()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html#aada06c13642a29046cb06f3d2ef2e322\">TemplatesGeneratorTool.Generators.BoardColumns</a>\n</li>\n<li>ExportBuildDefinitions()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html#a15b3c815112e04b0748ed7f1f12fa2cb\">TemplatesGeneratorTool.Generators.BuildDefinitions</a>\n</li>\n<li>ExportPullRequests()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html#aff016c663661c1421f673f1a707c362c\">TemplatesGeneratorTool.Generators.PullRequests</a>\n</li>\n<li>ExportReleaseDefinitions()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html#a3660f90a0a356fdf82aee0373f7e2941\">TemplatesGeneratorTool.Generators.ReleaseDefinitions</a>\n</li>\n<li>ExportSourceCode()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html#a9ec5af1319436537f1aa58ed45c3ca7f\">TemplatesGeneratorTool.Generators.SourceCode</a>\n</li>\n<li>ExportTeams()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html#a3416f9b5acd249ffcd8d63abbb1fe480\">TemplatesGeneratorTool.Generators.Teams</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_g\"></a>- g -</h3><ul>\n<li>GenerateRequestPostData()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac983d0c1775718689aff6f7a17c0b929\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetAccessToken()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a9726501c86319171adf04dedab87a6a0\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetAccountMembers()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html#a0b98e88fa8e05a3d17b55a0932e1e8f6\">VstsRestAPI.ProjectsAndTeams.Account</a>\n</li>\n<li>GetAccountName()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ae8d17a5a4622885c1ae042f2cbe8103e\">VstsDemoBuilder.Controllers.AccountController</a>\n</li>\n<li>GetAccounts()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#af9d72d23dec7248e6a8b5106209e6e6d\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetAllIterations()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a719daa0225d480d779037baaa901c201\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>GetAllRepositories()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a6cf8983ffb2539bb9d3d5eb2a1657c28\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>getBoardColumns()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#ab37fe206629cd139eeb2e6c634e56859\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>\n</li>\n<li>GetBoardRows()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a07950971f3e02be2a376722ac76bf73a\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n<li>GetCardFields()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a3f285cbf53c28a958fff0123d88a3e8a\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a>\n</li>\n<li>GetCardStyles()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a2882c956f1ddc904ab0502fb78a31ca2\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a>\n</li>\n<li>GetDashboard()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html#a5f23b2dc5bd704add76697f8dfe5a530\">TemplatesGeneratorTool.Generators.ExportDashboards</a>\n</li>\n<li>GetDashboardeTag()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a367ee3271ff58e50273a73e2bb5da282\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>GetDashBoardId()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aef10c7b2cf6ce84aece4df4fc87a9fd6\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>GetDefaultRepository()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a0188a1509a001dc7bafc7ca6829daa8e\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>GetGroups()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a3b9b20acff06038e1aed58b3bfaaebd4\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetIterations()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a9b9f298f8ae6cf16fcc809c69f99533a\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n<li>GetListOfWorkItems_ByWiql()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ab6104d3b32004b835a05393a7220a7fc\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>\n</li>\n<li>GetMembers()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a1a7a16aa8a18f17e1fafb079e5ec5de4\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetProfile()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8d6dfbb168d7d87651c361e953feb9d9\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetProjectIdByName()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a488712df438d066911a1065f15556cbc\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n<li>GetProjectStateByName()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#abd2b8fa4ffdb672a1975b61964f9d72f\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n<li>GetQueriesByPath()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html#a5891d5275dcffb8a38960ccb7de53004\">TemplatesGeneratorTool.Generators.ExportQueries</a>\n</li>\n<li>GetQueryByPathAndName()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a8cf2beece89d16eb8b96e0c3c34142b2\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>GetQueues()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html#a25b076002dd514e7a069197b24e9de56\">VstsRestAPI.Queues.Queue</a>\n</li>\n<li>GetRepositoryToDelete()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#adb713f76b948694752aff2d111a3ed85\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>getSourceCodeFromGitHub()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a46daa5b9a35a6efb4267c6ee4494df31\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>GetStatusMessage()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ae36d3258bea98714970d2fdc5fec6bf3\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetTeamByName()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a252afe1d5826c3251ace46c5e36dcb39\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>GetTeamMembers()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a08de9d00456ae8e5407adfb6e3f1f135\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>GetTeamSetting()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#af1ece216c9baa58c5e8b2a527318ba3c\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>GetTemplate()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a386641d021e2872eb8a614db7d3b1a6e\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetWorkItemsDetailinBatch()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a8471c5b52c936c6887720f60cd56c537\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n<li>getWorkItemsfromSource()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a99040ad4f9108c0ca4d1b9ab8edbdc62\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_i\"></a>- i -</h3><ul>\n<li>ImportWorkitems()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a314f15de4c9b09b3911af9d079abe306\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n<li>Index()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ac36624619c06ea1c9e9df88c06d9a80f\">VstsDemoBuilder.Controllers.AccountController</a>\n</li>\n<li>InstallExtensions()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c6be4b2363680d958e6fdee4e74b91a\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>IsAccountHasProjects()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a5972180d08f6a32c0a22c03f94622904\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n<li>isValidAccount()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html#ab3bf9583c98282065b77f2a35ddeacd2\">TemplatesGeneratorTool.Generators.ValidateLogin</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_l\"></a>- l -</h3><ul>\n<li>ListOfProjects()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#afd4729308614a2d4f4124c7eedafecfc\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_m\"></a>- m -</h3><ul>\n<li>MoveIteration()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a34362d25882c3145b7134f08bf8aae86\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_p\"></a>- p -</h3><ul>\n<li>PrepareAndUpdateTarget()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a4e9b291e9e8e0c84200d2fa06f0bc068\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_q\"></a>- q -</h3><ul>\n<li>QueueBuild()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6f176c07809293c0b2efd1d3eb0cffcc\">VstsRestAPI.Build.BuildDefinition</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_r\"></a>- r -</h3><ul>\n<li>Refresh_AccessToken()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c1a9720f499884448fa692a6fc8b514\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>RefreshBoard()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a6ad605cdf943060efe528fa34b38b225\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>\n</li>\n<li>RenameIteration()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aa9ec619ecc43346a57e84ec3206c78e3\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n<li>RenameIterations()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a990cb5c0fd92cee0d4926b92a5951436\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_s\"></a>- s -</h3><ul>\n<li>SendEmail()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a69d4ebc71322d09e96bab8cd604ebb46\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>SetAreaForTeams()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab7ec4e48d49881e50a0a7aae20ede38a\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>SetBackLogIterationForTeam()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a9edc630def2d89f784812cf88f706a4c\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>SetIterationsForTeam()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a513442a4bc421f2b3f0fb980d1c6ed72\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>SignOut()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#abbf468c027b199a26ccc4a12fdad7fbe\">VstsDemoBuilder.Controllers.AccountController</a>\n</li>\n<li>StartEnvironmentSetupProcess()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ad6b69ff448fc483cb517729d55c55dcc\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_u\"></a>- u -</h3><ul>\n<li>UpdateBoard()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a5e492fd7d8cc70eae58565322bd7fcda\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>\n</li>\n<li>UpdateCardField()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#aef506846ff57c971ab48a51a39f8cea4\">VstsRestAPI.WorkItemAndTracking.Cards</a>\n</li>\n<li>UpdateIterationDates()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aff3aa00e48c8f5419e7ca2a0d35946ef\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n<li>UpdateLink()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a70dc11cc49f3584702b7269d3ed821b2\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n<li>UpdateQuery()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#ad50ab1e6c58ac12bd8d39ee52a514e0d\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>UpdateSwimLanes()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html#a4af603283af32f87e7f0de500a5cd578\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a>\n</li>\n<li>UpdateWorkItem()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#afb867463d207db51a8653f14e809e392\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n<li>UpdateWorkIteminTarget()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a0287a32144b543656c69fd06131ee7f3\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n<li>UpdateWorkItemLinks()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#ad85453d724d643b50b25b2d7f39ba95d\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n<li>UpdateWorkItemUsingByPassRules()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ae0eb3a3a473c7a1b117199a77466ab72\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>\n</li>\n<li>UploadAttchment()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a5845172621eec8d4991f3633077dc498\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_v\"></a>- v -</h3><ul>\n<li>Verify()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#a6d42be6f0b98a238c2575e225940ff6e\">VstsDemoBuilder.Controllers.AccountController</a>\n</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/functions_func.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Class Members - Functions</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n</div><!-- top -->\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div class=\"contents\">\n&#160;\n\n<h3><a id=\"index_a\"></a>- a -</h3><ul>\n<li>AddCommentToThread()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a5c50b0035797a2b59071162bff47135c\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>AddDeliveryPlan()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html#a8ed2253f78a26bc96e9717c84a881355\">VstsRestAPI.DeliveryPlans.Plans</a>\n</li>\n<li>AddLink()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#ac843d9b1bc4583e7952584dd89a63279\">VstsRestAPI.WorkItemAndTracking.WorkItems</a>\n</li>\n<li>AddTestCasesToSuite()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a0c52041b2fed39904f0452d7ea26f51c\">VstsRestAPI.TestManagement.TestManagement</a>\n</li>\n<li>ApplyRules()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a01a9ffa779ba2cdcd5750cc188dc42f1\">VstsRestAPI.WorkItemAndTracking.Cards</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_c\"></a>- c -</h3><ul>\n<li>CheckForInstalledExtensions()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a4ea213c905f5eb8d420e09d7a919a55d\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>CheckSession()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac7c3e39375100aa8c8c3597d5c95c7a1\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>Create()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a05d657b039fcb027c054e24cf53e5941\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>CreateArea()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab57dd1be0d460862a1b4cd64a69b81b8\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>CreateBuildDefinition()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6b0baf93fe915e1eb9a9f028a9f0136a\">VstsRestAPI.Build.BuildDefinition</a>\n</li>\n<li>CreateCommentThread()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a9284efc83831e33d74892b68ff58b276\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>CreateIssueWI()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a58345bc764da664648c1fe6530405555\">VstsRestAPI.WorkItemAndTracking.IssueWI</a>\n</li>\n<li>CreateIteration()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#ae8b553aaddd3dbd6d03d9ed7400b0667\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n<li>CreateNewDashBoard()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a819bd19bb1d6657c86418a3f3ef3c86b\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>CreateNewTeam()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab42d1bd636a827438a8151f795fedca0\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>CreateProjectEnvironment()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a78d06b5fc70004a4b23a10a22670b04e\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>CreatePullRequest()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#af74451a9ec41478f8a16fdb498ea96a0\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>CreateQuery()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aefe4b14dbc3475676cfcc8f3a007546e\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>CreateQueryAndWidgets()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ab1802a3d21c416002c2c7ff57019b6f8\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>CreateReleaseDefinition()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html#a3e03bd4ea027dca1c1cda2e0fe8ca73d\">VstsRestAPI.Release.ReleaseDefinition</a>\n</li>\n<li>CreateReportWI()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a9e73160c28746c3b6090cfdc8d51b79f\">VstsRestAPI.WorkItemAndTracking.IssueWI</a>\n</li>\n<li>CreateRepositorie()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a2623c37a03e528aa6e0dd4f7bcac3a04\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>CreateServiceEndPoint()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html#a6243f8d6d7cf88a7327d1f99acf974c5\">VstsRestAPI.Service.ServiceEndPoint</a>\n</li>\n<li>CreateTeamProject()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a2dc9bc6f325831b4f86c91cdfbd2bcc9\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n<li>CreateTestPlan()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a32fa8edefb9a51e435dc084a0a05c542\">VstsRestAPI.TestManagement.TestManagement</a>\n</li>\n<li>CreateWidget()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a6e8876d7b58b992e3cde03d1c13e3d5a\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>CreateWorkItemUsingByPassRules()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#a1643c3e8181a916c62d329085f07995b\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>\n, <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#a7ff12afa440b5f590d051bc0c6c74e04\">VstsRestAPI.WorkItemAndTracking.WorkItems</a>\n</li>\n<li>CreatTestSuite()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a5327dfbebb20e530b39cfa6a95ddaa4a\">VstsRestAPI.TestManagement.TestManagement</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_d\"></a>- d -</h3><ul>\n<li>DeleteDefaultDashboard()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#adc1b3bd0066fd1340db2fbf49b56934f\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>DeleteRepository()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#ae9bdfeecb8846a51d3900752166d6d74\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>DownloadAttachedFiles()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a20c36bbbe10bb56f7f0472e8dd05b8bf\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_e\"></a>- e -</h3><ul>\n<li>EnablingEpic()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a307fb639df853926ff09dadadfd8aa12\">VstsRestAPI.WorkItemAndTracking.Cards</a>\n</li>\n<li>EndEnvironmentSetupProcess()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ada15b3cbf0e3c37b0c9e0036b45671c2\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>ExportBoardColumns()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html#aada06c13642a29046cb06f3d2ef2e322\">TemplatesGeneratorTool.Generators.BoardColumns</a>\n</li>\n<li>ExportBuildDefinitions()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html#a15b3c815112e04b0748ed7f1f12fa2cb\">TemplatesGeneratorTool.Generators.BuildDefinitions</a>\n</li>\n<li>ExportPullRequests()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html#aff016c663661c1421f673f1a707c362c\">TemplatesGeneratorTool.Generators.PullRequests</a>\n</li>\n<li>ExportReleaseDefinitions()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html#a3660f90a0a356fdf82aee0373f7e2941\">TemplatesGeneratorTool.Generators.ReleaseDefinitions</a>\n</li>\n<li>ExportSourceCode()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html#a9ec5af1319436537f1aa58ed45c3ca7f\">TemplatesGeneratorTool.Generators.SourceCode</a>\n</li>\n<li>ExportTeams()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html#a3416f9b5acd249ffcd8d63abbb1fe480\">TemplatesGeneratorTool.Generators.Teams</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_g\"></a>- g -</h3><ul>\n<li>GenerateRequestPostData()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac983d0c1775718689aff6f7a17c0b929\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetAccessToken()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a9726501c86319171adf04dedab87a6a0\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetAccountMembers()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html#a0b98e88fa8e05a3d17b55a0932e1e8f6\">VstsRestAPI.ProjectsAndTeams.Account</a>\n</li>\n<li>GetAccountName()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ae8d17a5a4622885c1ae042f2cbe8103e\">VstsDemoBuilder.Controllers.AccountController</a>\n</li>\n<li>GetAccounts()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#af9d72d23dec7248e6a8b5106209e6e6d\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetAllIterations()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a719daa0225d480d779037baaa901c201\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>GetAllRepositories()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a6cf8983ffb2539bb9d3d5eb2a1657c28\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>getBoardColumns()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#ab37fe206629cd139eeb2e6c634e56859\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>\n</li>\n<li>GetBoardRows()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a07950971f3e02be2a376722ac76bf73a\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n<li>GetCardFields()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a3f285cbf53c28a958fff0123d88a3e8a\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a>\n</li>\n<li>GetCardStyles()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a2882c956f1ddc904ab0502fb78a31ca2\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a>\n</li>\n<li>GetDashboard()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html#a5f23b2dc5bd704add76697f8dfe5a530\">TemplatesGeneratorTool.Generators.ExportDashboards</a>\n</li>\n<li>GetDashboardeTag()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a367ee3271ff58e50273a73e2bb5da282\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>GetDashBoardId()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aef10c7b2cf6ce84aece4df4fc87a9fd6\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>GetDefaultRepository()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a0188a1509a001dc7bafc7ca6829daa8e\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>GetGroups()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a3b9b20acff06038e1aed58b3bfaaebd4\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetIterations()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a9b9f298f8ae6cf16fcc809c69f99533a\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n<li>GetListOfWorkItems_ByWiql()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ab6104d3b32004b835a05393a7220a7fc\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>\n</li>\n<li>GetMembers()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a1a7a16aa8a18f17e1fafb079e5ec5de4\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetProfile()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8d6dfbb168d7d87651c361e953feb9d9\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetProjectIdByName()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a488712df438d066911a1065f15556cbc\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n<li>GetProjectStateByName()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#abd2b8fa4ffdb672a1975b61964f9d72f\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n<li>GetQueriesByPath()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html#a5891d5275dcffb8a38960ccb7de53004\">TemplatesGeneratorTool.Generators.ExportQueries</a>\n</li>\n<li>GetQueryByPathAndName()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a8cf2beece89d16eb8b96e0c3c34142b2\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>GetQueues()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html#a25b076002dd514e7a069197b24e9de56\">VstsRestAPI.Queues.Queue</a>\n</li>\n<li>GetRepositoryToDelete()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#adb713f76b948694752aff2d111a3ed85\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>getSourceCodeFromGitHub()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a46daa5b9a35a6efb4267c6ee4494df31\">VstsRestAPI.Git.Repository</a>\n</li>\n<li>GetStatusMessage()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ae36d3258bea98714970d2fdc5fec6bf3\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetTeamByName()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a252afe1d5826c3251ace46c5e36dcb39\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>GetTeamMembers()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a08de9d00456ae8e5407adfb6e3f1f135\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>GetTeamSetting()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#af1ece216c9baa58c5e8b2a527318ba3c\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>GetTemplate()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a386641d021e2872eb8a614db7d3b1a6e\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>GetWorkItemsDetailinBatch()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a8471c5b52c936c6887720f60cd56c537\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n<li>getWorkItemsfromSource()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a99040ad4f9108c0ca4d1b9ab8edbdc62\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_i\"></a>- i -</h3><ul>\n<li>ImportWorkitems()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a314f15de4c9b09b3911af9d079abe306\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n<li>Index()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ac36624619c06ea1c9e9df88c06d9a80f\">VstsDemoBuilder.Controllers.AccountController</a>\n</li>\n<li>InstallExtensions()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c6be4b2363680d958e6fdee4e74b91a\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>IsAccountHasProjects()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a5972180d08f6a32c0a22c03f94622904\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n<li>isValidAccount()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html#ab3bf9583c98282065b77f2a35ddeacd2\">TemplatesGeneratorTool.Generators.ValidateLogin</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_l\"></a>- l -</h3><ul>\n<li>ListOfProjects()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#afd4729308614a2d4f4124c7eedafecfc\">VstsRestAPI.ProjectsAndTeams.Projects</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_m\"></a>- m -</h3><ul>\n<li>MoveIteration()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a34362d25882c3145b7134f08bf8aae86\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_p\"></a>- p -</h3><ul>\n<li>PrepareAndUpdateTarget()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a4e9b291e9e8e0c84200d2fa06f0bc068\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_q\"></a>- q -</h3><ul>\n<li>QueueBuild()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6f176c07809293c0b2efd1d3eb0cffcc\">VstsRestAPI.Build.BuildDefinition</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_r\"></a>- r -</h3><ul>\n<li>Refresh_AccessToken()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c1a9720f499884448fa692a6fc8b514\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>RefreshBoard()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a6ad605cdf943060efe528fa34b38b225\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>\n</li>\n<li>RenameIteration()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aa9ec619ecc43346a57e84ec3206c78e3\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n<li>RenameIterations()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a990cb5c0fd92cee0d4926b92a5951436\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_s\"></a>- s -</h3><ul>\n<li>SendEmail()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a69d4ebc71322d09e96bab8cd604ebb46\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n<li>SetAreaForTeams()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab7ec4e48d49881e50a0a7aae20ede38a\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>SetBackLogIterationForTeam()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a9edc630def2d89f784812cf88f706a4c\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>SetIterationsForTeam()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a513442a4bc421f2b3f0fb980d1c6ed72\">VstsRestAPI.ProjectsAndTeams.Team</a>\n</li>\n<li>SignOut()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#abbf468c027b199a26ccc4a12fdad7fbe\">VstsDemoBuilder.Controllers.AccountController</a>\n</li>\n<li>StartEnvironmentSetupProcess()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ad6b69ff448fc483cb517729d55c55dcc\">VstsDemoBuilder.Controllers.EnvironmentController</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_u\"></a>- u -</h3><ul>\n<li>UpdateBoard()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a5e492fd7d8cc70eae58565322bd7fcda\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a>\n</li>\n<li>UpdateCardField()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#aef506846ff57c971ab48a51a39f8cea4\">VstsRestAPI.WorkItemAndTracking.Cards</a>\n</li>\n<li>UpdateIterationDates()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aff3aa00e48c8f5419e7ca2a0d35946ef\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a>\n</li>\n<li>UpdateLink()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a70dc11cc49f3584702b7269d3ed821b2\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n<li>UpdateQuery()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#ad50ab1e6c58ac12bd8d39ee52a514e0d\">VstsRestAPI.QuerysAndWidgets.Querys</a>\n</li>\n<li>UpdateSwimLanes()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html#a4af603283af32f87e7f0de500a5cd578\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a>\n</li>\n<li>UpdateWorkItem()\n: <a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#afb867463d207db51a8653f14e809e392\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a>\n</li>\n<li>UpdateWorkIteminTarget()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a0287a32144b543656c69fd06131ee7f3\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n<li>UpdateWorkItemLinks()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#ad85453d724d643b50b25b2d7f39ba95d\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n<li>UpdateWorkItemUsingByPassRules()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ae0eb3a3a473c7a1b117199a77466ab72\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a>\n</li>\n<li>UploadAttchment()\n: <a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a5845172621eec8d4991f3633077dc498\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a>\n</li>\n</ul>\n\n\n<h3><a id=\"index_v\"></a>- v -</h3><ul>\n<li>Verify()\n: <a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#a6d42be6f0b98a238c2575e225940ff6e\">VstsDemoBuilder.Controllers.AccountController</a>\n</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/hierarchy.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Class Hierarchy</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n</div><!-- top -->\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Class Hierarchy</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"textblock\">This inheritance list is sorted roughly, but not completely, alphabetically:</div><div class=\"directory\">\n<div class=\"levels\">[detail level <span onclick=\"javascript:toggleLevel(1);\">1</span><span onclick=\"javascript:toggleLevel(2);\">2</span>]</div><table class=\"directory\">\n<tr id=\"row_0_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_3_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\" target=\"_self\">VstsDemoBuilder.Models.AccessDetails</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_4_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.AccessLevel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_5_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\" target=\"_self\">VstsRestAPI.ProjectsAndTeams.Account</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_6_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_7_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html\" target=\"_self\">VstsDemoBuilder.Models.Accounts.AccountList</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_8_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_9_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\" target=\"_self\">VstsDemoBuilder.Models.Accounts</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_10_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\" target=\"_self\">VstsRestAPI.Viewmodel.Queue.AgentQueueModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_11_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.AllPlans</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_12_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_13_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_14_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_15_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_16_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_17_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_18_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_19_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_20_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_21_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_22_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_23_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_24_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_25_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_26_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html\" target=\"_self\">VstsDemoBuilder.Models.ProjectList.Authentication</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_27_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html\" target=\"_self\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Authoredby</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_28_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\" target=\"_self\">VstsRestAPI.Viewmodel.Service.Authorization</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_29_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_30_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.BacklogIteration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_31_\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_31_\" class=\"arrow\" onclick=\"toggleFolder('31_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BaseViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_31_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_31_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_31_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_31_3_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_\" class=\"even\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_32_\" class=\"arrow\" onclick=\"toggleFolder('32_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\" target=\"_self\">VstsRestAPI.Viewmodel.BaseViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html\" target=\"_self\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_1_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_2_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_3_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html\" target=\"_self\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_4_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\" target=\"_self\">VstsRestAPI.Viewmodel.Queue.QueueModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_5_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_6_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_7_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.ColumnPost</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_8_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_9_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_10_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_11_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_12_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_13_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_14_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_15_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_32_16_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_33_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_34_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.BoardColumn</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_35_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\" target=\"_self\">TemplatesGeneratorTool.Generators.BoardColumns</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_36_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_37_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Bug</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_38_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_39_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_40_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_41_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\" target=\"_self\">VstsDemoBuilder.Models.BuildDef</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_42_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_43_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\" target=\"_self\">VstsRestAPI.Build.BuildDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_44_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_45_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_46_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\" target=\"_self\">TemplatesGeneratorTool.Generators.BuildDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_47_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_48_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildPlatform</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_49_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\" target=\"_self\">VstsDemoBuilder.Models.BuildReleaseMapping</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_50_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\" target=\"_self\">VstsDemoBuilder.BundleConfig</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_51_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardFieldResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_52_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.CardFields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_53_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\" target=\"_self\">TemplatesGeneratorTool.Generators.CardFieldsAndCardStyles</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_54_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_55_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.Cards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_56_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CardSettings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_57_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardStyleResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_58_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.CardStyles</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_59_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_60_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_61_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_62_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryResponse.Child</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_63_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child1</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_64_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.ClassificationNodes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_65_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Code</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_66_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_67_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_68_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_69_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_70_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_71_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_72_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_73_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_74_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_75_\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_75_\" class=\"arrow\" onclick=\"toggleFolder('75_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><b>Controller</b></td><td class=\"desc\"></td></tr>\n<tr id=\"row_75_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\" target=\"_self\">VstsDemoBuilder.Controllers.AccountController</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_75_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\" target=\"_self\">VstsDemoBuilder.Controllers.EnvironmentController</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_75_2_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\" target=\"_self\">VstsDemoBuilder.Controllers.HomeController</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_76_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.CoreField</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_77_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\" target=\"_self\">VstsRestAPI.Viewmodel.Service.CreatedBy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_78_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_79_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Criterion</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_80_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_81_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\" target=\"_self\">VstsDemoBuilder.Models.Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_82_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html\" target=\"_self\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_83_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_84_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.DashBoardResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_85_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_86_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html\" target=\"_self\">VstsRestAPI.Viewmodel.Service.Data</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_87_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\" target=\"_self\">VstsDemoBuilder.Models.Default</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_88_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.DefaultIteration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_89_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_90_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_91_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_92_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_93_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_94_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.DeliveryPlan</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_95_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_96_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_97_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_98_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_99_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_100_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_101_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\" target=\"_self\">VstsDemoBuilder.Models.Email</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_102_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_103_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_104_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_105_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_106_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\" target=\"_self\">VstsDemoBuilder.Models.EnvironmentValues</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_107_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.Epiclist</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_108_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_109_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_110_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\" target=\"_self\">TemplatesGeneratorTool.Generators.ExportDashboards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_111_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\" target=\"_self\">TemplatesGeneratorTool.Generators.ExportQueries</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_112_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html\" target=\"_self\">VstsDemoBuilder.Models.RequiredExtensions.Extension</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_113_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html\" target=\"_self\">VstsDemoBuilder.Models.RequiredExtensions.ExtensionWithLink</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_114_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_115_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_116_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_117_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_118_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_119_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_120_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_121_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields1</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_122_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_123_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_124_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\" target=\"_self\">VstsDemoBuilder.FilterConfig</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_125_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\" target=\"_self\">TemplatesGeneratorTool.Generators.GenerateWIFromSource</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_126_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_127_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_128_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_129_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_130_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_131_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_132_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_133_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_134_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_135_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.GitSource</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_136_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\" target=\"_self\">VstsDemoBuilder.Models.GroupDetails</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_137_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\" target=\"_self\">VstsDemoBuilder.Models.GroupwiseTemplate</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_138_\" class=\"even\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_138_\" class=\"arrow\" onclick=\"toggleFolder('138_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><b>HandleErrorAttribute</b></td><td class=\"desc\"></td></tr>\n<tr id=\"row_138_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\" target=\"_self\">VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_139_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Html</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_140_\" class=\"even\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_140_\" class=\"arrow\" onclick=\"toggleFolder('140_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><b>HttpApplication</b></td><td class=\"desc\"></td></tr>\n<tr id=\"row_140_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\" target=\"_self\">VstsDemoBuilder.MvcApplication</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_141_\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_141_\" class=\"arrow\" onclick=\"toggleFolder('141_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\" target=\"_self\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_141_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\" target=\"_self\">VstsDemoBuilder.Models.Configuration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_142_\" class=\"even\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_142_\" class=\"arrow\" onclick=\"toggleFolder('142_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\" target=\"_self\">VstsRestAPI.IConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_142_0_\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\" target=\"_self\">VstsRestAPI.Configuration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_143_\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_143_\" class=\"arrow\" onclick=\"toggleFolder('143_')\">&#9654;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\" target=\"_self\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_143_0_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\" target=\"_self\">TemplatesGeneratorTool.Configuration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_143_1_\" class=\"even\" style=\"display:none;\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\" target=\"_self\">TemplatesGeneratorTool.SourceConfiguration</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_144_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_145_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.ImportWorkItems</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_146_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_147_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_148_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_149_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs1</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_150_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html\" target=\"_self\">VstsDemoBuilder.Models.Location.IPHostGenerator</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_151_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.IssueWI</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_152_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_153_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_154_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Iterations</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_155_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryResponse.Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_156_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_157_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.ListofCards</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_158_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.ListofCardStyles</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_159_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_160_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location.html\" target=\"_self\">VstsDemoBuilder.Models.Location</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_161_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\" target=\"_self\">VstsDemoBuilder.Models.LoginModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_162_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Member</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_163_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Memberships</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_164_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_165_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_166_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Option</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_167_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_168_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_169_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_170_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_171_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.parameter</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_172_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Parameters</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_173_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Parent</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_174_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html\" target=\"_self\">VstsDemoBuilder.Models.TestSuite.Plan</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_175_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\" target=\"_self\">VstsRestAPI.DeliveryPlans.Plans</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_176_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_177_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\" target=\"_self\">VstsRestAPI.Viewmodel.Queue.Pool</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_178_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_179_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html\" target=\"_self\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_180_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Position</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_181_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_182_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_183_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_184_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_185_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardFieldResponse.ProductBacklogItem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_186_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\" target=\"_self\">VstsDemoBuilder.Models.ProfileDetails</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_187_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\" target=\"_self\">TemplatesGeneratorTool.Program</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_188_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_189_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_190_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\" target=\"_self\">VstsDemoBuilder.Models.Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_191_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html\" target=\"_self\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_192_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_193_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_194_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html\" target=\"_self\">VstsDemoBuilder.Models.ProjectList.ProjectCount</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_195_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\" target=\"_self\">VstsDemoBuilder.Models.ProjectList</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_196_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\" target=\"_self\">VstsRestAPI.ProjectsAndTeams.Projects</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_197_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\" target=\"_self\">VstsDemoBuilder.Models.ProjectSettings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_198_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\" target=\"_self\">VstsDemoBuilder.Models.ProjectTemplate</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_199_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_200_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_201_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_202_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_203_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html\" target=\"_self\">VstsDemoBuilder.Models.Accounts.Properties</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_204_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.PullRequest</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_205_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_206_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_207_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_208_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\" target=\"_self\">TemplatesGeneratorTool.Generators.PullRequests</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_209_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_210_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_211_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryResponse.Query</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_212_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\" target=\"_self\">VstsDemoBuilder.Models.Query</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_213_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_214_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_215_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_216_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_217_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\" target=\"_self\">VstsRestAPI.QuerysAndWidgets.Querys</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_218_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryByPathResponse.QueryWithWiql</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_219_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_220_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\" target=\"_self\">VstsRestAPI.Queues.Queue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_221_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html\" target=\"_self\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_222_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Relation</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_223_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_224_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_225_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_226_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_227_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\" target=\"_self\">VstsDemoBuilder.Models.ReleaseDef</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_228_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_229_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_230_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\" target=\"_self\">VstsRestAPI.Release.ReleaseDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_231_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_232_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\" target=\"_self\">TemplatesGeneratorTool.Generators.ReleaseDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_233_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_234_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_235_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_236_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.reply</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_237_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_238_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\" target=\"_self\">VstsRestAPI.Git.Repository</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_239_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_240_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.RepositoryResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_241_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\" target=\"_self\">VstsDemoBuilder.Models.RequiredExtensions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_242_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_243_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_244_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.RetentionRule</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_245_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.ReturnException</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_246_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Reviewer</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_247_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_248_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_249_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_250_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_251_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\" target=\"_self\">VstsDemoBuilder.RouteConfig</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_252_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_253_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_254_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_255_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_256_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_257_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Service</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_258_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\" target=\"_self\">VstsRestAPI.Service.ServiceEndPoint</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_259_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\" target=\"_self\">VstsRestAPI.Viewmodel.Service.ServiceEndpointModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_260_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_261_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_262_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.Settings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_263_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.SettingsVersion</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_264_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Size</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_265_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\" target=\"_self\">TemplatesGeneratorTool.Generators.SourceCode</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_266_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_267_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_268_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_269_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.StateMappings</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_270_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.SwimLanes</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_271_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.SystemDebug</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_272_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_273_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_274_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_275_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_276_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_277_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Team</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_278_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\" target=\"_self\">VstsRestAPI.ProjectsAndTeams.Team</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_279_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.TeamBacklogMapping</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_280_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_281_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_282_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.TeamMembers</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_283_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_284_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\" target=\"_self\">TemplatesGeneratorTool.Generators.Teams</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_285_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.TeamSetting</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_286_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_287_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.TeamsResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_288_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\" target=\"_self\">VstsDemoBuilder.Models.Template</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_289_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\" target=\"_self\">VstsDemoBuilder.Models.templateKeyValue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_290_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\" target=\"_self\">VstsDemoBuilder.Models.TemplateSetting</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_291_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\" target=\"_self\">VstsDemoBuilder.Models.TestCase</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_292_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\" target=\"_self\">VstsRestAPI.TestManagement.TestManagement</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_293_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\" target=\"_self\">VstsDemoBuilder.Models.TestSuite</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_294_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html\" target=\"_self\">VstsDemoBuilder.Models.TestSuite.TestSuites</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_295_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_296_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_297_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_298_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_299_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\" target=\"_self\">VstsRestAPI.Utility</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_300_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\" target=\"_self\">TemplatesGeneratorTool.Generators.ValidateLogin</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_301_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html\" target=\"_self\">VstsDemoBuilder.Models.ProjectList.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_302_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_303_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_304_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_305_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html\" target=\"_self\">VstsDemoBuilder.Models.Accounts.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_306_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_307_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_308_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_309_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_310_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html\" target=\"_self\">VstsDemoBuilder.Models.TestSuite.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_311_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.Queue.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_312_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_313_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_314_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_315_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.TeamsResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_316_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_317_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_318_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_319_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_320_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_321_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_322_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_323_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PlanViewModel.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_324_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_325_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_326_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_327_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_328_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_329_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_330_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_331_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_332_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_333_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_334_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Variables</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_335_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html\" target=\"_self\">VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Variables</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_336_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Widget</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_337_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_338_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html\" target=\"_self\">TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_339_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.WIMapData</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_340_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.QueryResponse.Wiql</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_341_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_342_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_343_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_344_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\" target=\"_self\">TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_345_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemhistory</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_346_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.WorkItemNew</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_347_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_348_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_349_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemrevisions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_350_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\" target=\"_self\">VstsRestAPI.WorkItemAndTracking.WorkItems</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_351_\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemtype</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_352_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">C</span></span><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html\" target=\"_self\">VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Workitemupdates</a></td><td class=\"desc\"></td></tr>\n</table>\n</div><!-- directory -->\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/index.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Main Page</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n</div><!-- top -->\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VSTS DemoGenerator Documentation</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/interface_templates_generator_tool_1_1_i_configuration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">IConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.IConfiguration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GitRepositoryId</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Identity</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MoveToProject</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PersonalAccessToken</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PickListId</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProcessId</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Project</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Query</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>QueryId</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Team</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UriString</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WorkItemId</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WorkItemIds</b> (defined in <a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">TemplatesGeneratorTool.IConfiguration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/interface_templates_generator_tool_1_1_i_configuration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.IConfiguration Interface Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">IConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"interface_templates_generator_tool_1_1_i_configuration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.IConfiguration Interface Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for TemplatesGeneratorTool.IConfiguration:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"interface_templates_generator_tool_1_1_i_configuration.png\" usemap=\"#TemplatesGeneratorTool.IConfiguration_map\" alt=\"\"/>\n  <map id=\"TemplatesGeneratorTool.IConfiguration_map\" name=\"TemplatesGeneratorTool.IConfiguration_map\">\n<area href=\"class_templates_generator_tool_1_1_configuration.html\" alt=\"TemplatesGeneratorTool.Configuration\" shape=\"rect\" coords=\"0,56,270,80\"/>\n<area href=\"class_templates_generator_tool_1_1_source_configuration.html\" alt=\"TemplatesGeneratorTool.SourceConfiguration\" shape=\"rect\" coords=\"280,56,550,80\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:ae124de5476e5809f10341ae8fff33291\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ae124de5476e5809f10341ae8fff33291\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ae124de5476e5809f10341ae8fff33291\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a411fdd7c310b24d84b999758cd3dbead\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a411fdd7c310b24d84b999758cd3dbead\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a411fdd7c310b24d84b999758cd3dbead\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a555e694c00e04f58c4fd6f87c8fcd608\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a555e694c00e04f58c4fd6f87c8fcd608\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a555e694c00e04f58c4fd6f87c8fcd608\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:acf217d2f0f2d56e9ade9bfcfb9b1b9c5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"acf217d2f0f2d56e9ade9bfcfb9b1b9c5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:acf217d2f0f2d56e9ade9bfcfb9b1b9c5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a267cdea956ab89ffbd0ef1356106fac5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a267cdea956ab89ffbd0ef1356106fac5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a267cdea956ab89ffbd0ef1356106fac5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7e1a4b7e26f4c9182fc953e9bcd144c7\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7e1a4b7e26f4c9182fc953e9bcd144c7\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7e1a4b7e26f4c9182fc953e9bcd144c7\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:abccdcc9f266ff3b2ba22af3eb6e72d75\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"abccdcc9f266ff3b2ba22af3eb6e72d75\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:abccdcc9f266ff3b2ba22af3eb6e72d75\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a79fd3ac49032caa02a9a0895c8ee34c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a79fd3ac49032caa02a9a0895c8ee34c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a79fd3ac49032caa02a9a0895c8ee34c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:afa686bcb50d8ea923a4381f12c75142e\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"afa686bcb50d8ea923a4381f12c75142e\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:afa686bcb50d8ea923a4381f12c75142e\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af17260e0422f922ec02e357203a6fc25\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af17260e0422f922ec02e357203a6fc25\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af17260e0422f922ec02e357203a6fc25\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9de86c96af44ef9df21aa16a84f6cfa1\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9de86c96af44ef9df21aa16a84f6cfa1\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9de86c96af44ef9df21aa16a84f6cfa1\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a89cb953a87d44a00e019290ca8e6c7c6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a89cb953a87d44a00e019290ca8e6c7c6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a89cb953a87d44a00e019290ca8e6c7c6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad04fd3e0455db5e3733014dd399d0a20\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad04fd3e0455db5e3733014dd399d0a20\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad04fd3e0455db5e3733014dd399d0a20\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af7f4e736f61aa4ead2dbfd6fc4ba9ba6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af7f4e736f61aa4ead2dbfd6fc4ba9ba6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af7f4e736f61aa4ead2dbfd6fc4ba9ba6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this interface was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/ExportWorkitemsTool/iConfiguration.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/interface_vsts_demo_builder_1_1_models_1_1_i_configuration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">IConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.IConfiguration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GitRepositoryId</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Identity</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MoveToProject</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PersonalAccessToken</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PickListId</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProcessId</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Project</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Query</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>QueryId</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Team</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UriString</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WorkItemId</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WorkItemIds</b> (defined in <a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">VstsDemoBuilder.Models.IConfiguration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models.IConfiguration Interface Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li><li class=\"navelem\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">IConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models.IConfiguration Interface Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsDemoBuilder.Models.IConfiguration:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.png\" usemap=\"#VstsDemoBuilder.Models.IConfiguration_map\" alt=\"\"/>\n  <map id=\"VstsDemoBuilder.Models.IConfiguration_map\" name=\"VstsDemoBuilder.Models.IConfiguration_map\">\n<area href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\" alt=\"VstsDemoBuilder.Models.Configuration\" shape=\"rect\" coords=\"0,56,236,80\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a89ee71042990665905fbf2213963fc4f\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a89ee71042990665905fbf2213963fc4f\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a89ee71042990665905fbf2213963fc4f\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1449400a879343330ea98cba0598a83d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1449400a879343330ea98cba0598a83d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1449400a879343330ea98cba0598a83d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a5f0c8c64f8cf50cc4a5f2412b71a75c0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a5f0c8c64f8cf50cc4a5f2412b71a75c0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a5f0c8c64f8cf50cc4a5f2412b71a75c0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a269cb80f7418ecf4c172e45a00f06f28\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a269cb80f7418ecf4c172e45a00f06f28\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a269cb80f7418ecf4c172e45a00f06f28\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9f489f687fa444323ddeceb22e5a11d9\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9f489f687fa444323ddeceb22e5a11d9\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9f489f687fa444323ddeceb22e5a11d9\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7749ca3465bb17e7fc2417f7211e0715\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7749ca3465bb17e7fc2417f7211e0715\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7749ca3465bb17e7fc2417f7211e0715\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ace8abf7dd9b043defbd2a54f0e0f3f22\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ace8abf7dd9b043defbd2a54f0e0f3f22\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ace8abf7dd9b043defbd2a54f0e0f3f22\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a11d38bf8e1537bda5bc8f09a9cb9ed54\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a11d38bf8e1537bda5bc8f09a9cb9ed54\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a11d38bf8e1537bda5bc8f09a9cb9ed54\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a15c943c58b8136080dac36039fd1fb4d\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a15c943c58b8136080dac36039fd1fb4d\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a15c943c58b8136080dac36039fd1fb4d\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a23acfb4a7652b43337df401da10e49a5\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a23acfb4a7652b43337df401da10e49a5\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a23acfb4a7652b43337df401da10e49a5\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ac5390f18f0b97ff00d0ea96d380da39a\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ac5390f18f0b97ff00d0ea96d380da39a\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ac5390f18f0b97ff00d0ea96d380da39a\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a129b27cd04dbbae4d176fa4ce97ef2b6\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a129b27cd04dbbae4d176fa4ce97ef2b6\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a129b27cd04dbbae4d176fa4ce97ef2b6\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aedb08f3de9e8cc57587feb6edea899fe\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aedb08f3de9e8cc57587feb6edea899fe\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aedb08f3de9e8cc57587feb6edea899fe\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a7339cd106daaa6d93e722ffc0ebe8286\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a7339cd106daaa6d93e722ffc0ebe8286\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a7339cd106daaa6d93e722ffc0ebe8286\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this interface was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsDemoBuilder/Models/IConfiguration.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/interface_vsts_rest_a_p_i_1_1_i_configuration-members.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Member List</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.IConfiguration Member List</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n\n<p>This is the complete list of members for <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>, including all inherited members.</p>\n<table class=\"directory\">\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>FilePath</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>GitRepositoryId</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Identity</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>MoveToProject</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>PersonalAccessToken</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>PickListId</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>ProcessId</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>Project</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Query</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>QueryId</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>Team</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>UriString</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>VersionNumber</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\"><td class=\"entry\"><b>WorkItemId</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n  <tr bgcolor=\"#f0f0f0\" class=\"even\"><td class=\"entry\"><b>WorkItemIds</b> (defined in <a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a>)</td><td class=\"entry\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">VstsRestAPI.IConfiguration</a></td><td class=\"entry\"></td></tr>\n</table></div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/interface_vsts_rest_a_p_i_1_1_i_configuration.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.IConfiguration Interface Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#properties\">Properties</a> &#124;\n<a href=\"interface_vsts_rest_a_p_i_1_1_i_configuration-members.html\">List of all members</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.IConfiguration Interface Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"dynheader\">\nInheritance diagram for VstsRestAPI.IConfiguration:</div>\n<div class=\"dyncontent\">\n <div class=\"center\">\n  <img src=\"interface_vsts_rest_a_p_i_1_1_i_configuration.png\" usemap=\"#VstsRestAPI.IConfiguration_map\" alt=\"\"/>\n  <map id=\"VstsRestAPI.IConfiguration_map\" name=\"VstsRestAPI.IConfiguration_map\">\n<area href=\"class_vsts_rest_a_p_i_1_1_configuration.html\" alt=\"VstsRestAPI.Configuration\" shape=\"rect\" coords=\"0,56,163,80\"/>\n</map>\n </div></div>\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"properties\"></a>\nProperties</h2></td></tr>\n<tr class=\"memitem:a813691cf9d17074e51e686d2a5cf985c\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a813691cf9d17074e51e686d2a5cf985c\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PersonalAccessToken</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a813691cf9d17074e51e686d2a5cf985c\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad66b04853ab66c25d6731cd4383e88dd\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad66b04853ab66c25d6731cd4383e88dd\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Project</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad66b04853ab66c25d6731cd4383e88dd\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a9dd2efb330ae6a1d7c76717ae0139f94\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a9dd2efb330ae6a1d7c76717ae0139f94\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Team</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a9dd2efb330ae6a1d7c76717ae0139f94\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad27fccf7e4eead048623466bacc9b048\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad27fccf7e4eead048623466bacc9b048\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>MoveToProject</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad27fccf7e4eead048623466bacc9b048\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a1d926b3b5ab5b5a9a06eab549800731b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a1d926b3b5ab5b5a9a06eab549800731b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>UriString</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a1d926b3b5ab5b5a9a06eab549800731b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa08db220ec11bd517af3461990ddce69\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa08db220ec11bd517af3461990ddce69\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Query</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa08db220ec11bd517af3461990ddce69\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a144a3fc93020217a0be6cf40c2a2ee4b\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a144a3fc93020217a0be6cf40c2a2ee4b\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Identity</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a144a3fc93020217a0be6cf40c2a2ee4b\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a815952327d0b6e0b36ce010c796291ef\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a815952327d0b6e0b36ce010c796291ef\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemIds</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a815952327d0b6e0b36ce010c796291ef\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:af9784ef28fff8504eed017e13e73d004\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"af9784ef28fff8504eed017e13e73d004\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WorkItemId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:af9784ef28fff8504eed017e13e73d004\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:ad52b4d6075b65fbe76d78e364a2eea91\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"ad52b4d6075b65fbe76d78e364a2eea91\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>ProcessId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:ad52b4d6075b65fbe76d78e364a2eea91\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a89f0800499d73104d3873334063bc3a0\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a89f0800499d73104d3873334063bc3a0\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>PickListId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a89f0800499d73104d3873334063bc3a0\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aec7a1ed105d4f03c76e7b45baf12b741\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aec7a1ed105d4f03c76e7b45baf12b741\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>QueryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aec7a1ed105d4f03c76e7b45baf12b741\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:aa273021f5daa05ba5d3e76043ec8e8ce\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"aa273021f5daa05ba5d3e76043ec8e8ce\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>FilePath</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:aa273021f5daa05ba5d3e76043ec8e8ce\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a78f3ee27299039ca4c7fa8d51b998421\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a78f3ee27299039ca4c7fa8d51b998421\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>GitRepositoryId</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a78f3ee27299039ca4c7fa8d51b998421\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:a0c8e680fdd299351251205e7648a5279\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a0c8e680fdd299351251205e7648a5279\"></a>\nstring&#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>VersionNumber</b><code> [get, set]</code></td></tr>\n<tr class=\"separator:a0c8e680fdd299351251205e7648a5279\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n<hr/>The documentation for this interface was generated from the following file:<ul>\n<li>D:/Canarys/Projects/DemoGeneratorOauth/VstsRestAPI/IConfiguration.cs</li>\n</ul>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/jquery.js",
    "content": "/*\n @licstart  The following is the entire license notice for the\n JavaScript code in this file.\n\n Copyright (C) 1997-2017 by Dimitri van Heesch\n\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n\n The above copyright notice and this permission notice shall be included\n in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n @licend  The above is the entire license notice\n for the JavaScript code in this file\n */\n/*!\n * jQuery JavaScript Library v1.7.1\n * http://jquery.com/\n *\n * Copyright 2011, John Resig\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n * Copyright 2011, The Dojo Foundation\n * Released under the MIT, BSD, and GPL Licenses.\n *\n * Date: Mon Nov 21 21:11:03 2011 -0500\n */\n(function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\\w\\W]+>)[^>]*$|#([\\w\\-]*)$)/,bM=/\\S/,bI=/^\\s+/,bE=/\\s+$/,bA=/^<(\\w+)\\s*\\/?>(?:<\\/\\1>)?$/,bN=/^[\\],:{}\\s]*$/,bW=/\\\\(?:[\"\\\\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g,bJ=/(?:^|:|,)(?:\\s*\\[)+/g,by=/(webkit)[ \\/]([\\w.]+)/,bR=/(opera)(?:.*version)?[ \\/]([\\w.]+)/,bQ=/(msie) ([\\w.]+)/,bS=/(mozilla)(?:.*? rv:([\\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+\"\").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0===\"body\"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0===\"string\"){if(b0.charAt(0)===\"<\"&&b0.charAt(b0.length-1)===\">\"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:\"\",jquery:\"1.7.1\",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3===\"find\"){b2.selector=this.selector+(this.selector?\" \":\"\")+b0}else{if(b3){b2.selector=this.selector+\".\"+b3+\"(\"+b0+\")\"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:function(b0){b0=+b0;return b0===-1?this.slice(b0):this.slice(b0,b0+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(bK.apply(this,arguments),\"slice\",bK.call(arguments).join(\",\"))},map:function(b0){return this.pushStack(bF.map(this,function(b2,b1){return b0.call(b2,b1,b2)}))},end:function(){return this.prevObject||this.constructor(null)},push:bz,sort:[].sort,splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,b7,b5=arguments[0]||{},b4=1,b3=arguments.length,b8=false;if(typeof b5===\"boolean\"){b8=b5;b5=arguments[1]||{};b4=2}if(typeof b5!==\"object\"&&!bF.isFunction(b5)){b5={}}if(b3===b4){b5=this;--b4}for(;b4<b3;b4++){if((b9=arguments[b4])!=null){for(b2 in b9){b0=b5[b2];b1=b9[b2];if(b5===b1){continue}if(b8&&b1&&(bF.isPlainObject(b1)||(b6=bF.isArray(b1)))){if(b6){b6=false;b7=b0&&bF.isArray(b0)?b0:[]}else{b7=b0&&bF.isPlainObject(b0)?b0:{}}b5[b2]=bF.extend(b8,b7,b1)}else{if(b1!==L){b5[b2]=b1}}}}}return b5};bF.extend({noConflict:function(b0){if(bb.$===bF){bb.$=bH}if(b0&&bb.jQuery===bF){bb.jQuery=bU}return bF},isReady:false,readyWait:1,holdReady:function(b0){if(b0){bF.readyWait++}else{bF.ready(true)}},ready:function(b0){if((b0===true&&!--bF.readyWait)||(b0!==true&&!bF.isReady)){if(!av.body){return setTimeout(bF.ready,1)}bF.isReady=true;if(b0!==true&&--bF.readyWait>0){return}bC.fireWith(av,[bF]);if(bF.fn.trigger){bF(av).trigger(\"ready\").off(\"ready\")}}},bindReady:function(){if(bC){return}bC=bF.Callbacks(\"once memory\");if(av.readyState===\"complete\"){return setTimeout(bF.ready,1)}if(av.addEventListener){av.addEventListener(\"DOMContentLoaded\",e,false);bb.addEventListener(\"load\",bF.ready,false)}else{if(av.attachEvent){av.attachEvent(\"onreadystatechange\",e);bb.attachEvent(\"onload\",bF.ready);var b0=false;try{b0=bb.frameElement==null}catch(b1){}if(av.documentElement.doScroll&&b0){bw()}}}},isFunction:function(b0){return bF.type(b0)===\"function\"},isArray:Array.isArray||function(b0){return bF.type(b0)===\"array\"},isWindow:function(b0){return b0&&typeof b0===\"object\"&&\"setInterval\" in b0},isNumeric:function(b0){return !isNaN(parseFloat(b0))&&isFinite(b0)},type:function(b0){return b0==null?String(b0):bx[bL.call(b0)]||\"object\"},isPlainObject:function(b2){if(!b2||bF.type(b2)!==\"object\"||b2.nodeType||bF.isWindow(b2)){return false}try{if(b2.constructor&&!bG.call(b2,\"constructor\")&&!bG.call(b2.constructor.prototype,\"isPrototypeOf\")){return false}}catch(b1){return false}var b0;for(b0 in b2){}return b0===L||bG.call(b2,b0)},isEmptyObject:function(b1){for(var b0 in b1){return false}return true},error:function(b0){throw new Error(b0)},parseJSON:function(b0){if(typeof b0!==\"string\"||!b0){return null}b0=bF.trim(b0);if(bb.JSON&&bb.JSON.parse){return bb.JSON.parse(b0)}if(bN.test(b0.replace(bW,\"@\").replace(bP,\"]\").replace(bJ,\"\"))){return(new Function(\"return \"+b0))()}bF.error(\"Invalid JSON: \"+b0)},parseXML:function(b2){var b0,b1;try{if(bb.DOMParser){b1=new DOMParser();b0=b1.parseFromString(b2,\"text/xml\")}else{b0=new ActiveXObject(\"Microsoft.XMLDOM\");b0.async=\"false\";b0.loadXML(b2)}}catch(b3){b0=L}if(!b0||!b0.documentElement||b0.getElementsByTagName(\"parsererror\").length){bF.error(\"Invalid XML: \"+b2)}return b0},noop:function(){},globalEval:function(b0){if(b0&&bM.test(b0)){(bb.execScript||function(b1){bb[\"eval\"].call(bb,b1)})(b0)}},camelCase:function(b0){return b0.replace(bZ,\"ms-\").replace(bB,bT)},nodeName:function(b1,b0){return b1.nodeName&&b1.nodeName.toUpperCase()===b0.toUpperCase()},each:function(b3,b6,b2){var b1,b4=0,b5=b3.length,b0=b5===L||bF.isFunction(b3);if(b2){if(b0){for(b1 in b3){if(b6.apply(b3[b1],b2)===false){break}}}else{for(;b4<b5;){if(b6.apply(b3[b4++],b2)===false){break}}}}else{if(b0){for(b1 in b3){if(b6.call(b3[b1],b1,b3[b1])===false){break}}}else{for(;b4<b5;){if(b6.call(b3[b4],b4,b3[b4++])===false){break}}}}return b3},trim:bO?function(b0){return b0==null?\"\":bO.call(b0)}:function(b0){return b0==null?\"\":b0.toString().replace(bI,\"\").replace(bE,\"\")},makeArray:function(b3,b1){var b0=b1||[];if(b3!=null){var b2=bF.type(b3);if(b3.length==null||b2===\"string\"||b2===\"function\"||b2===\"regexp\"||bF.isWindow(b3)){bz.call(b0,b3)}else{bF.merge(b0,b3)}}return b0},inArray:function(b2,b3,b1){var b0;if(b3){if(bv){return bv.call(b3,b2,b1)}b0=b3.length;b1=b1?b1<0?Math.max(0,b0+b1):b1:0;for(;b1<b0;b1++){if(b1 in b3&&b3[b1]===b2){return b1}}}return -1},merge:function(b4,b2){var b3=b4.length,b1=0;if(typeof b2.length===\"number\"){for(var b0=b2.length;b1<b0;b1++){b4[b3++]=b2[b1]}}else{while(b2[b1]!==L){b4[b3++]=b2[b1++]}}b4.length=b3;return b4},grep:function(b1,b6,b0){var b2=[],b5;b0=!!b0;for(var b3=0,b4=b1.length;b3<b4;b3++){b5=!!b6(b1[b3],b3);if(b0!==b5){b2.push(b1[b3])}}return b2},map:function(b0,b7,b8){var b5,b6,b4=[],b2=0,b1=b0.length,b3=b0 instanceof bF||b1!==L&&typeof b1===\"number\"&&((b1>0&&b0[0]&&b0[b1-1])||b1===0||bF.isArray(b0));if(b3){for(;b2<b1;b2++){b5=b7(b0[b2],b2,b8);if(b5!=null){b4[b4.length]=b5}}}else{for(b6 in b0){b5=b7(b0[b6],b6,b8);if(b5!=null){b4[b4.length]=b5}}}return b4.concat.apply([],b4)},guid:1,proxy:function(b4,b3){if(typeof b3===\"string\"){var b2=b4[b3];b3=b4;b4=b2}if(!bF.isFunction(b4)){return L}var b0=bK.call(arguments,2),b1=function(){return b4.apply(b3,b0.concat(bK.call(arguments)))};b1.guid=b4.guid=b4.guid||b1.guid||bF.guid++;return b1},access:function(b0,b8,b6,b2,b5,b7){var b1=b0.length;if(typeof b8===\"object\"){for(var b3 in b8){bF.access(b0,b3,b8[b3],b2,b5,b6)}return b0}if(b6!==L){b2=!b7&&b2&&bF.isFunction(b6);for(var b4=0;b4<b1;b4++){b5(b0[b4],b8,b2?b6.call(b0[b4],b4,b5(b0[b4],b8)):b6,b7)}return b0}return b1?b5(b0[0],b8):L},now:function(){return(new Date()).getTime()},uaMatch:function(b1){b1=b1.toLowerCase();var b0=by.exec(b1)||bR.exec(b1)||bQ.exec(b1)||b1.indexOf(\"compatible\")<0&&bS.exec(b1)||[];return{browser:b0[1]||\"\",version:b0[2]||\"0\"}},sub:function(){function b0(b3,b4){return new b0.fn.init(b3,b4)}bF.extend(true,b0,this);b0.superclass=this;b0.fn=b0.prototype=this();b0.fn.constructor=b0;b0.sub=this.sub;b0.fn.init=function b2(b3,b4){if(b4&&b4 instanceof bF&&!(b4 instanceof b0)){b4=b0(b4)}return bF.fn.init.call(this,b3,b4,b1)};b0.fn.init.prototype=b0.fn;var b1=b0(av);return b0},browser:{}});bF.each(\"Boolean Number String Function Array Date RegExp Object\".split(\" \"),function(b1,b0){bx[\"[object \"+b0+\"]\"]=b0.toLowerCase()});bV=bF.uaMatch(bX);if(bV.browser){bF.browser[bV.browser]=true;bF.browser.version=bV.version}if(bF.browser.webkit){bF.browser.safari=true}if(bM.test(\"\\xA0\")){bI=/^[\\s\\xA0]+/;bE=/[\\s\\xA0]+$/}bD=bF(av);if(av.addEventListener){e=function(){av.removeEventListener(\"DOMContentLoaded\",e,false);bF.ready()}}else{if(av.attachEvent){e=function(){if(av.readyState===\"complete\"){av.detachEvent(\"onreadystatechange\",e);bF.ready()}}}}function bw(){if(bF.isReady){return}try{av.documentElement.doScroll(\"left\")}catch(b0){setTimeout(bw,1);return}bF.ready()}return bF})();var a2={};function X(e){var bv=a2[e]={},bw,bx;e=e.split(/\\s+/);for(bw=0,bx=e.length;bw<bx;bw++){bv[e[bw]]=true}return bv}b.Callbacks=function(bw){bw=bw?(a2[bw]||X(bw)):{};var bB=[],bC=[],bx,by,bv,bz,bA,bE=function(bF){var bG,bJ,bI,bH,bK;for(bG=0,bJ=bF.length;bG<bJ;bG++){bI=bF[bG];bH=b.type(bI);if(bH===\"array\"){bE(bI)}else{if(bH===\"function\"){if(!bw.unique||!bD.has(bI)){bB.push(bI)}}}}},e=function(bG,bF){bF=bF||[];bx=!bw.memory||[bG,bF];by=true;bA=bv||0;bv=0;bz=bB.length;for(;bB&&bA<bz;bA++){if(bB[bA].apply(bG,bF)===false&&bw.stopOnFalse){bx=true;break}}by=false;if(bB){if(!bw.once){if(bC&&bC.length){bx=bC.shift();bD.fireWith(bx[0],bx[1])}}else{if(bx===true){bD.disable()}else{bB=[]}}}},bD={add:function(){if(bB){var bF=bB.length;bE(arguments);if(by){bz=bB.length}else{if(bx&&bx!==true){bv=bF;e(bx[0],bx[1])}}}return this},remove:function(){if(bB){var bF=arguments,bH=0,bI=bF.length;for(;bH<bI;bH++){for(var bG=0;bG<bB.length;bG++){if(bF[bH]===bB[bG]){if(by){if(bG<=bz){bz--;if(bG<=bA){bA--}}}bB.splice(bG--,1);if(bw.unique){break}}}}}return this},has:function(bG){if(bB){var bF=0,bH=bB.length;for(;bF<bH;bF++){if(bG===bB[bF]){return true}}}return false},empty:function(){bB=[];return this},disable:function(){bB=bC=bx=L;return this},disabled:function(){return !bB},lock:function(){bC=L;if(!bx||bx===true){bD.disable()}return this},locked:function(){return !bC},fireWith:function(bG,bF){if(bC){if(by){if(!bw.once){bC.push([bG,bF])}}else{if(!(bw.once&&bx)){e(bG,bF)}}}return this},fire:function(){bD.fireWith(this,arguments);return this},fired:function(){return !!bx}};return bD};var aJ=[].slice;b.extend({Deferred:function(by){var bx=b.Callbacks(\"once memory\"),bw=b.Callbacks(\"once memory\"),bv=b.Callbacks(\"memory\"),e=\"pending\",bA={resolve:bx,reject:bw,notify:bv},bC={done:bx.add,fail:bw.add,progress:bv.add,state:function(){return e},isResolved:bx.fired,isRejected:bw.fired,then:function(bE,bD,bF){bB.done(bE).fail(bD).progress(bF);return this},always:function(){bB.done.apply(bB,arguments).fail.apply(bB,arguments);return this},pipe:function(bF,bE,bD){return b.Deferred(function(bG){b.each({done:[bF,\"resolve\"],fail:[bE,\"reject\"],progress:[bD,\"notify\"]},function(bI,bL){var bH=bL[0],bK=bL[1],bJ;if(b.isFunction(bH)){bB[bI](function(){bJ=bH.apply(this,arguments);if(bJ&&b.isFunction(bJ.promise)){bJ.promise().then(bG.resolve,bG.reject,bG.notify)}else{bG[bK+\"With\"](this===bB?bG:this,[bJ])}})}else{bB[bI](bG[bK])}})}).promise()},promise:function(bE){if(bE==null){bE=bC}else{for(var bD in bC){bE[bD]=bC[bD]}}return bE}},bB=bC.promise({}),bz;for(bz in bA){bB[bz]=bA[bz].fire;bB[bz+\"With\"]=bA[bz].fireWith}bB.done(function(){e=\"resolved\"},bw.disable,bv.lock).fail(function(){e=\"rejected\"},bx.disable,bv.lock);if(by){by.call(bB,bB)}return bB},when:function(bA){var bx=aJ.call(arguments,0),bv=0,e=bx.length,bB=new Array(e),bw=e,by=e,bC=e<=1&&bA&&b.isFunction(bA.promise)?bA:b.Deferred(),bE=bC.promise();function bD(bF){return function(bG){bx[bF]=arguments.length>1?aJ.call(arguments,0):bG;if(!(--bw)){bC.resolveWith(bC,bx)}}}function bz(bF){return function(bG){bB[bF]=arguments.length>1?aJ.call(arguments,0):bG;bC.notifyWith(bE,bB)}}if(e>1){for(;bv<e;bv++){if(bx[bv]&&bx[bv].promise&&b.isFunction(bx[bv].promise)){bx[bv].promise().then(bD(bv),bC.reject,bz(bv))}else{--bw}}if(!bw){bC.resolveWith(bC,bx)}}else{if(bC!==bA){bC.resolveWith(bC,e?[bA]:[])}}return bE}});b.support=(function(){var bJ,bI,bF,bG,bx,bE,bA,bD,bz,bK,bB,by,bw,bv=av.createElement(\"div\"),bH=av.documentElement;bv.setAttribute(\"className\",\"t\");bv.innerHTML=\"   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>\";bI=bv.getElementsByTagName(\"*\");bF=bv.getElementsByTagName(\"a\")[0];if(!bI||!bI.length||!bF){return{}}bG=av.createElement(\"select\");bx=bG.appendChild(av.createElement(\"option\"));bE=bv.getElementsByTagName(\"input\")[0];bJ={leadingWhitespace:(bv.firstChild.nodeType===3),tbody:!bv.getElementsByTagName(\"tbody\").length,htmlSerialize:!!bv.getElementsByTagName(\"link\").length,style:/top/.test(bF.getAttribute(\"style\")),hrefNormalized:(bF.getAttribute(\"href\")===\"/a\"),opacity:/^0.55/.test(bF.style.opacity),cssFloat:!!bF.style.cssFloat,checkOn:(bE.value===\"on\"),optSelected:bx.selected,getSetAttribute:bv.className!==\"t\",enctype:!!av.createElement(\"form\").enctype,html5Clone:av.createElement(\"nav\").cloneNode(true).outerHTML!==\"<:nav></:nav>\",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};bE.checked=true;bJ.noCloneChecked=bE.cloneNode(true).checked;bG.disabled=true;bJ.optDisabled=!bx.disabled;try{delete bv.test}catch(bC){bJ.deleteExpando=false}if(!bv.addEventListener&&bv.attachEvent&&bv.fireEvent){bv.attachEvent(\"onclick\",function(){bJ.noCloneEvent=false});bv.cloneNode(true).fireEvent(\"onclick\")}bE=av.createElement(\"input\");bE.value=\"t\";bE.setAttribute(\"type\",\"radio\");bJ.radioValue=bE.value===\"t\";bE.setAttribute(\"checked\",\"checked\");bv.appendChild(bE);bD=av.createDocumentFragment();bD.appendChild(bv.lastChild);bJ.checkClone=bD.cloneNode(true).cloneNode(true).lastChild.checked;bJ.appendChecked=bE.checked;bD.removeChild(bE);bD.appendChild(bv);bv.innerHTML=\"\";if(bb.getComputedStyle){bA=av.createElement(\"div\");bA.style.width=\"0\";bA.style.marginRight=\"0\";bv.style.width=\"2px\";bv.appendChild(bA);bJ.reliableMarginRight=(parseInt((bb.getComputedStyle(bA,null)||{marginRight:0}).marginRight,10)||0)===0}if(bv.attachEvent){for(by in {submit:1,change:1,focusin:1}){bB=\"on\"+by;bw=(bB in bv);if(!bw){bv.setAttribute(bB,\"return;\");bw=(typeof bv[bB]===\"function\")}bJ[by+\"Bubbles\"]=bw}}bD.removeChild(bv);bD=bG=bx=bA=bv=bE=null;b(function(){var bM,bU,bV,bT,bN,bO,bL,bS,bR,e,bP,bQ=av.getElementsByTagName(\"body\")[0];if(!bQ){return}bL=1;bS=\"position:absolute;top:0;left:0;width:1px;height:1px;margin:0;\";bR=\"visibility:hidden;border:0;\";e=\"style='\"+bS+\"border:5px solid #000;padding:0;'\";bP=\"<div \"+e+\"><div></div></div><table \"+e+\" cellpadding='0' cellspacing='0'><tr><td></td></tr></table>\";bM=av.createElement(\"div\");bM.style.cssText=bR+\"width:0;height:0;position:static;top:0;margin-top:\"+bL+\"px\";bQ.insertBefore(bM,bQ.firstChild);bv=av.createElement(\"div\");bM.appendChild(bv);bv.innerHTML=\"<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>\";bz=bv.getElementsByTagName(\"td\");bw=(bz[0].offsetHeight===0);bz[0].style.display=\"\";bz[1].style.display=\"none\";bJ.reliableHiddenOffsets=bw&&(bz[0].offsetHeight===0);bv.innerHTML=\"\";bv.style.width=bv.style.paddingLeft=\"1px\";b.boxModel=bJ.boxModel=bv.offsetWidth===2;if(typeof bv.style.zoom!==\"undefined\"){bv.style.display=\"inline\";bv.style.zoom=1;bJ.inlineBlockNeedsLayout=(bv.offsetWidth===2);bv.style.display=\"\";bv.innerHTML=\"<div style='width:4px;'></div>\";bJ.shrinkWrapBlocks=(bv.offsetWidth!==2)}bv.style.cssText=bS+bR;bv.innerHTML=bP;bU=bv.firstChild;bV=bU.firstChild;bN=bU.nextSibling.firstChild.firstChild;bO={doesNotAddBorder:(bV.offsetTop!==5),doesAddBorderForTableAndCells:(bN.offsetTop===5)};bV.style.position=\"fixed\";bV.style.top=\"20px\";bO.fixedPosition=(bV.offsetTop===20||bV.offsetTop===15);bV.style.position=bV.style.top=\"\";bU.style.overflow=\"hidden\";bU.style.position=\"relative\";bO.subtractsBorderForOverflowNotVisible=(bV.offsetTop===-5);bO.doesNotIncludeMarginInBodyOffset=(bQ.offsetTop!==bL);bQ.removeChild(bM);bv=bM=null;b.extend(bJ,bO)});return bJ})();var aS=/^(?:\\{.*\\}|\\[.*\\])$/,aA=/([A-Z])/g;b.extend({cache:{},uuid:0,expando:\"jQuery\"+(b.fn.jquery+Math.random()).replace(/\\D/g,\"\"),noData:{embed:true,object:\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\",applet:true},hasData:function(e){e=e.nodeType?b.cache[e[b.expando]]:e[b.expando];return !!e&&!S(e)},data:function(bx,bv,bz,by){if(!b.acceptData(bx)){return}var bG,bA,bD,bE=b.expando,bC=typeof bv===\"string\",bF=bx.nodeType,e=bF?b.cache:bx,bw=bF?bx[bE]:bx[bE]&&bE,bB=bv===\"events\";if((!bw||!e[bw]||(!bB&&!by&&!e[bw].data))&&bC&&bz===L){return}if(!bw){if(bF){bx[bE]=bw=++b.uuid}else{bw=bE}}if(!e[bw]){e[bw]={};if(!bF){e[bw].toJSON=b.noop}}if(typeof bv===\"object\"||typeof bv===\"function\"){if(by){e[bw]=b.extend(e[bw],bv)}else{e[bw].data=b.extend(e[bw].data,bv)}}bG=bA=e[bw];if(!by){if(!bA.data){bA.data={}}bA=bA.data}if(bz!==L){bA[b.camelCase(bv)]=bz}if(bB&&!bA[bv]){return bG.events}if(bC){bD=bA[bv];if(bD==null){bD=bA[b.camelCase(bv)]}}else{bD=bA}return bD},removeData:function(bx,bv,by){if(!b.acceptData(bx)){return}var bB,bA,bz,bC=b.expando,bD=bx.nodeType,e=bD?b.cache:bx,bw=bD?bx[bC]:bC;if(!e[bw]){return}if(bv){bB=by?e[bw]:e[bw].data;if(bB){if(!b.isArray(bv)){if(bv in bB){bv=[bv]}else{bv=b.camelCase(bv);if(bv in bB){bv=[bv]}else{bv=bv.split(\" \")}}}for(bA=0,bz=bv.length;bA<bz;bA++){delete bB[bv[bA]]}if(!(by?S:b.isEmptyObject)(bB)){return}}}if(!by){delete e[bw].data;if(!S(e[bw])){return}}if(b.support.deleteExpando||!e.setInterval){delete e[bw]}else{e[bw]=null}if(bD){if(b.support.deleteExpando){delete bx[bC]}else{if(bx.removeAttribute){bx.removeAttribute(bC)}else{bx[bC]=null}}}},_data:function(bv,e,bw){return b.data(bv,e,bw,true)},acceptData:function(bv){if(bv.nodeName){var e=b.noData[bv.nodeName.toLowerCase()];if(e){return !(e===true||bv.getAttribute(\"classid\")!==e)}}return true}});b.fn.extend({data:function(by,bA){var bB,e,bw,bz=null;if(typeof by===\"undefined\"){if(this.length){bz=b.data(this[0]);if(this[0].nodeType===1&&!b._data(this[0],\"parsedAttrs\")){e=this[0].attributes;for(var bx=0,bv=e.length;bx<bv;bx++){bw=e[bx].name;if(bw.indexOf(\"data-\")===0){bw=b.camelCase(bw.substring(5));a5(this[0],bw,bz[bw])}}b._data(this[0],\"parsedAttrs\",true)}}return bz}else{if(typeof by===\"object\"){return this.each(function(){b.data(this,by)})}}bB=by.split(\".\");bB[1]=bB[1]?\".\"+bB[1]:\"\";if(bA===L){bz=this.triggerHandler(\"getData\"+bB[1]+\"!\",[bB[0]]);if(bz===L&&this.length){bz=b.data(this[0],by);bz=a5(this[0],by,bz)}return bz===L&&bB[1]?this.data(bB[0]):bz}else{return this.each(function(){var bC=b(this),bD=[bB[0],bA];bC.triggerHandler(\"setData\"+bB[1]+\"!\",bD);b.data(this,by,bA);bC.triggerHandler(\"changeData\"+bB[1]+\"!\",bD)})}},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function a5(bx,bw,by){if(by===L&&bx.nodeType===1){var bv=\"data-\"+bw.replace(aA,\"-$1\").toLowerCase();by=bx.getAttribute(bv);if(typeof by===\"string\"){try{by=by===\"true\"?true:by===\"false\"?false:by===\"null\"?null:b.isNumeric(by)?parseFloat(by):aS.test(by)?b.parseJSON(by):by}catch(bz){}b.data(bx,bw,by)}else{by=L}}return by}function S(bv){for(var e in bv){if(e===\"data\"&&b.isEmptyObject(bv[e])){continue}if(e!==\"toJSON\"){return false}}return true}function bi(by,bx,bA){var bw=bx+\"defer\",bv=bx+\"queue\",e=bx+\"mark\",bz=b._data(by,bw);if(bz&&(bA===\"queue\"||!b._data(by,bv))&&(bA===\"mark\"||!b._data(by,e))){setTimeout(function(){if(!b._data(by,bv)&&!b._data(by,e)){b.removeData(by,bw,true);bz.fire()}},0)}}b.extend({_mark:function(bv,e){if(bv){e=(e||\"fx\")+\"mark\";b._data(bv,e,(b._data(bv,e)||0)+1)}},_unmark:function(by,bx,bv){if(by!==true){bv=bx;bx=by;by=false}if(bx){bv=bv||\"fx\";var e=bv+\"mark\",bw=by?0:((b._data(bx,e)||1)-1);if(bw){b._data(bx,e,bw)}else{b.removeData(bx,e,true);bi(bx,bv,\"mark\")}}},queue:function(bv,e,bx){var bw;if(bv){e=(e||\"fx\")+\"queue\";bw=b._data(bv,e);if(bx){if(!bw||b.isArray(bx)){bw=b._data(bv,e,b.makeArray(bx))}else{bw.push(bx)}}return bw||[]}},dequeue:function(by,bx){bx=bx||\"fx\";var bv=b.queue(by,bx),bw=bv.shift(),e={};if(bw===\"inprogress\"){bw=bv.shift()}if(bw){if(bx===\"fx\"){bv.unshift(\"inprogress\")}b._data(by,bx+\".run\",e);bw.call(by,function(){b.dequeue(by,bx)},e)}if(!bv.length){b.removeData(by,bx+\"queue \"+bx+\".run\",true);bi(by,bx,\"queue\")}}});b.fn.extend({queue:function(e,bv){if(typeof e!==\"string\"){bv=e;e=\"fx\"}if(bv===L){return b.queue(this[0],e)}return this.each(function(){var bw=b.queue(this,e,bv);if(e===\"fx\"&&bw[0]!==\"inprogress\"){b.dequeue(this,e)}})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(bv,e){bv=b.fx?b.fx.speeds[bv]||bv:bv;e=e||\"fx\";return this.queue(e,function(bx,bw){var by=setTimeout(bx,bv);bw.stop=function(){clearTimeout(by)}})},clearQueue:function(e){return this.queue(e||\"fx\",[])},promise:function(bD,bw){if(typeof bD!==\"string\"){bw=bD;bD=L}bD=bD||\"fx\";var e=b.Deferred(),bv=this,by=bv.length,bB=1,bz=bD+\"defer\",bA=bD+\"queue\",bC=bD+\"mark\",bx;function bE(){if(!(--bB)){e.resolveWith(bv,[bv])}}while(by--){if((bx=b.data(bv[by],bz,L,true)||(b.data(bv[by],bA,L,true)||b.data(bv[by],bC,L,true))&&b.data(bv[by],bz,b.Callbacks(\"once memory\"),true))){bB++;bx.add(bE)}}bE();return e.promise()}});var aP=/[\\n\\t\\r]/g,af=/\\s+/,aU=/\\r/g,g=/^(?:button|input)$/i,D=/^(?:button|input|object|select|textarea)$/i,l=/^a(?:rea)?$/i,ao=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,F=b.support.getSetAttribute,be,aY,aF;b.fn.extend({attr:function(e,bv){return b.access(this,e,bv,true,b.attr)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,bv){return b.access(this,e,bv,true,b.prop)},removeProp:function(e){e=b.propFix[e]||e;return this.each(function(){try{this[e]=L;delete this[e]}catch(bv){}})},addClass:function(by){var bA,bw,bv,bx,bz,bB,e;if(b.isFunction(by)){return this.each(function(bC){b(this).addClass(by.call(this,bC,this.className))})}if(by&&typeof by===\"string\"){bA=by.split(af);for(bw=0,bv=this.length;bw<bv;bw++){bx=this[bw];if(bx.nodeType===1){if(!bx.className&&bA.length===1){bx.className=by}else{bz=\" \"+bx.className+\" \";for(bB=0,e=bA.length;bB<e;bB++){if(!~bz.indexOf(\" \"+bA[bB]+\" \")){bz+=bA[bB]+\" \"}}bx.className=b.trim(bz)}}}}return this},removeClass:function(bz){var bA,bw,bv,by,bx,bB,e;if(b.isFunction(bz)){return this.each(function(bC){b(this).removeClass(bz.call(this,bC,this.className))})}if((bz&&typeof bz===\"string\")||bz===L){bA=(bz||\"\").split(af);for(bw=0,bv=this.length;bw<bv;bw++){by=this[bw];if(by.nodeType===1&&by.className){if(bz){bx=(\" \"+by.className+\" \").replace(aP,\" \");for(bB=0,e=bA.length;bB<e;bB++){bx=bx.replace(\" \"+bA[bB]+\" \",\" \")}by.className=b.trim(bx)}else{by.className=\"\"}}}}return this},toggleClass:function(bx,bv){var bw=typeof bx,e=typeof bv===\"boolean\";if(b.isFunction(bx)){return this.each(function(by){b(this).toggleClass(bx.call(this,by,this.className,bv),bv)})}return this.each(function(){if(bw===\"string\"){var bA,bz=0,by=b(this),bB=bv,bC=bx.split(af);while((bA=bC[bz++])){bB=e?bB:!by.hasClass(bA);by[bB?\"addClass\":\"removeClass\"](bA)}}else{if(bw===\"undefined\"||bw===\"boolean\"){if(this.className){b._data(this,\"__className__\",this.className)}this.className=this.className||bx===false?\"\":b._data(this,\"__className__\")||\"\"}}})},hasClass:function(e){var bx=\" \"+e+\" \",bw=0,bv=this.length;for(;bw<bv;bw++){if(this[bw].nodeType===1&&(\" \"+this[bw].className+\" \").replace(aP,\" \").indexOf(bx)>-1){return true}}return false},val:function(bx){var e,bv,by,bw=this[0];if(!arguments.length){if(bw){e=b.valHooks[bw.nodeName.toLowerCase()]||b.valHooks[bw.type];if(e&&\"get\" in e&&(bv=e.get(bw,\"value\"))!==L){return bv}bv=bw.value;return typeof bv===\"string\"?bv.replace(aU,\"\"):bv==null?\"\":bv}return}by=b.isFunction(bx);return this.each(function(bA){var bz=b(this),bB;if(this.nodeType!==1){return}if(by){bB=bx.call(this,bA,bz.val())}else{bB=bx}if(bB==null){bB=\"\"}else{if(typeof bB===\"number\"){bB+=\"\"}else{if(b.isArray(bB)){bB=b.map(bB,function(bC){return bC==null?\"\":bC+\"\"})}}}e=b.valHooks[this.nodeName.toLowerCase()]||b.valHooks[this.type];if(!e||!(\"set\" in e)||e.set(this,bB,\"value\")===L){this.value=bB}})}});b.extend({valHooks:{option:{get:function(e){var bv=e.attributes.value;return !bv||bv.specified?e.value:e.text}},select:{get:function(e){var bA,bv,bz,bx,by=e.selectedIndex,bB=[],bC=e.options,bw=e.type===\"select-one\";if(by<0){return null}bv=bw?by:0;bz=bw?by+1:bC.length;for(;bv<bz;bv++){bx=bC[bv];if(bx.selected&&(b.support.optDisabled?!bx.disabled:bx.getAttribute(\"disabled\")===null)&&(!bx.parentNode.disabled||!b.nodeName(bx.parentNode,\"optgroup\"))){bA=b(bx).val();if(bw){return bA}bB.push(bA)}}if(bw&&!bB.length&&bC.length){return b(bC[by]).val()}return bB},set:function(bv,bw){var e=b.makeArray(bw);b(bv).find(\"option\").each(function(){this.selected=b.inArray(b(this).val(),e)>=0});if(!e.length){bv.selectedIndex=-1}return e}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(bA,bx,bB,bz){var bw,e,by,bv=bA.nodeType;if(!bA||bv===3||bv===8||bv===2){return}if(bz&&bx in b.attrFn){return b(bA)[bx](bB)}if(typeof bA.getAttribute===\"undefined\"){return b.prop(bA,bx,bB)}by=bv!==1||!b.isXMLDoc(bA);if(by){bx=bx.toLowerCase();e=b.attrHooks[bx]||(ao.test(bx)?aY:be)}if(bB!==L){if(bB===null){b.removeAttr(bA,bx);return}else{if(e&&\"set\" in e&&by&&(bw=e.set(bA,bB,bx))!==L){return bw}else{bA.setAttribute(bx,\"\"+bB);return bB}}}else{if(e&&\"get\" in e&&by&&(bw=e.get(bA,bx))!==null){return bw}else{bw=bA.getAttribute(bx);return bw===null?L:bw}}},removeAttr:function(bx,bz){var by,bA,bv,e,bw=0;if(bz&&bx.nodeType===1){bA=bz.toLowerCase().split(af);e=bA.length;for(;bw<e;bw++){bv=bA[bw];if(bv){by=b.propFix[bv]||bv;b.attr(bx,bv,\"\");bx.removeAttribute(F?bv:by);if(ao.test(bv)&&by in bx){bx[by]=false}}}}},attrHooks:{type:{set:function(e,bv){if(g.test(e.nodeName)&&e.parentNode){b.error(\"type property can't be changed\")}else{if(!b.support.radioValue&&bv===\"radio\"&&b.nodeName(e,\"input\")){var bw=e.value;e.setAttribute(\"type\",bv);if(bw){e.value=bw}return bv}}}},value:{get:function(bv,e){if(be&&b.nodeName(bv,\"button\")){return be.get(bv,e)}return e in bv?bv.value:null},set:function(bv,bw,e){if(be&&b.nodeName(bv,\"button\")){return be.set(bv,bw,e)}bv.value=bw}}},propFix:{tabindex:\"tabIndex\",readonly:\"readOnly\",\"for\":\"htmlFor\",\"class\":\"className\",maxlength:\"maxLength\",cellspacing:\"cellSpacing\",cellpadding:\"cellPadding\",rowspan:\"rowSpan\",colspan:\"colSpan\",usemap:\"useMap\",frameborder:\"frameBorder\",contenteditable:\"contentEditable\"},prop:function(bz,bx,bA){var bw,e,by,bv=bz.nodeType;if(!bz||bv===3||bv===8||bv===2){return}by=bv!==1||!b.isXMLDoc(bz);if(by){bx=b.propFix[bx]||bx;e=b.propHooks[bx]}if(bA!==L){if(e&&\"set\" in e&&(bw=e.set(bz,bA,bx))!==L){return bw}else{return(bz[bx]=bA)}}else{if(e&&\"get\" in e&&(bw=e.get(bz,bx))!==null){return bw}else{return bz[bx]}}},propHooks:{tabIndex:{get:function(bv){var e=bv.getAttributeNode(\"tabindex\");return e&&e.specified?parseInt(e.value,10):D.test(bv.nodeName)||l.test(bv.nodeName)&&bv.href?0:L}}}});b.attrHooks.tabindex=b.propHooks.tabIndex;aY={get:function(bv,e){var bx,bw=b.prop(bv,e);return bw===true||typeof bw!==\"boolean\"&&(bx=bv.getAttributeNode(e))&&bx.nodeValue!==false?e.toLowerCase():L},set:function(bv,bx,e){var bw;if(bx===false){b.removeAttr(bv,e)}else{bw=b.propFix[e]||e;if(bw in bv){bv[bw]=true}bv.setAttribute(e,e.toLowerCase())}return e}};if(!F){aF={name:true,id:true};be=b.valHooks.button={get:function(bw,bv){var e;e=bw.getAttributeNode(bv);return e&&(aF[bv]?e.nodeValue!==\"\":e.specified)?e.nodeValue:L},set:function(bw,bx,bv){var e=bw.getAttributeNode(bv);if(!e){e=av.createAttribute(bv);bw.setAttributeNode(e)}return(e.nodeValue=bx+\"\")}};b.attrHooks.tabindex.set=be.set;b.each([\"width\",\"height\"],function(bv,e){b.attrHooks[e]=b.extend(b.attrHooks[e],{set:function(bw,bx){if(bx===\"\"){bw.setAttribute(e,\"auto\");return bx}}})});b.attrHooks.contenteditable={get:be.get,set:function(bv,bw,e){if(bw===\"\"){bw=\"false\"}be.set(bv,bw,e)}}}if(!b.support.hrefNormalized){b.each([\"href\",\"src\",\"width\",\"height\"],function(bv,e){b.attrHooks[e]=b.extend(b.attrHooks[e],{get:function(bx){var bw=bx.getAttribute(e,2);return bw===null?L:bw}})})}if(!b.support.style){b.attrHooks.style={get:function(e){return e.style.cssText.toLowerCase()||L},set:function(e,bv){return(e.style.cssText=\"\"+bv)}}}if(!b.support.optSelected){b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(bv){var e=bv.parentNode;if(e){e.selectedIndex;if(e.parentNode){e.parentNode.selectedIndex}}return null}})}if(!b.support.enctype){b.propFix.enctype=\"encoding\"}if(!b.support.checkOn){b.each([\"radio\",\"checkbox\"],function(){b.valHooks[this]={get:function(e){return e.getAttribute(\"value\")===null?\"on\":e.value}}})}b.each([\"radio\",\"checkbox\"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,bv){if(b.isArray(bv)){return(e.checked=b.inArray(b(e).val(),bv)>=0)}}})});var bd=/^(?:textarea|input|select)$/i,n=/^([^\\.]*)?(?:\\.(.+))?$/,J=/\\bhover(\\.\\S+)?\\b/,aO=/^key/,bf=/^(?:mouse|contextmenu)|click/,T=/^(?:focusinfocus|focusoutblur)$/,U=/^(\\w*)(?:#([\\w\\-]+))?(?:\\.([\\w\\-]+))?$/,Y=function(e){var bv=U.exec(e);if(bv){bv[1]=(bv[1]||\"\").toLowerCase();bv[3]=bv[3]&&new RegExp(\"(?:^|\\\\s)\"+bv[3]+\"(?:\\\\s|$)\")}return bv},j=function(bw,e){var bv=bw.attributes||{};return((!e[1]||bw.nodeName.toLowerCase()===e[1])&&(!e[2]||(bv.id||{}).value===e[2])&&(!e[3]||e[3].test((bv[\"class\"]||{}).value)))},bt=function(e){return b.event.special.hover?e:e.replace(J,\"mouseenter$1 mouseleave$1\")};b.event={add:function(bx,bC,bJ,bA,by){var bD,bB,bK,bI,bH,bF,e,bG,bv,bz,bw,bE;if(bx.nodeType===3||bx.nodeType===8||!bC||!bJ||!(bD=b._data(bx))){return}if(bJ.handler){bv=bJ;bJ=bv.handler}if(!bJ.guid){bJ.guid=b.guid++}bK=bD.events;if(!bK){bD.events=bK={}}bB=bD.handle;if(!bB){bD.handle=bB=function(bL){return typeof b!==\"undefined\"&&(!bL||b.event.triggered!==bL.type)?b.event.dispatch.apply(bB.elem,arguments):L};bB.elem=bx}bC=b.trim(bt(bC)).split(\" \");for(bI=0;bI<bC.length;bI++){bH=n.exec(bC[bI])||[];bF=bH[1];e=(bH[2]||\"\").split(\".\").sort();bE=b.event.special[bF]||{};bF=(by?bE.delegateType:bE.bindType)||bF;bE=b.event.special[bF]||{};bG=b.extend({type:bF,origType:bH[1],data:bA,handler:bJ,guid:bJ.guid,selector:by,quick:Y(by),namespace:e.join(\".\")},bv);bw=bK[bF];if(!bw){bw=bK[bF]=[];bw.delegateCount=0;if(!bE.setup||bE.setup.call(bx,bA,e,bB)===false){if(bx.addEventListener){bx.addEventListener(bF,bB,false)}else{if(bx.attachEvent){bx.attachEvent(\"on\"+bF,bB)}}}}if(bE.add){bE.add.call(bx,bG);if(!bG.handler.guid){bG.handler.guid=bJ.guid}}if(by){bw.splice(bw.delegateCount++,0,bG)}else{bw.push(bG)}b.event.global[bF]=true}bx=null},global:{},remove:function(bJ,bE,bv,bH,bB){var bI=b.hasData(bJ)&&b._data(bJ),bF,bx,bz,bL,bC,bA,bG,bw,by,bK,bD,e;if(!bI||!(bw=bI.events)){return}bE=b.trim(bt(bE||\"\")).split(\" \");for(bF=0;bF<bE.length;bF++){bx=n.exec(bE[bF])||[];bz=bL=bx[1];bC=bx[2];if(!bz){for(bz in bw){b.event.remove(bJ,bz+bE[bF],bv,bH,true)}continue}by=b.event.special[bz]||{};bz=(bH?by.delegateType:by.bindType)||bz;bD=bw[bz]||[];bA=bD.length;bC=bC?new RegExp(\"(^|\\\\.)\"+bC.split(\".\").sort().join(\"\\\\.(?:.*\\\\.)?\")+\"(\\\\.|$)\"):null;for(bG=0;bG<bD.length;bG++){e=bD[bG];if((bB||bL===e.origType)&&(!bv||bv.guid===e.guid)&&(!bC||bC.test(e.namespace))&&(!bH||bH===e.selector||bH===\"**\"&&e.selector)){bD.splice(bG--,1);if(e.selector){bD.delegateCount--}if(by.remove){by.remove.call(bJ,e)}}}if(bD.length===0&&bA!==bD.length){if(!by.teardown||by.teardown.call(bJ,bC)===false){b.removeEvent(bJ,bz,bI.handle)}delete bw[bz]}}if(b.isEmptyObject(bw)){bK=bI.handle;if(bK){bK.elem=null}b.removeData(bJ,[\"events\",\"handle\"],true)}},customEvent:{getData:true,setData:true,changeData:true},trigger:function(bv,bD,bA,bJ){if(bA&&(bA.nodeType===3||bA.nodeType===8)){return}var bG=bv.type||bv,bx=[],e,bw,bC,bH,bz,by,bF,bE,bB,bI;if(T.test(bG+b.event.triggered)){return}if(bG.indexOf(\"!\")>=0){bG=bG.slice(0,-1);bw=true}if(bG.indexOf(\".\")>=0){bx=bG.split(\".\");bG=bx.shift();bx.sort()}if((!bA||b.event.customEvent[bG])&&!b.event.global[bG]){return}bv=typeof bv===\"object\"?bv[b.expando]?bv:new b.Event(bG,bv):new b.Event(bG);bv.type=bG;bv.isTrigger=true;bv.exclusive=bw;bv.namespace=bx.join(\".\");bv.namespace_re=bv.namespace?new RegExp(\"(^|\\\\.)\"+bx.join(\"\\\\.(?:.*\\\\.)?\")+\"(\\\\.|$)\"):null;by=bG.indexOf(\":\")<0?\"on\"+bG:\"\";if(!bA){e=b.cache;for(bC in e){if(e[bC].events&&e[bC].events[bG]){b.event.trigger(bv,bD,e[bC].handle.elem,true)}}return}bv.result=L;if(!bv.target){bv.target=bA}bD=bD!=null?b.makeArray(bD):[];bD.unshift(bv);bF=b.event.special[bG]||{};if(bF.trigger&&bF.trigger.apply(bA,bD)===false){return}bB=[[bA,bF.bindType||bG]];if(!bJ&&!bF.noBubble&&!b.isWindow(bA)){bI=bF.delegateType||bG;bH=T.test(bI+bG)?bA:bA.parentNode;bz=null;for(;bH;bH=bH.parentNode){bB.push([bH,bI]);bz=bH}if(bz&&bz===bA.ownerDocument){bB.push([bz.defaultView||bz.parentWindow||bb,bI])}}for(bC=0;bC<bB.length&&!bv.isPropagationStopped();bC++){bH=bB[bC][0];bv.type=bB[bC][1];bE=(b._data(bH,\"events\")||{})[bv.type]&&b._data(bH,\"handle\");if(bE){bE.apply(bH,bD)}bE=by&&bH[by];if(bE&&b.acceptData(bH)&&bE.apply(bH,bD)===false){bv.preventDefault()}}bv.type=bG;if(!bJ&&!bv.isDefaultPrevented()){if((!bF._default||bF._default.apply(bA.ownerDocument,bD)===false)&&!(bG===\"click\"&&b.nodeName(bA,\"a\"))&&b.acceptData(bA)){if(by&&bA[bG]&&((bG!==\"focus\"&&bG!==\"blur\")||bv.target.offsetWidth!==0)&&!b.isWindow(bA)){bz=bA[by];if(bz){bA[by]=null}b.event.triggered=bG;bA[bG]();b.event.triggered=L;if(bz){bA[by]=bz}}}}return bv.result},dispatch:function(e){e=b.event.fix(e||bb.event);var bz=((b._data(this,\"events\")||{})[e.type]||[]),bA=bz.delegateCount,bG=[].slice.call(arguments,0),by=!e.exclusive&&!e.namespace,bH=[],bC,bB,bK,bx,bF,bE,bv,bD,bI,bw,bJ;bG[0]=e;e.delegateTarget=this;if(bA&&!e.target.disabled&&!(e.button&&e.type===\"click\")){bx=b(this);bx.context=this.ownerDocument||this;for(bK=e.target;bK!=this;bK=bK.parentNode||this){bE={};bD=[];bx[0]=bK;for(bC=0;bC<bA;bC++){bI=bz[bC];bw=bI.selector;if(bE[bw]===L){bE[bw]=(bI.quick?j(bK,bI.quick):bx.is(bw))}if(bE[bw]){bD.push(bI)}}if(bD.length){bH.push({elem:bK,matches:bD})}}}if(bz.length>bA){bH.push({elem:this,matches:bz.slice(bA)})}for(bC=0;bC<bH.length&&!e.isPropagationStopped();bC++){bv=bH[bC];e.currentTarget=bv.elem;for(bB=0;bB<bv.matches.length&&!e.isImmediatePropagationStopped();bB++){bI=bv.matches[bB];if(by||(!e.namespace&&!bI.namespace)||e.namespace_re&&e.namespace_re.test(bI.namespace)){e.data=bI.data;e.handleObj=bI;bF=((b.event.special[bI.origType]||{}).handle||bI.handler).apply(bv.elem,bG);if(bF!==L){e.result=bF;if(bF===false){e.preventDefault();e.stopPropagation()}}}}}return e.result},props:\"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),fixHooks:{},keyHooks:{props:\"char charCode key keyCode\".split(\" \"),filter:function(bv,e){if(bv.which==null){bv.which=e.charCode!=null?e.charCode:e.keyCode}return bv}},mouseHooks:{props:\"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),filter:function(bx,bw){var by,bz,e,bv=bw.button,bA=bw.fromElement;if(bx.pageX==null&&bw.clientX!=null){by=bx.target.ownerDocument||av;bz=by.documentElement;e=by.body;bx.pageX=bw.clientX+(bz&&bz.scrollLeft||e&&e.scrollLeft||0)-(bz&&bz.clientLeft||e&&e.clientLeft||0);bx.pageY=bw.clientY+(bz&&bz.scrollTop||e&&e.scrollTop||0)-(bz&&bz.clientTop||e&&e.clientTop||0)}if(!bx.relatedTarget&&bA){bx.relatedTarget=bA===bx.target?bw.toElement:bA}if(!bx.which&&bv!==L){bx.which=(bv&1?1:(bv&2?3:(bv&4?2:0)))}return bx}},fix:function(bw){if(bw[b.expando]){return bw}var bv,bz,e=bw,bx=b.event.fixHooks[bw.type]||{},by=bx.props?this.props.concat(bx.props):this.props;bw=b.Event(e);for(bv=by.length;bv;){bz=by[--bv];bw[bz]=e[bz]}if(!bw.target){bw.target=e.srcElement||av}if(bw.target.nodeType===3){bw.target=bw.target.parentNode}if(bw.metaKey===L){bw.metaKey=bw.ctrlKey}return bx.filter?bx.filter(bw,e):bw},special:{ready:{setup:b.bindReady},load:{noBubble:true},focus:{delegateType:\"focusin\"},blur:{delegateType:\"focusout\"},beforeunload:{setup:function(bw,bv,e){if(b.isWindow(this)){this.onbeforeunload=e}},teardown:function(bv,e){if(this.onbeforeunload===e){this.onbeforeunload=null}}}},simulate:function(bw,by,bx,bv){var bz=b.extend(new b.Event(),bx,{type:bw,isSimulated:true,originalEvent:{}});if(bv){b.event.trigger(bz,null,by)}else{b.event.dispatch.call(by,bz)}if(bz.isDefaultPrevented()){bx.preventDefault()}}};b.event.handle=b.event.dispatch;b.removeEvent=av.removeEventListener?function(bv,e,bw){if(bv.removeEventListener){bv.removeEventListener(e,bw,false)}}:function(bv,e,bw){if(bv.detachEvent){bv.detachEvent(\"on\"+e,bw)}};b.Event=function(bv,e){if(!(this instanceof b.Event)){return new b.Event(bv,e)}if(bv&&bv.type){this.originalEvent=bv;this.type=bv.type;this.isDefaultPrevented=(bv.defaultPrevented||bv.returnValue===false||bv.getPreventDefault&&bv.getPreventDefault())?i:bk}else{this.type=bv}if(e){b.extend(this,e)}this.timeStamp=bv&&bv.timeStamp||b.now();this[b.expando]=true};function bk(){return false}function i(){return true}b.Event.prototype={preventDefault:function(){this.isDefaultPrevented=i;var bv=this.originalEvent;if(!bv){return}if(bv.preventDefault){bv.preventDefault()}else{bv.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=i;var bv=this.originalEvent;if(!bv){return}if(bv.stopPropagation){bv.stopPropagation()}bv.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=i;this.stopPropagation()},isDefaultPrevented:bk,isPropagationStopped:bk,isImmediatePropagationStopped:bk};b.each({mouseenter:\"mouseover\",mouseleave:\"mouseout\"},function(bv,e){b.event.special[bv]={delegateType:e,bindType:e,handle:function(bz){var bB=this,bA=bz.relatedTarget,by=bz.handleObj,bw=by.selector,bx;if(!bA||(bA!==bB&&!b.contains(bB,bA))){bz.type=by.origType;bx=by.handler.apply(this,arguments);bz.type=e}return bx}}});if(!b.support.submitBubbles){b.event.special.submit={setup:function(){if(b.nodeName(this,\"form\")){return false}b.event.add(this,\"click._submit keypress._submit\",function(bx){var bw=bx.target,bv=b.nodeName(bw,\"input\")||b.nodeName(bw,\"button\")?bw.form:L;if(bv&&!bv._submit_attached){b.event.add(bv,\"submit._submit\",function(e){if(this.parentNode&&!e.isTrigger){b.event.simulate(\"submit\",this.parentNode,e,true)}});bv._submit_attached=true}})},teardown:function(){if(b.nodeName(this,\"form\")){return false}b.event.remove(this,\"._submit\")}}}if(!b.support.changeBubbles){b.event.special.change={setup:function(){if(bd.test(this.nodeName)){if(this.type===\"checkbox\"||this.type===\"radio\"){b.event.add(this,\"propertychange._change\",function(e){if(e.originalEvent.propertyName===\"checked\"){this._just_changed=true}});b.event.add(this,\"click._change\",function(e){if(this._just_changed&&!e.isTrigger){this._just_changed=false;b.event.simulate(\"change\",this,e,true)}})}return false}b.event.add(this,\"beforeactivate._change\",function(bw){var bv=bw.target;if(bd.test(bv.nodeName)&&!bv._change_attached){b.event.add(bv,\"change._change\",function(e){if(this.parentNode&&!e.isSimulated&&!e.isTrigger){b.event.simulate(\"change\",this.parentNode,e,true)}});bv._change_attached=true}})},handle:function(bv){var e=bv.target;if(this!==e||bv.isSimulated||bv.isTrigger||(e.type!==\"radio\"&&e.type!==\"checkbox\")){return bv.handleObj.handler.apply(this,arguments)}},teardown:function(){b.event.remove(this,\"._change\");return bd.test(this.nodeName)}}}if(!b.support.focusinBubbles){b.each({focus:\"focusin\",blur:\"focusout\"},function(bx,e){var bv=0,bw=function(by){b.event.simulate(e,by.target,b.event.fix(by),true)};b.event.special[e]={setup:function(){if(bv++===0){av.addEventListener(bx,bw,true)}},teardown:function(){if(--bv===0){av.removeEventListener(bx,bw,true)}}}})}b.fn.extend({on:function(bw,e,bz,by,bv){var bA,bx;if(typeof bw===\"object\"){if(typeof e!==\"string\"){bz=e;e=L}for(bx in bw){this.on(bx,e,bz,bw[bx],bv)}return this}if(bz==null&&by==null){by=e;bz=e=L}else{if(by==null){if(typeof e===\"string\"){by=bz;bz=L}else{by=bz;bz=e;e=L}}}if(by===false){by=bk}else{if(!by){return this}}if(bv===1){bA=by;by=function(bB){b().off(bB);return bA.apply(this,arguments)};by.guid=bA.guid||(bA.guid=b.guid++)}return this.each(function(){b.event.add(this,bw,by,bz,e)})},one:function(bv,e,bx,bw){return this.on.call(this,bv,e,bx,bw,1)},off:function(bw,e,by){if(bw&&bw.preventDefault&&bw.handleObj){var bv=bw.handleObj;b(bw.delegateTarget).off(bv.namespace?bv.type+\".\"+bv.namespace:bv.type,bv.selector,bv.handler);return this}if(typeof bw===\"object\"){for(var bx in bw){this.off(bx,e,bw[bx])}return this}if(e===false||typeof e===\"function\"){by=e;e=L}if(by===false){by=bk}return this.each(function(){b.event.remove(this,bw,by,e)})},bind:function(e,bw,bv){return this.on(e,null,bw,bv)},unbind:function(e,bv){return this.off(e,null,bv)},live:function(e,bw,bv){b(this.context).on(e,this.selector,bw,bv);return this},die:function(e,bv){b(this.context).off(e,this.selector||\"**\",bv);return this},delegate:function(e,bv,bx,bw){return this.on(bv,e,bx,bw)},undelegate:function(e,bv,bw){return arguments.length==1?this.off(e,\"**\"):this.off(bv,e,bw)},trigger:function(e,bv){return this.each(function(){b.event.trigger(e,bv,this)})},triggerHandler:function(e,bv){if(this[0]){return b.event.trigger(e,bv,this[0],true)}},toggle:function(bx){var bv=arguments,e=bx.guid||b.guid++,bw=0,by=function(bz){var bA=(b._data(this,\"lastToggle\"+bx.guid)||0)%bw;b._data(this,\"lastToggle\"+bx.guid,bA+1);bz.preventDefault();return bv[bA].apply(this,arguments)||false};by.guid=e;while(bw<bv.length){bv[bw++].guid=e}return this.click(by)},hover:function(e,bv){return this.mouseenter(e).mouseleave(bv||e)}});b.each((\"blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu\").split(\" \"),function(bv,e){b.fn[e]=function(bx,bw){if(bw==null){bw=bx;bx=null}return arguments.length>0?this.on(e,null,bx,bw):this.trigger(e)};if(b.attrFn){b.attrFn[e]=true}if(aO.test(e)){b.event.fixHooks[e]=b.event.keyHooks}if(bf.test(e)){b.event.fixHooks[e]=b.event.mouseHooks}});\n/*!\n * Sizzle CSS Selector Engine\n *  Copyright 2011, The Dojo Foundation\n *  Released under the MIT, BSD, and GPL Licenses.\n *  More information: http://sizzlejs.com/\n */\n(function(){var bH=/((?:\\((?:\\([^()]+\\)|[^()]+)+\\)|\\[(?:\\[[^\\[\\]]*\\]|['\"][^'\"]*['\"]|[^\\[\\]'\"]+)+\\]|\\\\.|[^ >+~,(\\[\\\\]+)+|[>+~])(\\s*,\\s*)?((?:.|\\r|\\n)*)/g,bC=\"sizcache\"+(Math.random()+\"\").replace(\".\",\"\"),bI=0,bL=Object.prototype.toString,bB=false,bA=true,bK=/\\\\/g,bO=/\\r\\n/g,bQ=/\\W/;[0,0].sort(function(){bA=false;return 0});var by=function(bV,e,bY,bZ){bY=bY||[];e=e||av;var b1=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!bV||typeof bV!==\"string\"){return bY}var bS,b3,b6,bR,b2,b5,b4,bX,bU=true,bT=by.isXML(e),bW=[],b0=bV;do{bH.exec(\"\");bS=bH.exec(b0);if(bS){b0=bS[3];bW.push(bS[1]);if(bS[2]){bR=bS[3];break}}}while(bS);if(bW.length>1&&bD.exec(bV)){if(bW.length===2&&bE.relative[bW[0]]){b3=bM(bW[0]+bW[1],e,bZ)}else{b3=bE.relative[bW[0]]?[e]:by(bW.shift(),e);while(bW.length){bV=bW.shift();if(bE.relative[bV]){bV+=bW.shift()}b3=bM(bV,b3,bZ)}}}else{if(!bZ&&bW.length>1&&e.nodeType===9&&!bT&&bE.match.ID.test(bW[0])&&!bE.match.ID.test(bW[bW.length-1])){b2=by.find(bW.shift(),e,bT);e=b2.expr?by.filter(b2.expr,b2.set)[0]:b2.set[0]}if(e){b2=bZ?{expr:bW.pop(),set:bF(bZ)}:by.find(bW.pop(),bW.length===1&&(bW[0]===\"~\"||bW[0]===\"+\")&&e.parentNode?e.parentNode:e,bT);b3=b2.expr?by.filter(b2.expr,b2.set):b2.set;if(bW.length>0){b6=bF(b3)}else{bU=false}while(bW.length){b5=bW.pop();b4=b5;if(!bE.relative[b5]){b5=\"\"}else{b4=bW.pop()}if(b4==null){b4=e}bE.relative[b5](b6,b4,bT)}}else{b6=bW=[]}}if(!b6){b6=b3}if(!b6){by.error(b5||bV)}if(bL.call(b6)===\"[object Array]\"){if(!bU){bY.push.apply(bY,b6)}else{if(e&&e.nodeType===1){for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&(b6[bX]===true||b6[bX].nodeType===1&&by.contains(e,b6[bX]))){bY.push(b3[bX])}}}else{for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&b6[bX].nodeType===1){bY.push(b3[bX])}}}}}else{bF(b6,bY)}if(bR){by(bR,b1,bY,bZ);by.uniqueSort(bY)}return bY};by.uniqueSort=function(bR){if(bJ){bB=bA;bR.sort(bJ);if(bB){for(var e=1;e<bR.length;e++){if(bR[e]===bR[e-1]){bR.splice(e--,1)}}}}return bR};by.matches=function(e,bR){return by(e,null,null,bR)};by.matchesSelector=function(e,bR){return by(bR,null,null,[e]).length>0};by.find=function(bX,e,bY){var bW,bS,bU,bT,bV,bR;if(!bX){return[]}for(bS=0,bU=bE.order.length;bS<bU;bS++){bV=bE.order[bS];if((bT=bE.leftMatch[bV].exec(bX))){bR=bT[1];bT.splice(1,1);if(bR.substr(bR.length-1)!==\"\\\\\"){bT[1]=(bT[1]||\"\").replace(bK,\"\");bW=bE.find[bV](bT,e,bY);if(bW!=null){bX=bX.replace(bE.match[bV],\"\");break}}}}if(!bW){bW=typeof e.getElementsByTagName!==\"undefined\"?e.getElementsByTagName(\"*\"):[]}return{set:bW,expr:bX}};by.filter=function(b1,b0,b4,bU){var bW,e,bZ,b6,b3,bR,bT,bV,b2,bS=b1,b5=[],bY=b0,bX=b0&&b0[0]&&by.isXML(b0[0]);while(b1&&b0.length){for(bZ in bE.filter){if((bW=bE.leftMatch[bZ].exec(b1))!=null&&bW[2]){bR=bE.filter[bZ];bT=bW[1];e=false;bW.splice(1,1);if(bT.substr(bT.length-1)===\"\\\\\"){continue}if(bY===b5){b5=[]}if(bE.preFilter[bZ]){bW=bE.preFilter[bZ](bW,bY,b4,b5,bU,bX);if(!bW){e=b6=true}else{if(bW===true){continue}}}if(bW){for(bV=0;(b3=bY[bV])!=null;bV++){if(b3){b6=bR(b3,bW,bV,bY);b2=bU^b6;if(b4&&b6!=null){if(b2){e=true}else{bY[bV]=false}}else{if(b2){b5.push(b3);e=true}}}}}if(b6!==L){if(!b4){bY=b5}b1=b1.replace(bE.match[bZ],\"\");if(!e){return[]}break}}}if(b1===bS){if(e==null){by.error(b1)}else{break}}bS=b1}return bY};by.error=function(e){throw new Error(\"Syntax error, unrecognized expression: \"+e)};var bw=by.getText=function(bU){var bS,bT,e=bU.nodeType,bR=\"\";if(e){if(e===1||e===9){if(typeof bU.textContent===\"string\"){return bU.textContent}else{if(typeof bU.innerText===\"string\"){return bU.innerText.replace(bO,\"\")}else{for(bU=bU.firstChild;bU;bU=bU.nextSibling){bR+=bw(bU)}}}}else{if(e===3||e===4){return bU.nodeValue}}}else{for(bS=0;(bT=bU[bS]);bS++){if(bT.nodeType!==8){bR+=bw(bT)}}}return bR};var bE=by.selectors={order:[\"ID\",\"NAME\",\"TAG\"],match:{ID:/#((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)/,CLASS:/\\.((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)/,NAME:/\\[name=['\"]*((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)['\"]*\\]/,ATTR:/\\[\\s*((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)\\s*(?:(\\S?=)\\s*(?:(['\"])(.*?)\\3|(#?(?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)*)|)|)\\s*\\]/,TAG:/^((?:[\\w\\u00c0-\\uFFFF\\*\\-]|\\\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\\(\\s*(even|odd|(?:[+\\-]?\\d+|(?:[+\\-]?\\d*)?n\\s*(?:[+\\-]\\s*\\d+)?))\\s*\\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\\((\\d*)\\))?(?=[^\\-]|$)/,PSEUDO:/:((?:[\\w\\u00c0-\\uFFFF\\-]|\\\\.)+)(?:\\((['\"]?)((?:\\([^\\)]+\\)|[^\\(\\)]*)+)\\2\\))?/},leftMatch:{},attrMap:{\"class\":\"className\",\"for\":\"htmlFor\"},attrHandle:{href:function(e){return e.getAttribute(\"href\")},type:function(e){return e.getAttribute(\"type\")}},relative:{\"+\":function(bW,bR){var bT=typeof bR===\"string\",bV=bT&&!bQ.test(bR),bX=bT&&!bV;if(bV){bR=bR.toLowerCase()}for(var bS=0,e=bW.length,bU;bS<e;bS++){if((bU=bW[bS])){while((bU=bU.previousSibling)&&bU.nodeType!==1){}bW[bS]=bX||bU&&bU.nodeName.toLowerCase()===bR?bU||false:bU===bR}}if(bX){by.filter(bR,bW,true)}},\">\":function(bW,bR){var bV,bU=typeof bR===\"string\",bS=0,e=bW.length;if(bU&&!bQ.test(bR)){bR=bR.toLowerCase();for(;bS<e;bS++){bV=bW[bS];if(bV){var bT=bV.parentNode;bW[bS]=bT.nodeName.toLowerCase()===bR?bT:false}}}else{for(;bS<e;bS++){bV=bW[bS];if(bV){bW[bS]=bU?bV.parentNode:bV.parentNode===bR}}if(bU){by.filter(bR,bW,true)}}},\"\":function(bT,bR,bV){var bU,bS=bI++,e=bN;if(typeof bR===\"string\"&&!bQ.test(bR)){bR=bR.toLowerCase();bU=bR;e=bv}e(\"parentNode\",bR,bS,bT,bU,bV)},\"~\":function(bT,bR,bV){var bU,bS=bI++,e=bN;if(typeof bR===\"string\"&&!bQ.test(bR)){bR=bR.toLowerCase();bU=bR;e=bv}e(\"previousSibling\",bR,bS,bT,bU,bV)}},find:{ID:function(bR,bS,bT){if(typeof bS.getElementById!==\"undefined\"&&!bT){var e=bS.getElementById(bR[1]);return e&&e.parentNode?[e]:[]}},NAME:function(bS,bV){if(typeof bV.getElementsByName!==\"undefined\"){var bR=[],bU=bV.getElementsByName(bS[1]);for(var bT=0,e=bU.length;bT<e;bT++){if(bU[bT].getAttribute(\"name\")===bS[1]){bR.push(bU[bT])}}return bR.length===0?null:bR}},TAG:function(e,bR){if(typeof bR.getElementsByTagName!==\"undefined\"){return bR.getElementsByTagName(e[1])}}},preFilter:{CLASS:function(bT,bR,bS,e,bW,bX){bT=\" \"+bT[1].replace(bK,\"\")+\" \";if(bX){return bT}for(var bU=0,bV;(bV=bR[bU])!=null;bU++){if(bV){if(bW^(bV.className&&(\" \"+bV.className+\" \").replace(/[\\t\\n\\r]/g,\" \").indexOf(bT)>=0)){if(!bS){e.push(bV)}}else{if(bS){bR[bU]=false}}}}return false},ID:function(e){return e[1].replace(bK,\"\")},TAG:function(bR,e){return bR[1].replace(bK,\"\").toLowerCase()},CHILD:function(e){if(e[1]===\"nth\"){if(!e[2]){by.error(e[0])}e[2]=e[2].replace(/^\\+|\\s*/g,\"\");var bR=/(-?)(\\d*)(?:n([+\\-]?\\d*))?/.exec(e[2]===\"even\"&&\"2n\"||e[2]===\"odd\"&&\"2n+1\"||!/\\D/.test(e[2])&&\"0n+\"+e[2]||e[2]);e[2]=(bR[1]+(bR[2]||1))-0;e[3]=bR[3]-0}else{if(e[2]){by.error(e[0])}}e[0]=bI++;return e},ATTR:function(bU,bR,bS,e,bV,bW){var bT=bU[1]=bU[1].replace(bK,\"\");if(!bW&&bE.attrMap[bT]){bU[1]=bE.attrMap[bT]}bU[4]=(bU[4]||bU[5]||\"\").replace(bK,\"\");if(bU[2]===\"~=\"){bU[4]=\" \"+bU[4]+\" \"}return bU},PSEUDO:function(bU,bR,bS,e,bV){if(bU[1]===\"not\"){if((bH.exec(bU[3])||\"\").length>1||/^\\w/.test(bU[3])){bU[3]=by(bU[3],null,null,bR)}else{var bT=by.filter(bU[3],bR,bS,true^bV);if(!bS){e.push.apply(e,bT)}return false}}else{if(bE.match.POS.test(bU[0])||bE.match.CHILD.test(bU[0])){return true}}return bU},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!==\"hidden\"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(bS,bR,e){return !!by(e[3],bS).length},header:function(e){return(/h\\d/i).test(e.nodeName)},text:function(bS){var e=bS.getAttribute(\"type\"),bR=bS.type;return bS.nodeName.toLowerCase()===\"input\"&&\"text\"===bR&&(e===bR||e===null)},radio:function(e){return e.nodeName.toLowerCase()===\"input\"&&\"radio\"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()===\"input\"&&\"checkbox\"===e.type},file:function(e){return e.nodeName.toLowerCase()===\"input\"&&\"file\"===e.type},password:function(e){return e.nodeName.toLowerCase()===\"input\"&&\"password\"===e.type},submit:function(bR){var e=bR.nodeName.toLowerCase();return(e===\"input\"||e===\"button\")&&\"submit\"===bR.type},image:function(e){return e.nodeName.toLowerCase()===\"input\"&&\"image\"===e.type},reset:function(bR){var e=bR.nodeName.toLowerCase();return(e===\"input\"||e===\"button\")&&\"reset\"===bR.type},button:function(bR){var e=bR.nodeName.toLowerCase();return e===\"input\"&&\"button\"===bR.type||e===\"button\"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(bR,e){return e===0},last:function(bS,bR,e,bT){return bR===bT.length-1},even:function(bR,e){return e%2===0},odd:function(bR,e){return e%2===1},lt:function(bS,bR,e){return bR<e[3]-0},gt:function(bS,bR,e){return bR>e[3]-0},nth:function(bS,bR,e){return e[3]-0===bR},eq:function(bS,bR,e){return e[3]-0===bR}},filter:{PSEUDO:function(bS,bX,bW,bY){var e=bX[1],bR=bE.filters[e];if(bR){return bR(bS,bW,bX,bY)}else{if(e===\"contains\"){return(bS.textContent||bS.innerText||bw([bS])||\"\").indexOf(bX[3])>=0}else{if(e===\"not\"){var bT=bX[3];for(var bV=0,bU=bT.length;bV<bU;bV++){if(bT[bV]===bS){return false}}return true}else{by.error(e)}}}},CHILD:function(bS,bU){var bT,b0,bW,bZ,e,bV,bY,bX=bU[1],bR=bS;switch(bX){case\"only\":case\"first\":while((bR=bR.previousSibling)){if(bR.nodeType===1){return false}}if(bX===\"first\"){return true}bR=bS;case\"last\":while((bR=bR.nextSibling)){if(bR.nodeType===1){return false}}return true;case\"nth\":bT=bU[2];b0=bU[3];if(bT===1&&b0===0){return true}bW=bU[0];bZ=bS.parentNode;if(bZ&&(bZ[bC]!==bW||!bS.nodeIndex)){bV=0;for(bR=bZ.firstChild;bR;bR=bR.nextSibling){if(bR.nodeType===1){bR.nodeIndex=++bV}}bZ[bC]=bW}bY=bS.nodeIndex-b0;if(bT===0){return bY===0}else{return(bY%bT===0&&bY/bT>=0)}}},ID:function(bR,e){return bR.nodeType===1&&bR.getAttribute(\"id\")===e},TAG:function(bR,e){return(e===\"*\"&&bR.nodeType===1)||!!bR.nodeName&&bR.nodeName.toLowerCase()===e},CLASS:function(bR,e){return(\" \"+(bR.className||bR.getAttribute(\"class\"))+\" \").indexOf(e)>-1},ATTR:function(bV,bT){var bS=bT[1],e=by.attr?by.attr(bV,bS):bE.attrHandle[bS]?bE.attrHandle[bS](bV):bV[bS]!=null?bV[bS]:bV.getAttribute(bS),bW=e+\"\",bU=bT[2],bR=bT[4];return e==null?bU===\"!=\":!bU&&by.attr?e!=null:bU===\"=\"?bW===bR:bU===\"*=\"?bW.indexOf(bR)>=0:bU===\"~=\"?(\" \"+bW+\" \").indexOf(bR)>=0:!bR?bW&&e!==false:bU===\"!=\"?bW!==bR:bU===\"^=\"?bW.indexOf(bR)===0:bU===\"$=\"?bW.substr(bW.length-bR.length)===bR:bU===\"|=\"?bW===bR||bW.substr(0,bR.length+1)===bR+\"-\":false},POS:function(bU,bR,bS,bV){var e=bR[2],bT=bE.setFilters[e];if(bT){return bT(bU,bS,bR,bV)}}}};var bD=bE.match.POS,bx=function(bR,e){return\"\\\\\"+(e-0+1)};for(var bz in bE.match){bE.match[bz]=new RegExp(bE.match[bz].source+(/(?![^\\[]*\\])(?![^\\(]*\\))/.source));bE.leftMatch[bz]=new RegExp(/(^(?:.|\\r|\\n)*?)/.source+bE.match[bz].source.replace(/\\\\(\\d+)/g,bx))}var bF=function(bR,e){bR=Array.prototype.slice.call(bR,0);if(e){e.push.apply(e,bR);return e}return bR};try{Array.prototype.slice.call(av.documentElement.childNodes,0)[0].nodeType}catch(bP){bF=function(bU,bT){var bS=0,bR=bT||[];if(bL.call(bU)===\"[object Array]\"){Array.prototype.push.apply(bR,bU)}else{if(typeof bU.length===\"number\"){for(var e=bU.length;bS<e;bS++){bR.push(bU[bS])}}else{for(;bU[bS];bS++){bR.push(bU[bS])}}}return bR}}var bJ,bG;if(av.documentElement.compareDocumentPosition){bJ=function(bR,e){if(bR===e){bB=true;return 0}if(!bR.compareDocumentPosition||!e.compareDocumentPosition){return bR.compareDocumentPosition?-1:1}return bR.compareDocumentPosition(e)&4?-1:1}}else{bJ=function(bY,bX){if(bY===bX){bB=true;return 0}else{if(bY.sourceIndex&&bX.sourceIndex){return bY.sourceIndex-bX.sourceIndex}}var bV,bR,bS=[],e=[],bU=bY.parentNode,bW=bX.parentNode,bZ=bU;if(bU===bW){return bG(bY,bX)}else{if(!bU){return -1}else{if(!bW){return 1}}}while(bZ){bS.unshift(bZ);bZ=bZ.parentNode}bZ=bW;while(bZ){e.unshift(bZ);bZ=bZ.parentNode}bV=bS.length;bR=e.length;for(var bT=0;bT<bV&&bT<bR;bT++){if(bS[bT]!==e[bT]){return bG(bS[bT],e[bT])}}return bT===bV?bG(bY,e[bT],-1):bG(bS[bT],bX,1)};bG=function(bR,e,bS){if(bR===e){return bS}var bT=bR.nextSibling;while(bT){if(bT===e){return -1}bT=bT.nextSibling}return 1}}(function(){var bR=av.createElement(\"div\"),bS=\"script\"+(new Date()).getTime(),e=av.documentElement;bR.innerHTML=\"<a name='\"+bS+\"'/>\";e.insertBefore(bR,e.firstChild);if(av.getElementById(bS)){bE.find.ID=function(bU,bV,bW){if(typeof bV.getElementById!==\"undefined\"&&!bW){var bT=bV.getElementById(bU[1]);return bT?bT.id===bU[1]||typeof bT.getAttributeNode!==\"undefined\"&&bT.getAttributeNode(\"id\").nodeValue===bU[1]?[bT]:L:[]}};bE.filter.ID=function(bV,bT){var bU=typeof bV.getAttributeNode!==\"undefined\"&&bV.getAttributeNode(\"id\");return bV.nodeType===1&&bU&&bU.nodeValue===bT}}e.removeChild(bR);e=bR=null})();(function(){var e=av.createElement(\"div\");e.appendChild(av.createComment(\"\"));if(e.getElementsByTagName(\"*\").length>0){bE.find.TAG=function(bR,bV){var bU=bV.getElementsByTagName(bR[1]);if(bR[1]===\"*\"){var bT=[];for(var bS=0;bU[bS];bS++){if(bU[bS].nodeType===1){bT.push(bU[bS])}}bU=bT}return bU}}e.innerHTML=\"<a href='#'></a>\";if(e.firstChild&&typeof e.firstChild.getAttribute!==\"undefined\"&&e.firstChild.getAttribute(\"href\")!==\"#\"){bE.attrHandle.href=function(bR){return bR.getAttribute(\"href\",2)}}e=null})();if(av.querySelectorAll){(function(){var e=by,bT=av.createElement(\"div\"),bS=\"__sizzle__\";bT.innerHTML=\"<p class='TEST'></p>\";if(bT.querySelectorAll&&bT.querySelectorAll(\".TEST\").length===0){return}by=function(b4,bV,bZ,b3){bV=bV||av;if(!b3&&!by.isXML(bV)){var b2=/^(\\w+$)|^\\.([\\w\\-]+$)|^#([\\w\\-]+$)/.exec(b4);if(b2&&(bV.nodeType===1||bV.nodeType===9)){if(b2[1]){return bF(bV.getElementsByTagName(b4),bZ)}else{if(b2[2]&&bE.find.CLASS&&bV.getElementsByClassName){return bF(bV.getElementsByClassName(b2[2]),bZ)}}}if(bV.nodeType===9){if(b4===\"body\"&&bV.body){return bF([bV.body],bZ)}else{if(b2&&b2[3]){var bY=bV.getElementById(b2[3]);if(bY&&bY.parentNode){if(bY.id===b2[3]){return bF([bY],bZ)}}else{return bF([],bZ)}}}try{return bF(bV.querySelectorAll(b4),bZ)}catch(b0){}}else{if(bV.nodeType===1&&bV.nodeName.toLowerCase()!==\"object\"){var bW=bV,bX=bV.getAttribute(\"id\"),bU=bX||bS,b6=bV.parentNode,b5=/^\\s*[+~]/.test(b4);if(!bX){bV.setAttribute(\"id\",bU)}else{bU=bU.replace(/'/g,\"\\\\$&\")}if(b5&&b6){bV=bV.parentNode}try{if(!b5||b6){return bF(bV.querySelectorAll(\"[id='\"+bU+\"'] \"+b4),bZ)}}catch(b1){}finally{if(!bX){bW.removeAttribute(\"id\")}}}}}return e(b4,bV,bZ,b3)};for(var bR in e){by[bR]=e[bR]}bT=null})()}(function(){var e=av.documentElement,bS=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(bS){var bU=!bS.call(av.createElement(\"div\"),\"div\"),bR=false;try{bS.call(av.documentElement,\"[test!='']:sizzle\")}catch(bT){bR=true}by.matchesSelector=function(bW,bY){bY=bY.replace(/\\=\\s*([^'\"\\]]*)\\s*\\]/g,\"='$1']\");if(!by.isXML(bW)){try{if(bR||!bE.match.PSEUDO.test(bY)&&!/!=/.test(bY)){var bV=bS.call(bW,bY);if(bV||!bU||bW.document&&bW.document.nodeType!==11){return bV}}}catch(bX){}}return by(bY,null,null,[bW]).length>0}}})();(function(){var e=av.createElement(\"div\");e.innerHTML=\"<div class='test e'></div><div class='test'></div>\";if(!e.getElementsByClassName||e.getElementsByClassName(\"e\").length===0){return}e.lastChild.className=\"e\";if(e.getElementsByClassName(\"e\").length===1){return}bE.order.splice(1,0,\"CLASS\");bE.find.CLASS=function(bR,bS,bT){if(typeof bS.getElementsByClassName!==\"undefined\"&&!bT){return bS.getElementsByClassName(bR[1])}};e=null})();function bv(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT<bS;bT++){var e=bZ[bT];if(e){var bU=false;e=e[bR];while(e){if(e[bC]===bV){bU=bZ[e.sizset];break}if(e.nodeType===1&&!bY){e[bC]=bV;e.sizset=bT}if(e.nodeName.toLowerCase()===bW){bU=e;break}e=e[bR]}bZ[bT]=bU}}}function bN(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT<bS;bT++){var e=bZ[bT];if(e){var bU=false;e=e[bR];while(e){if(e[bC]===bV){bU=bZ[e.sizset];break}if(e.nodeType===1){if(!bY){e[bC]=bV;e.sizset=bT}if(typeof bW!==\"string\"){if(e===bW){bU=true;break}}else{if(by.filter(bW,[e]).length>0){bU=e;break}}}e=e[bR]}bZ[bT]=bU}}}if(av.documentElement.contains){by.contains=function(bR,e){return bR!==e&&(bR.contains?bR.contains(e):true)}}else{if(av.documentElement.compareDocumentPosition){by.contains=function(bR,e){return !!(bR.compareDocumentPosition(e)&16)}}else{by.contains=function(){return false}}}by.isXML=function(e){var bR=(e?e.ownerDocument||e:0).documentElement;return bR?bR.nodeName!==\"HTML\":false};var bM=function(bS,e,bW){var bV,bX=[],bU=\"\",bY=e.nodeType?[e]:e;while((bV=bE.match.PSEUDO.exec(bS))){bU+=bV[0];bS=bS.replace(bE.match.PSEUDO,\"\")}bS=bE.relative[bS]?bS+\"*\":bS;for(var bT=0,bR=bY.length;bT<bR;bT++){by(bS,bY[bT],bX,bW)}return by.filter(bU,bX)};by.attr=b.attr;by.selectors.attrMap={};b.find=by;b.expr=by.selectors;b.expr[\":\"]=b.expr.filters;b.unique=by.uniqueSort;b.text=by.getText;b.isXMLDoc=by.isXML;b.contains=by.contains})();var ab=/Until$/,aq=/^(?:parents|prevUntil|prevAll)/,a9=/,/,bp=/^.[^:#\\[\\.,]*$/,P=Array.prototype.slice,H=b.expr.match.POS,ay={children:true,contents:true,next:true,prev:true};b.fn.extend({find:function(e){var bw=this,by,bv;if(typeof e!==\"string\"){return b(e).filter(function(){for(by=0,bv=bw.length;by<bv;by++){if(b.contains(bw[by],this)){return true}}})}var bx=this.pushStack(\"\",\"find\",e),bA,bB,bz;for(by=0,bv=this.length;by<bv;by++){bA=bx.length;b.find(e,this[by],bx);if(by>0){for(bB=bA;bB<bx.length;bB++){for(bz=0;bz<bA;bz++){if(bx[bz]===bx[bB]){bx.splice(bB--,1);break}}}}}return bx},has:function(bv){var e=b(bv);return this.filter(function(){for(var bx=0,bw=e.length;bx<bw;bx++){if(b.contains(this,e[bx])){return true}}})},not:function(e){return this.pushStack(aG(this,e,false),\"not\",e)},filter:function(e){return this.pushStack(aG(this,e,true),\"filter\",e)},is:function(e){return !!e&&(typeof e===\"string\"?H.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(by,bx){var bv=[],bw,e,bz=this[0];if(b.isArray(by)){var bB=1;while(bz&&bz.ownerDocument&&bz!==bx){for(bw=0;bw<by.length;bw++){if(b(bz).is(by[bw])){bv.push({selector:by[bw],elem:bz,level:bB})}}bz=bz.parentNode;bB++}return bv}var bA=H.test(by)||typeof by!==\"string\"?b(by,bx||this.context):0;for(bw=0,e=this.length;bw<e;bw++){bz=this[bw];while(bz){if(bA?bA.index(bz)>-1:b.find.matchesSelector(bz,by)){bv.push(bz);break}else{bz=bz.parentNode;if(!bz||!bz.ownerDocument||bz===bx||bz.nodeType===11){break}}}}bv=bv.length>1?b.unique(bv):bv;return this.pushStack(bv,\"closest\",by)},index:function(e){if(!e){return(this[0]&&this[0].parentNode)?this.prevAll().length:-1}if(typeof e===\"string\"){return b.inArray(this[0],b(e))}return b.inArray(e.jquery?e[0]:e,this)},add:function(e,bv){var bx=typeof e===\"string\"?b(e,bv):b.makeArray(e&&e.nodeType?[e]:e),bw=b.merge(this.get(),bx);return this.pushStack(C(bx[0])||C(bw[0])?bw:b.unique(bw))},andSelf:function(){return this.add(this.prevObject)}});function C(e){return !e||!e.parentNode||e.parentNode.nodeType===11}b.each({parent:function(bv){var e=bv.parentNode;return e&&e.nodeType!==11?e:null},parents:function(e){return b.dir(e,\"parentNode\")},parentsUntil:function(bv,e,bw){return b.dir(bv,\"parentNode\",bw)},next:function(e){return b.nth(e,2,\"nextSibling\")},prev:function(e){return b.nth(e,2,\"previousSibling\")},nextAll:function(e){return b.dir(e,\"nextSibling\")},prevAll:function(e){return b.dir(e,\"previousSibling\")},nextUntil:function(bv,e,bw){return b.dir(bv,\"nextSibling\",bw)},prevUntil:function(bv,e,bw){return b.dir(bv,\"previousSibling\",bw)},siblings:function(e){return b.sibling(e.parentNode.firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,\"iframe\")?e.contentDocument||e.contentWindow.document:b.makeArray(e.childNodes)}},function(e,bv){b.fn[e]=function(by,bw){var bx=b.map(this,bv,by);if(!ab.test(e)){bw=by}if(bw&&typeof bw===\"string\"){bx=b.filter(bw,bx)}bx=this.length>1&&!ay[e]?b.unique(bx):bx;if((this.length>1||a9.test(bw))&&aq.test(e)){bx=bx.reverse()}return this.pushStack(bx,e,P.call(arguments).join(\",\"))}});b.extend({filter:function(bw,e,bv){if(bv){bw=\":not(\"+bw+\")\"}return e.length===1?b.find.matchesSelector(e[0],bw)?[e[0]]:[]:b.find.matches(bw,e)},dir:function(bw,bv,by){var e=[],bx=bw[bv];while(bx&&bx.nodeType!==9&&(by===L||bx.nodeType!==1||!b(bx).is(by))){if(bx.nodeType===1){e.push(bx)}bx=bx[bv]}return e},nth:function(by,e,bw,bx){e=e||1;var bv=0;for(;by;by=by[bw]){if(by.nodeType===1&&++bv===e){break}}return by},sibling:function(bw,bv){var e=[];for(;bw;bw=bw.nextSibling){if(bw.nodeType===1&&bw!==bv){e.push(bw)}}return e}});function aG(bx,bw,e){bw=bw||0;if(b.isFunction(bw)){return b.grep(bx,function(bz,by){var bA=!!bw.call(bz,by,bz);return bA===e})}else{if(bw.nodeType){return b.grep(bx,function(bz,by){return(bz===bw)===e})}else{if(typeof bw===\"string\"){var bv=b.grep(bx,function(by){return by.nodeType===1});if(bp.test(bw)){return b.filter(bw,bv,!e)}else{bw=b.filter(bw,bv)}}}}return b.grep(bx,function(bz,by){return(b.inArray(bz,bw)>=0)===e})}function a(e){var bw=aR.split(\"|\"),bv=e.createDocumentFragment();if(bv.createElement){while(bw.length){bv.createElement(bw.pop())}}return bv}var aR=\"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video\",ag=/ jQuery\\d+=\"(?:\\d+|null)\"/g,ar=/^\\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/ig,d=/<([\\w:]+)/,w=/<tbody/i,W=/<|&#?\\w+;/,ae=/<(?:script|style)/i,O=/<(?:script|object|embed|option|style)/i,ah=new RegExp(\"<(?:\"+aR+\")\",\"i\"),o=/checked\\s*(?:[^=]|=\\s*.checked.)/i,bm=/\\/(java|ecma)script/i,aN=/^\\s*<!(?:\\[CDATA\\[|\\-\\-)/,ax={option:[1,\"<select multiple='multiple'>\",\"</select>\"],legend:[1,\"<fieldset>\",\"</fieldset>\"],thead:[1,\"<table>\",\"</table>\"],tr:[2,\"<table><tbody>\",\"</tbody></table>\"],td:[3,\"<table><tbody><tr>\",\"</tr></tbody></table>\"],col:[2,\"<table><tbody></tbody><colgroup>\",\"</colgroup></table>\"],area:[1,\"<map>\",\"</map>\"],_default:[0,\"\",\"\"]},ac=a(av);ax.optgroup=ax.option;ax.tbody=ax.tfoot=ax.colgroup=ax.caption=ax.thead;ax.th=ax.td;if(!b.support.htmlSerialize){ax._default=[1,\"div<div>\",\"</div>\"]}b.fn.extend({text:function(e){if(b.isFunction(e)){return this.each(function(bw){var bv=b(this);bv.text(e.call(this,bw,bv.text()))})}if(typeof e!==\"object\"&&e!==L){return this.empty().append((this[0]&&this[0].ownerDocument||av).createTextNode(e))}return b.text(this)},wrapAll:function(e){if(b.isFunction(e)){return this.each(function(bw){b(this).wrapAll(e.call(this,bw))})}if(this[0]){var bv=b(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){bv.insertBefore(this[0])}bv.map(function(){var bw=this;while(bw.firstChild&&bw.firstChild.nodeType===1){bw=bw.firstChild}return bw}).append(this)}return this},wrapInner:function(e){if(b.isFunction(e)){return this.each(function(bv){b(this).wrapInner(e.call(this,bv))})}return this.each(function(){var bv=b(this),bw=bv.contents();if(bw.length){bw.wrapAll(e)}else{bv.append(e)}})},wrap:function(e){var bv=b.isFunction(e);return this.each(function(bw){b(this).wrapAll(bv?e.call(this,bw):e)})},unwrap:function(){return this.parent().each(function(){if(!b.nodeName(this,\"body\")){b(this).replaceWith(this.childNodes)}}).end()},append:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.appendChild(e)}})},prepend:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.insertBefore(e,this.firstChild)}})},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this)})}else{if(arguments.length){var e=b.clean(arguments);e.push.apply(e,this.toArray());return this.pushStack(e,\"before\",arguments)}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this.nextSibling)})}else{if(arguments.length){var e=this.pushStack(this,\"after\",arguments);e.push.apply(e,b.clean(arguments));return e}}},remove:function(e,bx){for(var bv=0,bw;(bw=this[bv])!=null;bv++){if(!e||b.filter(e,[bw]).length){if(!bx&&bw.nodeType===1){b.cleanData(bw.getElementsByTagName(\"*\"));b.cleanData([bw])}if(bw.parentNode){bw.parentNode.removeChild(bw)}}}return this},empty:function(){for(var e=0,bv;(bv=this[e])!=null;e++){if(bv.nodeType===1){b.cleanData(bv.getElementsByTagName(\"*\"))}while(bv.firstChild){bv.removeChild(bv.firstChild)}}return this},clone:function(bv,e){bv=bv==null?false:bv;e=e==null?bv:e;return this.map(function(){return b.clone(this,bv,e)})},html:function(bx){if(bx===L){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(ag,\"\"):null}else{if(typeof bx===\"string\"&&!ae.test(bx)&&(b.support.leadingWhitespace||!ar.test(bx))&&!ax[(d.exec(bx)||[\"\",\"\"])[1].toLowerCase()]){bx=bx.replace(R,\"<$1></$2>\");try{for(var bw=0,bv=this.length;bw<bv;bw++){if(this[bw].nodeType===1){b.cleanData(this[bw].getElementsByTagName(\"*\"));this[bw].innerHTML=bx}}}catch(by){this.empty().append(bx)}}else{if(b.isFunction(bx)){this.each(function(bz){var e=b(this);e.html(bx.call(this,bz,e.html()))})}else{this.empty().append(bx)}}}return this},replaceWith:function(e){if(this[0]&&this[0].parentNode){if(b.isFunction(e)){return this.each(function(bx){var bw=b(this),bv=bw.html();bw.replaceWith(e.call(this,bx,bv))})}if(typeof e!==\"string\"){e=b(e).detach()}return this.each(function(){var bw=this.nextSibling,bv=this.parentNode;b(this).remove();if(bw){b(bw).before(e)}else{b(bv).append(e)}})}else{return this.length?this.pushStack(b(b.isFunction(e)?e():e),\"replaceWith\",e):this}},detach:function(e){return this.remove(e,true)},domManip:function(bB,bF,bE){var bx,by,bA,bD,bC=bB[0],bv=[];if(!b.support.checkClone&&arguments.length===3&&typeof bC===\"string\"&&o.test(bC)){return this.each(function(){b(this).domManip(bB,bF,bE,true)})}if(b.isFunction(bC)){return this.each(function(bH){var bG=b(this);bB[0]=bC.call(this,bH,bF?bG.html():L);bG.domManip(bB,bF,bE)})}if(this[0]){bD=bC&&bC.parentNode;if(b.support.parentNode&&bD&&bD.nodeType===11&&bD.childNodes.length===this.length){bx={fragment:bD}}else{bx=b.buildFragment(bB,this,bv)}bA=bx.fragment;if(bA.childNodes.length===1){by=bA=bA.firstChild}else{by=bA.firstChild}if(by){bF=bF&&b.nodeName(by,\"tr\");for(var bw=0,e=this.length,bz=e-1;bw<e;bw++){bE.call(bF?ba(this[bw],by):this[bw],bx.cacheable||(e>1&&bw<bz)?b.clone(bA,true,true):bA)}}if(bv.length){b.each(bv,bo)}}return this}});function ba(e,bv){return b.nodeName(e,\"table\")?(e.getElementsByTagName(\"tbody\")[0]||e.appendChild(e.ownerDocument.createElement(\"tbody\"))):e}function t(bB,bv){if(bv.nodeType!==1||!b.hasData(bB)){return}var by,bx,e,bA=b._data(bB),bz=b._data(bv,bA),bw=bA.events;if(bw){delete bz.handle;bz.events={};for(by in bw){for(bx=0,e=bw[by].length;bx<e;bx++){b.event.add(bv,by+(bw[by][bx].namespace?\".\":\"\")+bw[by][bx].namespace,bw[by][bx],bw[by][bx].data)}}}if(bz.data){bz.data=b.extend({},bz.data)}}function ai(bv,e){var bw;if(e.nodeType!==1){return}if(e.clearAttributes){e.clearAttributes()}if(e.mergeAttributes){e.mergeAttributes(bv)}bw=e.nodeName.toLowerCase();if(bw===\"object\"){e.outerHTML=bv.outerHTML}else{if(bw===\"input\"&&(bv.type===\"checkbox\"||bv.type===\"radio\")){if(bv.checked){e.defaultChecked=e.checked=bv.checked}if(e.value!==bv.value){e.value=bv.value}}else{if(bw===\"option\"){e.selected=bv.defaultSelected}else{if(bw===\"input\"||bw===\"textarea\"){e.defaultValue=bv.defaultValue}}}}e.removeAttribute(b.expando)}b.buildFragment=function(bz,bx,bv){var by,e,bw,bA,bB=bz[0];if(bx&&bx[0]){bA=bx[0].ownerDocument||bx[0]}if(!bA.createDocumentFragment){bA=av}if(bz.length===1&&typeof bB===\"string\"&&bB.length<512&&bA===av&&bB.charAt(0)===\"<\"&&!O.test(bB)&&(b.support.checkClone||!o.test(bB))&&(b.support.html5Clone||!ah.test(bB))){e=true;bw=b.fragments[bB];if(bw&&bw!==1){by=bw}}if(!by){by=bA.createDocumentFragment();b.clean(bz,bA,by,bv)}if(e){b.fragments[bB]=bw?by:1}return{fragment:by,cacheable:e}};b.fragments={};b.each({appendTo:\"append\",prependTo:\"prepend\",insertBefore:\"before\",insertAfter:\"after\",replaceAll:\"replaceWith\"},function(e,bv){b.fn[e]=function(bw){var bz=[],bC=b(bw),bB=this.length===1&&this[0].parentNode;if(bB&&bB.nodeType===11&&bB.childNodes.length===1&&bC.length===1){bC[bv](this[0]);return this}else{for(var bA=0,bx=bC.length;bA<bx;bA++){var by=(bA>0?this.clone(true):this).get();b(bC[bA])[bv](by);bz=bz.concat(by)}return this.pushStack(bz,e,bC.selector)}}});function bg(e){if(typeof e.getElementsByTagName!==\"undefined\"){return e.getElementsByTagName(\"*\")}else{if(typeof e.querySelectorAll!==\"undefined\"){return e.querySelectorAll(\"*\")}else{return[]}}}function az(e){if(e.type===\"checkbox\"||e.type===\"radio\"){e.defaultChecked=e.checked}}function E(e){var bv=(e.nodeName||\"\").toLowerCase();if(bv===\"input\"){az(e)}else{if(bv!==\"script\"&&typeof e.getElementsByTagName!==\"undefined\"){b.grep(e.getElementsByTagName(\"input\"),az)}}}function al(e){var bv=av.createElement(\"div\");ac.appendChild(bv);bv.innerHTML=e.outerHTML;return bv.firstChild}b.extend({clone:function(by,bA,bw){var e,bv,bx,bz=b.support.html5Clone||!ah.test(\"<\"+by.nodeName)?by.cloneNode(true):al(by);if((!b.support.noCloneEvent||!b.support.noCloneChecked)&&(by.nodeType===1||by.nodeType===11)&&!b.isXMLDoc(by)){ai(by,bz);e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){if(bv[bx]){ai(e[bx],bv[bx])}}}if(bA){t(by,bz);if(bw){e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){t(e[bx],bv[bx])}}}e=bv=null;return bz},clean:function(bw,by,bH,bA){var bF;by=by||av;if(typeof by.createElement===\"undefined\"){by=by.ownerDocument||by[0]&&by[0].ownerDocument||av}var bI=[],bB;for(var bE=0,bz;(bz=bw[bE])!=null;bE++){if(typeof bz===\"number\"){bz+=\"\"}if(!bz){continue}if(typeof bz===\"string\"){if(!W.test(bz)){bz=by.createTextNode(bz)}else{bz=bz.replace(R,\"<$1></$2>\");var bK=(d.exec(bz)||[\"\",\"\"])[1].toLowerCase(),bx=ax[bK]||ax._default,bD=bx[0],bv=by.createElement(\"div\");if(by===av){ac.appendChild(bv)}else{a(by).appendChild(bv)}bv.innerHTML=bx[1]+bz+bx[2];while(bD--){bv=bv.lastChild}if(!b.support.tbody){var e=w.test(bz),bC=bK===\"table\"&&!e?bv.firstChild&&bv.firstChild.childNodes:bx[1]===\"<table>\"&&!e?bv.childNodes:[];for(bB=bC.length-1;bB>=0;--bB){if(b.nodeName(bC[bB],\"tbody\")&&!bC[bB].childNodes.length){bC[bB].parentNode.removeChild(bC[bB])}}}if(!b.support.leadingWhitespace&&ar.test(bz)){bv.insertBefore(by.createTextNode(ar.exec(bz)[0]),bv.firstChild)}bz=bv.childNodes}}var bG;if(!b.support.appendChecked){if(bz[0]&&typeof(bG=bz.length)===\"number\"){for(bB=0;bB<bG;bB++){E(bz[bB])}}else{E(bz)}}if(bz.nodeType){bI.push(bz)}else{bI=b.merge(bI,bz)}}if(bH){bF=function(bL){return !bL.type||bm.test(bL.type)};for(bE=0;bI[bE];bE++){if(bA&&b.nodeName(bI[bE],\"script\")&&(!bI[bE].type||bI[bE].type.toLowerCase()===\"text/javascript\")){bA.push(bI[bE].parentNode?bI[bE].parentNode.removeChild(bI[bE]):bI[bE])}else{if(bI[bE].nodeType===1){var bJ=b.grep(bI[bE].getElementsByTagName(\"script\"),bF);bI.splice.apply(bI,[bE+1,0].concat(bJ))}bH.appendChild(bI[bE])}}}return bI},cleanData:function(bv){var by,bw,e=b.cache,bB=b.event.special,bA=b.support.deleteExpando;for(var bz=0,bx;(bx=bv[bz])!=null;bz++){if(bx.nodeName&&b.noData[bx.nodeName.toLowerCase()]){continue}bw=bx[b.expando];if(bw){by=e[bw];if(by&&by.events){for(var bC in by.events){if(bB[bC]){b.event.remove(bx,bC)}else{b.removeEvent(bx,bC,by.handle)}}if(by.handle){by.handle.elem=null}}if(bA){delete bx[b.expando]}else{if(bx.removeAttribute){bx.removeAttribute(b.expando)}}delete e[bw]}}}});function bo(e,bv){if(bv.src){b.ajax({url:bv.src,async:false,dataType:\"script\"})}else{b.globalEval((bv.text||bv.textContent||bv.innerHTML||\"\").replace(aN,\"/*$0*/\"))}if(bv.parentNode){bv.parentNode.removeChild(bv)}}var ak=/alpha\\([^)]*\\)/i,au=/opacity=([^)]*)/,z=/([A-Z]|^ms)/g,bc=/^-?\\d+(?:px)?$/i,bn=/^-?\\d/,I=/^([\\-+])=([\\-+.\\de]+)/,a7={position:\"absolute\",visibility:\"hidden\",display:\"block\"},an=[\"Left\",\"Right\"],a1=[\"Top\",\"Bottom\"],Z,aI,aX;b.fn.css=function(e,bv){if(arguments.length===2&&bv===L){return this}return b.access(this,e,bv,true,function(bx,bw,by){return by!==L?b.style(bx,bw,by):b.css(bx,bw)})};b.extend({cssHooks:{opacity:{get:function(bw,bv){if(bv){var e=Z(bw,\"opacity\",\"opacity\");return e===\"\"?\"1\":e}else{return bw.style.opacity}}}},cssNumber:{fillOpacity:true,fontWeight:true,lineHeight:true,opacity:true,orphans:true,widows:true,zIndex:true,zoom:true},cssProps:{\"float\":b.support.cssFloat?\"cssFloat\":\"styleFloat\"},style:function(bx,bw,bD,by){if(!bx||bx.nodeType===3||bx.nodeType===8||!bx.style){return}var bB,bC,bz=b.camelCase(bw),bv=bx.style,bE=b.cssHooks[bz];bw=b.cssProps[bz]||bz;if(bD!==L){bC=typeof bD;if(bC===\"string\"&&(bB=I.exec(bD))){bD=(+(bB[1]+1)*+bB[2])+parseFloat(b.css(bx,bw));bC=\"number\"}if(bD==null||bC===\"number\"&&isNaN(bD)){return}if(bC===\"number\"&&!b.cssNumber[bz]){bD+=\"px\"}if(!bE||!(\"set\" in bE)||(bD=bE.set(bx,bD))!==L){try{bv[bw]=bD}catch(bA){}}}else{if(bE&&\"get\" in bE&&(bB=bE.get(bx,false,by))!==L){return bB}return bv[bw]}},css:function(by,bx,bv){var bw,e;bx=b.camelCase(bx);e=b.cssHooks[bx];bx=b.cssProps[bx]||bx;if(bx===\"cssFloat\"){bx=\"float\"}if(e&&\"get\" in e&&(bw=e.get(by,true,bv))!==L){return bw}else{if(Z){return Z(by,bx)}}},swap:function(bx,bw,by){var e={};for(var bv in bw){e[bv]=bx.style[bv];bx.style[bv]=bw[bv]}by.call(bx);for(bv in bw){bx.style[bv]=e[bv]}}});b.curCSS=b.css;b.each([\"height\",\"width\"],function(bv,e){b.cssHooks[e]={get:function(by,bx,bw){var bz;if(bx){if(by.offsetWidth!==0){return p(by,e,bw)}else{b.swap(by,a7,function(){bz=p(by,e,bw)})}return bz}},set:function(bw,bx){if(bc.test(bx)){bx=parseFloat(bx);if(bx>=0){return bx+\"px\"}}else{return bx}}}});if(!b.support.opacity){b.cssHooks.opacity={get:function(bv,e){return au.test((e&&bv.currentStyle?bv.currentStyle.filter:bv.style.filter)||\"\")?(parseFloat(RegExp.$1)/100)+\"\":e?\"1\":\"\"},set:function(by,bz){var bx=by.style,bv=by.currentStyle,e=b.isNumeric(bz)?\"alpha(opacity=\"+bz*100+\")\":\"\",bw=bv&&bv.filter||bx.filter||\"\";bx.zoom=1;if(bz>=1&&b.trim(bw.replace(ak,\"\"))===\"\"){bx.removeAttribute(\"filter\");if(bv&&!bv.filter){return}}bx.filter=ak.test(bw)?bw.replace(ak,e):bw+\" \"+e}}}b(function(){if(!b.support.reliableMarginRight){b.cssHooks.marginRight={get:function(bw,bv){var e;b.swap(bw,{display:\"inline-block\"},function(){if(bv){e=Z(bw,\"margin-right\",\"marginRight\")}else{e=bw.style.marginRight}});return e}}}});if(av.defaultView&&av.defaultView.getComputedStyle){aI=function(by,bw){var bv,bx,e;bw=bw.replace(z,\"-$1\").toLowerCase();if((bx=by.ownerDocument.defaultView)&&(e=bx.getComputedStyle(by,null))){bv=e.getPropertyValue(bw);if(bv===\"\"&&!b.contains(by.ownerDocument.documentElement,by)){bv=b.style(by,bw)}}return bv}}if(av.documentElement.currentStyle){aX=function(bz,bw){var bA,e,by,bv=bz.currentStyle&&bz.currentStyle[bw],bx=bz.style;if(bv===null&&bx&&(by=bx[bw])){bv=by}if(!bc.test(bv)&&bn.test(bv)){bA=bx.left;e=bz.runtimeStyle&&bz.runtimeStyle.left;if(e){bz.runtimeStyle.left=bz.currentStyle.left}bx.left=bw===\"fontSize\"?\"1em\":(bv||0);bv=bx.pixelLeft+\"px\";bx.left=bA;if(e){bz.runtimeStyle.left=e}}return bv===\"\"?\"auto\":bv}}Z=aI||aX;function p(by,bw,bv){var bA=bw===\"width\"?by.offsetWidth:by.offsetHeight,bz=bw===\"width\"?an:a1,bx=0,e=bz.length;if(bA>0){if(bv!==\"border\"){for(;bx<e;bx++){if(!bv){bA-=parseFloat(b.css(by,\"padding\"+bz[bx]))||0}if(bv===\"margin\"){bA+=parseFloat(b.css(by,bv+bz[bx]))||0}else{bA-=parseFloat(b.css(by,\"border\"+bz[bx]+\"Width\"))||0}}}return bA+\"px\"}bA=Z(by,bw,bw);if(bA<0||bA==null){bA=by.style[bw]||0}bA=parseFloat(bA)||0;if(bv){for(;bx<e;bx++){bA+=parseFloat(b.css(by,\"padding\"+bz[bx]))||0;if(bv!==\"padding\"){bA+=parseFloat(b.css(by,\"border\"+bz[bx]+\"Width\"))||0}if(bv===\"margin\"){bA+=parseFloat(b.css(by,bv+bz[bx]))||0}}}return bA+\"px\"}if(b.expr&&b.expr.filters){b.expr.filters.hidden=function(bw){var bv=bw.offsetWidth,e=bw.offsetHeight;return(bv===0&&e===0)||(!b.support.reliableHiddenOffsets&&((bw.style&&bw.style.display)||b.css(bw,\"display\"))===\"none\")};b.expr.filters.visible=function(e){return !b.expr.filters.hidden(e)}}var k=/%20/g,ap=/\\[\\]$/,bs=/\\r?\\n/g,bq=/#.*$/,aD=/^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg,aZ=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,aM=/^(?:about|app|app\\-storage|.+\\-extension|file|res|widget):$/,aQ=/^(?:GET|HEAD)$/,c=/^\\/\\//,M=/\\?/,a6=/<script\\b[^<]*(?:(?!<\\/script>)<[^<]*)*<\\/script>/gi,q=/^(?:select|textarea)/i,h=/\\s+/,br=/([?&])_=[^&]*/,K=/^([\\w\\+\\.\\-]+:)(?:\\/\\/([^\\/?#:]*)(?::(\\d+))?)?/,A=b.fn.load,aa={},r={},aE,s,aV=[\"*/\"]+[\"*\"];try{aE=bl.href}catch(aw){aE=av.createElement(\"a\");aE.href=\"\";aE=aE.href}s=K.exec(aE.toLowerCase())||[];function f(e){return function(by,bA){if(typeof by!==\"string\"){bA=by;by=\"*\"}if(b.isFunction(bA)){var bx=by.toLowerCase().split(h),bw=0,bz=bx.length,bv,bB,bC;for(;bw<bz;bw++){bv=bx[bw];bC=/^\\+/.test(bv);if(bC){bv=bv.substr(1)||\"*\"}bB=e[bv]=e[bv]||[];bB[bC?\"unshift\":\"push\"](bA)}}}}function aW(bv,bE,bz,bD,bB,bx){bB=bB||bE.dataTypes[0];bx=bx||{};bx[bB]=true;var bA=bv[bB],bw=0,e=bA?bA.length:0,by=(bv===aa),bC;for(;bw<e&&(by||!bC);bw++){bC=bA[bw](bE,bz,bD);if(typeof bC===\"string\"){if(!by||bx[bC]){bC=L}else{bE.dataTypes.unshift(bC);bC=aW(bv,bE,bz,bD,bC,bx)}}}if((by||!bC)&&!bx[\"*\"]){bC=aW(bv,bE,bz,bD,\"*\",bx)}return bC}function am(bw,bx){var bv,e,by=b.ajaxSettings.flatOptions||{};for(bv in bx){if(bx[bv]!==L){(by[bv]?bw:(e||(e={})))[bv]=bx[bv]}}if(e){b.extend(true,bw,e)}}b.fn.extend({load:function(bw,bz,bA){if(typeof bw!==\"string\"&&A){return A.apply(this,arguments)}else{if(!this.length){return this}}var by=bw.indexOf(\" \");if(by>=0){var e=bw.slice(by,bw.length);bw=bw.slice(0,by)}var bx=\"GET\";if(bz){if(b.isFunction(bz)){bA=bz;bz=L}else{if(typeof bz===\"object\"){bz=b.param(bz,b.ajaxSettings.traditional);bx=\"POST\"}}}var bv=this;b.ajax({url:bw,type:bx,dataType:\"html\",data:bz,complete:function(bC,bB,bD){bD=bC.responseText;if(bC.isResolved()){bC.done(function(bE){bD=bE});bv.html(e?b(\"<div>\").append(bD.replace(a6,\"\")).find(e):bD)}if(bA){bv.each(bA,[bD,bB,bC])}}});return this},serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?b.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||q.test(this.nodeName)||aZ.test(this.type))}).map(function(e,bv){var bw=b(this).val();return bw==null?null:b.isArray(bw)?b.map(bw,function(by,bx){return{name:bv.name,value:by.replace(bs,\"\\r\\n\")}}):{name:bv.name,value:bw.replace(bs,\"\\r\\n\")}}).get()}});b.each(\"ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend\".split(\" \"),function(e,bv){b.fn[bv]=function(bw){return this.on(bv,bw)}});b.each([\"get\",\"post\"],function(e,bv){b[bv]=function(bw,by,bz,bx){if(b.isFunction(by)){bx=bx||bz;bz=by;by=L}return b.ajax({type:bv,url:bw,data:by,success:bz,dataType:bx})}});b.extend({getScript:function(e,bv){return b.get(e,L,bv,\"script\")},getJSON:function(e,bv,bw){return b.get(e,bv,bw,\"json\")},ajaxSetup:function(bv,e){if(e){am(bv,b.ajaxSettings)}else{e=bv;bv=b.ajaxSettings}am(bv,e);return bv},ajaxSettings:{url:aE,isLocal:aM.test(s[1]),global:true,type:\"GET\",contentType:\"application/x-www-form-urlencoded\",processData:true,async:true,accepts:{xml:\"application/xml, text/xml\",html:\"text/html\",text:\"text/plain\",json:\"application/json, text/javascript\",\"*\":aV},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:\"responseXML\",text:\"responseText\"},converters:{\"* text\":bb.String,\"text html\":true,\"text json\":b.parseJSON,\"text xml\":b.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:f(aa),ajaxTransport:f(r),ajax:function(bz,bx){if(typeof bz===\"object\"){bx=bz;bz=L}bx=bx||{};var bD=b.ajaxSetup({},bx),bS=bD.context||bD,bG=bS!==bD&&(bS.nodeType||bS instanceof b)?b(bS):b.event,bR=b.Deferred(),bN=b.Callbacks(\"once memory\"),bB=bD.statusCode||{},bC,bH={},bO={},bQ,by,bL,bE,bI,bA=0,bw,bK,bJ={readyState:0,setRequestHeader:function(bT,bU){if(!bA){var e=bT.toLowerCase();bT=bO[e]=bO[e]||bT;bH[bT]=bU}return this},getAllResponseHeaders:function(){return bA===2?bQ:null},getResponseHeader:function(bT){var e;if(bA===2){if(!by){by={};while((e=aD.exec(bQ))){by[e[1].toLowerCase()]=e[2]}}e=by[bT.toLowerCase()]}return e===L?null:e},overrideMimeType:function(e){if(!bA){bD.mimeType=e}return this},abort:function(e){e=e||\"abort\";if(bL){bL.abort(e)}bF(0,e);return this}};function bF(bZ,bU,b0,bW){if(bA===2){return}bA=2;if(bE){clearTimeout(bE)}bL=L;bQ=bW||\"\";bJ.readyState=bZ>0?4:0;var bT,b4,b3,bX=bU,bY=b0?bj(bD,bJ,b0):L,bV,b2;if(bZ>=200&&bZ<300||bZ===304){if(bD.ifModified){if((bV=bJ.getResponseHeader(\"Last-Modified\"))){b.lastModified[bC]=bV}if((b2=bJ.getResponseHeader(\"Etag\"))){b.etag[bC]=b2}}if(bZ===304){bX=\"notmodified\";bT=true}else{try{b4=G(bD,bY);bX=\"success\";bT=true}catch(b1){bX=\"parsererror\";b3=b1}}}else{b3=bX;if(!bX||bZ){bX=\"error\";if(bZ<0){bZ=0}}}bJ.status=bZ;bJ.statusText=\"\"+(bU||bX);if(bT){bR.resolveWith(bS,[b4,bX,bJ])}else{bR.rejectWith(bS,[bJ,bX,b3])}bJ.statusCode(bB);bB=L;if(bw){bG.trigger(\"ajax\"+(bT?\"Success\":\"Error\"),[bJ,bD,bT?b4:b3])}bN.fireWith(bS,[bJ,bX]);if(bw){bG.trigger(\"ajaxComplete\",[bJ,bD]);if(!(--b.active)){b.event.trigger(\"ajaxStop\")}}}bR.promise(bJ);bJ.success=bJ.done;bJ.error=bJ.fail;bJ.complete=bN.add;bJ.statusCode=function(bT){if(bT){var e;if(bA<2){for(e in bT){bB[e]=[bB[e],bT[e]]}}else{e=bT[bJ.status];bJ.then(e,e)}}return this};bD.url=((bz||bD.url)+\"\").replace(bq,\"\").replace(c,s[1]+\"//\");bD.dataTypes=b.trim(bD.dataType||\"*\").toLowerCase().split(h);if(bD.crossDomain==null){bI=K.exec(bD.url.toLowerCase());bD.crossDomain=!!(bI&&(bI[1]!=s[1]||bI[2]!=s[2]||(bI[3]||(bI[1]===\"http:\"?80:443))!=(s[3]||(s[1]===\"http:\"?80:443))))}if(bD.data&&bD.processData&&typeof bD.data!==\"string\"){bD.data=b.param(bD.data,bD.traditional)}aW(aa,bD,bx,bJ);if(bA===2){return false}bw=bD.global;bD.type=bD.type.toUpperCase();bD.hasContent=!aQ.test(bD.type);if(bw&&b.active++===0){b.event.trigger(\"ajaxStart\")}if(!bD.hasContent){if(bD.data){bD.url+=(M.test(bD.url)?\"&\":\"?\")+bD.data;delete bD.data}bC=bD.url;if(bD.cache===false){var bv=b.now(),bP=bD.url.replace(br,\"$1_=\"+bv);bD.url=bP+((bP===bD.url)?(M.test(bD.url)?\"&\":\"?\")+\"_=\"+bv:\"\")}}if(bD.data&&bD.hasContent&&bD.contentType!==false||bx.contentType){bJ.setRequestHeader(\"Content-Type\",bD.contentType)}if(bD.ifModified){bC=bC||bD.url;if(b.lastModified[bC]){bJ.setRequestHeader(\"If-Modified-Since\",b.lastModified[bC])}if(b.etag[bC]){bJ.setRequestHeader(\"If-None-Match\",b.etag[bC])}}bJ.setRequestHeader(\"Accept\",bD.dataTypes[0]&&bD.accepts[bD.dataTypes[0]]?bD.accepts[bD.dataTypes[0]]+(bD.dataTypes[0]!==\"*\"?\", \"+aV+\"; q=0.01\":\"\"):bD.accepts[\"*\"]);for(bK in bD.headers){bJ.setRequestHeader(bK,bD.headers[bK])}if(bD.beforeSend&&(bD.beforeSend.call(bS,bJ,bD)===false||bA===2)){bJ.abort();return false}for(bK in {success:1,error:1,complete:1}){bJ[bK](bD[bK])}bL=aW(r,bD,bx,bJ);if(!bL){bF(-1,\"No Transport\")}else{bJ.readyState=1;if(bw){bG.trigger(\"ajaxSend\",[bJ,bD])}if(bD.async&&bD.timeout>0){bE=setTimeout(function(){bJ.abort(\"timeout\")},bD.timeout)}try{bA=1;bL.send(bH,bF)}catch(bM){if(bA<2){bF(-1,bM)}else{throw bM}}}return bJ},param:function(e,bw){var bv=[],by=function(bz,bA){bA=b.isFunction(bA)?bA():bA;bv[bv.length]=encodeURIComponent(bz)+\"=\"+encodeURIComponent(bA)};if(bw===L){bw=b.ajaxSettings.traditional}if(b.isArray(e)||(e.jquery&&!b.isPlainObject(e))){b.each(e,function(){by(this.name,this.value)})}else{for(var bx in e){v(bx,e[bx],bw,by)}}return bv.join(\"&\").replace(k,\"+\")}});function v(bw,by,bv,bx){if(b.isArray(by)){b.each(by,function(bA,bz){if(bv||ap.test(bw)){bx(bw,bz)}else{v(bw+\"[\"+(typeof bz===\"object\"||b.isArray(bz)?bA:\"\")+\"]\",bz,bv,bx)}})}else{if(!bv&&by!=null&&typeof by===\"object\"){for(var e in by){v(bw+\"[\"+e+\"]\",by[e],bv,bx)}}else{bx(bw,by)}}}b.extend({active:0,lastModified:{},etag:{}});function bj(bD,bC,bz){var bv=bD.contents,bB=bD.dataTypes,bw=bD.responseFields,by,bA,bx,e;for(bA in bw){if(bA in bz){bC[bw[bA]]=bz[bA]}}while(bB[0]===\"*\"){bB.shift();if(by===L){by=bD.mimeType||bC.getResponseHeader(\"content-type\")}}if(by){for(bA in bv){if(bv[bA]&&bv[bA].test(by)){bB.unshift(bA);break}}}if(bB[0] in bz){bx=bB[0]}else{for(bA in bz){if(!bB[0]||bD.converters[bA+\" \"+bB[0]]){bx=bA;break}if(!e){e=bA}}bx=bx||e}if(bx){if(bx!==bB[0]){bB.unshift(bx)}return bz[bx]}}function G(bH,bz){if(bH.dataFilter){bz=bH.dataFilter(bz,bH.dataType)}var bD=bH.dataTypes,bG={},bA,bE,bw=bD.length,bB,bC=bD[0],bx,by,bF,bv,e;for(bA=1;bA<bw;bA++){if(bA===1){for(bE in bH.converters){if(typeof bE===\"string\"){bG[bE.toLowerCase()]=bH.converters[bE]}}}bx=bC;bC=bD[bA];if(bC===\"*\"){bC=bx}else{if(bx!==\"*\"&&bx!==bC){by=bx+\" \"+bC;bF=bG[by]||bG[\"* \"+bC];if(!bF){e=L;for(bv in bG){bB=bv.split(\" \");if(bB[0]===bx||bB[0]===\"*\"){e=bG[bB[1]+\" \"+bC];if(e){bv=bG[bv];if(bv===true){bF=e}else{if(e===true){bF=bv}}break}}}}if(!(bF||e)){b.error(\"No conversion from \"+by.replace(\" \",\" to \"))}if(bF!==true){bz=bF?bF(bz):e(bv(bz))}}}}return bz}var aC=b.now(),u=/(\\=)\\?(&|$)|\\?\\?/i;b.ajaxSetup({jsonp:\"callback\",jsonpCallback:function(){return b.expando+\"_\"+(aC++)}});b.ajaxPrefilter(\"json jsonp\",function(bD,bA,bC){var bx=bD.contentType===\"application/x-www-form-urlencoded\"&&(typeof bD.data===\"string\");if(bD.dataTypes[0]===\"jsonp\"||bD.jsonp!==false&&(u.test(bD.url)||bx&&u.test(bD.data))){var bB,bw=bD.jsonpCallback=b.isFunction(bD.jsonpCallback)?bD.jsonpCallback():bD.jsonpCallback,bz=bb[bw],e=bD.url,by=bD.data,bv=\"$1\"+bw+\"$2\";if(bD.jsonp!==false){e=e.replace(u,bv);if(bD.url===e){if(bx){by=by.replace(u,bv)}if(bD.data===by){e+=(/\\?/.test(e)?\"&\":\"?\")+bD.jsonp+\"=\"+bw}}}bD.url=e;bD.data=by;bb[bw]=function(bE){bB=[bE]};bC.always(function(){bb[bw]=bz;if(bB&&b.isFunction(bz)){bb[bw](bB[0])}});bD.converters[\"script json\"]=function(){if(!bB){b.error(bw+\" was not called\")}return bB[0]};bD.dataTypes[0]=\"json\";return\"script\"}});b.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/javascript|ecmascript/},converters:{\"text script\":function(e){b.globalEval(e);return e}}});b.ajaxPrefilter(\"script\",function(e){if(e.cache===L){e.cache=false}if(e.crossDomain){e.type=\"GET\";e.global=false}});b.ajaxTransport(\"script\",function(bw){if(bw.crossDomain){var e,bv=av.head||av.getElementsByTagName(\"head\")[0]||av.documentElement;return{send:function(bx,by){e=av.createElement(\"script\");e.async=\"async\";if(bw.scriptCharset){e.charset=bw.scriptCharset}e.src=bw.url;e.onload=e.onreadystatechange=function(bA,bz){if(bz||!e.readyState||/loaded|complete/.test(e.readyState)){e.onload=e.onreadystatechange=null;if(bv&&e.parentNode){bv.removeChild(e)}e=L;if(!bz){by(200,\"success\")}}};bv.insertBefore(e,bv.firstChild)},abort:function(){if(e){e.onload(0,1)}}}}});var B=bb.ActiveXObject?function(){for(var e in N){N[e](0,1)}}:false,y=0,N;function aL(){try{return new bb.XMLHttpRequest()}catch(bv){}}function aj(){try{return new bb.ActiveXObject(\"Microsoft.XMLHTTP\")}catch(bv){}}b.ajaxSettings.xhr=bb.ActiveXObject?function(){return !this.isLocal&&aL()||aj()}:aL;(function(e){b.extend(b.support,{ajax:!!e,cors:!!e&&(\"withCredentials\" in e)})})(b.ajaxSettings.xhr());if(b.support.ajax){b.ajaxTransport(function(e){if(!e.crossDomain||b.support.cors){var bv;return{send:function(bB,bw){var bA=e.xhr(),bz,by;if(e.username){bA.open(e.type,e.url,e.async,e.username,e.password)}else{bA.open(e.type,e.url,e.async)}if(e.xhrFields){for(by in e.xhrFields){bA[by]=e.xhrFields[by]}}if(e.mimeType&&bA.overrideMimeType){bA.overrideMimeType(e.mimeType)}if(!e.crossDomain&&!bB[\"X-Requested-With\"]){bB[\"X-Requested-With\"]=\"XMLHttpRequest\"}try{for(by in bB){bA.setRequestHeader(by,bB[by])}}catch(bx){}bA.send((e.hasContent&&e.data)||null);bv=function(bK,bE){var bF,bD,bC,bI,bH;try{if(bv&&(bE||bA.readyState===4)){bv=L;if(bz){bA.onreadystatechange=b.noop;if(B){delete N[bz]}}if(bE){if(bA.readyState!==4){bA.abort()}}else{bF=bA.status;bC=bA.getAllResponseHeaders();bI={};bH=bA.responseXML;if(bH&&bH.documentElement){bI.xml=bH}bI.text=bA.responseText;try{bD=bA.statusText}catch(bJ){bD=\"\"}if(!bF&&e.isLocal&&!e.crossDomain){bF=bI.text?200:404}else{if(bF===1223){bF=204}}}}}catch(bG){if(!bE){bw(-1,bG)}}if(bI){bw(bF,bD,bI,bC)}};if(!e.async||bA.readyState===4){bv()}else{bz=++y;if(B){if(!N){N={};b(bb).unload(B)}N[bz]=bv}bA.onreadystatechange=bv}},abort:function(){if(bv){bv(0,1)}}}}})}var Q={},a8,m,aB=/^(?:toggle|show|hide)$/,aT=/^([+\\-]=)?([\\d+.\\-]+)([a-z%]*)$/i,a3,aH=[[\"height\",\"marginTop\",\"marginBottom\",\"paddingTop\",\"paddingBottom\"],[\"width\",\"marginLeft\",\"marginRight\",\"paddingLeft\",\"paddingRight\"],[\"opacity\"]],a4;b.fn.extend({show:function(bx,bA,bz){var bw,by;if(bx||bx===0){return this.animate(a0(\"show\",3),bx,bA,bz)}else{for(var bv=0,e=this.length;bv<e;bv++){bw=this[bv];if(bw.style){by=bw.style.display;if(!b._data(bw,\"olddisplay\")&&by===\"none\"){by=bw.style.display=\"\"}if(by===\"\"&&b.css(bw,\"display\")===\"none\"){b._data(bw,\"olddisplay\",x(bw.nodeName))}}}for(bv=0;bv<e;bv++){bw=this[bv];if(bw.style){by=bw.style.display;if(by===\"\"||by===\"none\"){bw.style.display=b._data(bw,\"olddisplay\")||\"\"}}}return this}},hide:function(bx,bA,bz){if(bx||bx===0){return this.animate(a0(\"hide\",3),bx,bA,bz)}else{var bw,by,bv=0,e=this.length;for(;bv<e;bv++){bw=this[bv];if(bw.style){by=b.css(bw,\"display\");if(by!==\"none\"&&!b._data(bw,\"olddisplay\")){b._data(bw,\"olddisplay\",by)}}}for(bv=0;bv<e;bv++){if(this[bv].style){this[bv].style.display=\"none\"}}return this}},_toggle:b.fn.toggle,toggle:function(bw,bv,bx){var e=typeof bw===\"boolean\";if(b.isFunction(bw)&&b.isFunction(bv)){this._toggle.apply(this,arguments)}else{if(bw==null||e){this.each(function(){var by=e?bw:b(this).is(\":hidden\");b(this)[by?\"show\":\"hide\"]()})}else{this.animate(a0(\"toggle\",3),bw,bv,bx)}}return this},fadeTo:function(e,bx,bw,bv){return this.filter(\":hidden\").css(\"opacity\",0).show().end().animate({opacity:bx},e,bw,bv)},animate:function(bz,bw,by,bx){var e=b.speed(bw,by,bx);if(b.isEmptyObject(bz)){return this.each(e.complete,[false])}bz=b.extend({},bz);function bv(){if(e.queue===false){b._mark(this)}var bE=b.extend({},e),bK=this.nodeType===1,bI=bK&&b(this).is(\":hidden\"),bB,bF,bD,bJ,bH,bC,bG,bL,bA;bE.animatedProperties={};for(bD in bz){bB=b.camelCase(bD);if(bD!==bB){bz[bB]=bz[bD];delete bz[bD]}bF=bz[bB];if(b.isArray(bF)){bE.animatedProperties[bB]=bF[1];bF=bz[bB]=bF[0]}else{bE.animatedProperties[bB]=bE.specialEasing&&bE.specialEasing[bB]||bE.easing||\"swing\"}if(bF===\"hide\"&&bI||bF===\"show\"&&!bI){return bE.complete.call(this)}if(bK&&(bB===\"height\"||bB===\"width\")){bE.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(b.css(this,\"display\")===\"inline\"&&b.css(this,\"float\")===\"none\"){if(!b.support.inlineBlockNeedsLayout||x(this.nodeName)===\"inline\"){this.style.display=\"inline-block\"}else{this.style.zoom=1}}}}if(bE.overflow!=null){this.style.overflow=\"hidden\"}for(bD in bz){bJ=new b.fx(this,bE,bD);bF=bz[bD];if(aB.test(bF)){bA=b._data(this,\"toggle\"+bD)||(bF===\"toggle\"?bI?\"show\":\"hide\":0);if(bA){b._data(this,\"toggle\"+bD,bA===\"show\"?\"hide\":\"show\");bJ[bA]()}else{bJ[bF]()}}else{bH=aT.exec(bF);bC=bJ.cur();if(bH){bG=parseFloat(bH[2]);bL=bH[3]||(b.cssNumber[bD]?\"\":\"px\");if(bL!==\"px\"){b.style(this,bD,(bG||1)+bL);bC=((bG||1)/bJ.cur())*bC;b.style(this,bD,bC+bL)}if(bH[1]){bG=((bH[1]===\"-=\"?-1:1)*bG)+bC}bJ.custom(bC,bG,bL)}else{bJ.custom(bC,bF,\"\")}}}return true}return e.queue===false?this.each(bv):this.queue(e.queue,bv)},stop:function(bw,bv,e){if(typeof bw!==\"string\"){e=bv;bv=bw;bw=L}if(bv&&bw!==false){this.queue(bw||\"fx\",[])}return this.each(function(){var bx,by=false,bA=b.timers,bz=b._data(this);if(!e){b._unmark(true,this)}function bB(bE,bF,bD){var bC=bF[bD];b.removeData(bE,bD,true);bC.stop(e)}if(bw==null){for(bx in bz){if(bz[bx]&&bz[bx].stop&&bx.indexOf(\".run\")===bx.length-4){bB(this,bz,bx)}}}else{if(bz[bx=bw+\".run\"]&&bz[bx].stop){bB(this,bz,bx)}}for(bx=bA.length;bx--;){if(bA[bx].elem===this&&(bw==null||bA[bx].queue===bw)){if(e){bA[bx](true)}else{bA[bx].saveState()}by=true;bA.splice(bx,1)}}if(!(e&&by)){b.dequeue(this,bw)}})}});function bh(){setTimeout(at,0);return(a4=b.now())}function at(){a4=L}function a0(bv,e){var bw={};b.each(aH.concat.apply([],aH.slice(0,e)),function(){bw[this]=bv});return bw}b.each({slideDown:a0(\"show\",1),slideUp:a0(\"hide\",1),slideToggle:a0(\"toggle\",1),fadeIn:{opacity:\"show\"},fadeOut:{opacity:\"hide\"},fadeToggle:{opacity:\"toggle\"}},function(e,bv){b.fn[e]=function(bw,by,bx){return this.animate(bv,bw,by,bx)}});b.extend({speed:function(bw,bx,bv){var e=bw&&typeof bw===\"object\"?b.extend({},bw):{complete:bv||!bv&&bx||b.isFunction(bw)&&bw,duration:bw,easing:bv&&bx||bx&&!b.isFunction(bx)&&bx};e.duration=b.fx.off?0:typeof e.duration===\"number\"?e.duration:e.duration in b.fx.speeds?b.fx.speeds[e.duration]:b.fx.speeds._default;if(e.queue==null||e.queue===true){e.queue=\"fx\"}e.old=e.complete;e.complete=function(by){if(b.isFunction(e.old)){e.old.call(this)}if(e.queue){b.dequeue(this,e.queue)}else{if(by!==false){b._unmark(this)}}};return e},easing:{linear:function(bw,bx,e,bv){return e+bv*bw},swing:function(bw,bx,e,bv){return((-Math.cos(bw*Math.PI)/2)+0.5)*bv+e}},timers:[],fx:function(bv,e,bw){this.options=e;this.elem=bv;this.prop=bw;e.orig=e.orig||{}}});b.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(b.fx.step[this.prop]||b.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var e,bv=b.css(this.elem,this.prop);return isNaN(e=parseFloat(bv))?!bv||bv===\"auto\"?0:bv:e},custom:function(bz,by,bx){var e=this,bw=b.fx;this.startTime=a4||bh();this.end=by;this.now=this.start=bz;this.pos=this.state=0;this.unit=bx||this.unit||(b.cssNumber[this.prop]?\"\":\"px\");function bv(bA){return e.step(bA)}bv.queue=this.options.queue;bv.elem=this.elem;bv.saveState=function(){if(e.options.hide&&b._data(e.elem,\"fxshow\"+e.prop)===L){b._data(e.elem,\"fxshow\"+e.prop,e.start)}};if(bv()&&b.timers.push(bv)&&!a3){a3=setInterval(bw.tick,bw.interval)}},show:function(){var e=b._data(this.elem,\"fxshow\"+this.prop);this.options.orig[this.prop]=e||b.style(this.elem,this.prop);this.options.show=true;if(e!==L){this.custom(this.cur(),e)}else{this.custom(this.prop===\"width\"||this.prop===\"height\"?1:0,this.cur())}b(this.elem).show()},hide:function(){this.options.orig[this.prop]=b._data(this.elem,\"fxshow\"+this.prop)||b.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(by){var bA,bB,bv,bx=a4||bh(),e=true,bz=this.elem,bw=this.options;if(by||bx>=bw.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();bw.animatedProperties[this.prop]=true;for(bA in bw.animatedProperties){if(bw.animatedProperties[bA]!==true){e=false}}if(e){if(bw.overflow!=null&&!b.support.shrinkWrapBlocks){b.each([\"\",\"X\",\"Y\"],function(bC,bD){bz.style[\"overflow\"+bD]=bw.overflow[bC]})}if(bw.hide){b(bz).hide()}if(bw.hide||bw.show){for(bA in bw.animatedProperties){b.style(bz,bA,bw.orig[bA]);b.removeData(bz,\"fxshow\"+bA,true);b.removeData(bz,\"toggle\"+bA,true)}}bv=bw.complete;if(bv){bw.complete=false;bv.call(bz)}}return false}else{if(bw.duration==Infinity){this.now=bx}else{bB=bx-this.startTime;this.state=bB/bw.duration;this.pos=b.easing[bw.animatedProperties[this.prop]](this.state,bB,0,1,bw.duration);this.now=this.start+((this.end-this.start)*this.pos)}this.update()}return true}};b.extend(b.fx,{tick:function(){var bw,bv=b.timers,e=0;for(;e<bv.length;e++){bw=bv[e];if(!bw()&&bv[e]===bw){bv.splice(e--,1)}}if(!bv.length){b.fx.stop()}},interval:13,stop:function(){clearInterval(a3);a3=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(e){b.style(e.elem,\"opacity\",e.now)},_default:function(e){if(e.elem.style&&e.elem.style[e.prop]!=null){e.elem.style[e.prop]=e.now+e.unit}else{e.elem[e.prop]=e.now}}}});b.each([\"width\",\"height\"],function(e,bv){b.fx.step[bv]=function(bw){b.style(bw.elem,bv,Math.max(0,bw.now)+bw.unit)}});if(b.expr&&b.expr.filters){b.expr.filters.animated=function(e){return b.grep(b.timers,function(bv){return e===bv.elem}).length}}function x(bx){if(!Q[bx]){var e=av.body,bv=b(\"<\"+bx+\">\").appendTo(e),bw=bv.css(\"display\");bv.remove();if(bw===\"none\"||bw===\"\"){if(!a8){a8=av.createElement(\"iframe\");a8.frameBorder=a8.width=a8.height=0}e.appendChild(a8);if(!m||!a8.createElement){m=(a8.contentWindow||a8.contentDocument).document;m.write((av.compatMode===\"CSS1Compat\"?\"<!doctype html>\":\"\")+\"<html><body>\");m.close()}bv=m.createElement(bx);m.body.appendChild(bv);bw=b.css(bv,\"display\");e.removeChild(a8)}Q[bx]=bw}return Q[bx]}var V=/^t(?:able|d|h)$/i,ad=/^(?:body|html)$/i;if(\"getBoundingClientRect\" in av.documentElement){b.fn.offset=function(bI){var by=this[0],bB;if(bI){return this.each(function(e){b.offset.setOffset(this,bI,e)})}if(!by||!by.ownerDocument){return null}if(by===by.ownerDocument.body){return b.offset.bodyOffset(by)}try{bB=by.getBoundingClientRect()}catch(bF){}var bH=by.ownerDocument,bw=bH.documentElement;if(!bB||!b.contains(bw,by)){return bB?{top:bB.top,left:bB.left}:{top:0,left:0}}var bC=bH.body,bD=aK(bH),bA=bw.clientTop||bC.clientTop||0,bE=bw.clientLeft||bC.clientLeft||0,bv=bD.pageYOffset||b.support.boxModel&&bw.scrollTop||bC.scrollTop,bz=bD.pageXOffset||b.support.boxModel&&bw.scrollLeft||bC.scrollLeft,bG=bB.top+bv-bA,bx=bB.left+bz-bE;return{top:bG,left:bx}}}else{b.fn.offset=function(bF){var bz=this[0];if(bF){return this.each(function(bG){b.offset.setOffset(this,bF,bG)})}if(!bz||!bz.ownerDocument){return null}if(bz===bz.ownerDocument.body){return b.offset.bodyOffset(bz)}var bC,bw=bz.offsetParent,bv=bz,bE=bz.ownerDocument,bx=bE.documentElement,bA=bE.body,bB=bE.defaultView,e=bB?bB.getComputedStyle(bz,null):bz.currentStyle,bD=bz.offsetTop,by=bz.offsetLeft;while((bz=bz.parentNode)&&bz!==bA&&bz!==bx){if(b.support.fixedPosition&&e.position===\"fixed\"){break}bC=bB?bB.getComputedStyle(bz,null):bz.currentStyle;bD-=bz.scrollTop;by-=bz.scrollLeft;if(bz===bw){bD+=bz.offsetTop;by+=bz.offsetLeft;if(b.support.doesNotAddBorder&&!(b.support.doesAddBorderForTableAndCells&&V.test(bz.nodeName))){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}bv=bw;bw=bz.offsetParent}if(b.support.subtractsBorderForOverflowNotVisible&&bC.overflow!==\"visible\"){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}e=bC}if(e.position===\"relative\"||e.position===\"static\"){bD+=bA.offsetTop;by+=bA.offsetLeft}if(b.support.fixedPosition&&e.position===\"fixed\"){bD+=Math.max(bx.scrollTop,bA.scrollTop);by+=Math.max(bx.scrollLeft,bA.scrollLeft)}return{top:bD,left:by}}}b.offset={bodyOffset:function(e){var bw=e.offsetTop,bv=e.offsetLeft;if(b.support.doesNotIncludeMarginInBodyOffset){bw+=parseFloat(b.css(e,\"marginTop\"))||0;bv+=parseFloat(b.css(e,\"marginLeft\"))||0}return{top:bw,left:bv}},setOffset:function(bx,bG,bA){var bB=b.css(bx,\"position\");if(bB===\"static\"){bx.style.position=\"relative\"}var bz=b(bx),bv=bz.offset(),e=b.css(bx,\"top\"),bE=b.css(bx,\"left\"),bF=(bB===\"absolute\"||bB===\"fixed\")&&b.inArray(\"auto\",[e,bE])>-1,bD={},bC={},bw,by;if(bF){bC=bz.position();bw=bC.top;by=bC.left}else{bw=parseFloat(e)||0;by=parseFloat(bE)||0}if(b.isFunction(bG)){bG=bG.call(bx,bA,bv)}if(bG.top!=null){bD.top=(bG.top-bv.top)+bw}if(bG.left!=null){bD.left=(bG.left-bv.left)+by}if(\"using\" in bG){bG.using.call(bx,bD)}else{bz.css(bD)}}};b.fn.extend({position:function(){if(!this[0]){return null}var bw=this[0],bv=this.offsetParent(),bx=this.offset(),e=ad.test(bv[0].nodeName)?{top:0,left:0}:bv.offset();bx.top-=parseFloat(b.css(bw,\"marginTop\"))||0;bx.left-=parseFloat(b.css(bw,\"marginLeft\"))||0;e.top+=parseFloat(b.css(bv[0],\"borderTopWidth\"))||0;e.left+=parseFloat(b.css(bv[0],\"borderLeftWidth\"))||0;return{top:bx.top-e.top,left:bx.left-e.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||av.body;while(e&&(!ad.test(e.nodeName)&&b.css(e,\"position\")===\"static\")){e=e.offsetParent}return e})}});b.each([\"Left\",\"Top\"],function(bv,e){var bw=\"scroll\"+e;b.fn[bw]=function(bz){var bx,by;if(bz===L){bx=this[0];if(!bx){return null}by=aK(bx);return by?(\"pageXOffset\" in by)?by[bv?\"pageYOffset\":\"pageXOffset\"]:b.support.boxModel&&by.document.documentElement[bw]||by.document.body[bw]:bx[bw]}return this.each(function(){by=aK(this);if(by){by.scrollTo(!bv?bz:b(by).scrollLeft(),bv?bz:b(by).scrollTop())}else{this[bw]=bz}})}});function aK(e){return b.isWindow(e)?e:e.nodeType===9?e.defaultView||e.parentWindow:false}b.each([\"Height\",\"Width\"],function(bv,e){var bw=e.toLowerCase();b.fn[\"inner\"+e]=function(){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,\"padding\")):this[bw]():null};b.fn[\"outer\"+e]=function(by){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,by?\"margin\":\"border\")):this[bw]():null};b.fn[bw]=function(bz){var bA=this[0];if(!bA){return bz==null?null:this}if(b.isFunction(bz)){return this.each(function(bE){var bD=b(this);bD[bw](bz.call(this,bE,bD[bw]()))})}if(b.isWindow(bA)){var bB=bA.document.documentElement[\"client\"+e],bx=bA.document.body;return bA.document.compatMode===\"CSS1Compat\"&&bB||bx&&bx[\"client\"+e]||bB}else{if(bA.nodeType===9){return Math.max(bA.documentElement[\"client\"+e],bA.body[\"scroll\"+e],bA.documentElement[\"scroll\"+e],bA.body[\"offset\"+e],bA.documentElement[\"offset\"+e])}else{if(bz===L){var bC=b.css(bA,bw),by=parseFloat(bC);return b.isNumeric(by)?by:bC}else{return this.css(bw,typeof bz===\"string\"?bz:bz+\"px\")}}}}});bb.jQuery=bb.$=b;if(typeof define===\"function\"&&define.amd&&define.amd.jQuery){define(\"jquery\",[],function(){return b})}})(window);/*!\n * jQuery UI 1.8.18\n *\n * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * http://docs.jquery.com/UI\n */\n(function(a,d){a.ui=a.ui||{};if(a.ui.version){return}a.extend(a.ui,{version:\"1.8.18\",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(e,f){return typeof e===\"number\"?this.each(function(){var g=this;setTimeout(function(){a(g).focus();if(f){f.call(g)}},e)}):this._focus.apply(this,arguments)},scrollParent:function(){var e;if((a.browser.msie&&(/(static|relative)/).test(this.css(\"position\")))||(/absolute/).test(this.css(\"position\"))){e=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,\"position\",1))&&(/(auto|scroll)/).test(a.curCSS(this,\"overflow\",1)+a.curCSS(this,\"overflow-y\",1)+a.curCSS(this,\"overflow-x\",1))}).eq(0)}else{e=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,\"overflow\",1)+a.curCSS(this,\"overflow-y\",1)+a.curCSS(this,\"overflow-x\",1))}).eq(0)}return(/fixed/).test(this.css(\"position\"))||!e.length?a(document):e},zIndex:function(h){if(h!==d){return this.css(\"zIndex\",h)}if(this.length){var f=a(this[0]),e,g;while(f.length&&f[0]!==document){e=f.css(\"position\");if(e===\"absolute\"||e===\"relative\"||e===\"fixed\"){g=parseInt(f.css(\"zIndex\"),10);if(!isNaN(g)&&g!==0){return g}}f=f.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?\"selectstart\":\"mousedown\")+\".ui-disableSelection\",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(\".ui-disableSelection\")}});a.each([\"Width\",\"Height\"],function(g,e){var f=e===\"Width\"?[\"Left\",\"Right\"]:[\"Top\",\"Bottom\"],h=e.toLowerCase(),k={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};function j(m,l,i,n){a.each(f,function(){l-=parseFloat(a.curCSS(m,\"padding\"+this,true))||0;if(i){l-=parseFloat(a.curCSS(m,\"border\"+this+\"Width\",true))||0}if(n){l-=parseFloat(a.curCSS(m,\"margin\"+this,true))||0}});return l}a.fn[\"inner\"+e]=function(i){if(i===d){return k[\"inner\"+e].call(this)}return this.each(function(){a(this).css(h,j(this,i)+\"px\")})};a.fn[\"outer\"+e]=function(i,l){if(typeof i!==\"number\"){return k[\"outer\"+e].call(this,i)}return this.each(function(){a(this).css(h,j(this,i,true,l)+\"px\")})}});function c(g,e){var j=g.nodeName.toLowerCase();if(\"area\"===j){var i=g.parentNode,h=i.name,f;if(!g.href||!h||i.nodeName.toLowerCase()!==\"map\"){return false}f=a(\"img[usemap=#\"+h+\"]\")[0];return !!f&&b(f)}return(/input|select|textarea|button|object/.test(j)?!g.disabled:\"a\"==j?g.href||e:e)&&b(g)}function b(e){return !a(e).parents().andSelf().filter(function(){return a.curCSS(this,\"visibility\")===\"hidden\"||a.expr.filters.hidden(this)}).length}a.extend(a.expr[\":\"],{data:function(g,f,e){return !!a.data(g,e[3])},focusable:function(e){return c(e,!isNaN(a.attr(e,\"tabindex\")))},tabbable:function(g){var e=a.attr(g,\"tabindex\"),f=isNaN(e);return(f||e>=0)&&c(g,!f)}});a(function(){var e=document.body,f=e.appendChild(f=document.createElement(\"div\"));f.offsetHeight;a.extend(f.style,{minHeight:\"100px\",height:\"auto\",padding:0,borderWidth:0});a.support.minHeight=f.offsetHeight===100;a.support.selectstart=\"onselectstart\" in f;e.removeChild(f).style.display=\"none\"});a.extend(a.ui,{plugin:{add:function(f,g,j){var h=a.ui[f].prototype;for(var e in j){h.plugins[e]=h.plugins[e]||[];h.plugins[e].push([g,j[e]])}},call:function(e,g,f){var j=e.plugins[g];if(!j||!e.element[0].parentNode){return}for(var h=0;h<j.length;h++){if(e.options[j[h][0]]){j[h][1].apply(e.element,f)}}}},contains:function(f,e){return document.compareDocumentPosition?f.compareDocumentPosition(e)&16:f!==e&&f.contains(e)},hasScroll:function(h,f){if(a(h).css(\"overflow\")===\"hidden\"){return false}var e=(f&&f===\"left\")?\"scrollLeft\":\"scrollTop\",g=false;if(h[e]>0){return true}h[e]=1;g=(h[e]>0);h[e]=0;return g},isOverAxis:function(f,e,g){return(f>e)&&(f<(e+g))},isOver:function(j,f,i,h,e,g){return a.ui.isOverAxis(j,i,e)&&a.ui.isOverAxis(f,h,g)}})})(jQuery);/*!\n * jQuery UI Widget 1.8.18\n *\n * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * http://docs.jquery.com/UI/Widget\n */\n(function(b,d){if(b.cleanData){var c=b.cleanData;b.cleanData=function(f){for(var g=0,h;(h=f[g])!=null;g++){try{b(h).triggerHandler(\"remove\")}catch(j){}}c(f)}}else{var a=b.fn.remove;b.fn.remove=function(e,f){return this.each(function(){if(!f){if(!e||b.filter(e,[this]).length){b(\"*\",this).add([this]).each(function(){try{b(this).triggerHandler(\"remove\")}catch(g){}})}}return a.call(b(this),e,f)})}}b.widget=function(f,h,e){var g=f.split(\".\")[0],j;f=f.split(\".\")[1];j=g+\"-\"+f;if(!e){e=h;h=b.Widget}b.expr[\":\"][j]=function(k){return !!b.data(k,f)};b[g]=b[g]||{};b[g][f]=function(k,l){if(arguments.length){this._createWidget(k,l)}};var i=new h();i.options=b.extend(true,{},i.options);b[g][f].prototype=b.extend(true,i,{namespace:g,widgetName:f,widgetEventPrefix:b[g][f].prototype.widgetEventPrefix||f,widgetBaseClass:j},e);b.widget.bridge(f,b[g][f])};b.widget.bridge=function(f,e){b.fn[f]=function(i){var g=typeof i===\"string\",h=Array.prototype.slice.call(arguments,1),j=this;i=!g&&h.length?b.extend.apply(null,[true,i].concat(h)):i;if(g&&i.charAt(0)===\"_\"){return j}if(g){this.each(function(){var k=b.data(this,f),l=k&&b.isFunction(k[i])?k[i].apply(k,h):k;if(l!==k&&l!==d){j=l;return false}})}else{this.each(function(){var k=b.data(this,f);if(k){k.option(i||{})._init()}else{b.data(this,f,new e(i,this))}})}return j}};b.Widget=function(e,f){if(arguments.length){this._createWidget(e,f)}};b.Widget.prototype={widgetName:\"widget\",widgetEventPrefix:\"\",options:{disabled:false},_createWidget:function(f,g){b.data(g,this.widgetName,this);this.element=b(g);this.options=b.extend(true,{},this.options,this._getCreateOptions(),f);var e=this;this.element.bind(\"remove.\"+this.widgetName,function(){e.destroy()});this._create();this._trigger(\"create\");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind(\".\"+this.widgetName).removeData(this.widgetName);this.widget().unbind(\".\"+this.widgetName).removeAttr(\"aria-disabled\").removeClass(this.widgetBaseClass+\"-disabled ui-state-disabled\")},widget:function(){return this.element},option:function(f,g){var e=f;if(arguments.length===0){return b.extend({},this.options)}if(typeof f===\"string\"){if(g===d){return this.options[f]}e={};e[f]=g}this._setOptions(e);return this},_setOptions:function(f){var e=this;b.each(f,function(g,h){e._setOption(g,h)});return this},_setOption:function(e,f){this.options[e]=f;if(e===\"disabled\"){this.widget()[f?\"addClass\":\"removeClass\"](this.widgetBaseClass+\"-disabled ui-state-disabled\").attr(\"aria-disabled\",f)}return this},enable:function(){return this._setOption(\"disabled\",false)},disable:function(){return this._setOption(\"disabled\",true)},_trigger:function(e,f,g){var j,i,h=this.options[e];g=g||{};f=b.Event(f);f.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase();f.target=this.element[0];i=f.originalEvent;if(i){for(j in i){if(!(j in f)){f[j]=i[j]}}}this.element.trigger(f,g);return !(b.isFunction(h)&&h.call(this.element[0],f,g)===false||f.isDefaultPrevented())}}})(jQuery);/*!\n * jQuery UI Mouse 1.8.18\n *\n * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)\n * Dual licensed under the MIT or GPL Version 2 licenses.\n * http://jquery.org/license\n *\n * http://docs.jquery.com/UI/Mouse\n *\n * Depends:\n *\tjquery.ui.widget.js\n */\n(function(b,c){var a=false;b(document).mouseup(function(d){a=false});b.widget(\"ui.mouse\",{options:{cancel:\":input,option\",distance:1,delay:0},_mouseInit:function(){var d=this;this.element.bind(\"mousedown.\"+this.widgetName,function(e){return d._mouseDown(e)}).bind(\"click.\"+this.widgetName,function(e){if(true===b.data(e.target,d.widgetName+\".preventClickEvent\")){b.removeData(e.target,d.widgetName+\".preventClickEvent\");e.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind(\".\"+this.widgetName)},_mouseDown:function(f){if(a){return}(this._mouseStarted&&this._mouseUp(f));this._mouseDownEvent=f;var e=this,g=(f.which==1),d=(typeof this.options.cancel==\"string\"&&f.target.nodeName?b(f.target).closest(this.options.cancel).length:false);if(!g||d||!this._mouseCapture(f)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(f)&&this._mouseDelayMet(f)){this._mouseStarted=(this._mouseStart(f)!==false);if(!this._mouseStarted){f.preventDefault();return true}}if(true===b.data(f.target,this.widgetName+\".preventClickEvent\")){b.removeData(f.target,this.widgetName+\".preventClickEvent\")}this._mouseMoveDelegate=function(h){return e._mouseMove(h)};this._mouseUpDelegate=function(h){return e._mouseUp(h)};b(document).bind(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).bind(\"mouseup.\"+this.widgetName,this._mouseUpDelegate);f.preventDefault();a=true;return true},_mouseMove:function(d){if(b.browser.msie&&!(document.documentMode>=9)&&!d.button){return this._mouseUp(d)}if(this._mouseStarted){this._mouseDrag(d);return d.preventDefault()}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,d)!==false);(this._mouseStarted?this._mouseDrag(d):this._mouseUp(d))}return !this._mouseStarted},_mouseUp:function(d){b(document).unbind(\"mousemove.\"+this.widgetName,this._mouseMoveDelegate).unbind(\"mouseup.\"+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;if(d.target==this._mouseDownEvent.target){b.data(d.target,this.widgetName+\".preventClickEvent\",true)}this._mouseStop(d)}return false},_mouseDistanceMet:function(d){return(Math.max(Math.abs(this._mouseDownEvent.pageX-d.pageX),Math.abs(this._mouseDownEvent.pageY-d.pageY))>=this.options.distance)},_mouseDelayMet:function(d){return this.mouseDelayMet},_mouseStart:function(d){},_mouseDrag:function(d){},_mouseStop:function(d){},_mouseCapture:function(d){return true}})})(jQuery);(function(c,d){c.widget(\"ui.resizable\",c.ui.mouse,{widgetEventPrefix:\"resize\",options:{alsoResize:false,animate:false,animateDuration:\"slow\",animateEasing:\"swing\",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:\"e,s,se\",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000},_create:function(){var f=this,k=this.options;this.element.addClass(\"ui-resizable\");c.extend(this,{_aspectRatio:!!(k.aspectRatio),aspectRatio:k.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:k.helper||k.ghost||k.animate?k.helper||\"ui-resizable-helper\":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){this.element.wrap(c('<div class=\"ui-wrapper\" style=\"overflow: hidden;\"></div>').css({position:this.element.css(\"position\"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css(\"top\"),left:this.element.css(\"left\")}));this.element=this.element.parent().data(\"resizable\",this.element.data(\"resizable\"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css(\"marginLeft\"),marginTop:this.originalElement.css(\"marginTop\"),marginRight:this.originalElement.css(\"marginRight\"),marginBottom:this.originalElement.css(\"marginBottom\")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css(\"resize\");this.originalElement.css(\"resize\",\"none\");this._proportionallyResizeElements.push(this.originalElement.css({position:\"static\",zoom:1,display:\"block\"}));this.originalElement.css({margin:this.originalElement.css(\"margin\")});this._proportionallyResize()}this.handles=k.handles||(!c(\".ui-resizable-handle\",this.element).length?\"e,s,se\":{n:\".ui-resizable-n\",e:\".ui-resizable-e\",s:\".ui-resizable-s\",w:\".ui-resizable-w\",se:\".ui-resizable-se\",sw:\".ui-resizable-sw\",ne:\".ui-resizable-ne\",nw:\".ui-resizable-nw\"});if(this.handles.constructor==String){if(this.handles==\"all\"){this.handles=\"n,e,s,w,se,sw,ne,nw\"}var l=this.handles.split(\",\");this.handles={};for(var g=0;g<l.length;g++){var j=c.trim(l[g]),e=\"ui-resizable-\"+j;var h=c('<div class=\"ui-resizable-handle '+e+'\"></div>');if(/sw|se|ne|nw/.test(j)){h.css({zIndex:++k.zIndex})}if(\"se\"==j){h.addClass(\"ui-icon ui-icon-gripsmall-diagonal-se\")}this.handles[j]=\".ui-resizable-\"+j;this.element.append(h)}}this._renderAxis=function(q){q=q||this.element;for(var n in this.handles){if(this.handles[n].constructor==String){this.handles[n]=c(this.handles[n],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var o=c(this.handles[n],this.element),p=0;p=/sw|ne|nw|se|n|s/.test(n)?o.outerHeight():o.outerWidth();var m=[\"padding\",/ne|nw|n/.test(n)?\"Top\":/se|sw|s/.test(n)?\"Bottom\":/^e$/.test(n)?\"Right\":\"Left\"].join(\"\");q.css(m,p);this._proportionallyResize()}if(!c(this.handles[n]).length){continue}}};this._renderAxis(this.element);this._handles=c(\".ui-resizable-handle\",this.element).disableSelection();this._handles.mouseover(function(){if(!f.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}f.axis=i&&i[1]?i[1]:\"se\"}});if(k.autoHide){this._handles.hide();c(this.element).addClass(\"ui-resizable-autohide\").hover(function(){if(k.disabled){return}c(this).removeClass(\"ui-resizable-autohide\");f._handles.show()},function(){if(k.disabled){return}if(!f.resizing){c(this).addClass(\"ui-resizable-autohide\");f._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var e=function(g){c(g).removeClass(\"ui-resizable ui-resizable-disabled ui-resizable-resizing\").removeData(\"resizable\").unbind(\".resizable\").find(\".ui-resizable-handle\").remove()};if(this.elementIsWrapper){e(this.element);var f=this.element;f.after(this.originalElement.css({position:f.css(\"position\"),width:f.outerWidth(),height:f.outerHeight(),top:f.css(\"top\"),left:f.css(\"left\")})).remove()}this.originalElement.css(\"resize\",this.originalResizeStyle);e(this.originalElement);return this},_mouseCapture:function(f){var g=false;for(var e in this.handles){if(c(this.handles[e])[0]==f.target){g=true}}return !this.options.disabled&&g},_mouseStart:function(g){var j=this.options,f=this.element.position(),e=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(e.is(\".ui-draggable\")||(/absolute/).test(e.css(\"position\"))){e.css({position:\"absolute\",top:f.top,left:f.left})}this._renderProxy();var k=b(this.helper.css(\"left\")),h=b(this.helper.css(\"top\"));if(j.containment){k+=c(j.containment).scrollLeft()||0;h+=c(j.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:k,top:h};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:k,top:h};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:g.pageX,top:g.pageY};this.aspectRatio=(typeof j.aspectRatio==\"number\")?j.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var i=c(\".ui-resizable-\"+this.axis).css(\"cursor\");c(\"body\").css(\"cursor\",i==\"auto\"?this.axis+\"-resize\":i);e.addClass(\"ui-resizable-resizing\");this._propagate(\"start\",g);return true},_mouseDrag:function(e){var h=this.helper,g=this.options,m={},q=this,j=this.originalMousePosition,n=this.axis;var r=(e.pageX-j.left)||0,p=(e.pageY-j.top)||0;var i=this._change[n];if(!i){return false}var l=i.apply(this,[e,r,p]),k=c.browser.msie&&c.browser.version<7,f=this.sizeDiff;this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey){l=this._updateRatio(l,e)}l=this._respectSize(l,e);this._propagate(\"resize\",e);h.css({top:this.position.top+\"px\",left:this.position.left+\"px\",width:this.size.width+\"px\",height:this.size.height+\"px\"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(l);this._trigger(\"resize\",e,this.ui());return false},_mouseStop:function(h){this.resizing=false;var i=this.options,m=this;if(this._helper){var g=this._proportionallyResizeElements,e=g.length&&(/textarea/i).test(g[0].nodeName),f=e&&c.ui.hasScroll(g[0],\"left\")?0:m.sizeDiff.height,k=e?0:m.sizeDiff.width;var n={width:(m.helper.width()-k),height:(m.helper.height()-f)},j=(parseInt(m.element.css(\"left\"),10)+(m.position.left-m.originalPosition.left))||null,l=(parseInt(m.element.css(\"top\"),10)+(m.position.top-m.originalPosition.top))||null;if(!i.animate){this.element.css(c.extend(n,{top:l,left:j}))}m.helper.height(m.size.height);m.helper.width(m.size.width);if(this._helper&&!i.animate){this._proportionallyResize()}}c(\"body\").css(\"cursor\",\"auto\");this.element.removeClass(\"ui-resizable-resizing\");this._propagate(\"stop\",h);if(this._helper){this.helper.remove()}return false},_updateVirtualBoundaries:function(g){var j=this.options,i,h,f,k,e;e={minWidth:a(j.minWidth)?j.minWidth:0,maxWidth:a(j.maxWidth)?j.maxWidth:Infinity,minHeight:a(j.minHeight)?j.minHeight:0,maxHeight:a(j.maxHeight)?j.maxHeight:Infinity};if(this._aspectRatio||g){i=e.minHeight*this.aspectRatio;f=e.minWidth/this.aspectRatio;h=e.maxHeight*this.aspectRatio;k=e.maxWidth/this.aspectRatio;if(i>e.minWidth){e.minWidth=i}if(f>e.minHeight){e.minHeight=f}if(h<e.maxWidth){e.maxWidth=h}if(k<e.maxHeight){e.maxHeight=k}}this._vBoundaries=e},_updateCache:function(e){var f=this.options;this.offset=this.helper.offset();if(a(e.left)){this.position.left=e.left}if(a(e.top)){this.position.top=e.top}if(a(e.height)){this.size.height=e.height}if(a(e.width)){this.size.width=e.width}},_updateRatio:function(h,g){var i=this.options,j=this.position,f=this.size,e=this.axis;if(a(h.height)){h.width=(h.height*this.aspectRatio)}else{if(a(h.width)){h.height=(h.width/this.aspectRatio)}}if(e==\"sw\"){h.left=j.left+(f.width-h.width);h.top=null}if(e==\"nw\"){h.top=j.top+(f.height-h.height);h.left=j.left+(f.width-h.width)}return h},_respectSize:function(l,g){var j=this.helper,i=this._vBoundaries,r=this._aspectRatio||g.shiftKey,q=this.axis,t=a(l.width)&&i.maxWidth&&(i.maxWidth<l.width),m=a(l.height)&&i.maxHeight&&(i.maxHeight<l.height),h=a(l.width)&&i.minWidth&&(i.minWidth>l.width),s=a(l.height)&&i.minHeight&&(i.minHeight>l.height);if(h){l.width=i.minWidth}if(s){l.height=i.minHeight}if(t){l.width=i.maxWidth}if(m){l.height=i.maxHeight}var f=this.originalPosition.left+this.originalSize.width,p=this.position.top+this.size.height;var k=/sw|nw|w/.test(q),e=/nw|ne|n/.test(q);if(h&&k){l.left=f-i.minWidth}if(t&&k){l.left=f-i.maxWidth}if(s&&e){l.top=p-i.minHeight}if(m&&e){l.top=p-i.maxHeight}var n=!l.width&&!l.height;if(n&&!l.left&&l.top){l.top=null}else{if(n&&!l.top&&l.left){l.left=null}}return l},_proportionallyResize:function(){var k=this.options;if(!this._proportionallyResizeElements.length){return}var g=this.helper||this.element;for(var f=0;f<this._proportionallyResizeElements.length;f++){var h=this._proportionallyResizeElements[f];if(!this.borderDif){var e=[h.css(\"borderTopWidth\"),h.css(\"borderRightWidth\"),h.css(\"borderBottomWidth\"),h.css(\"borderLeftWidth\")],j=[h.css(\"paddingTop\"),h.css(\"paddingRight\"),h.css(\"paddingBottom\"),h.css(\"paddingLeft\")];this.borderDif=c.map(e,function(l,n){var m=parseInt(l,10)||0,o=parseInt(j[n],10)||0;return m+o})}if(c.browser.msie&&!(!(c(g).is(\":hidden\")||c(g).parents(\":hidden\").length))){continue}h.css({height:(g.height()-this.borderDif[0]-this.borderDif[2])||0,width:(g.width()-this.borderDif[1]-this.borderDif[3])||0})}},_renderProxy:function(){var f=this.element,i=this.options;this.elementOffset=f.offset();if(this._helper){this.helper=this.helper||c('<div style=\"overflow:hidden;\"></div>');var e=c.browser.msie&&c.browser.version<7,g=(e?1:0),h=(e?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+h,height:this.element.outerHeight()+h,position:\"absolute\",left:this.elementOffset.left-g+\"px\",top:this.elementOffset.top-g+\"px\",zIndex:++i.zIndex});this.helper.appendTo(\"body\").disableSelection()}else{this.helper=this.element}},_change:{e:function(g,f,e){return{width:this.originalSize.width+f}},w:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{left:i.left+f,width:g.width-f}},n:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{top:i.top+e,height:g.height-e}},s:function(g,f,e){return{height:this.originalSize.height+e}},se:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},sw:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[g,f,e]))},ne:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},nw:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[g,f,e]))}},_propagate:function(f,e){c.ui.plugin.call(this,f,[e,this.ui()]);(f!=\"resize\"&&this._trigger(f,e,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});c.extend(c.ui.resizable,{version:\"1.8.18\"});c.ui.plugin.add(\"resizable\",\"alsoResize\",{start:function(f,g){var e=c(this).data(\"resizable\"),i=e.options;var h=function(j){c(j).each(function(){var k=c(this);k.data(\"resizable-alsoresize\",{width:parseInt(k.width(),10),height:parseInt(k.height(),10),left:parseInt(k.css(\"left\"),10),top:parseInt(k.css(\"top\"),10)})})};if(typeof(i.alsoResize)==\"object\"&&!i.alsoResize.parentNode){if(i.alsoResize.length){i.alsoResize=i.alsoResize[0];h(i.alsoResize)}else{c.each(i.alsoResize,function(j){h(j)})}}else{h(i.alsoResize)}},resize:function(g,i){var f=c(this).data(\"resizable\"),j=f.options,h=f.originalSize,l=f.originalPosition;var k={height:(f.size.height-h.height)||0,width:(f.size.width-h.width)||0,top:(f.position.top-l.top)||0,left:(f.position.left-l.left)||0},e=function(m,n){c(m).each(function(){var q=c(this),r=c(this).data(\"resizable-alsoresize\"),p={},o=n&&n.length?n:q.parents(i.originalElement[0]).length?[\"width\",\"height\"]:[\"width\",\"height\",\"top\",\"left\"];c.each(o,function(s,u){var t=(r[u]||0)+(k[u]||0);if(t&&t>=0){p[u]=t||null}});q.css(p)})};if(typeof(j.alsoResize)==\"object\"&&!j.alsoResize.nodeType){c.each(j.alsoResize,function(m,n){e(m,n)})}else{e(j.alsoResize)}},stop:function(e,f){c(this).removeData(\"resizable-alsoresize\")}});c.ui.plugin.add(\"resizable\",\"animate\",{stop:function(i,n){var p=c(this).data(\"resizable\"),j=p.options;var h=p._proportionallyResizeElements,e=h.length&&(/textarea/i).test(h[0].nodeName),f=e&&c.ui.hasScroll(h[0],\"left\")?0:p.sizeDiff.height,l=e?0:p.sizeDiff.width;var g={width:(p.size.width-l),height:(p.size.height-f)},k=(parseInt(p.element.css(\"left\"),10)+(p.position.left-p.originalPosition.left))||null,m=(parseInt(p.element.css(\"top\"),10)+(p.position.top-p.originalPosition.top))||null;p.element.animate(c.extend(g,m&&k?{top:m,left:k}:{}),{duration:j.animateDuration,easing:j.animateEasing,step:function(){var o={width:parseInt(p.element.css(\"width\"),10),height:parseInt(p.element.css(\"height\"),10),top:parseInt(p.element.css(\"top\"),10),left:parseInt(p.element.css(\"left\"),10)};if(h&&h.length){c(h[0]).css({width:o.width,height:o.height})}p._updateCache(o);p._propagate(\"resize\",i)}})}});c.ui.plugin.add(\"resizable\",\"containment\",{start:function(f,r){var t=c(this).data(\"resizable\"),j=t.options,l=t.element;var g=j.containment,k=(g instanceof c)?g.get(0):(/parent/.test(g))?l.parent().get(0):g;if(!k){return}t.containerElement=c(k);if(/document/.test(g)||g==document){t.containerOffset={left:0,top:0};t.containerPosition={left:0,top:0};t.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var n=c(k),i=[];c([\"Top\",\"Right\",\"Left\",\"Bottom\"]).each(function(p,o){i[p]=b(n.css(\"padding\"+o))});t.containerOffset=n.offset();t.containerPosition=n.position();t.containerSize={height:(n.innerHeight()-i[3]),width:(n.innerWidth()-i[1])};var q=t.containerOffset,e=t.containerSize.height,m=t.containerSize.width,h=(c.ui.hasScroll(k,\"left\")?k.scrollWidth:m),s=(c.ui.hasScroll(k)?k.scrollHeight:e);t.parentData={element:k,left:q.left,top:q.top,width:h,height:s}}},resize:function(g,q){var t=c(this).data(\"resizable\"),i=t.options,f=t.containerSize,p=t.containerOffset,m=t.size,n=t.position,r=t._aspectRatio||g.shiftKey,e={top:0,left:0},h=t.containerElement;if(h[0]!=document&&(/static/).test(h.css(\"position\"))){e=p}if(n.left<(t._helper?p.left:0)){t.size.width=t.size.width+(t._helper?(t.position.left-p.left):(t.position.left-e.left));if(r){t.size.height=t.size.width/i.aspectRatio}t.position.left=i.helper?p.left:0}if(n.top<(t._helper?p.top:0)){t.size.height=t.size.height+(t._helper?(t.position.top-p.top):t.position.top);if(r){t.size.width=t.size.height*i.aspectRatio}t.position.top=t._helper?p.top:0}t.offset.left=t.parentData.left+t.position.left;t.offset.top=t.parentData.top+t.position.top;var l=Math.abs((t._helper?t.offset.left-e.left:(t.offset.left-e.left))+t.sizeDiff.width),s=Math.abs((t._helper?t.offset.top-e.top:(t.offset.top-p.top))+t.sizeDiff.height);var k=t.containerElement.get(0)==t.element.parent().get(0),j=/relative|absolute/.test(t.containerElement.css(\"position\"));if(k&&j){l-=t.parentData.left}if(l+t.size.width>=t.parentData.width){t.size.width=t.parentData.width-l;if(r){t.size.height=t.size.width/t.aspectRatio}}if(s+t.size.height>=t.parentData.height){t.size.height=t.parentData.height-s;if(r){t.size.width=t.size.height*t.aspectRatio}}},stop:function(f,n){var q=c(this).data(\"resizable\"),g=q.options,l=q.position,m=q.containerOffset,e=q.containerPosition,i=q.containerElement;var j=c(q.helper),r=j.offset(),p=j.outerWidth()-q.sizeDiff.width,k=j.outerHeight()-q.sizeDiff.height;if(q._helper&&!g.animate&&(/relative/).test(i.css(\"position\"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}if(q._helper&&!g.animate&&(/static/).test(i.css(\"position\"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}}});c.ui.plugin.add(\"resizable\",\"ghost\",{start:function(g,h){var e=c(this).data(\"resizable\"),i=e.options,f=e.size;e.ghost=e.originalElement.clone();e.ghost.css({opacity:0.25,display:\"block\",position:\"relative\",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass(\"ui-resizable-ghost\").addClass(typeof i.ghost==\"string\"?i.ghost:\"\");e.ghost.appendTo(e.helper)},resize:function(f,g){var e=c(this).data(\"resizable\"),h=e.options;if(e.ghost){e.ghost.css({position:\"relative\",height:e.size.height,width:e.size.width})}},stop:function(f,g){var e=c(this).data(\"resizable\"),h=e.options;if(e.ghost&&e.helper){e.helper.get(0).removeChild(e.ghost.get(0))}}});c.ui.plugin.add(\"resizable\",\"grid\",{resize:function(e,m){var p=c(this).data(\"resizable\"),h=p.options,k=p.size,i=p.originalSize,j=p.originalPosition,n=p.axis,l=h._aspectRatio||e.shiftKey;h.grid=typeof h.grid==\"number\"?[h.grid,h.grid]:h.grid;var g=Math.round((k.width-i.width)/(h.grid[0]||1))*(h.grid[0]||1),f=Math.round((k.height-i.height)/(h.grid[1]||1))*(h.grid[1]||1);if(/^(se|s|e)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f}else{if(/^(ne)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f}else{if(/^(sw)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.left=j.left-g}else{p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f;p.position.left=j.left-g}}}}});var b=function(e){return parseInt(e,10)||0};var a=function(e){return !isNaN(parseInt(e,10))}})(jQuery);/*!\n * jQuery hashchange event - v1.3 - 7/21/2010\n * http://benalman.com/projects/jquery-hashchange-plugin/\n *\n * Copyright (c) 2010 \"Cowboy\" Ben Alman\n * Dual licensed under the MIT and GPL licenses.\n * http://benalman.com/about/license/\n */\n(function($,e,b){var c=\"hashchange\",h=document,f,g=$.event.special,i=h.documentMode,d=\"on\"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return\"#\"+j.replace(/^[^#]*#?(.*)$/,\"$1\")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,\"\")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex=\"-1\" title=\"empty\"/>').hide().one(\"load\",function(){r||l(a());n()}).attr(\"src\",r||\"javascript:0\").insertAfter(\"body\")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName===\"title\"){q.document.title=h.title}}catch(s){}}}};j.stop=k;o=function(){return a(q.location.href)};l=function(v,s){var u=q.document,t=$.fn[c].domain;if(v!==s){u.title=h.title;u.open();t&&u.write('<script>document.domain=\"'+t+'\"<\\/script>');u.close();q.location.hash=v}}})();return j})()})(jQuery,this);(function(c){var a=c.scrollTo=function(f,e,d){c(window).scrollTo(f,e,d)};a.defaults={axis:\"xy\",duration:parseFloat(c.fn.jquery)>=1.3?0:1};a.window=function(d){return c(window)._scrollable()};c.fn._scrollable=function(){return this.map(function(){var e=this,d=!e.nodeName||c.inArray(e.nodeName.toLowerCase(),[\"iframe\",\"#document\",\"html\",\"body\"])!=-1;if(!d){return e}var f=(e.contentWindow||e).document||e.ownerDocument||e;return c.browser.safari||f.compatMode==\"BackCompat\"?f.body:f.documentElement})};c.fn.scrollTo=function(f,e,d){if(typeof e==\"object\"){d=e;e=0}if(typeof d==\"function\"){d={onAfter:d}}if(f==\"max\"){f=9000000000}d=c.extend({},a.defaults,d);e=e||d.speed||d.duration;d.queue=d.queue&&d.axis.length>1;if(d.queue){e/=2}d.offset=b(d.offset);d.over=b(d.over);return this._scrollable().each(function(){var l=this,j=c(l),k=f,i,g={},m=j.is(\"html,body\");switch(typeof k){case\"number\":case\"string\":if(/^([+-]=)?\\d+(\\.\\d+)?(px|%)?$/.test(k)){k=b(k);break}k=c(k,this);case\"object\":if(k.is||k.style){i=(k=c(k)).offset()}}c.each(d.axis.split(\"\"),function(q,r){var s=r==\"x\"?\"Left\":\"Top\",u=s.toLowerCase(),p=\"scroll\"+s,o=l[p],n=a.max(l,r);if(i){g[p]=i[u]+(m?0:o-j.offset()[u]);if(d.margin){g[p]-=parseInt(k.css(\"margin\"+s))||0;g[p]-=parseInt(k.css(\"border\"+s+\"Width\"))||0}g[p]+=d.offset[u]||0;if(d.over[u]){g[p]+=k[r==\"x\"?\"width\":\"height\"]()*d.over[u]}}else{var t=k[u];g[p]=t.slice&&t.slice(-1)==\"%\"?parseFloat(t)/100*n:t}if(/^\\d+$/.test(g[p])){g[p]=g[p]<=0?0:Math.min(g[p],n)}if(!q&&d.queue){if(o!=g[p]){h(d.onAfterFirst)}delete g[p]}});h(d.onAfter);function h(n){j.animate(g,e,d.easing,n&&function(){n.call(this,f,d)})}}).end()};a.max=function(j,i){var h=i==\"x\"?\"Width\":\"Height\",e=\"scroll\"+h;if(!c(j).is(\"html,body\")){return j[e]-c(j)[h.toLowerCase()]()}var g=\"client\"+h,f=j.ownerDocument.documentElement,d=j.ownerDocument.body;return Math.max(f[e],d[e])-Math.min(f[g],d[g])};function b(d){return typeof d==\"object\"?d:{top:d,left:d}}})(jQuery);/*!\n PowerTip - v1.2.0 - 2013-04-03\n http://stevenbenner.github.com/jquery-powertip/\n Copyright (c) 2013 Steven Benner (http://stevenbenner.com/).\n Released under MIT license.\n https://raw.github.com/stevenbenner/jquery-powertip/master/LICENSE.txt\n*/\n(function(a){if(typeof define===\"function\"&&define.amd){define([\"jquery\"],a)}else{a(jQuery)}}(function(k){var A=k(document),s=k(window),w=k(\"body\");var n=\"displayController\",e=\"hasActiveHover\",d=\"forcedOpen\",u=\"hasMouseMove\",f=\"mouseOnToPopup\",g=\"originalTitle\",y=\"powertip\",o=\"powertipjq\",l=\"powertiptarget\",E=180/Math.PI;var c={isTipOpen:false,isFixedTipOpen:false,isClosing:false,tipOpenImminent:false,activeHover:null,currentX:0,currentY:0,previousX:0,previousY:0,desyncTimeout:null,mouseTrackingActive:false,delayInProgress:false,windowWidth:0,windowHeight:0,scrollTop:0,scrollLeft:0};var p={none:0,top:1,bottom:2,left:4,right:8};k.fn.powerTip=function(F,N){if(!this.length){return this}if(k.type(F)===\"string\"&&k.powerTip[F]){return k.powerTip[F].call(this,this,N)}var O=k.extend({},k.fn.powerTip.defaults,F),G=new x(O);h();this.each(function M(){var R=k(this),Q=R.data(y),P=R.data(o),T=R.data(l),S;if(R.data(n)){k.powerTip.destroy(R)}S=R.attr(\"title\");if(!Q&&!T&&!P&&S){R.data(y,S);R.data(g,S);R.removeAttr(\"title\")}R.data(n,new t(R,O,G))});if(!O.manual){this.on({\"mouseenter.powertip\":function J(P){k.powerTip.show(this,P)},\"mouseleave.powertip\":function L(){k.powerTip.hide(this)},\"focus.powertip\":function K(){k.powerTip.show(this)},\"blur.powertip\":function H(){k.powerTip.hide(this,true)},\"keydown.powertip\":function I(P){if(P.keyCode===27){k.powerTip.hide(this,true)}}})}return this};k.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:\"powerTip\",intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:\"n\",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false};k.fn.powerTip.smartPlacementLists={n:[\"n\",\"ne\",\"nw\",\"s\"],e:[\"e\",\"ne\",\"se\",\"w\",\"nw\",\"sw\",\"n\",\"s\",\"e\"],s:[\"s\",\"se\",\"sw\",\"n\"],w:[\"w\",\"nw\",\"sw\",\"e\",\"ne\",\"se\",\"n\",\"s\",\"w\"],nw:[\"nw\",\"w\",\"sw\",\"n\",\"s\",\"se\",\"nw\"],ne:[\"ne\",\"e\",\"se\",\"n\",\"s\",\"sw\",\"ne\"],sw:[\"sw\",\"w\",\"nw\",\"s\",\"n\",\"ne\",\"sw\"],se:[\"se\",\"e\",\"ne\",\"s\",\"n\",\"nw\",\"se\"],\"nw-alt\":[\"nw-alt\",\"n\",\"ne-alt\",\"sw-alt\",\"s\",\"se-alt\",\"w\",\"e\"],\"ne-alt\":[\"ne-alt\",\"n\",\"nw-alt\",\"se-alt\",\"s\",\"sw-alt\",\"e\",\"w\"],\"sw-alt\":[\"sw-alt\",\"s\",\"se-alt\",\"nw-alt\",\"n\",\"ne-alt\",\"w\",\"e\"],\"se-alt\":[\"se-alt\",\"s\",\"sw-alt\",\"ne-alt\",\"n\",\"nw-alt\",\"e\",\"w\"]};k.powerTip={show:function z(F,G){if(G){i(G);c.previousX=G.pageX;c.previousY=G.pageY;k(F).data(n).show()}else{k(F).first().data(n).show(true,true)}return F},reposition:function r(F){k(F).first().data(n).resetPosition();return F},hide:function D(G,F){if(G){k(G).first().data(n).hide(F)}else{if(c.activeHover){c.activeHover.data(n).hide(true)}}return G},destroy:function C(G){k(G).off(\".powertip\").each(function F(){var I=k(this),H=[g,n,e,d];if(I.data(g)){I.attr(\"title\",I.data(g));H.push(y)}I.removeData(H)});return G}};k.powerTip.showTip=k.powerTip.show;k.powerTip.closeTip=k.powerTip.hide;function b(){var F=this;F.top=\"auto\";F.left=\"auto\";F.right=\"auto\";F.bottom=\"auto\";F.set=function(H,G){if(k.isNumeric(G)){F[H]=Math.round(G)}}}function t(K,N,F){var J=null;function L(P,Q){M();if(!K.data(e)){if(!P){c.tipOpenImminent=true;J=setTimeout(function O(){J=null;I()},N.intentPollInterval)}else{if(Q){K.data(d,true)}F.showTip(K)}}}function G(P){M();c.tipOpenImminent=false;if(K.data(e)){K.data(d,false);if(!P){c.delayInProgress=true;J=setTimeout(function O(){J=null;F.hideTip(K);c.delayInProgress=false},N.closeDelay)}else{F.hideTip(K)}}}function I(){var Q=Math.abs(c.previousX-c.currentX),O=Math.abs(c.previousY-c.currentY),P=Q+O;if(P<N.intentSensitivity){F.showTip(K)}else{c.previousX=c.currentX;c.previousY=c.currentY;L()}}function M(){J=clearTimeout(J);c.delayInProgress=false}function H(){F.resetPosition(K)}this.show=L;this.hide=G;this.cancel=M;this.resetPosition=H}function j(){function G(M,L,J,O,P){var K=L.split(\"-\")[0],N=new b(),I;if(q(M)){I=H(M,K)}else{I=F(M,K)}switch(L){case\"n\":N.set(\"left\",I.left-(J/2));N.set(\"bottom\",c.windowHeight-I.top+P);break;case\"e\":N.set(\"left\",I.left+P);N.set(\"top\",I.top-(O/2));break;case\"s\":N.set(\"left\",I.left-(J/2));N.set(\"top\",I.top+P);break;case\"w\":N.set(\"top\",I.top-(O/2));N.set(\"right\",c.windowWidth-I.left+P);break;case\"nw\":N.set(\"bottom\",c.windowHeight-I.top+P);N.set(\"right\",c.windowWidth-I.left-20);break;case\"nw-alt\":N.set(\"left\",I.left);N.set(\"bottom\",c.windowHeight-I.top+P);break;case\"ne\":N.set(\"left\",I.left-20);N.set(\"bottom\",c.windowHeight-I.top+P);break;case\"ne-alt\":N.set(\"bottom\",c.windowHeight-I.top+P);N.set(\"right\",c.windowWidth-I.left);break;case\"sw\":N.set(\"top\",I.top+P);N.set(\"right\",c.windowWidth-I.left-20);break;case\"sw-alt\":N.set(\"left\",I.left);N.set(\"top\",I.top+P);break;case\"se\":N.set(\"left\",I.left-20);N.set(\"top\",I.top+P);break;case\"se-alt\":N.set(\"top\",I.top+P);N.set(\"right\",c.windowWidth-I.left);break}return N}function F(K,J){var O=K.offset(),N=K.outerWidth(),I=K.outerHeight(),M,L;switch(J){case\"n\":M=O.left+N/2;L=O.top;break;case\"e\":M=O.left+N;L=O.top+I/2;break;case\"s\":M=O.left+N/2;L=O.top+I;break;case\"w\":M=O.left;L=O.top+I/2;break;case\"nw\":M=O.left;L=O.top;break;case\"ne\":M=O.left+N;L=O.top;break;case\"sw\":M=O.left;L=O.top+I;break;case\"se\":M=O.left+N;L=O.top+I;break}return{top:L,left:M}}function H(O,K){var S=O.closest(\"svg\")[0],N=O[0],W=S.createSVGPoint(),L=N.getBBox(),V=N.getScreenCTM(),M=L.width/2,Q=L.height/2,P=[],I=[\"nw\",\"n\",\"ne\",\"e\",\"se\",\"s\",\"sw\",\"w\"],U,X,R,T;function J(){P.push(W.matrixTransform(V))}W.x=L.x;W.y=L.y;J();W.x+=M;J();W.x+=M;J();W.y+=Q;J();W.y+=Q;J();W.x-=M;J();W.x-=M;J();W.y-=Q;J();if(P[0].y!==P[1].y||P[0].x!==P[7].x){X=Math.atan2(V.b,V.a)*E;R=Math.ceil(((X%360)-22.5)/45);if(R<1){R+=8}while(R--){I.push(I.shift())}}for(T=0;T<P.length;T++){if(I[T]===K){U=P[T];break}}return{top:U.y+c.scrollTop,left:U.x+c.scrollLeft}}this.compute=G}function x(Q){var P=new j(),O=k(\"#\"+Q.popupId);if(O.length===0){O=k(\"<div/>\",{id:Q.popupId});if(w.length===0){w=k(\"body\")}w.append(O)}if(Q.followMouse){if(!O.data(u)){A.on(\"mousemove\",M);s.on(\"scroll\",M);O.data(u,true)}}if(Q.mouseOnToPopup){O.on({mouseenter:function L(){if(O.data(f)){if(c.activeHover){c.activeHover.data(n).cancel()}}},mouseleave:function N(){if(c.activeHover){c.activeHover.data(n).hide()}}})}function I(S){S.data(e,true);O.queue(function R(T){H(S);T()})}function H(S){var U;if(!S.data(e)){return}if(c.isTipOpen){if(!c.isClosing){K(c.activeHover)}O.delay(100).queue(function R(V){H(S);V()});return}S.trigger(\"powerTipPreRender\");U=B(S);if(U){O.empty().append(U)}else{return}S.trigger(\"powerTipRender\");c.activeHover=S;c.isTipOpen=true;O.data(f,Q.mouseOnToPopup);if(!Q.followMouse){G(S);c.isFixedTipOpen=true}else{M()}O.fadeIn(Q.fadeInTime,function T(){if(!c.desyncTimeout){c.desyncTimeout=setInterval(J,500)}S.trigger(\"powerTipOpen\")})}function K(R){c.isClosing=true;c.activeHover=null;c.isTipOpen=false;c.desyncTimeout=clearInterval(c.desyncTimeout);R.data(e,false);R.data(d,false);O.fadeOut(Q.fadeOutTime,function S(){var T=new b();c.isClosing=false;c.isFixedTipOpen=false;O.removeClass();T.set(\"top\",c.currentY+Q.offset);T.set(\"left\",c.currentX+Q.offset);O.css(T);R.trigger(\"powerTipClose\")})}function M(){if(!c.isFixedTipOpen&&(c.isTipOpen||(c.tipOpenImminent&&O.data(u)))){var R=O.outerWidth(),V=O.outerHeight(),U=new b(),S,T;U.set(\"top\",c.currentY+Q.offset);U.set(\"left\",c.currentX+Q.offset);S=m(U,R,V);if(S!==p.none){T=a(S);if(T===1){if(S===p.right){U.set(\"left\",c.windowWidth-R)}else{if(S===p.bottom){U.set(\"top\",c.scrollTop+c.windowHeight-V)}}}else{U.set(\"left\",c.currentX-R-Q.offset);U.set(\"top\",c.currentY-V-Q.offset)}}O.css(U)}}function G(S){var R,T;if(Q.smartPlacement){R=k.fn.powerTip.smartPlacementLists[Q.placement];k.each(R,function(U,W){var V=m(F(S,W),O.outerWidth(),O.outerHeight());T=W;if(V===p.none){return false}})}else{F(S,Q.placement);T=Q.placement}O.addClass(T)}function F(U,T){var R=0,S,W,V=new b();V.set(\"top\",0);V.set(\"left\",0);O.css(V);do{S=O.outerWidth();W=O.outerHeight();V=P.compute(U,T,S,W,Q.offset);O.css(V)}while(++R<=5&&(S!==O.outerWidth()||W!==O.outerHeight()));return V}function J(){var R=false;if(c.isTipOpen&&!c.isClosing&&!c.delayInProgress){if(c.activeHover.data(e)===false||c.activeHover.is(\":disabled\")){R=true}else{if(!v(c.activeHover)&&!c.activeHover.is(\":focus\")&&!c.activeHover.data(d)){if(O.data(f)){if(!v(O)){R=true}}else{R=true}}}if(R){K(c.activeHover)}}}this.showTip=I;this.hideTip=K;this.resetPosition=G}function q(F){return window.SVGElement&&F[0] instanceof SVGElement}function h(){if(!c.mouseTrackingActive){c.mouseTrackingActive=true;k(function H(){c.scrollLeft=s.scrollLeft();c.scrollTop=s.scrollTop();c.windowWidth=s.width();c.windowHeight=s.height()});A.on(\"mousemove\",i);s.on({resize:function G(){c.windowWidth=s.width();c.windowHeight=s.height()},scroll:function F(){var I=s.scrollLeft(),J=s.scrollTop();if(I!==c.scrollLeft){c.currentX+=I-c.scrollLeft;c.scrollLeft=I}if(J!==c.scrollTop){c.currentY+=J-c.scrollTop;c.scrollTop=J}}})}}function i(F){c.currentX=F.pageX;c.currentY=F.pageY}function v(F){var H=F.offset(),J=F[0].getBoundingClientRect(),I=J.right-J.left,G=J.bottom-J.top;return c.currentX>=H.left&&c.currentX<=H.left+I&&c.currentY>=H.top&&c.currentY<=H.top+G}function B(I){var G=I.data(y),F=I.data(o),K=I.data(l),H,J;if(G){if(k.isFunction(G)){G=G.call(I[0])}J=G}else{if(F){if(k.isFunction(F)){F=F.call(I[0])}if(F.length>0){J=F.clone(true,true)}}else{if(K){H=k(\"#\"+K);if(H.length>0){J=H.html()}}}}return J}function m(M,L,K){var G=c.scrollTop,J=c.scrollLeft,I=G+c.windowHeight,F=J+c.windowWidth,H=p.none;if(M.top<G||Math.abs(M.bottom-c.windowHeight)-K<G){H|=p.top}if(M.top+K>I||Math.abs(M.bottom-c.windowHeight)>I){H|=p.bottom}if(M.left<J||M.right+L>F){H|=p.left}if(M.left+L>F||M.right<J){H|=p.right}return H}function a(G){var F=0;while(G){G&=G-1;F++}return F}}));/*!\n * jQuery UI Touch Punch 0.2.3\n *\n * Copyright 2011–2014, Dave Furfero\n * Dual licensed under the MIT or GPL Version 2 licenses.\n *\n * Depends:\n *  jquery.ui.widget.js\n *  jquery.ui.mouse.js\n */\n(function(b){b.support.touch=\"ontouchend\" in document;if(!b.support.touch){return}var d=b.ui.mouse.prototype,f=d._mouseInit,c=d._mouseDestroy,a;function e(h,i){if(h.originalEvent.touches.length>1){return}h.preventDefault();var j=h.originalEvent.changedTouches[0],g=document.createEvent(\"MouseEvents\");g.initMouseEvent(i,true,true,window,1,j.screenX,j.screenY,j.clientX,j.clientY,false,false,false,false,0,null);h.target.dispatchEvent(g)}d._touchStart=function(h){var g=this;if(a||!g._mouseCapture(h.originalEvent.changedTouches[0])){return}a=true;g._touchMoved=false;e(h,\"mouseover\");e(h,\"mousemove\");e(h,\"mousedown\")};d._touchMove=function(g){if(!a){return}this._touchMoved=true;e(g,\"mousemove\")};d._touchEnd=function(g){if(!a){return}e(g,\"mouseup\");e(g,\"mouseout\");if(!this._touchMoved){e(g,\"click\")}a=false};d._mouseInit=function(){var g=this;g.element.bind({touchstart:b.proxy(g,\"_touchStart\"),touchmove:b.proxy(g,\"_touchMove\"),touchend:b.proxy(g,\"_touchEnd\")});f.call(g)};d._mouseDestroy=function(){var g=this;g.element.unbind({touchstart:b.proxy(g,\"_touchStart\"),touchmove:b.proxy(g,\"_touchMove\"),touchend:b.proxy(g,\"_touchEnd\")});c.call(g)}})(jQuery);/*!\n * SmartMenus jQuery Plugin - v1.0.0 - January 27, 2016\n * http://www.smartmenus.org/\n *\n * Copyright Vasil Dinkov, Vadikom Web Ltd.\n * http://vadikom.com\n *\n * Licensed MIT\n */\n(function(a){if(typeof define===\"function\"&&define.amd){define([\"jquery\"],a)}else{if(typeof module===\"object\"&&typeof module.exports===\"object\"){module.exports=a(require(\"jquery\"))}else{a(jQuery)}}}(function(a){var b=[],e=!!window.createPopup,f=false,d=\"ontouchstart\" in window,h=false,g=window.requestAnimationFrame||function(l){return setTimeout(l,1000/60)},c=window.cancelAnimationFrame||function(l){clearTimeout(l)};function k(m){var n=\".smartmenus_mouse\";if(!h&&!m){var o=true,l=null;a(document).bind(i([[\"mousemove\",function(s){var t={x:s.pageX,y:s.pageY,timeStamp:new Date().getTime()};if(l){var q=Math.abs(l.x-t.x),p=Math.abs(l.y-t.y);if((q>0||p>0)&&q<=2&&p<=2&&t.timeStamp-l.timeStamp<=300){f=true;if(o){var r=a(s.target).closest(\"a\");if(r.is(\"a\")){a.each(b,function(){if(a.contains(this.$root[0],r[0])){this.itemEnter({currentTarget:r[0]});return false}})}o=false}}}l=t}],[d?\"touchstart\":\"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut\",function(p){if(j(p.originalEvent)){f=false}}]],n));h=true}else{if(h&&m){a(document).unbind(n);h=false}}}function j(l){return !/^(4|mouse)$/.test(l.pointerType)}function i(l,n){if(!n){n=\"\"}var m={};a.each(l,function(o,p){m[p[0].split(\" \").join(n+\" \")+n]=p[1]});return m}a.SmartMenus=function(m,l){this.$root=a(m);this.opts=l;this.rootId=\"\";this.accessIdPrefix=\"\";this.$subArrow=null;this.activatedItems=[];this.visibleSubMenus=[];this.showTimeout=0;this.hideTimeout=0;this.scrollTimeout=0;this.clickActivated=false;this.focusActivated=false;this.zIndexInc=0;this.idInc=0;this.$firstLink=null;this.$firstSub=null;this.disabled=false;this.$disableOverlay=null;this.$touchScrollingSub=null;this.cssTransforms3d=\"perspective\" in m.style||\"webkitPerspective\" in m.style;this.wasCollapsible=false;this.init()};a.extend(a.SmartMenus,{hideAll:function(){a.each(b,function(){this.menuHideAll()})},destroy:function(){while(b.length){b[0].destroy()}k(true)},prototype:{init:function(n){var l=this;if(!n){b.push(this);this.rootId=(new Date().getTime()+Math.random()+\"\").replace(/\\D/g,\"\");this.accessIdPrefix=\"sm-\"+this.rootId+\"-\";if(this.$root.hasClass(\"sm-rtl\")){this.opts.rightToLeftSubMenus=true}var r=\".smartmenus\";this.$root.data(\"smartmenus\",this).attr(\"data-smartmenus-id\",this.rootId).dataSM(\"level\",1).bind(i([[\"mouseover focusin\",a.proxy(this.rootOver,this)],[\"mouseout focusout\",a.proxy(this.rootOut,this)],[\"keydown\",a.proxy(this.rootKeyDown,this)]],r)).delegate(\"a\",i([[\"mouseenter\",a.proxy(this.itemEnter,this)],[\"mouseleave\",a.proxy(this.itemLeave,this)],[\"mousedown\",a.proxy(this.itemDown,this)],[\"focus\",a.proxy(this.itemFocus,this)],[\"blur\",a.proxy(this.itemBlur,this)],[\"click\",a.proxy(this.itemClick,this)]],r));r+=this.rootId;if(this.opts.hideOnClick){a(document).bind(i([[\"touchstart\",a.proxy(this.docTouchStart,this)],[\"touchmove\",a.proxy(this.docTouchMove,this)],[\"touchend\",a.proxy(this.docTouchEnd,this)],[\"click\",a.proxy(this.docClick,this)]],r))}a(window).bind(i([[\"resize orientationchange\",a.proxy(this.winResize,this)]],r));if(this.opts.subIndicators){this.$subArrow=a(\"<span/>\").addClass(\"sub-arrow\");if(this.opts.subIndicatorsText){this.$subArrow.html(this.opts.subIndicatorsText)}}k()}this.$firstSub=this.$root.find(\"ul\").each(function(){l.menuInit(a(this))}).eq(0);this.$firstLink=this.$root.find(\"a\").eq(0);if(this.opts.markCurrentItem){var p=/(index|default)\\.[^#\\?\\/]*/i,m=/#.*/,q=window.location.href.replace(p,\"\"),o=q.replace(m,\"\");this.$root.find(\"a\").each(function(){var s=this.href.replace(p,\"\"),t=a(this);if(s==q||s==o){t.addClass(\"current\");if(l.opts.markCurrentTree){t.parentsUntil(\"[data-smartmenus-id]\",\"ul\").each(function(){a(this).dataSM(\"parent-a\").addClass(\"current\")})}}})}this.wasCollapsible=this.isCollapsible()},destroy:function(m){if(!m){var n=\".smartmenus\";this.$root.removeData(\"smartmenus\").removeAttr(\"data-smartmenus-id\").removeDataSM(\"level\").unbind(n).undelegate(n);n+=this.rootId;a(document).unbind(n);a(window).unbind(n);if(this.opts.subIndicators){this.$subArrow=null}}this.menuHideAll();var l=this;this.$root.find(\"ul\").each(function(){var o=a(this);if(o.dataSM(\"scroll-arrows\")){o.dataSM(\"scroll-arrows\").remove()}if(o.dataSM(\"shown-before\")){if(l.opts.subMenusMinWidth||l.opts.subMenusMaxWidth){o.css({width:\"\",minWidth:\"\",maxWidth:\"\"}).removeClass(\"sm-nowrap\")}if(o.dataSM(\"scroll-arrows\")){o.dataSM(\"scroll-arrows\").remove()}o.css({zIndex:\"\",top:\"\",left:\"\",marginLeft:\"\",marginTop:\"\",display:\"\"})}if((o.attr(\"id\")||\"\").indexOf(l.accessIdPrefix)==0){o.removeAttr(\"id\")}}).removeDataSM(\"in-mega\").removeDataSM(\"shown-before\").removeDataSM(\"ie-shim\").removeDataSM(\"scroll-arrows\").removeDataSM(\"parent-a\").removeDataSM(\"level\").removeDataSM(\"beforefirstshowfired\").removeAttr(\"role\").removeAttr(\"aria-hidden\").removeAttr(\"aria-labelledby\").removeAttr(\"aria-expanded\");this.$root.find(\"a.has-submenu\").each(function(){var o=a(this);if(o.attr(\"id\").indexOf(l.accessIdPrefix)==0){o.removeAttr(\"id\")}}).removeClass(\"has-submenu\").removeDataSM(\"sub\").removeAttr(\"aria-haspopup\").removeAttr(\"aria-controls\").removeAttr(\"aria-expanded\").closest(\"li\").removeDataSM(\"sub\");if(this.opts.subIndicators){this.$root.find(\"span.sub-arrow\").remove()}if(this.opts.markCurrentItem){this.$root.find(\"a.current\").removeClass(\"current\")}if(!m){this.$root=null;this.$firstLink=null;this.$firstSub=null;if(this.$disableOverlay){this.$disableOverlay.remove();this.$disableOverlay=null}b.splice(a.inArray(this,b),1)}},disable:function(l){if(!this.disabled){this.menuHideAll();if(!l&&!this.opts.isPopup&&this.$root.is(\":visible\")){var m=this.$root.offset();this.$disableOverlay=a('<div class=\"sm-jquery-disable-overlay\"/>').css({position:\"absolute\",top:m.top,left:m.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(true),opacity:0}).appendTo(document.body)}this.disabled=true}},docClick:function(l){if(this.$touchScrollingSub){this.$touchScrollingSub=null;return}if(this.visibleSubMenus.length&&!a.contains(this.$root[0],l.target)||a(l.target).is(\"a\")){this.menuHideAll()}},docTouchEnd:function(m){if(!this.lastTouch){return}if(this.visibleSubMenus.length&&(this.lastTouch.x2===undefined||this.lastTouch.x1==this.lastTouch.x2)&&(this.lastTouch.y2===undefined||this.lastTouch.y1==this.lastTouch.y2)&&(!this.lastTouch.target||!a.contains(this.$root[0],this.lastTouch.target))){if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}var l=this;this.hideTimeout=setTimeout(function(){l.menuHideAll()},350)}this.lastTouch=null},docTouchMove:function(m){if(!this.lastTouch){return}var l=m.originalEvent.touches[0];this.lastTouch.x2=l.pageX;this.lastTouch.y2=l.pageY},docTouchStart:function(m){var l=m.originalEvent.touches[0];this.lastTouch={x1:l.pageX,y1:l.pageY,target:l.target}},enable:function(){if(this.disabled){if(this.$disableOverlay){this.$disableOverlay.remove();this.$disableOverlay=null}this.disabled=false}},getClosestMenu:function(m){var l=a(m).closest(\"ul\");while(l.dataSM(\"in-mega\")){l=l.parent().closest(\"ul\")}return l[0]||null},getHeight:function(l){return this.getOffset(l,true)},getOffset:function(n,l){var m;if(n.css(\"display\")==\"none\"){m={position:n[0].style.position,visibility:n[0].style.visibility};n.css({position:\"absolute\",visibility:\"hidden\"}).show()}var o=n[0].getBoundingClientRect&&n[0].getBoundingClientRect(),p=o&&(l?o.height||o.bottom-o.top:o.width||o.right-o.left);if(!p&&p!==0){p=l?n[0].offsetHeight:n[0].offsetWidth}if(m){n.hide().css(m)}return p},getStartZIndex:function(l){var m=parseInt(this[l?\"$root\":\"$firstSub\"].css(\"z-index\"));if(!l&&isNaN(m)){m=parseInt(this.$root.css(\"z-index\"))}return !isNaN(m)?m:1},getTouchPoint:function(l){return l.touches&&l.touches[0]||l.changedTouches&&l.changedTouches[0]||l},getViewport:function(l){var m=l?\"Height\":\"Width\",o=document.documentElement[\"client\"+m],n=window[\"inner\"+m];if(n){o=Math.min(o,n)}return o},getViewportHeight:function(){return this.getViewport(true)},getViewportWidth:function(){return this.getViewport()},getWidth:function(l){return this.getOffset(l)},handleEvents:function(){return !this.disabled&&this.isCSSOn()},handleItemEvents:function(l){return this.handleEvents()&&!this.isLinkInMegaMenu(l)},isCollapsible:function(){return this.$firstSub.css(\"position\")==\"static\"},isCSSOn:function(){return this.$firstLink.css(\"display\")==\"block\"},isFixed:function(){var l=this.$root.css(\"position\")==\"fixed\";if(!l){this.$root.parentsUntil(\"body\").each(function(){if(a(this).css(\"position\")==\"fixed\"){l=true;return false}})}return l},isLinkInMegaMenu:function(l){return a(this.getClosestMenu(l[0])).hasClass(\"mega-menu\")},isTouchMode:function(){return !f||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(p,l){var n=p.closest(\"ul\"),q=n.dataSM(\"level\");if(q>1&&(!this.activatedItems[q-2]||this.activatedItems[q-2][0]!=n.dataSM(\"parent-a\")[0])){var m=this;a(n.parentsUntil(\"[data-smartmenus-id]\",\"ul\").get().reverse()).add(n).each(function(){m.itemActivate(a(this).dataSM(\"parent-a\"))})}if(!this.isCollapsible()||l){this.menuHideSubMenus(!this.activatedItems[q-1]||this.activatedItems[q-1][0]!=p[0]?q-1:q)}this.activatedItems[q-1]=p;if(this.$root.triggerHandler(\"activate.smapi\",p[0])===false){return}var o=p.dataSM(\"sub\");if(o&&(this.isTouchMode()||(!this.opts.showOnClick||this.clickActivated))){this.menuShow(o)}},itemBlur:function(m){var l=a(m.currentTarget);if(!this.handleItemEvents(l)){return}this.$root.triggerHandler(\"blur.smapi\",l[0])},itemClick:function(o){var n=a(o.currentTarget);if(!this.handleItemEvents(n)){return}if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==n.closest(\"ul\")[0]){this.$touchScrollingSub=null;o.stopPropagation();return false}if(this.$root.triggerHandler(\"click.smapi\",n[0])===false){return false}var p=a(o.target).is(\"span.sub-arrow\"),m=n.dataSM(\"sub\"),l=m?m.dataSM(\"level\")==2:false;if(m&&!m.is(\":visible\")){if(this.opts.showOnClick&&l){this.clickActivated=true}this.itemActivate(n);if(m.is(\":visible\")){this.focusActivated=true;return false}}else{if(this.isCollapsible()&&p){this.itemActivate(n);this.menuHide(m);return false}}if(this.opts.showOnClick&&l||n.hasClass(\"disabled\")||this.$root.triggerHandler(\"select.smapi\",n[0])===false){return false}},itemDown:function(m){var l=a(m.currentTarget);if(!this.handleItemEvents(l)){return}l.dataSM(\"mousedown\",true)},itemEnter:function(n){var m=a(n.currentTarget);if(!this.handleItemEvents(m)){return}if(!this.isTouchMode()){if(this.showTimeout){clearTimeout(this.showTimeout);this.showTimeout=0}var l=this;this.showTimeout=setTimeout(function(){l.itemActivate(m)},this.opts.showOnClick&&m.closest(\"ul\").dataSM(\"level\")==1?1:this.opts.showTimeout)}this.$root.triggerHandler(\"mouseenter.smapi\",m[0])},itemFocus:function(m){var l=a(m.currentTarget);if(!this.handleItemEvents(l)){return}if(this.focusActivated&&(!this.isTouchMode()||!l.dataSM(\"mousedown\"))&&(!this.activatedItems.length||this.activatedItems[this.activatedItems.length-1][0]!=l[0])){this.itemActivate(l,true)}this.$root.triggerHandler(\"focus.smapi\",l[0])},itemLeave:function(m){var l=a(m.currentTarget);if(!this.handleItemEvents(l)){return}if(!this.isTouchMode()){l[0].blur();if(this.showTimeout){clearTimeout(this.showTimeout);this.showTimeout=0}}l.removeDataSM(\"mousedown\");this.$root.triggerHandler(\"mouseleave.smapi\",l[0])},menuHide:function(m){if(this.$root.triggerHandler(\"beforehide.smapi\",m[0])===false){return}m.stop(true,true);if(m.css(\"display\")!=\"none\"){var l=function(){m.css(\"z-index\",\"\")};if(this.isCollapsible()){if(this.opts.collapsibleHideFunction){this.opts.collapsibleHideFunction.call(this,m,l)}else{m.hide(this.opts.collapsibleHideDuration,l)}}else{if(this.opts.hideFunction){this.opts.hideFunction.call(this,m,l)}else{m.hide(this.opts.hideDuration,l)}}if(m.dataSM(\"ie-shim\")){m.dataSM(\"ie-shim\").remove().css({\"-webkit-transform\":\"\",transform:\"\"})}if(m.dataSM(\"scroll\")){this.menuScrollStop(m);m.css({\"touch-action\":\"\",\"-ms-touch-action\":\"\",\"-webkit-transform\":\"\",transform:\"\"}).unbind(\".smartmenus_scroll\").removeDataSM(\"scroll\").dataSM(\"scroll-arrows\").hide()}m.dataSM(\"parent-a\").removeClass(\"highlighted\").attr(\"aria-expanded\",\"false\");m.attr({\"aria-expanded\":\"false\",\"aria-hidden\":\"true\"});var n=m.dataSM(\"level\");this.activatedItems.splice(n-1,1);this.visibleSubMenus.splice(a.inArray(m,this.visibleSubMenus),1);this.$root.triggerHandler(\"hide.smapi\",m[0])}},menuHideAll:function(){if(this.showTimeout){clearTimeout(this.showTimeout);this.showTimeout=0}var m=this.opts.isPopup?1:0;for(var l=this.visibleSubMenus.length-1;l>=m;l--){this.menuHide(this.visibleSubMenus[l])}if(this.opts.isPopup){this.$root.stop(true,true);if(this.$root.is(\":visible\")){if(this.opts.hideFunction){this.opts.hideFunction.call(this,this.$root)}else{this.$root.hide(this.opts.hideDuration)}if(this.$root.dataSM(\"ie-shim\")){this.$root.dataSM(\"ie-shim\").remove()}}}this.activatedItems=[];this.visibleSubMenus=[];this.clickActivated=false;this.focusActivated=false;this.zIndexInc=0;this.$root.triggerHandler(\"hideAll.smapi\")},menuHideSubMenus:function(n){for(var l=this.activatedItems.length-1;l>=n;l--){var m=this.activatedItems[l].dataSM(\"sub\");if(m){this.menuHide(m)}}},menuIframeShim:function(l){if(e&&this.opts.overlapControlsInIE&&!l.dataSM(\"ie-shim\")){l.dataSM(\"ie-shim\",a(\"<iframe/>\").attr({src:\"javascript:0\",tabindex:-9}).css({position:\"absolute\",top:\"auto\",left:\"0\",opacity:0,border:\"0\"}))}},menuInit:function(l){if(!l.dataSM(\"in-mega\")){if(l.hasClass(\"mega-menu\")){l.find(\"ul\").dataSM(\"in-mega\",true)}var q=2,m=l[0];while((m=m.parentNode.parentNode)!=this.$root[0]){q++}var n=l.prevAll(\"a\").eq(-1);if(!n.length){n=l.prevAll().find(\"a\").eq(-1)}n.addClass(\"has-submenu\").dataSM(\"sub\",l);l.dataSM(\"parent-a\",n).dataSM(\"level\",q).parent().dataSM(\"sub\",l);var o=n.attr(\"id\")||this.accessIdPrefix+(++this.idInc),p=l.attr(\"id\")||this.accessIdPrefix+(++this.idInc);n.attr({id:o,\"aria-haspopup\":\"true\",\"aria-controls\":p,\"aria-expanded\":\"false\"});l.attr({id:p,role:\"group\",\"aria-hidden\":\"true\",\"aria-labelledby\":o,\"aria-expanded\":\"false\"});if(this.opts.subIndicators){n[this.opts.subIndicatorsPos](this.$subArrow.clone())}}},menuPosition:function(K){var r=K.dataSM(\"parent-a\"),D=r.closest(\"li\"),E=D.parent(),l=K.dataSM(\"level\"),t=this.getWidth(K),J=this.getHeight(K),u=r.offset(),o=u.left,m=u.top,q=this.getWidth(r),F=this.getHeight(r),H=a(window),v=H.scrollLeft(),s=H.scrollTop(),z=this.getViewportWidth(),L=this.getViewportHeight(),w=E.parent().is(\"[data-sm-horizontal-sub]\")||l==2&&!E.hasClass(\"sm-vertical\"),B=this.opts.rightToLeftSubMenus&&!D.is(\"[data-sm-reverse]\")||!this.opts.rightToLeftSubMenus&&D.is(\"[data-sm-reverse]\"),p=l==2?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,n=l==2?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY,C,A;if(w){C=B?q-t-p:p;A=this.opts.bottomToTopSubMenus?-J-n:F+n}else{C=B?p-t:q-p;A=this.opts.bottomToTopSubMenus?F-n-J:n}if(this.opts.keepInViewport){var N=o+C,M=m+A;if(B&&N<v){C=w?v-N+C:q-p}else{if(!B&&N+t>v+z){C=w?v+z-t-N+C:p-t}}if(!w){if(J<L&&M+J>s+L){A+=s+L-J-M}else{if(J>=L||M<s){A+=s-M}}}if(w&&(M+J>s+L+0.49||M<s)||!w&&J>L+0.49){var G=this;if(!K.dataSM(\"scroll-arrows\")){K.dataSM(\"scroll-arrows\",a([a('<span class=\"scroll-up\"><span class=\"scroll-up-arrow\"></span></span>')[0],a('<span class=\"scroll-down\"><span class=\"scroll-down-arrow\"></span></span>')[0]]).bind({mouseenter:function(){K.dataSM(\"scroll\").up=a(this).hasClass(\"scroll-up\");G.menuScroll(K)},mouseleave:function(x){G.menuScrollStop(K);G.menuScrollOut(K,x)},\"mousewheel DOMMouseScroll\":function(x){x.preventDefault()}}).insertAfter(K))}var I=\".smartmenus_scroll\";K.dataSM(\"scroll\",{y:this.cssTransforms3d?0:A-F,step:1,itemH:F,subH:J,arrowDownH:this.getHeight(K.dataSM(\"scroll-arrows\").eq(1))}).bind(i([[\"mouseover\",function(x){G.menuScrollOver(K,x)}],[\"mouseout\",function(x){G.menuScrollOut(K,x)}],[\"mousewheel DOMMouseScroll\",function(x){G.menuScrollMousewheel(K,x)}]],I)).dataSM(\"scroll-arrows\").css({top:\"auto\",left:\"0\",marginLeft:C+(parseInt(K.css(\"border-left-width\"))||0),width:t-(parseInt(K.css(\"border-left-width\"))||0)-(parseInt(K.css(\"border-right-width\"))||0),zIndex:K.css(\"z-index\")}).eq(w&&this.opts.bottomToTopSubMenus?0:1).show();if(this.isFixed()){K.css({\"touch-action\":\"none\",\"-ms-touch-action\":\"none\"}).bind(i([[d?\"touchstart touchmove touchend\":\"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp\",function(x){G.menuScrollTouch(K,x)}]],I))}}}K.css({top:\"auto\",left:\"0\",marginLeft:C,marginTop:A-F});this.menuIframeShim(K);if(K.dataSM(\"ie-shim\")){K.dataSM(\"ie-shim\").css({zIndex:K.css(\"z-index\"),width:t,height:J,marginLeft:C,marginTop:A-F})}},menuScroll:function(r,m,n){var p=r.dataSM(\"scroll\"),q=r.dataSM(\"scroll-arrows\"),o=p.up?p.upEnd:p.downEnd,s;if(!m&&p.momentum){p.momentum*=0.92;s=p.momentum;if(s<0.5){this.menuScrollStop(r);return}}else{s=n||(m||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(p.step))}var l=r.dataSM(\"level\");if(this.activatedItems[l-1]&&this.activatedItems[l-1].dataSM(\"sub\")&&this.activatedItems[l-1].dataSM(\"sub\").is(\":visible\")){this.menuHideSubMenus(l-1)}p.y=p.up&&o<=p.y||!p.up&&o>=p.y?p.y:(Math.abs(o-p.y)>s?p.y+(p.up?s:-s):o);r.add(r.dataSM(\"ie-shim\")).css(this.cssTransforms3d?{\"-webkit-transform\":\"translate3d(0, \"+p.y+\"px, 0)\",transform:\"translate3d(0, \"+p.y+\"px, 0)\"}:{marginTop:p.y});if(f&&(p.up&&p.y>p.downEnd||!p.up&&p.y<p.upEnd)){q.eq(p.up?1:0).show()}if(p.y==o){if(f){q.eq(p.up?0:1).hide()}this.menuScrollStop(r)}else{if(!m){if(this.opts.scrollAccelerate&&p.step<this.opts.scrollStep){p.step+=0.2}var t=this;this.scrollTimeout=g(function(){t.menuScroll(r)})}}},menuScrollMousewheel:function(m,n){if(this.getClosestMenu(n.target)==m[0]){n=n.originalEvent;var l=(n.wheelDelta||-n.detail)>0;if(m.dataSM(\"scroll-arrows\").eq(l?0:1).is(\":visible\")){m.dataSM(\"scroll\").up=l;this.menuScroll(m,true)}}n.preventDefault()},menuScrollOut:function(l,m){if(f){if(!/^scroll-(up|down)/.test((m.relatedTarget||\"\").className)&&(l[0]!=m.relatedTarget&&!a.contains(l[0],m.relatedTarget)||this.getClosestMenu(m.relatedTarget)!=l[0])){l.dataSM(\"scroll-arrows\").css(\"visibility\",\"hidden\")}}},menuScrollOver:function(n,o){if(f){if(!/^scroll-(up|down)/.test(o.target.className)&&this.getClosestMenu(o.target)==n[0]){this.menuScrollRefreshData(n);var m=n.dataSM(\"scroll\"),l=a(window).scrollTop()-n.dataSM(\"parent-a\").offset().top-m.itemH;n.dataSM(\"scroll-arrows\").eq(0).css(\"margin-top\",l).end().eq(1).css(\"margin-top\",l+this.getViewportHeight()-m.arrowDownH).end().css(\"visibility\",\"visible\")}}},menuScrollRefreshData:function(n){var m=n.dataSM(\"scroll\"),l=a(window).scrollTop()-n.dataSM(\"parent-a\").offset().top-m.itemH;if(this.cssTransforms3d){l=-(parseFloat(n.css(\"margin-top\"))-l)}a.extend(m,{upEnd:l,downEnd:l+this.getViewportHeight()-m.subH})},menuScrollStop:function(l){if(this.scrollTimeout){c(this.scrollTimeout);this.scrollTimeout=0;l.dataSM(\"scroll\").step=1;return true}},menuScrollTouch:function(p,q){q=q.originalEvent;if(j(q)){var m=this.getTouchPoint(q);if(this.getClosestMenu(m.target)==p[0]){var o=p.dataSM(\"scroll\");if(/(start|down)$/i.test(q.type)){if(this.menuScrollStop(p)){q.preventDefault();this.$touchScrollingSub=p}else{this.$touchScrollingSub=null}this.menuScrollRefreshData(p);a.extend(o,{touchStartY:m.pageY,touchStartTime:q.timeStamp})}else{if(/move$/i.test(q.type)){var n=o.touchY!==undefined?o.touchY:o.touchStartY;if(n!==undefined&&n!=m.pageY){this.$touchScrollingSub=p;var l=n<m.pageY;if(o.up!==undefined&&o.up!=l){a.extend(o,{touchStartY:m.pageY,touchStartTime:q.timeStamp})}a.extend(o,{up:l,touchY:m.pageY});this.menuScroll(p,true,Math.abs(m.pageY-n))}q.preventDefault()}else{if(o.touchY!==undefined){if(o.momentum=Math.pow(Math.abs(m.pageY-o.touchStartY)/(q.timeStamp-o.touchStartTime),2)*15){this.menuScrollStop(p);this.menuScroll(p);q.preventDefault()}delete o.touchY}}}}}},menuShow:function(n){if(!n.dataSM(\"beforefirstshowfired\")){n.dataSM(\"beforefirstshowfired\",true);if(this.$root.triggerHandler(\"beforefirstshow.smapi\",n[0])===false){return}}if(this.$root.triggerHandler(\"beforeshow.smapi\",n[0])===false){return}n.dataSM(\"shown-before\",true).stop(true,true);if(!n.is(\":visible\")){var m=n.dataSM(\"parent-a\");if(this.opts.keepHighlighted||this.isCollapsible()){m.addClass(\"highlighted\")}if(this.isCollapsible()){n.removeClass(\"sm-nowrap\").css({zIndex:\"\",width:\"auto\",minWidth:\"\",maxWidth:\"\",top:\"\",left:\"\",marginLeft:\"\",marginTop:\"\"})}else{n.css(\"z-index\",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1);if(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth){n.css({width:\"auto\",minWidth:\"\",maxWidth:\"\"}).addClass(\"sm-nowrap\");if(this.opts.subMenusMinWidth){n.css(\"min-width\",this.opts.subMenusMinWidth)}if(this.opts.subMenusMaxWidth){var o=this.getWidth(n);n.css(\"max-width\",this.opts.subMenusMaxWidth);if(o>this.getWidth(n)){n.removeClass(\"sm-nowrap\").css(\"width\",this.opts.subMenusMaxWidth)}}}this.menuPosition(n);if(n.dataSM(\"ie-shim\")){n.dataSM(\"ie-shim\").insertBefore(n)}}var l=function(){n.css(\"overflow\",\"\")};if(this.isCollapsible()){if(this.opts.collapsibleShowFunction){this.opts.collapsibleShowFunction.call(this,n,l)}else{n.show(this.opts.collapsibleShowDuration,l)}}else{if(this.opts.showFunction){this.opts.showFunction.call(this,n,l)}else{n.show(this.opts.showDuration,l)}}m.attr(\"aria-expanded\",\"true\");n.attr({\"aria-expanded\":\"true\",\"aria-hidden\":\"false\"});this.visibleSubMenus.push(n);this.$root.triggerHandler(\"show.smapi\",n[0])}},popupHide:function(l){if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}var m=this;this.hideTimeout=setTimeout(function(){m.menuHideAll()},l?1:this.opts.hideTimeout)},popupShow:function(o,n){if(!this.opts.isPopup){alert('SmartMenus jQuery Error:\\n\\nIf you want to show this menu via the \"popupShow\" method, set the isPopup:true option.');return}if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}this.$root.dataSM(\"shown-before\",true).stop(true,true);if(!this.$root.is(\":visible\")){this.$root.css({left:o,top:n});this.menuIframeShim(this.$root);if(this.$root.dataSM(\"ie-shim\")){this.$root.dataSM(\"ie-shim\").css({zIndex:this.$root.css(\"z-index\"),width:this.getWidth(this.$root),height:this.getHeight(this.$root),left:o,top:n}).insertBefore(this.$root)}var m=this,l=function(){m.$root.css(\"overflow\",\"\")};if(this.opts.showFunction){this.opts.showFunction.call(this,this.$root,l)}else{this.$root.show(this.opts.showDuration,l)}this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(true);this.init(true)},rootKeyDown:function(o){if(!this.handleEvents()){return}switch(o.keyCode){case 27:var m=this.activatedItems[0];if(m){this.menuHideAll();m[0].focus();var n=m.dataSM(\"sub\");if(n){this.menuHide(n)}}break;case 32:var l=a(o.target);if(l.is(\"a\")&&this.handleItemEvents(l)){var n=l.dataSM(\"sub\");if(n&&!n.is(\":visible\")){this.itemClick({currentTarget:o.target});o.preventDefault()}}break}},rootOut:function(m){if(!this.handleEvents()||this.isTouchMode()||m.target==this.$root[0]){return}if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}if(!this.opts.showOnClick||!this.opts.hideOnClick){var l=this;this.hideTimeout=setTimeout(function(){l.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(l){if(!this.handleEvents()||this.isTouchMode()||l.target==this.$root[0]){return}if(this.hideTimeout){clearTimeout(this.hideTimeout);this.hideTimeout=0}},winResize:function(m){if(!this.handleEvents()){if(this.$disableOverlay){var n=this.$root.offset();this.$disableOverlay.css({top:n.top,left:n.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}return}if(!(\"onorientationchange\" in window)||m.type==\"orientationchange\"){var l=this.isCollapsible();if(!(this.wasCollapsible&&l)){if(this.activatedItems.length){this.activatedItems[this.activatedItems.length-1][0].blur()}this.menuHideAll()}this.wasCollapsible=l}}}});a.fn.dataSM=function(l,m){if(m){return this.data(l+\"_smartmenus\",m)}return this.data(l+\"_smartmenus\")};a.fn.removeDataSM=function(l){return this.removeData(l+\"_smartmenus\")};a.fn.smartmenus=function(m){if(typeof m==\"string\"){var l=arguments,o=m;Array.prototype.shift.call(l);return this.each(function(){var p=a(this).data(\"smartmenus\");if(p&&p[o]){p[o].apply(p,l)}})}var n=a.extend({},a.fn.smartmenus.defaults,m);return this.each(function(){new a.SmartMenus(this,n)})};a.fn.smartmenus.defaults={isPopup:false,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:\"10em\",subMenusMaxWidth:\"20em\",subIndicators:true,subIndicatorsPos:\"prepend\",subIndicatorsText:\"+\",scrollStep:30,scrollAccelerate:true,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(m,l){m.fadeOut(200,l)},collapsibleShowDuration:0,collapsibleShowFunction:function(m,l){m.slideDown(200,l)},collapsibleHideDuration:0,collapsibleHideFunction:function(m,l){m.slideUp(200,l)},showOnClick:false,hideOnClick:true,noMouseOver:false,keepInViewport:true,keepHighlighted:true,markCurrentItem:false,markCurrentTree:true,rightToLeftSubMenus:false,bottomToTopSubMenus:false,overlapControlsInIE:true};return a}));\n"
  },
  {
    "path": "Report/html/menu.js",
    "content": "/*\n @licstart  The following is the entire license notice for the\n JavaScript code in this file.\n\n Copyright (C) 1997-2017 by Dimitri van Heesch\n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\n @licend  The above is the entire license notice\n for the JavaScript code in this file\n */\nfunction initMenu(relPath,searchEnabled,serverSide,searchPage,search) {\n  function makeTree(data,relPath) {\n    var result='';\n    if ('children' in data) {\n      result+='<ul>';\n      for (var i in data.children) {\n        result+='<li><a href=\"'+relPath+data.children[i].url+'\">'+\n                                data.children[i].text+'</a>'+\n                                makeTree(data.children[i],relPath)+'</li>';\n      }\n      result+='</ul>';\n    }\n    return result;\n  }\n\n  $('#main-nav').append(makeTree(menudata,relPath));\n  $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu');\n  if (searchEnabled) {\n    if (serverSide) {\n      $('#main-menu').append('<li style=\"float:right\"><div id=\"MSearchBox\" class=\"MSearchBoxInactive\"><div class=\"left\"><form id=\"FSearchBox\" action=\"'+searchPage+'\" method=\"get\"><img id=\"MSearchSelect\" src=\"'+relPath+'search/mag.png\" alt=\"\"/><input type=\"text\" id=\"MSearchField\" name=\"query\" value=\"'+search+'\" size=\"20\" accesskey=\"S\" onfocus=\"searchBox.OnSearchFieldFocus(true)\" onblur=\"searchBox.OnSearchFieldFocus(false)\"></form></div><div class=\"right\"></div></div></li>');\n    } else {\n      $('#main-menu').append('<li style=\"float:right\"><div id=\"MSearchBox\" class=\"MSearchBoxInactive\"><span class=\"left\"><img id=\"MSearchSelect\" src=\"'+relPath+'search/mag_sel.png\" onmouseover=\"return searchBox.OnSearchSelectShow()\" onmouseout=\"return searchBox.OnSearchSelectHide()\" alt=\"\"/><input type=\"text\" id=\"MSearchField\" value=\"'+search+'\" accesskey=\"S\" onfocus=\"searchBox.OnSearchFieldFocus(true)\" onblur=\"searchBox.OnSearchFieldFocus(false)\" onkeyup=\"searchBox.OnSearchFieldChange(event)\"/></span><span class=\"right\"><a id=\"MSearchClose\" href=\"javascript:searchBox.CloseResultsWindow()\"><img id=\"MSearchCloseImg\" border=\"0\" src=\"'+relPath+'search/close.png\" alt=\"\"/></a></span></div></li>');\n    }\n  }\n  $('#main-menu').smartmenus();\n}\n/* @license-end */\n"
  },
  {
    "path": "Report/html/menudata.js",
    "content": "/*\n@ @licstart  The following is the entire license notice for the\nJavaScript code in this file.\n\nCopyright (C) 1997-2017 by Dimitri van Heesch\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\n@licend  The above is the entire license notice\nfor the JavaScript code in this file\n*/\nvar menudata={children:[\n{text:\"Main Page\",url:\"index.html\"},\n{text:\"Packages\",url:\"namespaces.html\",children:[\n{text:\"Packages\",url:\"namespaces.html\"}]},\n{text:\"Classes\",url:\"annotated.html\",children:[\n{text:\"Class List\",url:\"annotated.html\"},\n{text:\"Class Index\",url:\"classes.html\"},\n{text:\"Class Hierarchy\",url:\"hierarchy.html\"},\n{text:\"Class Members\",url:\"functions.html\",children:[\n{text:\"All\",url:\"functions.html\",children:[\n{text:\"a\",url:\"functions.html#index_a\"},\n{text:\"c\",url:\"functions.html#index_c\"},\n{text:\"d\",url:\"functions.html#index_d\"},\n{text:\"e\",url:\"functions.html#index_e\"},\n{text:\"g\",url:\"functions.html#index_g\"},\n{text:\"i\",url:\"functions.html#index_i\"},\n{text:\"l\",url:\"functions.html#index_l\"},\n{text:\"m\",url:\"functions.html#index_m\"},\n{text:\"p\",url:\"functions.html#index_p\"},\n{text:\"q\",url:\"functions.html#index_q\"},\n{text:\"r\",url:\"functions.html#index_r\"},\n{text:\"s\",url:\"functions.html#index_s\"},\n{text:\"u\",url:\"functions.html#index_u\"},\n{text:\"v\",url:\"functions.html#index_v\"}]},\n{text:\"Functions\",url:\"functions_func.html\",children:[\n{text:\"a\",url:\"functions_func.html#index_a\"},\n{text:\"c\",url:\"functions_func.html#index_c\"},\n{text:\"d\",url:\"functions_func.html#index_d\"},\n{text:\"e\",url:\"functions_func.html#index_e\"},\n{text:\"g\",url:\"functions_func.html#index_g\"},\n{text:\"i\",url:\"functions_func.html#index_i\"},\n{text:\"l\",url:\"functions_func.html#index_l\"},\n{text:\"m\",url:\"functions_func.html#index_m\"},\n{text:\"p\",url:\"functions_func.html#index_p\"},\n{text:\"q\",url:\"functions_func.html#index_q\"},\n{text:\"r\",url:\"functions_func.html#index_r\"},\n{text:\"s\",url:\"functions_func.html#index_s\"},\n{text:\"u\",url:\"functions_func.html#index_u\"},\n{text:\"v\",url:\"functions_func.html#index_v\"}]}]}]}]}\n"
  },
  {
    "path": "Report/html/namespace_templates_generator_tool.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#namespaces\">Namespaces</a> &#124;\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"namespaces\"></a>\nNamespaces</h2></td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_configuration.html\">Configuration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">interface &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"interface_templates_generator_tool_1_1_i_configuration.html\">IConfiguration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_program.html\">Program</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_source_configuration.html\">SourceConfiguration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_templates_generator_tool_1_1_generators.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.Generators Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\">Generators</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.Generators Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_board_columns.html\">BoardColumns</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_build_definitions.html\">BuildDefinitions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html\">CardFieldsAndCardStyles</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html\">ExportDashboards</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_export_queries.html\">ExportQueries</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html\">GenerateWIFromSource</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_pull_requests.html\">PullRequests</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_release_definitions.html\">ReleaseDefinitions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_source_code.html\">SourceCode</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_teams.html\">Teams</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_generators_1_1_validate_login.html\">ValidateLogin</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_templates_generator_tool_1_1_view_model.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: TemplatesGeneratorTool.ViewModel Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool.html\">TemplatesGeneratorTool</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\">ViewModel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">TemplatesGeneratorTool.ViewModel Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html\">BaseViewModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html\">BoardColumnsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html\">BuildDefinitionResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html\">BuildDefinitions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html\">CardFieldResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html\">CardStyleResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html\">DashBoardResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html\">GetBoardRowsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html\">PlanViewModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html\">PullRequestCommentResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html\">PullRequestResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html\">QueryByPathResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_query_response.html\">QueryResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html\">ReleaseDefinitions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_repository_response.html\">RepositoryResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html\">ServiceEndPointsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html\">SourceCodeResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_teams_response.html\">TeamsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html\">WidgetAndChartResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html\">WorkItemFetchResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_demo_builder.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#namespaces\">Namespaces</a> &#124;\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"namespaces\"></a>\nNamespaces</h2></td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_bundle_config.html\">BundleConfig</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_filter_config.html\">FilterConfig</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_mvc_application.html\">MvcApplication</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_route_config.html\">RouteConfig</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>WebApiConfig</b></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_demo_builder_1_1_controllers.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Controllers Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\">Controllers</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Controllers Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html\">AccountController</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html\">EnvironmentController</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html\">HomeController</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_demo_builder_1_1_error_handler.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.ErrorHandler Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_error_handler.html\">ErrorHandler</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.ErrorHandler Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html\">AiHandleErrorAttribute</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_demo_builder_1_1_extensions.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Extensions Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_extensions.html\">Extensions</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Extensions Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>Extension</b></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_demo_builder_1_1_models.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsDemoBuilder.Models Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder.html\">VstsDemoBuilder</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\">Models</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsDemoBuilder.Models Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_access_details.html\">AccessDetails</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_accounts.html\">Accounts</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_def.html\">BuildDef</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html\">BuildReleaseMapping</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_configuration.html\">Configuration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_dashboard.html\">Dashboard</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_default.html\">Default</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_email.html\">Email</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_environment_values.html\">EnvironmentValues</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_group_details.html\">GroupDetails</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html\">GroupwiseTemplate</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">interface &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html\">IConfiguration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_location.html\">Location</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_login_model.html\">LoginModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_profile_details.html\">ProfileDetails</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project.html\">Project</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_list.html\">ProjectList</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_settings.html\">ProjectSettings</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_project_template.html\">ProjectTemplate</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_query.html\">Query</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_release_def.html\">ReleaseDef</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_required_extensions.html\">RequiredExtensions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template.html\">Template</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1template_key_value.html\">templateKeyValue</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_template_setting.html\">TemplateSetting</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_case.html\">TestCase</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_demo_builder_1_1_models_1_1_test_suite.html\">TestSuite</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#namespaces\">Namespaces</a> &#124;\n<a href=\"#nested-classes\">Classes</a> &#124;\n<a href=\"#enum-members\">Enumerations</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"namespaces\"></a>\nNamespaces</h2></td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_configuration.html\">Configuration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">interface &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"interface_vsts_rest_a_p_i_1_1_i_configuration.html\">IConfiguration</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_utility.html\">Utility</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"enum-members\"></a>\nEnumerations</h2></td></tr>\n<tr class=\"memitem:a74bd20c1966666e9f933d3495f4908ec\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\"><a id=\"a74bd20c1966666e9f933d3495f4908ec\"></a>enum &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><b>TemplateType</b> { <b>Agile</b>, \n<b>Scrum</b>, \n<b>CMMI</b>\n }</td></tr>\n<tr class=\"separator:a74bd20c1966666e9f933d3495f4908ec\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_build.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Build Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_build.html\">Build</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Build Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html\">BuildDefinition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_delivery_plans.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.DeliveryPlans Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_delivery_plans.html\">DeliveryPlans</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.DeliveryPlans Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html\">Plans</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_git.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Git Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_git.html\">Git</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Git Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_git_1_1_repository.html\">Repository</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.ProjectsAndTeams Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\">ProjectsAndTeams</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.ProjectsAndTeams Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html\">Account</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html\">Projects</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html\">Team</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.QuerysAndWidgets Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.QuerysAndWidgets Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html\">Querys</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_queues.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Queues Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_queues.html\">Queues</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Queues Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html\">Queue</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_release.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Release Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_release.html\">Release</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Release Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html\">ReleaseDefinition</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_service.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Service Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_service.html\">Service</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Service Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html\">ServiceEndPoint</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_test_management.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.TestManagement Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_test_management.html\">TestManagement</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.TestManagement Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html\">TestManagement</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#namespaces\">Namespaces</a> &#124;\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"namespaces\"></a>\nNamespaces</h2></td></tr>\n</table><table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html\">BaseViewModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Build Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\">Build</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Build Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html\">BuildGetListofBuildDefinitionsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ProjectAndTeams Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\">ProjectAndTeams</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ProjectAndTeams Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html\">AccountMembers</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html\">GetTeamResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html\">ListofProjectsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html\">TeamIterationsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html\">TeamMemberResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html\">TeamResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html\">TeamSettingResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.QuerysAndWidgets Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\">QuerysAndWidgets</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.QuerysAndWidgets Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html\">DashBoardeTagResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html\">DashboardResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html\">QueryResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Queue Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\">Queue</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Queue Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html\">AgentQueueModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html\">Pool</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html\">QueueModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html\">Value</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.ReleaseDefinition Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\">ReleaseDefinition</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.ReleaseDefinition Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html\">ReleaseDefinitions</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html\">ReleaseDefinitionsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Repository Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\">Repository</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Repository Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html\">GetAllRepositoriesResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html\">PullRequestComments</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.Service Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\">Service</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.Service Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html\">Authorization</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html\">CreatedBy</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html\">Data</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html\">ServiceEndpointModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.Viewmodel.WorkItem Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\">Viewmodel</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\">WorkItem</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.Viewmodel.WorkItem Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html\">BatchRequest</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html\">CardStylesPatch</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html\">ColumnPost</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html\">CreateUpdateNodeViewModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html\">GetBoardColumnResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html\">GetCardFieldResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html\">GetNodeResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html\">GetNodesResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html\">GetWorkItemsResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html\">ImportWorkItemModel</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html\">ReturnException</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html\">SetEpicSettings</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html\">StateMappings</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html\">WorkItemBatchPostResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html\">WorkItemPatch</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html\">WorkItemPatchResponse</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: VstsRestAPI.WorkItemAndTracking Namespace Reference</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div id=\"nav-path\" class=\"navpath\">\n  <ul>\n<li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\">VstsRestAPI</a></li><li class=\"navelem\"><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\">WorkItemAndTracking</a></li>  </ul>\n</div>\n</div><!-- top -->\n<div class=\"header\">\n  <div class=\"summary\">\n<a href=\"#nested-classes\">Classes</a>  </div>\n  <div class=\"headertitle\">\n<div class=\"title\">VstsRestAPI.WorkItemAndTracking Namespace Reference</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<table class=\"memberdecls\">\n<tr class=\"heading\"><td colspan=\"2\"><h2 class=\"groupheader\"><a name=\"nested-classes\"></a>\nClasses</h2></td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html\">BoardColumn</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html\">Cards</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html\">ClassificationNodes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html\">ImportWorkItems</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html\">IssueWI</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html\">SwimLanes</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html\">WIMapData</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html\">WorkItemNew</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n<tr class=\"memitem:\"><td class=\"memItemLeft\" align=\"right\" valign=\"top\">class &#160;</td><td class=\"memItemRight\" valign=\"bottom\"><a class=\"el\" href=\"class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html\">WorkItems</a></td></tr>\n<tr class=\"separator:\"><td class=\"memSeparator\" colspan=\"2\">&#160;</td></tr>\n</table>\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/namespaces.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=9\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/>\n<title>VSTS DemoGenerator: Packages</title>\n<link href=\"tabs.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"jquery.js\"></script>\n<script type=\"text/javascript\" src=\"dynsections.js\"></script>\n<link href=\"search/search.css\" rel=\"stylesheet\" type=\"text/css\"/>\n<script type=\"text/javascript\" src=\"search/searchdata.js\"></script>\n<script type=\"text/javascript\" src=\"search/search.js\"></script>\n<link href=\"doxygen.css\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n<body>\n<div id=\"top\"><!-- do not remove this div, it is closed by doxygen! -->\n<div id=\"titlearea\">\n<table cellspacing=\"0\" cellpadding=\"0\">\n <tbody>\n <tr style=\"height: 56px;\">\n  <td id=\"projectlogo\"><img alt=\"Logo\" src=\"logo.png\"/></td>\n  <td id=\"projectalign\" style=\"padding-left: 0.5em;\">\n   <div id=\"projectname\">VSTS DemoGenerator\n   </div>\n  </td>\n </tr>\n </tbody>\n</table>\n</div>\n<!-- end header part -->\n<!-- Generated by Doxygen 1.8.14 -->\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\nvar searchBox = new SearchBox(\"searchBox\", \"search\",false,'Search');\n/* @license-end */\n</script>\n<script type=\"text/javascript\" src=\"menudata.js\"></script>\n<script type=\"text/javascript\" src=\"menu.js\"></script>\n<script type=\"text/javascript\">\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\n$(function() {\n  initMenu('',true,false,'search.php','Search');\n  $(document).ready(function() { init_search(); });\n});\n/* @license-end */</script>\n<div id=\"main-nav\"></div>\n</div><!-- top -->\n<!-- window showing the filter options -->\n<div id=\"MSearchSelectWindow\"\n     onmouseover=\"return searchBox.OnSearchSelectShow()\"\n     onmouseout=\"return searchBox.OnSearchSelectHide()\"\n     onkeydown=\"return searchBox.OnSearchSelectKey(event)\">\n</div>\n\n<!-- iframe showing the search results (closed by default) -->\n<div id=\"MSearchResultsWindow\">\n<iframe src=\"javascript:void(0)\" frameborder=\"0\" \n        name=\"MSearchResults\" id=\"MSearchResults\">\n</iframe>\n</div>\n\n<div class=\"header\">\n  <div class=\"headertitle\">\n<div class=\"title\">Packages</div>  </div>\n</div><!--header-->\n<div class=\"contents\">\n<div class=\"textblock\">Here are the packages with brief descriptions (if available):</div><div class=\"directory\">\n<div class=\"levels\">[detail level <span onclick=\"javascript:toggleLevel(1);\">1</span><span onclick=\"javascript:toggleLevel(2);\">2</span><span onclick=\"javascript:toggleLevel(3);\">3</span>]</div><table class=\"directory\">\n<tr id=\"row_0_\" class=\"even\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_0_\" class=\"arrow\" onclick=\"toggleFolder('0_')\">&#9660;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_templates_generator_tool.html\" target=\"_self\">TemplatesGeneratorTool</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_0_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_generators.html\" target=\"_self\">Generators</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_0_1_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_templates_generator_tool_1_1_view_model.html\" target=\"_self\">ViewModel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_1_\" class=\"arrow\" onclick=\"toggleFolder('1_')\">&#9660;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder.html\" target=\"_self\">VstsDemoBuilder</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_0_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_controllers.html\" target=\"_self\">Controllers</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_1_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_error_handler.html\" target=\"_self\">ErrorHandler</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_2_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_extensions.html\" target=\"_self\">Extensions</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_1_3_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_demo_builder_1_1_models.html\" target=\"_self\">Models</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_\" class=\"even\"><td class=\"entry\"><span style=\"width:0px;display:inline-block;\">&#160;</span><span id=\"arr_2_\" class=\"arrow\" onclick=\"toggleFolder('2_')\">&#9660;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i.html\" target=\"_self\">VstsRestAPI</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_0_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_build.html\" target=\"_self\">Build</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_1_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_delivery_plans.html\" target=\"_self\">DeliveryPlans</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_2_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_git.html\" target=\"_self\">Git</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_3_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html\" target=\"_self\">ProjectsAndTeams</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_4_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html\" target=\"_self\">QuerysAndWidgets</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_5_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_queues.html\" target=\"_self\">Queues</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_6_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_release.html\" target=\"_self\">Release</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_7_\" class=\"even\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_service.html\" target=\"_self\">Service</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_8_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_test_management.html\" target=\"_self\">TestManagement</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_\" class=\"even\"><td class=\"entry\"><span style=\"width:16px;display:inline-block;\">&#160;</span><span id=\"arr_2_9_\" class=\"arrow\" onclick=\"toggleFolder('2_9_')\">&#9660;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel.html\" target=\"_self\">Viewmodel</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_0_\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html\" target=\"_self\">Build</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_1_\" class=\"even\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html\" target=\"_self\">ProjectAndTeams</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_2_\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html\" target=\"_self\">QuerysAndWidgets</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_3_\" class=\"even\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html\" target=\"_self\">Queue</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_4_\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html\" target=\"_self\">ReleaseDefinition</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_5_\" class=\"even\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html\" target=\"_self\">Repository</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_6_\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html\" target=\"_self\">Service</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_9_7_\" class=\"even\"><td class=\"entry\"><span style=\"width:48px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html\" target=\"_self\">WorkItem</a></td><td class=\"desc\"></td></tr>\n<tr id=\"row_2_10_\"><td class=\"entry\"><span style=\"width:32px;display:inline-block;\">&#160;</span><span class=\"icona\"><span class=\"icon\">N</span></span><a class=\"el\" href=\"namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html\" target=\"_self\">WorkItemAndTracking</a></td><td class=\"desc\"></td></tr>\n</table>\n</div><!-- directory -->\n</div><!-- contents -->\n<!-- start footer part -->\n<hr class=\"footer\"/><address class=\"footer\"><small>\nGenerated by &#160;<a href=\"http://www.doxygen.org/index.html\">\n<img class=\"footer\" src=\"doxygen.png\" alt=\"doxygen\"/>\n</a> 1.8.14\n</small></address>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_0.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_0.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_0.js",
    "content": "var searchData=\n[\n  ['_5flinks',['_Links',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_1.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_1.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_1.js",
    "content": "var searchData=\n[\n  ['accessdetails',['AccessDetails',['../class_vsts_demo_builder_1_1_models_1_1_access_details.html',1,'VstsDemoBuilder::Models']]],\n  ['accesslevel',['AccessLevel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::AccountMembers']]],\n  ['account',['Account',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html',1,'VstsRestAPI.ProjectsAndTeams.Account'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account']]],\n  ['accountcontroller',['AccountController',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html',1,'VstsDemoBuilder::Controllers']]],\n  ['accountlist',['AccountList',['../class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html',1,'VstsDemoBuilder::Models::Accounts']]],\n  ['accountmembers',['AccountMembers',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['accounts',['Accounts',['../class_vsts_demo_builder_1_1_models_1_1_accounts.html',1,'VstsDemoBuilder::Models']]],\n  ['addcommenttothread',['AddCommentToThread',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a5c50b0035797a2b59071162bff47135c',1,'VstsRestAPI::Git::Repository']]],\n  ['adddeliveryplan',['AddDeliveryPlan',['../class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html#a8ed2253f78a26bc96e9717c84a881355',1,'VstsRestAPI::DeliveryPlans::Plans']]],\n  ['addlink',['AddLink',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#ac843d9b1bc4583e7952584dd89a63279',1,'VstsRestAPI::WorkItemAndTracking::WorkItems']]],\n  ['addtestcasestosuite',['AddTestCasesToSuite',['../class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a0c52041b2fed39904f0452d7ea26f51c',1,'VstsRestAPI::TestManagement::TestManagement']]],\n  ['agentqueuemodel',['AgentQueueModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html',1,'VstsRestAPI::Viewmodel::Queue']]],\n  ['aihandleerrorattribute',['AiHandleErrorAttribute',['../class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html',1,'VstsDemoBuilder::ErrorHandler']]],\n  ['allplans',['AllPlans',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['applyrules',['ApplyRules',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a01a9ffa779ba2cdcd5750cc188dc42f1',1,'VstsRestAPI::WorkItemAndTracking::Cards']]],\n  ['approval',['Approval',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval']]],\n  ['approver',['Approver',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver']]],\n  ['artifact',['Artifact',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact']]],\n  ['attributes',['Attributes',['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes']]],\n  ['authentication',['Authentication',['../class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html',1,'VstsDemoBuilder::Models::ProjectList']]],\n  ['authoredby',['Authoredby',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html',1,'VstsRestAPI::Viewmodel::Build::BuildGetListofBuildDefinitionsResponse']]],\n  ['authorization',['Authorization',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html',1,'VstsRestAPI.Viewmodel.Service.Authorization'],['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html',1,'TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_10.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_10.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_10.js",
    "content": "var searchData=\n[\n  ['refresh_5faccesstoken',['Refresh_AccessToken',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c1a9720f499884448fa692a6fc8b514',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['refreshboard',['RefreshBoard',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a6ad605cdf943060efe528fa34b38b225',1,'VstsRestAPI::WorkItemAndTracking::BoardColumn']]],\n  ['relation',['Relation',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['relations',['Relations',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations'],['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations']]],\n  ['release',['Release',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release']]],\n  ['releasedef',['ReleaseDef',['../class_vsts_demo_builder_1_1_models_1_1_release_def.html',1,'VstsDemoBuilder::Models']]],\n  ['releasedefinition',['ReleaseDefinition',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition'],['../class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html',1,'VstsRestAPI.Release.ReleaseDefinition']]],\n  ['releasedefinitions',['ReleaseDefinitions',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions'],['../class_templates_generator_tool_1_1_generators_1_1_release_definitions.html',1,'TemplatesGeneratorTool.Generators.ReleaseDefinitions'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions']]],\n  ['releasedefinitionsresponse',['ReleaseDefinitionsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse']]],\n  ['renameiteration',['RenameIteration',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aa9ec619ecc43346a57e84ec3206c78e3',1,'VstsRestAPI::WorkItemAndTracking::ClassificationNodes']]],\n  ['renameiterations',['RenameIterations',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a990cb5c0fd92cee0d4926b92a5951436',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['reply',['reply',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html',1,'VstsRestAPI::Viewmodel::Repository::PullRequestComments']]],\n  ['repositories',['Repositories',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html',1,'VstsRestAPI::Viewmodel::Repository::GetAllRepositoriesResponse']]],\n  ['repository',['Repository',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository'],['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html',1,'VstsRestAPI.Git.Repository'],['../class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html',1,'TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository']]],\n  ['repositoryresponse',['RepositoryResponse',['../class_templates_generator_tool_1_1_view_model_1_1_repository_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['requiredextensions',['RequiredExtensions',['../class_vsts_demo_builder_1_1_models_1_1_required_extensions.html',1,'VstsDemoBuilder::Models']]],\n  ['result',['Result',['../class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html',1,'TemplatesGeneratorTool::ViewModel::GetBoardRowsResponse']]],\n  ['results',['Results',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results'],['../class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html',1,'TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results']]],\n  ['retentionpolicy',['RetentionPolicy',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy']]],\n  ['retentionrule',['RetentionRule',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['returnexception',['ReturnException',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['reviewer',['Reviewer',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html',1,'TemplatesGeneratorTool::ViewModel::PullRequestResponse']]],\n  ['rightfileend',['RightFileEnd',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd']]],\n  ['rightfilestart',['RightFileStart',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart']]],\n  ['routeconfig',['RouteConfig',['../class_vsts_demo_builder_1_1_route_config.html',1,'VstsDemoBuilder']]],\n  ['rules',['Rules',['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html',1,'TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html',1,'VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_11.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_11.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_11.js",
    "content": "var searchData=\n[\n  ['self',['Self',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self']]],\n  ['sendemail',['SendEmail',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a69d4ebc71322d09e96bab8cd604ebb46',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['service',['Service',['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html',1,'TemplatesGeneratorTool::ViewModel::ServiceEndPointsResponse']]],\n  ['serviceendpoint',['ServiceEndPoint',['../class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html',1,'VstsRestAPI::Service']]],\n  ['serviceendpointmodel',['ServiceEndpointModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html',1,'VstsRestAPI::Viewmodel::Service']]],\n  ['serviceendpointsresponse',['ServiceEndPointsResponse',['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['setareaforteams',['SetAreaForTeams',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab7ec4e48d49881e50a0a7aae20ede38a',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['setbacklogiterationforteam',['SetBackLogIterationForTeam',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a9edc630def2d89f784812cf88f706a4c',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['setepicsettings',['SetEpicSettings',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['setiterationsforteam',['SetIterationsForTeam',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a513442a4bc421f2b3f0fb980d1c6ed72',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['settings',['Settings',['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html',1,'TemplatesGeneratorTool::ViewModel::CardStyleResponse']]],\n  ['settingsversion',['SettingsVersion',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html',1,'TemplatesGeneratorTool::ViewModel::WidgetAndChartResponse']]],\n  ['signout',['SignOut',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#abbf468c027b199a26ccc4a12fdad7fbe',1,'VstsDemoBuilder::Controllers::AccountController']]],\n  ['size',['Size',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html',1,'TemplatesGeneratorTool::ViewModel::WidgetAndChartResponse']]],\n  ['sourcecode',['SourceCode',['../class_templates_generator_tool_1_1_generators_1_1_source_code.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['sourcecoderesponse',['SourceCodeResponse',['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['sourceconfiguration',['SourceConfiguration',['../class_templates_generator_tool_1_1_source_configuration.html',1,'TemplatesGeneratorTool']]],\n  ['startenvironmentsetupprocess',['StartEnvironmentSetupProcess',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ad6b69ff448fc483cb517729d55c55dcc',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['statemappings',['StateMappings',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings'],['../class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html',1,'TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html',1,'VstsRestAPI.Viewmodel.WorkItem.StateMappings']]],\n  ['swimlanes',['SwimLanes',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['systemdebug',['SystemDebug',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_12.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_12.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_12.js",
    "content": "var searchData=\n[\n  ['generators',['Generators',['../namespace_templates_generator_tool_1_1_generators.html',1,'TemplatesGeneratorTool']]],\n  ['tagstyle',['TagStyle',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html',1,'VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle'],['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html',1,'TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle']]],\n  ['task',['Task',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task']]],\n  ['team',['Team',['../class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html',1,'TemplatesGeneratorTool.ViewModel.TeamsResponse.Team'],['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html',1,'VstsRestAPI.ProjectsAndTeams.Team'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team']]],\n  ['teambacklogmapping',['TeamBacklogMapping',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['teamiterationsresponse',['TeamIterationsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['teammemberresponse',['TeamMemberResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['teammembers',['TeamMembers',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamMemberResponse']]],\n  ['teamresponse',['TeamResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['teams',['Teams',['../class_templates_generator_tool_1_1_generators_1_1_teams.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['teamsetting',['TeamSetting',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamSettingResponse']]],\n  ['teamsettingresponse',['TeamSettingResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['teamsresponse',['TeamsResponse',['../class_templates_generator_tool_1_1_view_model_1_1_teams_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['template',['Template',['../class_vsts_demo_builder_1_1_models_1_1_template.html',1,'VstsDemoBuilder::Models']]],\n  ['templatekeyvalue',['templateKeyValue',['../class_vsts_demo_builder_1_1_models_1_1template_key_value.html',1,'VstsDemoBuilder::Models']]],\n  ['templatesetting',['TemplateSetting',['../class_vsts_demo_builder_1_1_models_1_1_template_setting.html',1,'VstsDemoBuilder::Models']]],\n  ['templatesgeneratortool',['TemplatesGeneratorTool',['../namespace_templates_generator_tool.html',1,'']]],\n  ['testcase',['TestCase',['../class_vsts_demo_builder_1_1_models_1_1_test_case.html',1,'VstsDemoBuilder::Models']]],\n  ['testmanagement',['TestManagement',['../class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html',1,'VstsRestAPI::TestManagement']]],\n  ['testsuite',['TestSuite',['../class_vsts_demo_builder_1_1_models_1_1_test_suite.html',1,'VstsDemoBuilder::Models']]],\n  ['testsuites',['TestSuites',['../class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html',1,'VstsDemoBuilder::Models::TestSuite']]],\n  ['threadcontext',['ThreadContext',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext']]],\n  ['trigger',['Trigger',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger']]],\n  ['viewmodel',['ViewModel',['../namespace_templates_generator_tool_1_1_view_model.html',1,'TemplatesGeneratorTool']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_13.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_13.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_13.js",
    "content": "var searchData=\n[\n  ['updateboard',['UpdateBoard',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a5e492fd7d8cc70eae58565322bd7fcda',1,'VstsRestAPI::WorkItemAndTracking::BoardColumn']]],\n  ['updatecardfield',['UpdateCardField',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#aef506846ff57c971ab48a51a39f8cea4',1,'VstsRestAPI::WorkItemAndTracking::Cards']]],\n  ['updateiterationdates',['UpdateIterationDates',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aff3aa00e48c8f5419e7ca2a0d35946ef',1,'VstsRestAPI.WorkItemAndTracking.ClassificationNodes.UpdateIterationDates(string ProjectName, string templateType)'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a06d5cff8ab9703f58ffa2575abb2cdde',1,'VstsRestAPI.WorkItemAndTracking.ClassificationNodes.UpdateIterationDates(string project, string path, DateTime startDate, DateTime finishDate)']]],\n  ['updatelink',['UpdateLink',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a70dc11cc49f3584702b7269d3ed821b2',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['updatequery',['UpdateQuery',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#ad50ab1e6c58ac12bd8d39ee52a514e0d',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['updateswimlanes',['UpdateSwimLanes',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html#a4af603283af32f87e7f0de500a5cd578',1,'VstsRestAPI::WorkItemAndTracking::SwimLanes']]],\n  ['updateworkitem',['UpdateWorkItem',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#afb867463d207db51a8653f14e809e392',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]],\n  ['updateworkitemintarget',['UpdateWorkIteminTarget',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a0287a32144b543656c69fd06131ee7f3',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['updateworkitemlinks',['UpdateWorkItemLinks',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#ad85453d724d643b50b25b2d7f39ba95d',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['updateworkitemusingbypassrules',['UpdateWorkItemUsingByPassRules',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ae0eb3a3a473c7a1b117199a77466ab72',1,'VstsRestAPI::WorkItemAndTracking::WorkItemNew']]],\n  ['uploadattchment',['UploadAttchment',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a5845172621eec8d4991f3633077dc498',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['utility',['Utility',['../class_vsts_rest_a_p_i_1_1_utility.html',1,'VstsRestAPI']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_14.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_14.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_14.js",
    "content": "var searchData=\n[\n  ['build',['Build',['../namespace_vsts_rest_a_p_i_1_1_build.html',1,'VstsRestAPI.Build'],['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html',1,'VstsRestAPI.Viewmodel.Build']]],\n  ['controllers',['Controllers',['../namespace_vsts_demo_builder_1_1_controllers.html',1,'VstsDemoBuilder']]],\n  ['deliveryplans',['DeliveryPlans',['../namespace_vsts_rest_a_p_i_1_1_delivery_plans.html',1,'VstsRestAPI']]],\n  ['errorhandler',['ErrorHandler',['../namespace_vsts_demo_builder_1_1_error_handler.html',1,'VstsDemoBuilder']]],\n  ['extensions',['Extensions',['../namespace_vsts_demo_builder_1_1_extensions.html',1,'VstsDemoBuilder']]],\n  ['git',['Git',['../namespace_vsts_rest_a_p_i_1_1_git.html',1,'VstsRestAPI']]],\n  ['models',['Models',['../namespace_vsts_demo_builder_1_1_models.html',1,'VstsDemoBuilder']]],\n  ['projectandteams',['ProjectAndTeams',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html',1,'VstsRestAPI::Viewmodel']]],\n  ['projectsandteams',['ProjectsAndTeams',['../namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html',1,'VstsRestAPI']]],\n  ['querysandwidgets',['QuerysAndWidgets',['../namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html',1,'VstsRestAPI.QuerysAndWidgets'],['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets']]],\n  ['queue',['Queue',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html',1,'VstsRestAPI::Viewmodel']]],\n  ['queues',['Queues',['../namespace_vsts_rest_a_p_i_1_1_queues.html',1,'VstsRestAPI']]],\n  ['release',['Release',['../namespace_vsts_rest_a_p_i_1_1_release.html',1,'VstsRestAPI']]],\n  ['releasedefinition',['ReleaseDefinition',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html',1,'VstsRestAPI::Viewmodel']]],\n  ['repository',['Repository',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html',1,'VstsRestAPI::Viewmodel']]],\n  ['service',['Service',['../namespace_vsts_rest_a_p_i_1_1_service.html',1,'VstsRestAPI.Service'],['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html',1,'VstsRestAPI.Viewmodel.Service']]],\n  ['testmanagement',['TestManagement',['../namespace_vsts_rest_a_p_i_1_1_test_management.html',1,'VstsRestAPI']]],\n  ['validatelogin',['ValidateLogin',['../class_templates_generator_tool_1_1_generators_1_1_validate_login.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['value',['Value',['../class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html',1,'VstsDemoBuilder.Models.ProjectList.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value'],['../class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html',1,'VstsDemoBuilder.Models.Accounts.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value'],['../class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html',1,'VstsDemoBuilder.Models.TestSuite.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html',1,'VstsRestAPI.Viewmodel.Queue.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.TeamsResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.PlanViewModel.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value']]],\n  ['variables',['Variables',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Variables'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Variables']]],\n  ['verify',['Verify',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#a6d42be6f0b98a238c2575e225940ff6e',1,'VstsDemoBuilder::Controllers::AccountController']]],\n  ['viewmodel',['Viewmodel',['../namespace_vsts_rest_a_p_i_1_1_viewmodel.html',1,'VstsRestAPI']]],\n  ['vstsdemobuilder',['VstsDemoBuilder',['../namespace_vsts_demo_builder.html',1,'']]],\n  ['vstsrestapi',['VstsRestAPI',['../namespace_vsts_rest_a_p_i.html',1,'']]],\n  ['workitem',['WorkItem',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html',1,'VstsRestAPI::Viewmodel']]],\n  ['workitemandtracking',['WorkItemAndTracking',['../namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html',1,'VstsRestAPI']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_15.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_15.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_15.js",
    "content": "var searchData=\n[\n  ['widget',['Widget',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html',1,'TemplatesGeneratorTool::ViewModel::WidgetAndChartResponse']]],\n  ['widgetandchartresponse',['WidgetAndChartResponse',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['wimapdata',['WIMapData',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html',1,'TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html',1,'VstsRestAPI.WorkItemAndTracking.WIMapData']]],\n  ['wiql',['Wiql',['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html',1,'TemplatesGeneratorTool::ViewModel::QueryResponse']]],\n  ['workitem',['Workitem',['../class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html',1,'TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem']]],\n  ['workitembatchpostresponse',['WorkItemBatchPostResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['workitemfetchresponse',['WorkItemFetchResponse',['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['workitemhistory',['Workitemhistory',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['workitemnew',['WorkItemNew',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['workitempatch',['WorkItemPatch',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['workitempatchresponse',['WorkItemPatchResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['workitemrevisions',['Workitemrevisions',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['workitems',['WorkItems',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html',1,'VstsRestAPI.WorkItemAndTracking.WorkItems'],['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems']]],\n  ['workitemtype',['Workitemtype',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['workitemupdates',['Workitemupdates',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_2.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_2.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_2.js",
    "content": "var searchData=\n[\n  ['backlogiteration',['BacklogIteration',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamSettingResponse']]],\n  ['backlogvisibilities',['BacklogVisibilities',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html',1,'VstsRestAPI::Viewmodel::WorkItem::SetEpicSettings']]],\n  ['baseviewmodel',['BaseViewModel',['../class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html',1,'TemplatesGeneratorTool.ViewModel.BaseViewModel'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html',1,'VstsRestAPI.Viewmodel.BaseViewModel']]],\n  ['batchrequest',['BatchRequest',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['boardcolumn',['BoardColumn',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['boardcolumns',['BoardColumns',['../class_templates_generator_tool_1_1_generators_1_1_board_columns.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['boardcolumnsresponse',['BoardColumnsResponse',['../class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['bug',['Bug',['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html',1,'TemplatesGeneratorTool::ViewModel::CardFieldResponse']]],\n  ['build',['Build',['../class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build']]],\n  ['buildconfiguration',['BuildConfiguration',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['builddef',['BuildDef',['../class_vsts_demo_builder_1_1_models_1_1_build_def.html',1,'VstsDemoBuilder::Models']]],\n  ['builddefinition',['BuildDefinition',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition'],['../class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html',1,'VstsRestAPI.Build.BuildDefinition']]],\n  ['builddefinitionresponse',['BuildDefinitionResponse',['../class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['builddefinitions',['BuildDefinitions',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions'],['../class_templates_generator_tool_1_1_generators_1_1_build_definitions.html',1,'TemplatesGeneratorTool.Generators.BuildDefinitions']]],\n  ['buildgetlistofbuilddefinitionsresponse',['BuildGetListofBuildDefinitionsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html',1,'VstsRestAPI::Viewmodel::Build']]],\n  ['buildplatform',['BuildPlatform',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['buildreleasemapping',['BuildReleaseMapping',['../class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html',1,'VstsDemoBuilder::Models']]],\n  ['bundleconfig',['BundleConfig',['../class_vsts_demo_builder_1_1_bundle_config.html',1,'VstsDemoBuilder']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_3.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_3.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_3.js",
    "content": "var searchData=\n[\n  ['cardfieldresponse',['CardFieldResponse',['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['cardfields',['CardFields',['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html',1,'TemplatesGeneratorTool::ViewModel::CardFieldResponse']]],\n  ['cardfieldsandcardstyles',['CardFieldsAndCardStyles',['../class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['cards',['Cards',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards'],['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html',1,'TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html',1,'VstsRestAPI.WorkItemAndTracking.Cards']]],\n  ['cardsettings',['CardSettings',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['cardstyleresponse',['CardStyleResponse',['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['cardstyles',['CardStyles',['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html',1,'TemplatesGeneratorTool::ViewModel::CardStyleResponse']]],\n  ['cardstylespatch',['CardStylesPatch',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['checkforinstalledextensions',['CheckForInstalledExtensions',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a4ea213c905f5eb8d420e09d7a919a55d',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['checksession',['CheckSession',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac7c3e39375100aa8c8c3597d5c95c7a1',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['child',['Child',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child'],['../class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html',1,'TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child'],['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse.Child']]],\n  ['child1',['Child1',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetNodesResponse']]],\n  ['classificationnodes',['ClassificationNodes',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['code',['Code',['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html',1,'TemplatesGeneratorTool::ViewModel::SourceCodeResponse']]],\n  ['column',['Column',['../class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html',1,'TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column'],['../class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html',1,'TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column']]],\n  ['columnpost',['ColumnPost',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['columnresponse',['ColumnResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetBoardColumnResponse']]],\n  ['comment',['Comment',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment']]],\n  ['comments',['Comments',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments']]],\n  ['condition',['Condition',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition']]],\n  ['configuration',['Configuration',['../class_templates_generator_tool_1_1_configuration.html',1,'TemplatesGeneratorTool.Configuration'],['../class_vsts_demo_builder_1_1_models_1_1_configuration.html',1,'VstsDemoBuilder.Models.Configuration'],['../class_vsts_rest_a_p_i_1_1_configuration.html',1,'VstsRestAPI.Configuration']]],\n  ['corefield',['CoreField',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['create',['Create',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a05d657b039fcb027c054e24cf53e5941',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['createarea',['CreateArea',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab57dd1be0d460862a1b4cd64a69b81b8',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['createbuilddefinition',['CreateBuildDefinition',['../class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6b0baf93fe915e1eb9a9f028a9f0136a',1,'VstsRestAPI::Build::BuildDefinition']]],\n  ['createcommentthread',['CreateCommentThread',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a9284efc83831e33d74892b68ff58b276',1,'VstsRestAPI::Git::Repository']]],\n  ['createdby',['CreatedBy',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html',1,'VstsRestAPI::Viewmodel::Service']]],\n  ['createissuewi',['CreateIssueWI',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a58345bc764da664648c1fe6530405555',1,'VstsRestAPI::WorkItemAndTracking::IssueWI']]],\n  ['createiteration',['CreateIteration',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#ae8b553aaddd3dbd6d03d9ed7400b0667',1,'VstsRestAPI::WorkItemAndTracking::ClassificationNodes']]],\n  ['createnewdashboard',['CreateNewDashBoard',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a819bd19bb1d6657c86418a3f3ef3c86b',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['createnewteam',['CreateNewTeam',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab42d1bd636a827438a8151f795fedca0',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['createprojectenvironment',['CreateProjectEnvironment',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a78d06b5fc70004a4b23a10a22670b04e',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['createpullrequest',['CreatePullRequest',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#af74451a9ec41478f8a16fdb498ea96a0',1,'VstsRestAPI::Git::Repository']]],\n  ['createquery',['CreateQuery',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aefe4b14dbc3475676cfcc8f3a007546e',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['createqueryandwidgets',['CreateQueryAndWidgets',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ab1802a3d21c416002c2c7ff57019b6f8',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['createreleasedefinition',['CreateReleaseDefinition',['../class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html#a3e03bd4ea027dca1c1cda2e0fe8ca73d',1,'VstsRestAPI::Release::ReleaseDefinition']]],\n  ['createreportwi',['CreateReportWI',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a9e73160c28746c3b6090cfdc8d51b79f',1,'VstsRestAPI::WorkItemAndTracking::IssueWI']]],\n  ['createrepositorie',['CreateRepositorie',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a2623c37a03e528aa6e0dd4f7bcac3a04',1,'VstsRestAPI::Git::Repository']]],\n  ['createserviceendpoint',['CreateServiceEndPoint',['../class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html#a6243f8d6d7cf88a7327d1f99acf974c5',1,'VstsRestAPI::Service::ServiceEndPoint']]],\n  ['createteamproject',['CreateTeamProject',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a2dc9bc6f325831b4f86c91cdfbd2bcc9',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['createtestplan',['CreateTestPlan',['../class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a32fa8edefb9a51e435dc084a0a05c542',1,'VstsRestAPI::TestManagement::TestManagement']]],\n  ['createupdatenodeviewmodel',['CreateUpdateNodeViewModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['createwidget',['CreateWidget',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a6e8876d7b58b992e3cde03d1c13e3d5a',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['createworkitemusingbypassrules',['CreateWorkItemUsingByPassRules',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#a1643c3e8181a916c62d329085f07995b',1,'VstsRestAPI.WorkItemAndTracking.WorkItemNew.CreateWorkItemUsingByPassRules()'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#a7ff12afa440b5f590d051bc0c6c74e04',1,'VstsRestAPI.WorkItemAndTracking.WorkItems.CreateWorkItemUsingByPassRules()']]],\n  ['creattestsuite',['CreatTestSuite',['../class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a5327dfbebb20e530b39cfa6a95ddaa4a',1,'VstsRestAPI::TestManagement::TestManagement']]],\n  ['criterion',['Criterion',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_4.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_4.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_4.js",
    "content": "var searchData=\n[\n  ['dashboard',['Dashboard',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html',1,'TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard'],['../class_vsts_demo_builder_1_1_models_1_1_dashboard.html',1,'VstsDemoBuilder.Models.Dashboard'],['../class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html',1,'TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard']]],\n  ['dashboardetagresponse',['DashBoardeTagResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html',1,'VstsRestAPI::Viewmodel::QuerysAndWidgets']]],\n  ['dashboardresponse',['DashBoardResponse',['../class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html',1,'TemplatesGeneratorTool.ViewModel.DashBoardResponse'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse']]],\n  ['data',['Data',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html',1,'VstsRestAPI::Viewmodel::Service']]],\n  ['default',['Default',['../class_vsts_demo_builder_1_1_models_1_1_default.html',1,'VstsDemoBuilder::Models']]],\n  ['defaultiteration',['DefaultIteration',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamSettingResponse']]],\n  ['definition',['Definition',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition']]],\n  ['definitionreference',['DefinitionReference',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference']]],\n  ['definitions',['Definitions',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html',1,'VstsRestAPI::Viewmodel::Build::BuildGetListofBuildDefinitionsResponse']]],\n  ['deletedefaultdashboard',['DeleteDefaultDashboard',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#adc1b3bd0066fd1340db2fbf49b56934f',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['deleterepository',['DeleteRepository',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#ae9bdfeecb8846a51d3900752166d6d74',1,'VstsRestAPI::Git::Repository']]],\n  ['deliveryplan',['DeliveryPlan',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['deploymentinput',['DeploymentInput',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput']]],\n  ['deployphas',['DeployPhas',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas']]],\n  ['deploystep',['DeployStep',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep']]],\n  ['downloadattachedfiles',['DownloadAttachedFiles',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a20c36bbbe10bb56f7f0472e8dd05b8bf',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_5.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_5.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_5.js",
    "content": "var searchData=\n[\n  ['email',['Email',['../class_vsts_demo_builder_1_1_models_1_1_email.html',1,'VstsDemoBuilder::Models']]],\n  ['enablingepic',['EnablingEpic',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a307fb639df853926ff09dadadfd8aa12',1,'VstsRestAPI::WorkItemAndTracking::Cards']]],\n  ['endenvironmentsetupprocess',['EndEnvironmentSetupProcess',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ada15b3cbf0e3c37b0c9e0036b45671c2',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['environment',['Environment',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment']]],\n  ['environmentcontroller',['EnvironmentController',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html',1,'VstsDemoBuilder::Controllers']]],\n  ['environmentoptions',['EnvironmentOptions',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions']]],\n  ['environmentvalues',['EnvironmentValues',['../class_vsts_demo_builder_1_1_models_1_1_environment_values.html',1,'VstsDemoBuilder::Models']]],\n  ['epiclist',['Epiclist',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html',1,'VstsRestAPI::Viewmodel::WorkItem::SetEpicSettings']]],\n  ['executionpolicy',['ExecutionPolicy',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy']]],\n  ['exportboardcolumns',['ExportBoardColumns',['../class_templates_generator_tool_1_1_generators_1_1_board_columns.html#aada06c13642a29046cb06f3d2ef2e322',1,'TemplatesGeneratorTool::Generators::BoardColumns']]],\n  ['exportbuilddefinitions',['ExportBuildDefinitions',['../class_templates_generator_tool_1_1_generators_1_1_build_definitions.html#a15b3c815112e04b0748ed7f1f12fa2cb',1,'TemplatesGeneratorTool::Generators::BuildDefinitions']]],\n  ['exportdashboards',['ExportDashboards',['../class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['exportpullrequests',['ExportPullRequests',['../class_templates_generator_tool_1_1_generators_1_1_pull_requests.html#aff016c663661c1421f673f1a707c362c',1,'TemplatesGeneratorTool::Generators::PullRequests']]],\n  ['exportqueries',['ExportQueries',['../class_templates_generator_tool_1_1_generators_1_1_export_queries.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['exportreleasedefinitions',['ExportReleaseDefinitions',['../class_templates_generator_tool_1_1_generators_1_1_release_definitions.html#a3660f90a0a356fdf82aee0373f7e2941',1,'TemplatesGeneratorTool::Generators::ReleaseDefinitions']]],\n  ['exportsourcecode',['ExportSourceCode',['../class_templates_generator_tool_1_1_generators_1_1_source_code.html#a9ec5af1319436537f1aa58ed45c3ca7f',1,'TemplatesGeneratorTool::Generators::SourceCode']]],\n  ['exportteams',['ExportTeams',['../class_templates_generator_tool_1_1_generators_1_1_teams.html#a3416f9b5acd249ffcd8d63abbb1fe480',1,'TemplatesGeneratorTool::Generators::Teams']]],\n  ['extension',['Extension',['../class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html',1,'VstsDemoBuilder::Models::RequiredExtensions']]],\n  ['extensionwithlink',['ExtensionWithLink',['../class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html',1,'VstsDemoBuilder::Models::RequiredExtensions']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_6.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_6.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_6.js",
    "content": "var searchData=\n[\n  ['field',['Field',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field']]],\n  ['fields',['Fields',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html',1,'TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields'],['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields']]],\n  ['fields1',['Fields1',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['fill',['Fill',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html',1,'VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill'],['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html',1,'TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill']]],\n  ['filterconfig',['FilterConfig',['../class_vsts_demo_builder_1_1_filter_config.html',1,'VstsDemoBuilder']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_7.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_7.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_7.js",
    "content": "var searchData=\n[\n  ['generaterequestpostdata',['GenerateRequestPostData',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac983d0c1775718689aff6f7a17c0b929',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['generatewifromsource',['GenerateWIFromSource',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['getaccesstoken',['GetAccessToken',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a9726501c86319171adf04dedab87a6a0',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getaccountmembers',['GetAccountMembers',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html#a0b98e88fa8e05a3d17b55a0932e1e8f6',1,'VstsRestAPI::ProjectsAndTeams::Account']]],\n  ['getaccountname',['GetAccountName',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ae8d17a5a4622885c1ae042f2cbe8103e',1,'VstsDemoBuilder::Controllers::AccountController']]],\n  ['getaccounts',['GetAccounts',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#af9d72d23dec7248e6a8b5106209e6e6d',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getalliterations',['GetAllIterations',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a719daa0225d480d779037baaa901c201',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['getallrepositories',['GetAllRepositories',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a6cf8983ffb2539bb9d3d5eb2a1657c28',1,'VstsRestAPI::Git::Repository']]],\n  ['getallrepositoriesresponse',['GetAllRepositoriesResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html',1,'VstsRestAPI::Viewmodel::Repository']]],\n  ['getboardcolumnresponse',['GetBoardColumnResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['getboardcolumns',['getBoardColumns',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#ab37fe206629cd139eeb2e6c634e56859',1,'VstsRestAPI::WorkItemAndTracking::BoardColumn']]],\n  ['getboardrows',['GetBoardRows',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a07950971f3e02be2a376722ac76bf73a',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]],\n  ['getboardrowsresponse',['GetBoardRowsResponse',['../class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['getcardfieldresponse',['GetCardFieldResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['getcardfields',['GetCardFields',['../class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a3f285cbf53c28a958fff0123d88a3e8a',1,'TemplatesGeneratorTool::Generators::CardFieldsAndCardStyles']]],\n  ['getcardstyles',['GetCardStyles',['../class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a2882c956f1ddc904ab0502fb78a31ca2',1,'TemplatesGeneratorTool::Generators::CardFieldsAndCardStyles']]],\n  ['getdashboard',['GetDashboard',['../class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html#a5f23b2dc5bd704add76697f8dfe5a530',1,'TemplatesGeneratorTool::Generators::ExportDashboards']]],\n  ['getdashboardetag',['GetDashboardeTag',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a367ee3271ff58e50273a73e2bb5da282',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['getdashboardid',['GetDashBoardId',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aef10c7b2cf6ce84aece4df4fc87a9fd6',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['getdefaultrepository',['GetDefaultRepository',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a0188a1509a001dc7bafc7ca6829daa8e',1,'VstsRestAPI::Git::Repository']]],\n  ['getgroups',['GetGroups',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a3b9b20acff06038e1aed58b3bfaaebd4',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getiterations',['GetIterations',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a9b9f298f8ae6cf16fcc809c69f99533a',1,'VstsRestAPI::WorkItemAndTracking::ClassificationNodes']]],\n  ['getlistofworkitems_5fbywiql',['GetListOfWorkItems_ByWiql',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ab6104d3b32004b835a05393a7220a7fc',1,'VstsRestAPI::WorkItemAndTracking::WorkItemNew']]],\n  ['getmembers',['GetMembers',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a1a7a16aa8a18f17e1fafb079e5ec5de4',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getnoderesponse',['GetNodeResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['getnodesresponse',['GetNodesResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['getprofile',['GetProfile',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8d6dfbb168d7d87651c361e953feb9d9',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getprojectidbyname',['GetProjectIdByName',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a488712df438d066911a1065f15556cbc',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['getprojectstatebyname',['GetProjectStateByName',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#abd2b8fa4ffdb672a1975b61964f9d72f',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['getqueriesbypath',['GetQueriesByPath',['../class_templates_generator_tool_1_1_generators_1_1_export_queries.html#a5891d5275dcffb8a38960ccb7de53004',1,'TemplatesGeneratorTool::Generators::ExportQueries']]],\n  ['getquerybypathandname',['GetQueryByPathAndName',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a8cf2beece89d16eb8b96e0c3c34142b2',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['getqueues',['GetQueues',['../class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html#a25b076002dd514e7a069197b24e9de56',1,'VstsRestAPI::Queues::Queue']]],\n  ['getrepositorytodelete',['GetRepositoryToDelete',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#adb713f76b948694752aff2d111a3ed85',1,'VstsRestAPI::Git::Repository']]],\n  ['getsourcecodefromgithub',['getSourceCodeFromGitHub',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a46daa5b9a35a6efb4267c6ee4494df31',1,'VstsRestAPI::Git::Repository']]],\n  ['getstatusmessage',['GetStatusMessage',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ae36d3258bea98714970d2fdc5fec6bf3',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getteambyname',['GetTeamByName',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a252afe1d5826c3251ace46c5e36dcb39',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['getteammembers',['GetTeamMembers',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a08de9d00456ae8e5407adfb6e3f1f135',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['getteamresponse',['GetTeamResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['getteamsetting',['GetTeamSetting',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#af1ece216c9baa58c5e8b2a527318ba3c',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['gettemplate',['GetTemplate',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a386641d021e2872eb8a614db7d3b1a6e',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getworkitemsdetailinbatch',['GetWorkItemsDetailinBatch',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a8471c5b52c936c6887720f60cd56c537',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]],\n  ['getworkitemsfromsource',['getWorkItemsfromSource',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a99040ad4f9108c0ca4d1b9ab8edbdc62',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]],\n  ['getworkitemsresponse',['GetWorkItemsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse'],['../class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html',1,'TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse']]],\n  ['gitsource',['GitSource',['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html',1,'TemplatesGeneratorTool::ViewModel::SourceCodeResponse']]],\n  ['groupdetails',['GroupDetails',['../class_vsts_demo_builder_1_1_models_1_1_group_details.html',1,'VstsDemoBuilder::Models']]],\n  ['groupwisetemplate',['GroupwiseTemplate',['../class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html',1,'VstsDemoBuilder::Models']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_8.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_8.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_8.js",
    "content": "var searchData=\n[\n  ['homecontroller',['HomeController',['../class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html',1,'VstsDemoBuilder::Controllers']]],\n  ['html',['Html',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_9.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_9.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_9.js",
    "content": "var searchData=\n[\n  ['iconfiguration',['IConfiguration',['../interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html',1,'VstsDemoBuilder.Models.IConfiguration'],['../interface_vsts_rest_a_p_i_1_1_i_configuration.html',1,'VstsRestAPI.IConfiguration'],['../interface_templates_generator_tool_1_1_i_configuration.html',1,'TemplatesGeneratorTool.IConfiguration']]],\n  ['importworkitemmodel',['ImportWorkItemModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['importworkitems',['ImportWorkItems',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html',1,'VstsRestAPI.WorkItemAndTracking.ImportWorkItems'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a314f15de4c9b09b3911af9d079abe306',1,'VstsRestAPI.WorkItemAndTracking.ImportWorkItems.ImportWorkitems()']]],\n  ['index',['Index',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ac36624619c06ea1c9e9df88c06d9a80f',1,'VstsDemoBuilder::Controllers::AccountController']]],\n  ['inputs',['Inputs',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs']]],\n  ['inputs1',['Inputs1',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['installextensions',['InstallExtensions',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c6be4b2363680d958e6fdee4e74b91a',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['iphostgenerator',['IPHostGenerator',['../class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html',1,'VstsDemoBuilder::Models::Location']]],\n  ['isaccounthasprojects',['IsAccountHasProjects',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a5972180d08f6a32c0a22c03f94622904',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['issuewi',['IssueWI',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['isvalidaccount',['isValidAccount',['../class_templates_generator_tool_1_1_generators_1_1_validate_login.html#ab3bf9583c98282065b77f2a35ddeacd2',1,'TemplatesGeneratorTool::Generators::ValidateLogin']]],\n  ['iterationcontext',['IterationContext',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext']]],\n  ['iterations',['Iterations',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamIterationsResponse']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_a.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_a.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_a.js",
    "content": "var searchData=\n[\n  ['links',['Links',['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse.Links'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links']]],\n  ['listofcards',['ListofCards',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetCardFieldResponse']]],\n  ['listofcardstyles',['ListofCardStyles',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html',1,'VstsRestAPI::Viewmodel::WorkItem::CardStylesPatch']]],\n  ['listofprojects',['ListOfProjects',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#afd4729308614a2d4f4124c7eedafecfc',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['listofprojectsresponse',['ListofProjectsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['location',['Location',['../class_vsts_demo_builder_1_1_models_1_1_location.html',1,'VstsDemoBuilder::Models']]],\n  ['loginmodel',['LoginModel',['../class_vsts_demo_builder_1_1_models_1_1_login_model.html',1,'VstsDemoBuilder::Models']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_b.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_b.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_b.js",
    "content": "var searchData=\n[\n  ['member',['Member',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::AccountMembers']]],\n  ['memberships',['Memberships',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::AccountMembers']]],\n  ['microsoftteamfoundationdiscussionsupportsmarkdown',['MicrosoftTeamFoundationDiscussionSupportsMarkdown',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown']]],\n  ['moveiteration',['MoveIteration',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a34362d25882c3145b7134f08bf8aae86',1,'VstsRestAPI::WorkItemAndTracking::ClassificationNodes']]],\n  ['mvcapplication',['MvcApplication',['../class_vsts_demo_builder_1_1_mvc_application.html',1,'VstsDemoBuilder']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_c.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_c.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_c.js",
    "content": "var searchData=\n[\n  ['node',['Node',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html',1,'VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node']]],\n  ['nodes',['Nodes',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetNodesResponse']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_d.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_d.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_d.js",
    "content": "var searchData=\n[\n  ['option',['Option',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['owner',['Owner',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_e.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_e.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_e.js",
    "content": "var searchData=\n[\n  ['parallelexecution',['ParallelExecution',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution']]],\n  ['parameter',['parameter',['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html',1,'TemplatesGeneratorTool::ViewModel::ServiceEndPointsResponse']]],\n  ['parameters',['Parameters',['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html',1,'TemplatesGeneratorTool::ViewModel::SourceCodeResponse']]],\n  ['parent',['Parent',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetNodeResponse']]],\n  ['plan',['Plan',['../class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html',1,'VstsDemoBuilder::Models::TestSuite']]],\n  ['plans',['Plans',['../class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html',1,'VstsRestAPI::DeliveryPlans']]],\n  ['planviewmodel',['PlanViewModel',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['pool',['Pool',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html',1,'VstsRestAPI.Viewmodel.Queue.Pool'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html',1,'VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool']]],\n  ['position',['Position',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html',1,'TemplatesGeneratorTool::ViewModel::WidgetAndChartResponse']]],\n  ['postdeployapprovals',['PostDeployApprovals',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals']]],\n  ['predeployapprovals',['PreDeployApprovals',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals']]],\n  ['prepareandupdatetarget',['PrepareAndUpdateTarget',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a4e9b291e9e8e0c84200d2fa06f0bc068',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['productbacklogitem',['ProductBacklogItem',['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html',1,'TemplatesGeneratorTool::ViewModel::CardFieldResponse']]],\n  ['profiledetails',['ProfileDetails',['../class_vsts_demo_builder_1_1_models_1_1_profile_details.html',1,'VstsDemoBuilder::Models']]],\n  ['program',['Program',['../class_templates_generator_tool_1_1_program.html',1,'TemplatesGeneratorTool']]],\n  ['project',['Project',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html',1,'VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project'],['../class_vsts_demo_builder_1_1_models_1_1_project.html',1,'VstsDemoBuilder.Models.Project'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html',1,'VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project']]],\n  ['projectcount',['ProjectCount',['../class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html',1,'VstsDemoBuilder::Models::ProjectList']]],\n  ['projectlist',['ProjectList',['../class_vsts_demo_builder_1_1_models_1_1_project_list.html',1,'VstsDemoBuilder::Models']]],\n  ['projects',['Projects',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html',1,'VstsRestAPI.ProjectsAndTeams.Projects'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects']]],\n  ['projectsettings',['ProjectSettings',['../class_vsts_demo_builder_1_1_models_1_1_project_settings.html',1,'VstsDemoBuilder::Models']]],\n  ['projecttemplate',['ProjectTemplate',['../class_vsts_demo_builder_1_1_models_1_1_project_template.html',1,'VstsDemoBuilder::Models']]],\n  ['properties',['Properties',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html',1,'TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties'],['../class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html',1,'VstsDemoBuilder.Models.Accounts.Properties']]],\n  ['pullrequest',['PullRequest',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html',1,'TemplatesGeneratorTool::ViewModel::PullRequestResponse']]],\n  ['pullrequestcommentresponse',['PullRequestCommentResponse',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['pullrequestcomments',['PullRequestComments',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html',1,'VstsRestAPI::Viewmodel::Repository']]],\n  ['pullrequestresponse',['PullRequestResponse',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['pullrequests',['PullRequests',['../class_templates_generator_tool_1_1_generators_1_1_pull_requests.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['pullrequestthreadcontext',['PullRequestThreadContext',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext']]]\n];\n"
  },
  {
    "path": "Report/html/search/all_f.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"all_f.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/all_f.js",
    "content": "var searchData=\n[\n  ['query',['Query',['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse.Query'],['../class_vsts_demo_builder_1_1_models_1_1_query.html',1,'VstsDemoBuilder.Models.Query'],['../class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html',1,'TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query']]],\n  ['querybypathresponse',['QueryByPathResponse',['../class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['queryresponse',['QueryResponse',['../class_templates_generator_tool_1_1_view_model_1_1_query_response.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse']]],\n  ['querys',['Querys',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html',1,'VstsRestAPI::QuerysAndWidgets']]],\n  ['querywithwiql',['QueryWithWiql',['../class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html',1,'TemplatesGeneratorTool::ViewModel::QueryByPathResponse']]],\n  ['queue',['Queue',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue'],['../class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html',1,'VstsRestAPI.Queues.Queue'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html',1,'VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue']]],\n  ['queuebuild',['QueueBuild',['../class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6f176c07809293c0b2efd1d3eb0cffcc',1,'VstsRestAPI::Build::BuildDefinition']]],\n  ['queuemodel',['QueueModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html',1,'VstsRestAPI::Viewmodel::Queue']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_0.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_0.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_0.js",
    "content": "var searchData=\n[\n  ['_5flinks',['_Links',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse._Links'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse._Links'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse._Links']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_1.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_1.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_1.js",
    "content": "var searchData=\n[\n  ['accessdetails',['AccessDetails',['../class_vsts_demo_builder_1_1_models_1_1_access_details.html',1,'VstsDemoBuilder::Models']]],\n  ['accesslevel',['AccessLevel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::AccountMembers']]],\n  ['account',['Account',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html',1,'VstsRestAPI.ProjectsAndTeams.Account'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Account']]],\n  ['accountcontroller',['AccountController',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html',1,'VstsDemoBuilder::Controllers']]],\n  ['accountlist',['AccountList',['../class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.html',1,'VstsDemoBuilder::Models::Accounts']]],\n  ['accountmembers',['AccountMembers',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['accounts',['Accounts',['../class_vsts_demo_builder_1_1_models_1_1_accounts.html',1,'VstsDemoBuilder::Models']]],\n  ['agentqueuemodel',['AgentQueueModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.html',1,'VstsRestAPI::Viewmodel::Queue']]],\n  ['aihandleerrorattribute',['AiHandleErrorAttribute',['../class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.html',1,'VstsDemoBuilder::ErrorHandler']]],\n  ['allplans',['AllPlans',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['approval',['Approval',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approval'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approval']]],\n  ['approver',['Approver',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Approver'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Approver']]],\n  ['artifact',['Artifact',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Artifact'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Artifact']]],\n  ['attributes',['Attributes',['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Attributes'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Attributes']]],\n  ['authentication',['Authentication',['../class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.html',1,'VstsDemoBuilder::Models::ProjectList']]],\n  ['authoredby',['Authoredby',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.html',1,'VstsRestAPI::Viewmodel::Build::BuildGetListofBuildDefinitionsResponse']]],\n  ['authorization',['Authorization',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.html',1,'VstsRestAPI.Viewmodel.Service.Authorization'],['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.html',1,'TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Authorization']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_10.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_10.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_10.js",
    "content": "var searchData=\n[\n  ['relation',['Relation',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['relations',['Relations',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Relations'],['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Relations']]],\n  ['release',['Release',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Release'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Release']]],\n  ['releasedef',['ReleaseDef',['../class_vsts_demo_builder_1_1_models_1_1_release_def.html',1,'VstsDemoBuilder::Models']]],\n  ['releasedefinition',['ReleaseDefinition',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ReleaseDefinition'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ReleaseDefinition'],['../class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html',1,'VstsRestAPI.Release.ReleaseDefinition']]],\n  ['releasedefinitions',['ReleaseDefinitions',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions'],['../class_templates_generator_tool_1_1_generators_1_1_release_definitions.html',1,'TemplatesGeneratorTool.Generators.ReleaseDefinitions'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions']]],\n  ['releasedefinitionsresponse',['ReleaseDefinitionsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse']]],\n  ['reply',['reply',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.html',1,'VstsRestAPI::Viewmodel::Repository::PullRequestComments']]],\n  ['repositories',['Repositories',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.html',1,'VstsRestAPI::Viewmodel::Repository::GetAllRepositoriesResponse']]],\n  ['repository',['Repository',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Repository'],['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html',1,'VstsRestAPI.Git.Repository'],['../class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.html',1,'TemplatesGeneratorTool.ViewModel.RepositoryResponse.Repository']]],\n  ['repositoryresponse',['RepositoryResponse',['../class_templates_generator_tool_1_1_view_model_1_1_repository_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['requiredextensions',['RequiredExtensions',['../class_vsts_demo_builder_1_1_models_1_1_required_extensions.html',1,'VstsDemoBuilder::Models']]],\n  ['result',['Result',['../class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.html',1,'TemplatesGeneratorTool::ViewModel::GetBoardRowsResponse']]],\n  ['results',['Results',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results'],['../class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.html',1,'TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results']]],\n  ['retentionpolicy',['RetentionPolicy',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.RetentionPolicy'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.RetentionPolicy']]],\n  ['retentionrule',['RetentionRule',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['returnexception',['ReturnException',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['reviewer',['Reviewer',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.html',1,'TemplatesGeneratorTool::ViewModel::PullRequestResponse']]],\n  ['rightfileend',['RightFileEnd',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileEnd'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileEnd']]],\n  ['rightfilestart',['RightFileStart',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.RightFileStart'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.RightFileStart']]],\n  ['routeconfig',['RouteConfig',['../class_vsts_demo_builder_1_1_route_config.html',1,'VstsDemoBuilder']]],\n  ['rules',['Rules',['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.html',1,'TemplatesGeneratorTool.ViewModel.CardStyleResponse.Rules'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.html',1,'VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_11.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_11.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_11.js",
    "content": "var searchData=\n[\n  ['self',['Self',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Self'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Self'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Self'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Self']]],\n  ['service',['Service',['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.html',1,'TemplatesGeneratorTool::ViewModel::ServiceEndPointsResponse']]],\n  ['serviceendpoint',['ServiceEndPoint',['../class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html',1,'VstsRestAPI::Service']]],\n  ['serviceendpointmodel',['ServiceEndpointModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.html',1,'VstsRestAPI::Viewmodel::Service']]],\n  ['serviceendpointsresponse',['ServiceEndPointsResponse',['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['setepicsettings',['SetEpicSettings',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['settings',['Settings',['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.html',1,'TemplatesGeneratorTool::ViewModel::CardStyleResponse']]],\n  ['settingsversion',['SettingsVersion',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.html',1,'TemplatesGeneratorTool::ViewModel::WidgetAndChartResponse']]],\n  ['size',['Size',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.html',1,'TemplatesGeneratorTool::ViewModel::WidgetAndChartResponse']]],\n  ['sourcecode',['SourceCode',['../class_templates_generator_tool_1_1_generators_1_1_source_code.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['sourcecoderesponse',['SourceCodeResponse',['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['sourceconfiguration',['SourceConfiguration',['../class_templates_generator_tool_1_1_source_configuration.html',1,'TemplatesGeneratorTool']]],\n  ['statemappings',['StateMappings',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.StateMappings'],['../class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.html',1,'TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.StateMappings'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.html',1,'VstsRestAPI.Viewmodel.WorkItem.StateMappings']]],\n  ['swimlanes',['SwimLanes',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['systemdebug',['SystemDebug',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_12.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_12.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_12.js",
    "content": "var searchData=\n[\n  ['tagstyle',['TagStyle',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.html',1,'VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.TagStyle'],['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.html',1,'TemplatesGeneratorTool.ViewModel.CardStyleResponse.TagStyle']]],\n  ['task',['Task',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Task'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Task'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Task']]],\n  ['team',['Team',['../class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.html',1,'TemplatesGeneratorTool.ViewModel.TeamsResponse.Team'],['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html',1,'VstsRestAPI.ProjectsAndTeams.Team'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team']]],\n  ['teambacklogmapping',['TeamBacklogMapping',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['teamiterationsresponse',['TeamIterationsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['teammemberresponse',['TeamMemberResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['teammembers',['TeamMembers',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamMemberResponse']]],\n  ['teamresponse',['TeamResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['teams',['Teams',['../class_templates_generator_tool_1_1_generators_1_1_teams.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['teamsetting',['TeamSetting',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamSettingResponse']]],\n  ['teamsettingresponse',['TeamSettingResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['teamsresponse',['TeamsResponse',['../class_templates_generator_tool_1_1_view_model_1_1_teams_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['template',['Template',['../class_vsts_demo_builder_1_1_models_1_1_template.html',1,'VstsDemoBuilder::Models']]],\n  ['templatekeyvalue',['templateKeyValue',['../class_vsts_demo_builder_1_1_models_1_1template_key_value.html',1,'VstsDemoBuilder::Models']]],\n  ['templatesetting',['TemplateSetting',['../class_vsts_demo_builder_1_1_models_1_1_template_setting.html',1,'VstsDemoBuilder::Models']]],\n  ['testcase',['TestCase',['../class_vsts_demo_builder_1_1_models_1_1_test_case.html',1,'VstsDemoBuilder::Models']]],\n  ['testmanagement',['TestManagement',['../class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html',1,'VstsRestAPI::TestManagement']]],\n  ['testsuite',['TestSuite',['../class_vsts_demo_builder_1_1_models_1_1_test_suite.html',1,'VstsDemoBuilder::Models']]],\n  ['testsuites',['TestSuites',['../class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.html',1,'VstsDemoBuilder::Models::TestSuite']]],\n  ['threadcontext',['ThreadContext',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.ThreadContext'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.ThreadContext']]],\n  ['trigger',['Trigger',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Trigger'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Trigger']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_13.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_13.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_13.js",
    "content": "var searchData=\n[\n  ['utility',['Utility',['../class_vsts_rest_a_p_i_1_1_utility.html',1,'VstsRestAPI']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_14.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_14.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_14.js",
    "content": "var searchData=\n[\n  ['validatelogin',['ValidateLogin',['../class_templates_generator_tool_1_1_generators_1_1_validate_login.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['value',['Value',['../class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.html',1,'VstsDemoBuilder.Models.ProjectList.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.TeamMemberResponse.value'],['../class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.html',1,'VstsDemoBuilder.Models.Accounts.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.SourceCodeResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitionsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.RepositoryResponse.Value'],['../class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.html',1,'VstsDemoBuilder.Models.TestSuite.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.html',1,'VstsRestAPI.Viewmodel.Queue.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.ServiceEndPointsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.TeamsResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.DashBoardResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.PlanViewModel.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.BatchRequest.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemBatchPostResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.TeamIterationsResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Value'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Value'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitionsResponse.Value']]],\n  ['variables',['Variables',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Variables'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Variables'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Variables']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_15.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_15.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_15.js",
    "content": "var searchData=\n[\n  ['widget',['Widget',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.html',1,'TemplatesGeneratorTool::ViewModel::WidgetAndChartResponse']]],\n  ['widgetandchartresponse',['WidgetAndChartResponse',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['wimapdata',['WIMapData',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.html',1,'TemplatesGeneratorTool.Generators.GenerateWIFromSource.WIMapData'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.html',1,'VstsRestAPI.WorkItemAndTracking.WIMapData']]],\n  ['wiql',['Wiql',['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.html',1,'TemplatesGeneratorTool::ViewModel::QueryResponse']]],\n  ['workitem',['Workitem',['../class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.html',1,'TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Workitem'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Workitem']]],\n  ['workitembatchpostresponse',['WorkItemBatchPostResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['workitemfetchresponse',['WorkItemFetchResponse',['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['workitemhistory',['Workitemhistory',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['workitemnew',['WorkItemNew',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['workitempatch',['WorkItemPatch',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['workitempatchresponse',['WorkItemPatchResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['workitemrevisions',['Workitemrevisions',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['workitems',['WorkItems',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html',1,'VstsRestAPI.WorkItemAndTracking.WorkItems'],['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems']]],\n  ['workitemtype',['Workitemtype',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['workitemupdates',['Workitemupdates',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_2.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_2.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_2.js",
    "content": "var searchData=\n[\n  ['backlogiteration',['BacklogIteration',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamSettingResponse']]],\n  ['backlogvisibilities',['BacklogVisibilities',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.html',1,'VstsRestAPI::Viewmodel::WorkItem::SetEpicSettings']]],\n  ['baseviewmodel',['BaseViewModel',['../class_templates_generator_tool_1_1_view_model_1_1_base_view_model.html',1,'TemplatesGeneratorTool.ViewModel.BaseViewModel'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.html',1,'VstsRestAPI.Viewmodel.BaseViewModel']]],\n  ['batchrequest',['BatchRequest',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['boardcolumn',['BoardColumn',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['boardcolumns',['BoardColumns',['../class_templates_generator_tool_1_1_generators_1_1_board_columns.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['boardcolumnsresponse',['BoardColumnsResponse',['../class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['bug',['Bug',['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.html',1,'TemplatesGeneratorTool::ViewModel::CardFieldResponse']]],\n  ['build',['Build',['../class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitionResponse.Build'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Build']]],\n  ['buildconfiguration',['BuildConfiguration',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['builddef',['BuildDef',['../class_vsts_demo_builder_1_1_models_1_1_build_def.html',1,'VstsDemoBuilder::Models']]],\n  ['builddefinition',['BuildDefinition',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.BuildDefinition'],['../class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html',1,'VstsRestAPI.Build.BuildDefinition']]],\n  ['builddefinitionresponse',['BuildDefinitionResponse',['../class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['builddefinitions',['BuildDefinitions',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions'],['../class_templates_generator_tool_1_1_generators_1_1_build_definitions.html',1,'TemplatesGeneratorTool.Generators.BuildDefinitions']]],\n  ['buildgetlistofbuilddefinitionsresponse',['BuildGetListofBuildDefinitionsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.html',1,'VstsRestAPI::Viewmodel::Build']]],\n  ['buildplatform',['BuildPlatform',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['buildreleasemapping',['BuildReleaseMapping',['../class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.html',1,'VstsDemoBuilder::Models']]],\n  ['bundleconfig',['BundleConfig',['../class_vsts_demo_builder_1_1_bundle_config.html',1,'VstsDemoBuilder']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_3.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_3.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_3.js",
    "content": "var searchData=\n[\n  ['cardfieldresponse',['CardFieldResponse',['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['cardfields',['CardFields',['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.html',1,'TemplatesGeneratorTool::ViewModel::CardFieldResponse']]],\n  ['cardfieldsandcardstyles',['CardFieldsAndCardStyles',['../class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['cards',['Cards',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards'],['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.html',1,'TemplatesGeneratorTool.ViewModel.CardFieldResponse.Cards'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html',1,'VstsRestAPI.WorkItemAndTracking.Cards']]],\n  ['cardsettings',['CardSettings',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['cardstyleresponse',['CardStyleResponse',['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['cardstyles',['CardStyles',['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.html',1,'TemplatesGeneratorTool::ViewModel::CardStyleResponse']]],\n  ['cardstylespatch',['CardStylesPatch',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['child',['Child',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Child'],['../class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.html',1,'TemplatesGeneratorTool.ViewModel.QueryByPathResponse.Child'],['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse.Child']]],\n  ['child1',['Child1',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetNodesResponse']]],\n  ['classificationnodes',['ClassificationNodes',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['code',['Code',['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.html',1,'TemplatesGeneratorTool::ViewModel::SourceCodeResponse']]],\n  ['column',['Column',['../class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.html',1,'TemplatesGeneratorTool.ViewModel.BoardColumnsResponse.Column'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Column'],['../class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.html',1,'TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Column']]],\n  ['columnpost',['ColumnPost',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['columnresponse',['ColumnResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetBoardColumnResponse']]],\n  ['comment',['Comment',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comment'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comment']]],\n  ['comments',['Comments',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.Comments'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Comments']]],\n  ['condition',['Condition',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Condition'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Condition']]],\n  ['configuration',['Configuration',['../class_templates_generator_tool_1_1_configuration.html',1,'TemplatesGeneratorTool.Configuration'],['../class_vsts_demo_builder_1_1_models_1_1_configuration.html',1,'VstsDemoBuilder.Models.Configuration'],['../class_vsts_rest_a_p_i_1_1_configuration.html',1,'VstsRestAPI.Configuration']]],\n  ['corefield',['CoreField',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['createdby',['CreatedBy',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.html',1,'VstsRestAPI::Viewmodel::Service']]],\n  ['createupdatenodeviewmodel',['CreateUpdateNodeViewModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['criterion',['Criterion',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_4.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_4.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_4.js",
    "content": "var searchData=\n[\n  ['dashboard',['Dashboard',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.html',1,'TemplatesGeneratorTool.ViewModel.WidgetAndChartResponse.Dashboard'],['../class_vsts_demo_builder_1_1_models_1_1_dashboard.html',1,'VstsDemoBuilder.Models.Dashboard'],['../class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.html',1,'TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.DashBoardeTagResponse.Dashboard'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard']]],\n  ['dashboardetagresponse',['DashBoardeTagResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.html',1,'VstsRestAPI::Viewmodel::QuerysAndWidgets']]],\n  ['dashboardresponse',['DashBoardResponse',['../class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.html',1,'TemplatesGeneratorTool.ViewModel.DashBoardResponse'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse']]],\n  ['data',['Data',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.html',1,'VstsRestAPI::Viewmodel::Service']]],\n  ['default',['Default',['../class_vsts_demo_builder_1_1_models_1_1_default.html',1,'VstsDemoBuilder::Models']]],\n  ['defaultiteration',['DefaultIteration',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamSettingResponse']]],\n  ['definition',['Definition',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Definition'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Definition'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Definition']]],\n  ['definitionreference',['DefinitionReference',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DefinitionReference'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DefinitionReference']]],\n  ['definitions',['Definitions',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.html',1,'VstsRestAPI::Viewmodel::Build::BuildGetListofBuildDefinitionsResponse']]],\n  ['deliveryplan',['DeliveryPlan',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.html',1,'TemplatesGeneratorTool::ViewModel::PlanViewModel']]],\n  ['deploymentinput',['DeploymentInput',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeploymentInput'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeploymentInput']]],\n  ['deployphas',['DeployPhas',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployPhas'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployPhas']]],\n  ['deploystep',['DeployStep',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.DeployStep'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.DeployStep']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_5.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_5.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_5.js",
    "content": "var searchData=\n[\n  ['email',['Email',['../class_vsts_demo_builder_1_1_models_1_1_email.html',1,'VstsDemoBuilder::Models']]],\n  ['environment',['Environment',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Environment'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Environment']]],\n  ['environmentcontroller',['EnvironmentController',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html',1,'VstsDemoBuilder::Controllers']]],\n  ['environmentoptions',['EnvironmentOptions',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.EnvironmentOptions'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.EnvironmentOptions']]],\n  ['environmentvalues',['EnvironmentValues',['../class_vsts_demo_builder_1_1_models_1_1_environment_values.html',1,'VstsDemoBuilder::Models']]],\n  ['epiclist',['Epiclist',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.html',1,'VstsRestAPI::Viewmodel::WorkItem::SetEpicSettings']]],\n  ['executionpolicy',['ExecutionPolicy',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ExecutionPolicy'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ExecutionPolicy']]],\n  ['exportdashboards',['ExportDashboards',['../class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['exportqueries',['ExportQueries',['../class_templates_generator_tool_1_1_generators_1_1_export_queries.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['extension',['Extension',['../class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.html',1,'VstsDemoBuilder::Models::RequiredExtensions']]],\n  ['extensionwithlink',['ExtensionWithLink',['../class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.html',1,'VstsDemoBuilder::Models::RequiredExtensions']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_6.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_6.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_6.js",
    "content": "var searchData=\n[\n  ['field',['Field',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Field'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatch.Field']]],\n  ['fields',['Fields',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.html',1,'TemplatesGeneratorTool.ViewModel.PlanViewModel.Fields'],['../class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.html',1,'TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.Fields'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.html',1,'VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.Fields'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.html',1,'VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.Fields'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.Fields']]],\n  ['fields1',['Fields1',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]],\n  ['fill',['Fill',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.html',1,'VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Fill'],['../class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.html',1,'TemplatesGeneratorTool.ViewModel.CardStyleResponse.Fill']]],\n  ['filterconfig',['FilterConfig',['../class_vsts_demo_builder_1_1_filter_config.html',1,'VstsDemoBuilder']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_7.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_7.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_7.js",
    "content": "var searchData=\n[\n  ['generatewifromsource',['GenerateWIFromSource',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['getallrepositoriesresponse',['GetAllRepositoriesResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.html',1,'VstsRestAPI::Viewmodel::Repository']]],\n  ['getboardcolumnresponse',['GetBoardColumnResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['getboardrowsresponse',['GetBoardRowsResponse',['../class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['getcardfieldresponse',['GetCardFieldResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['getnoderesponse',['GetNodeResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['getnodesresponse',['GetNodesResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['getteamresponse',['GetTeamResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['getworkitemsresponse',['GetWorkItemsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse'],['../class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.html',1,'TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse']]],\n  ['gitsource',['GitSource',['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.html',1,'TemplatesGeneratorTool::ViewModel::SourceCodeResponse']]],\n  ['groupdetails',['GroupDetails',['../class_vsts_demo_builder_1_1_models_1_1_group_details.html',1,'VstsDemoBuilder::Models']]],\n  ['groupwisetemplate',['GroupwiseTemplate',['../class_vsts_demo_builder_1_1_models_1_1_groupwise_template.html',1,'VstsDemoBuilder::Models']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_8.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_8.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_8.js",
    "content": "var searchData=\n[\n  ['homecontroller',['HomeController',['../class_vsts_demo_builder_1_1_controllers_1_1_home_controller.html',1,'VstsDemoBuilder::Controllers']]],\n  ['html',['Html',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.html',1,'VstsRestAPI::Viewmodel::WorkItem::WorkItemPatchResponse']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_9.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_9.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_9.js",
    "content": "var searchData=\n[\n  ['iconfiguration',['IConfiguration',['../interface_vsts_demo_builder_1_1_models_1_1_i_configuration.html',1,'VstsDemoBuilder.Models.IConfiguration'],['../interface_vsts_rest_a_p_i_1_1_i_configuration.html',1,'VstsRestAPI.IConfiguration'],['../interface_templates_generator_tool_1_1_i_configuration.html',1,'TemplatesGeneratorTool.IConfiguration']]],\n  ['importworkitemmodel',['ImportWorkItemModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.html',1,'VstsRestAPI::Viewmodel::WorkItem']]],\n  ['importworkitems',['ImportWorkItems',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['inputs',['Inputs',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Inputs'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Inputs'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Inputs']]],\n  ['inputs1',['Inputs1',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['iphostgenerator',['IPHostGenerator',['../class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.html',1,'VstsDemoBuilder::Models::Location']]],\n  ['issuewi',['IssueWI',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html',1,'VstsRestAPI::WorkItemAndTracking']]],\n  ['iterationcontext',['IterationContext',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.IterationContext'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.IterationContext']]],\n  ['iterations',['Iterations',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::TeamIterationsResponse']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_a.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_a.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_a.js",
    "content": "var searchData=\n[\n  ['links',['Links',['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse.Links'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.AccountMembers.Links']]],\n  ['listofcards',['ListofCards',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetCardFieldResponse']]],\n  ['listofcardstyles',['ListofCardStyles',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.html',1,'VstsRestAPI::Viewmodel::WorkItem::CardStylesPatch']]],\n  ['listofprojectsresponse',['ListofProjectsResponse',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams']]],\n  ['location',['Location',['../class_vsts_demo_builder_1_1_models_1_1_location.html',1,'VstsDemoBuilder::Models']]],\n  ['loginmodel',['LoginModel',['../class_vsts_demo_builder_1_1_models_1_1_login_model.html',1,'VstsDemoBuilder::Models']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_b.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_b.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_b.js",
    "content": "var searchData=\n[\n  ['member',['Member',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::AccountMembers']]],\n  ['memberships',['Memberships',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.html',1,'VstsRestAPI::Viewmodel::ProjectAndTeams::AccountMembers']]],\n  ['microsoftteamfoundationdiscussionsupportsmarkdown',['MicrosoftTeamFoundationDiscussionSupportsMarkdown',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.MicrosoftTeamFoundationDiscussionSupportsMarkdown'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.MicrosoftTeamFoundationDiscussionSupportsMarkdown']]],\n  ['mvcapplication',['MvcApplication',['../class_vsts_demo_builder_1_1_mvc_application.html',1,'VstsDemoBuilder']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_c.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_c.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_c.js",
    "content": "var searchData=\n[\n  ['node',['Node',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.html',1,'VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.html',1,'VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node']]],\n  ['nodes',['Nodes',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetNodesResponse']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_d.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_d.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_d.js",
    "content": "var searchData=\n[\n  ['option',['Option',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.html',1,'TemplatesGeneratorTool::ViewModel::BuildDefinitions']]],\n  ['owner',['Owner',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Owner'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Owner']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_e.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_e.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_e.js",
    "content": "var searchData=\n[\n  ['parallelexecution',['ParallelExecution',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.ParallelExecution'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.ParallelExecution']]],\n  ['parameter',['parameter',['../class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.html',1,'TemplatesGeneratorTool::ViewModel::ServiceEndPointsResponse']]],\n  ['parameters',['Parameters',['../class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.html',1,'TemplatesGeneratorTool::ViewModel::SourceCodeResponse']]],\n  ['parent',['Parent',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.html',1,'VstsRestAPI::Viewmodel::WorkItem::GetNodeResponse']]],\n  ['plan',['Plan',['../class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.html',1,'VstsDemoBuilder::Models::TestSuite']]],\n  ['plans',['Plans',['../class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html',1,'VstsRestAPI::DeliveryPlans']]],\n  ['planviewmodel',['PlanViewModel',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['pool',['Pool',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.html',1,'VstsRestAPI.Viewmodel.Queue.Pool'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Pool'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.html',1,'VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Pool']]],\n  ['position',['Position',['../class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.html',1,'TemplatesGeneratorTool::ViewModel::WidgetAndChartResponse']]],\n  ['postdeployapprovals',['PostDeployApprovals',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PostDeployApprovals'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PostDeployApprovals']]],\n  ['predeployapprovals',['PreDeployApprovals',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.PreDeployApprovals'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.PreDeployApprovals']]],\n  ['productbacklogitem',['ProductBacklogItem',['../class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.html',1,'TemplatesGeneratorTool::ViewModel::CardFieldResponse']]],\n  ['profiledetails',['ProfileDetails',['../class_vsts_demo_builder_1_1_models_1_1_profile_details.html',1,'VstsDemoBuilder::Models']]],\n  ['program',['Program',['../class_templates_generator_tool_1_1_program.html',1,'TemplatesGeneratorTool']]],\n  ['project',['Project',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.html',1,'VstsRestAPI.Viewmodel.ReleaseDefinition.ReleaseDefinitions.Project'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.html',1,'VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Project'],['../class_vsts_demo_builder_1_1_models_1_1_project.html',1,'VstsDemoBuilder.Models.Project'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.html',1,'VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Project'],['../class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.html',1,'TemplatesGeneratorTool.ViewModel.ReleaseDefinitions.Project'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.TeamSettingResponse.Project']]],\n  ['projectcount',['ProjectCount',['../class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.html',1,'VstsDemoBuilder::Models::ProjectList']]],\n  ['projectlist',['ProjectList',['../class_vsts_demo_builder_1_1_models_1_1_project_list.html',1,'VstsDemoBuilder::Models']]],\n  ['projects',['Projects',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html',1,'VstsRestAPI.ProjectsAndTeams.Projects'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.html',1,'VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects']]],\n  ['projectsettings',['ProjectSettings',['../class_vsts_demo_builder_1_1_models_1_1_project_settings.html',1,'VstsDemoBuilder::Models']]],\n  ['projecttemplate',['ProjectTemplate',['../class_vsts_demo_builder_1_1_models_1_1_project_template.html',1,'VstsDemoBuilder::Models']]],\n  ['properties',['Properties',['../class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.html',1,'TemplatesGeneratorTool.ViewModel.PlanViewModel.Properties'],['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Properties'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.Properties'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.Properties'],['../class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.html',1,'VstsDemoBuilder.Models.Accounts.Properties']]],\n  ['pullrequest',['PullRequest',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.html',1,'TemplatesGeneratorTool::ViewModel::PullRequestResponse']]],\n  ['pullrequestcommentresponse',['PullRequestCommentResponse',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['pullrequestcomments',['PullRequestComments',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.html',1,'VstsRestAPI::Viewmodel::Repository']]],\n  ['pullrequestresponse',['PullRequestResponse',['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['pullrequests',['PullRequests',['../class_templates_generator_tool_1_1_generators_1_1_pull_requests.html',1,'TemplatesGeneratorTool::Generators']]],\n  ['pullrequestthreadcontext',['PullRequestThreadContext',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.html',1,'VstsRestAPI.Viewmodel.Repository.PullRequestComments.PullRequestThreadContext'],['../class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.html',1,'TemplatesGeneratorTool.ViewModel.PullRequestCommentResponse.PullRequestThreadContext']]]\n];\n"
  },
  {
    "path": "Report/html/search/classes_f.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"classes_f.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/classes_f.js",
    "content": "var searchData=\n[\n  ['query',['Query',['../class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse.Query'],['../class_vsts_demo_builder_1_1_models_1_1_query.html',1,'VstsDemoBuilder.Models.Query'],['../class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.html',1,'TemplatesGeneratorTool.ViewModel.QueryByPathResponse.query']]],\n  ['querybypathresponse',['QueryByPathResponse',['../class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.html',1,'TemplatesGeneratorTool::ViewModel']]],\n  ['queryresponse',['QueryResponse',['../class_templates_generator_tool_1_1_view_model_1_1_query_response.html',1,'TemplatesGeneratorTool.ViewModel.QueryResponse'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets.QueryResponse']]],\n  ['querys',['Querys',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html',1,'VstsRestAPI::QuerysAndWidgets']]],\n  ['querywithwiql',['QueryWithWiql',['../class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.html',1,'TemplatesGeneratorTool::ViewModel::QueryByPathResponse']]],\n  ['queue',['Queue',['../class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.html',1,'TemplatesGeneratorTool.ViewModel.BuildDefinitions.Queue'],['../class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html',1,'VstsRestAPI.Queues.Queue'],['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.html',1,'VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Queue']]],\n  ['queuemodel',['QueueModel',['../class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.html',1,'VstsRestAPI::Viewmodel::Queue']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_0.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_0.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_0.js",
    "content": "var searchData=\n[\n  ['addcommenttothread',['AddCommentToThread',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a5c50b0035797a2b59071162bff47135c',1,'VstsRestAPI::Git::Repository']]],\n  ['adddeliveryplan',['AddDeliveryPlan',['../class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.html#a8ed2253f78a26bc96e9717c84a881355',1,'VstsRestAPI::DeliveryPlans::Plans']]],\n  ['addlink',['AddLink',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#ac843d9b1bc4583e7952584dd89a63279',1,'VstsRestAPI::WorkItemAndTracking::WorkItems']]],\n  ['addtestcasestosuite',['AddTestCasesToSuite',['../class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a0c52041b2fed39904f0452d7ea26f51c',1,'VstsRestAPI::TestManagement::TestManagement']]],\n  ['applyrules',['ApplyRules',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a01a9ffa779ba2cdcd5750cc188dc42f1',1,'VstsRestAPI::WorkItemAndTracking::Cards']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_1.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_1.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_1.js",
    "content": "var searchData=\n[\n  ['checkforinstalledextensions',['CheckForInstalledExtensions',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a4ea213c905f5eb8d420e09d7a919a55d',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['checksession',['CheckSession',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac7c3e39375100aa8c8c3597d5c95c7a1',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['create',['Create',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a05d657b039fcb027c054e24cf53e5941',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['createarea',['CreateArea',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab57dd1be0d460862a1b4cd64a69b81b8',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['createbuilddefinition',['CreateBuildDefinition',['../class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6b0baf93fe915e1eb9a9f028a9f0136a',1,'VstsRestAPI::Build::BuildDefinition']]],\n  ['createcommentthread',['CreateCommentThread',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a9284efc83831e33d74892b68ff58b276',1,'VstsRestAPI::Git::Repository']]],\n  ['createissuewi',['CreateIssueWI',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a58345bc764da664648c1fe6530405555',1,'VstsRestAPI::WorkItemAndTracking::IssueWI']]],\n  ['createiteration',['CreateIteration',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#ae8b553aaddd3dbd6d03d9ed7400b0667',1,'VstsRestAPI::WorkItemAndTracking::ClassificationNodes']]],\n  ['createnewdashboard',['CreateNewDashBoard',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a819bd19bb1d6657c86418a3f3ef3c86b',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['createnewteam',['CreateNewTeam',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab42d1bd636a827438a8151f795fedca0',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['createprojectenvironment',['CreateProjectEnvironment',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a78d06b5fc70004a4b23a10a22670b04e',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['createpullrequest',['CreatePullRequest',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#af74451a9ec41478f8a16fdb498ea96a0',1,'VstsRestAPI::Git::Repository']]],\n  ['createquery',['CreateQuery',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aefe4b14dbc3475676cfcc8f3a007546e',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['createqueryandwidgets',['CreateQueryAndWidgets',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ab1802a3d21c416002c2c7ff57019b6f8',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['createreleasedefinition',['CreateReleaseDefinition',['../class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.html#a3e03bd4ea027dca1c1cda2e0fe8ca73d',1,'VstsRestAPI::Release::ReleaseDefinition']]],\n  ['createreportwi',['CreateReportWI',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.html#a9e73160c28746c3b6090cfdc8d51b79f',1,'VstsRestAPI::WorkItemAndTracking::IssueWI']]],\n  ['createrepositorie',['CreateRepositorie',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a2623c37a03e528aa6e0dd4f7bcac3a04',1,'VstsRestAPI::Git::Repository']]],\n  ['createserviceendpoint',['CreateServiceEndPoint',['../class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.html#a6243f8d6d7cf88a7327d1f99acf974c5',1,'VstsRestAPI::Service::ServiceEndPoint']]],\n  ['createteamproject',['CreateTeamProject',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a2dc9bc6f325831b4f86c91cdfbd2bcc9',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['createtestplan',['CreateTestPlan',['../class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a32fa8edefb9a51e435dc084a0a05c542',1,'VstsRestAPI::TestManagement::TestManagement']]],\n  ['createwidget',['CreateWidget',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a6e8876d7b58b992e3cde03d1c13e3d5a',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['createworkitemusingbypassrules',['CreateWorkItemUsingByPassRules',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#a1643c3e8181a916c62d329085f07995b',1,'VstsRestAPI.WorkItemAndTracking.WorkItemNew.CreateWorkItemUsingByPassRules()'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.html#a7ff12afa440b5f590d051bc0c6c74e04',1,'VstsRestAPI.WorkItemAndTracking.WorkItems.CreateWorkItemUsingByPassRules()']]],\n  ['creattestsuite',['CreatTestSuite',['../class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.html#a5327dfbebb20e530b39cfa6a95ddaa4a',1,'VstsRestAPI::TestManagement::TestManagement']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_2.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_2.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_2.js",
    "content": "var searchData=\n[\n  ['deletedefaultdashboard',['DeleteDefaultDashboard',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#adc1b3bd0066fd1340db2fbf49b56934f',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['deleterepository',['DeleteRepository',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#ae9bdfeecb8846a51d3900752166d6d74',1,'VstsRestAPI::Git::Repository']]],\n  ['downloadattachedfiles',['DownloadAttachedFiles',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a20c36bbbe10bb56f7f0472e8dd05b8bf',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_3.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_3.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_3.js",
    "content": "var searchData=\n[\n  ['enablingepic',['EnablingEpic',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#a307fb639df853926ff09dadadfd8aa12',1,'VstsRestAPI::WorkItemAndTracking::Cards']]],\n  ['endenvironmentsetupprocess',['EndEnvironmentSetupProcess',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ada15b3cbf0e3c37b0c9e0036b45671c2',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['exportboardcolumns',['ExportBoardColumns',['../class_templates_generator_tool_1_1_generators_1_1_board_columns.html#aada06c13642a29046cb06f3d2ef2e322',1,'TemplatesGeneratorTool::Generators::BoardColumns']]],\n  ['exportbuilddefinitions',['ExportBuildDefinitions',['../class_templates_generator_tool_1_1_generators_1_1_build_definitions.html#a15b3c815112e04b0748ed7f1f12fa2cb',1,'TemplatesGeneratorTool::Generators::BuildDefinitions']]],\n  ['exportpullrequests',['ExportPullRequests',['../class_templates_generator_tool_1_1_generators_1_1_pull_requests.html#aff016c663661c1421f673f1a707c362c',1,'TemplatesGeneratorTool::Generators::PullRequests']]],\n  ['exportreleasedefinitions',['ExportReleaseDefinitions',['../class_templates_generator_tool_1_1_generators_1_1_release_definitions.html#a3660f90a0a356fdf82aee0373f7e2941',1,'TemplatesGeneratorTool::Generators::ReleaseDefinitions']]],\n  ['exportsourcecode',['ExportSourceCode',['../class_templates_generator_tool_1_1_generators_1_1_source_code.html#a9ec5af1319436537f1aa58ed45c3ca7f',1,'TemplatesGeneratorTool::Generators::SourceCode']]],\n  ['exportteams',['ExportTeams',['../class_templates_generator_tool_1_1_generators_1_1_teams.html#a3416f9b5acd249ffcd8d63abbb1fe480',1,'TemplatesGeneratorTool::Generators::Teams']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_4.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_4.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_4.js",
    "content": "var searchData=\n[\n  ['generaterequestpostdata',['GenerateRequestPostData',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ac983d0c1775718689aff6f7a17c0b929',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getaccesstoken',['GetAccessToken',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a9726501c86319171adf04dedab87a6a0',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getaccountmembers',['GetAccountMembers',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.html#a0b98e88fa8e05a3d17b55a0932e1e8f6',1,'VstsRestAPI::ProjectsAndTeams::Account']]],\n  ['getaccountname',['GetAccountName',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ae8d17a5a4622885c1ae042f2cbe8103e',1,'VstsDemoBuilder::Controllers::AccountController']]],\n  ['getaccounts',['GetAccounts',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#af9d72d23dec7248e6a8b5106209e6e6d',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getalliterations',['GetAllIterations',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a719daa0225d480d779037baaa901c201',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['getallrepositories',['GetAllRepositories',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a6cf8983ffb2539bb9d3d5eb2a1657c28',1,'VstsRestAPI::Git::Repository']]],\n  ['getboardcolumns',['getBoardColumns',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#ab37fe206629cd139eeb2e6c634e56859',1,'VstsRestAPI::WorkItemAndTracking::BoardColumn']]],\n  ['getboardrows',['GetBoardRows',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a07950971f3e02be2a376722ac76bf73a',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]],\n  ['getcardfields',['GetCardFields',['../class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a3f285cbf53c28a958fff0123d88a3e8a',1,'TemplatesGeneratorTool::Generators::CardFieldsAndCardStyles']]],\n  ['getcardstyles',['GetCardStyles',['../class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.html#a2882c956f1ddc904ab0502fb78a31ca2',1,'TemplatesGeneratorTool::Generators::CardFieldsAndCardStyles']]],\n  ['getdashboard',['GetDashboard',['../class_templates_generator_tool_1_1_generators_1_1_export_dashboards.html#a5f23b2dc5bd704add76697f8dfe5a530',1,'TemplatesGeneratorTool::Generators::ExportDashboards']]],\n  ['getdashboardetag',['GetDashboardeTag',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a367ee3271ff58e50273a73e2bb5da282',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['getdashboardid',['GetDashBoardId',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#aef10c7b2cf6ce84aece4df4fc87a9fd6',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['getdefaultrepository',['GetDefaultRepository',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a0188a1509a001dc7bafc7ca6829daa8e',1,'VstsRestAPI::Git::Repository']]],\n  ['getgroups',['GetGroups',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a3b9b20acff06038e1aed58b3bfaaebd4',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getiterations',['GetIterations',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a9b9f298f8ae6cf16fcc809c69f99533a',1,'VstsRestAPI::WorkItemAndTracking::ClassificationNodes']]],\n  ['getlistofworkitems_5fbywiql',['GetListOfWorkItems_ByWiql',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ab6104d3b32004b835a05393a7220a7fc',1,'VstsRestAPI::WorkItemAndTracking::WorkItemNew']]],\n  ['getmembers',['GetMembers',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a1a7a16aa8a18f17e1fafb079e5ec5de4',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getprofile',['GetProfile',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8d6dfbb168d7d87651c361e953feb9d9',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getprojectidbyname',['GetProjectIdByName',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a488712df438d066911a1065f15556cbc',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['getprojectstatebyname',['GetProjectStateByName',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#abd2b8fa4ffdb672a1975b61964f9d72f',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['getqueriesbypath',['GetQueriesByPath',['../class_templates_generator_tool_1_1_generators_1_1_export_queries.html#a5891d5275dcffb8a38960ccb7de53004',1,'TemplatesGeneratorTool::Generators::ExportQueries']]],\n  ['getquerybypathandname',['GetQueryByPathAndName',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#a8cf2beece89d16eb8b96e0c3c34142b2',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['getqueues',['GetQueues',['../class_vsts_rest_a_p_i_1_1_queues_1_1_queue.html#a25b076002dd514e7a069197b24e9de56',1,'VstsRestAPI::Queues::Queue']]],\n  ['getrepositorytodelete',['GetRepositoryToDelete',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#adb713f76b948694752aff2d111a3ed85',1,'VstsRestAPI::Git::Repository']]],\n  ['getsourcecodefromgithub',['getSourceCodeFromGitHub',['../class_vsts_rest_a_p_i_1_1_git_1_1_repository.html#a46daa5b9a35a6efb4267c6ee4494df31',1,'VstsRestAPI::Git::Repository']]],\n  ['getstatusmessage',['GetStatusMessage',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ae36d3258bea98714970d2fdc5fec6bf3',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getteambyname',['GetTeamByName',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a252afe1d5826c3251ace46c5e36dcb39',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['getteammembers',['GetTeamMembers',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a08de9d00456ae8e5407adfb6e3f1f135',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['getteamsetting',['GetTeamSetting',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#af1ece216c9baa58c5e8b2a527318ba3c',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['gettemplate',['GetTemplate',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a386641d021e2872eb8a614db7d3b1a6e',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['getworkitemsdetailinbatch',['GetWorkItemsDetailinBatch',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a8471c5b52c936c6887720f60cd56c537',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]],\n  ['getworkitemsfromsource',['getWorkItemsfromSource',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#a99040ad4f9108c0ca4d1b9ab8edbdc62',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_5.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_5.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_5.js",
    "content": "var searchData=\n[\n  ['importworkitems',['ImportWorkitems',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a314f15de4c9b09b3911af9d079abe306',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['index',['Index',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#ac36624619c06ea1c9e9df88c06d9a80f',1,'VstsDemoBuilder::Controllers::AccountController']]],\n  ['installextensions',['InstallExtensions',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c6be4b2363680d958e6fdee4e74b91a',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['isaccounthasprojects',['IsAccountHasProjects',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#a5972180d08f6a32c0a22c03f94622904',1,'VstsRestAPI::ProjectsAndTeams::Projects']]],\n  ['isvalidaccount',['isValidAccount',['../class_templates_generator_tool_1_1_generators_1_1_validate_login.html#ab3bf9583c98282065b77f2a35ddeacd2',1,'TemplatesGeneratorTool::Generators::ValidateLogin']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_6.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_6.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_6.js",
    "content": "var searchData=\n[\n  ['listofprojects',['ListOfProjects',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.html#afd4729308614a2d4f4124c7eedafecfc',1,'VstsRestAPI::ProjectsAndTeams::Projects']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_7.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_7.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_7.js",
    "content": "var searchData=\n[\n  ['moveiteration',['MoveIteration',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a34362d25882c3145b7134f08bf8aae86',1,'VstsRestAPI::WorkItemAndTracking::ClassificationNodes']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_8.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_8.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_8.js",
    "content": "var searchData=\n[\n  ['prepareandupdatetarget',['PrepareAndUpdateTarget',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a4e9b291e9e8e0c84200d2fa06f0bc068',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_9.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_9.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_9.js",
    "content": "var searchData=\n[\n  ['queuebuild',['QueueBuild',['../class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.html#a6f176c07809293c0b2efd1d3eb0cffcc',1,'VstsRestAPI::Build::BuildDefinition']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_a.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_a.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_a.js",
    "content": "var searchData=\n[\n  ['refresh_5faccesstoken',['Refresh_AccessToken',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a8c1a9720f499884448fa692a6fc8b514',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['refreshboard',['RefreshBoard',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a6ad605cdf943060efe528fa34b38b225',1,'VstsRestAPI::WorkItemAndTracking::BoardColumn']]],\n  ['renameiteration',['RenameIteration',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aa9ec619ecc43346a57e84ec3206c78e3',1,'VstsRestAPI::WorkItemAndTracking::ClassificationNodes']]],\n  ['renameiterations',['RenameIterations',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a990cb5c0fd92cee0d4926b92a5951436',1,'VstsDemoBuilder::Controllers::EnvironmentController']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_b.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_b.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_b.js",
    "content": "var searchData=\n[\n  ['sendemail',['SendEmail',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#a69d4ebc71322d09e96bab8cd604ebb46',1,'VstsDemoBuilder::Controllers::EnvironmentController']]],\n  ['setareaforteams',['SetAreaForTeams',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#ab7ec4e48d49881e50a0a7aae20ede38a',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['setbacklogiterationforteam',['SetBackLogIterationForTeam',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a9edc630def2d89f784812cf88f706a4c',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['setiterationsforteam',['SetIterationsForTeam',['../class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.html#a513442a4bc421f2b3f0fb980d1c6ed72',1,'VstsRestAPI::ProjectsAndTeams::Team']]],\n  ['signout',['SignOut',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#abbf468c027b199a26ccc4a12fdad7fbe',1,'VstsDemoBuilder::Controllers::AccountController']]],\n  ['startenvironmentsetupprocess',['StartEnvironmentSetupProcess',['../class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.html#ad6b69ff448fc483cb517729d55c55dcc',1,'VstsDemoBuilder::Controllers::EnvironmentController']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_c.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_c.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_c.js",
    "content": "var searchData=\n[\n  ['updateboard',['UpdateBoard',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.html#a5e492fd7d8cc70eae58565322bd7fcda',1,'VstsRestAPI::WorkItemAndTracking::BoardColumn']]],\n  ['updatecardfield',['UpdateCardField',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.html#aef506846ff57c971ab48a51a39f8cea4',1,'VstsRestAPI::WorkItemAndTracking::Cards']]],\n  ['updateiterationdates',['UpdateIterationDates',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#aff3aa00e48c8f5419e7ca2a0d35946ef',1,'VstsRestAPI.WorkItemAndTracking.ClassificationNodes.UpdateIterationDates(string ProjectName, string templateType)'],['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.html#a06d5cff8ab9703f58ffa2575abb2cdde',1,'VstsRestAPI.WorkItemAndTracking.ClassificationNodes.UpdateIterationDates(string project, string path, DateTime startDate, DateTime finishDate)']]],\n  ['updatelink',['UpdateLink',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a70dc11cc49f3584702b7269d3ed821b2',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['updatequery',['UpdateQuery',['../class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.html#ad50ab1e6c58ac12bd8d39ee52a514e0d',1,'VstsRestAPI::QuerysAndWidgets::Querys']]],\n  ['updateswimlanes',['UpdateSwimLanes',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.html#a4af603283af32f87e7f0de500a5cd578',1,'VstsRestAPI::WorkItemAndTracking::SwimLanes']]],\n  ['updateworkitem',['UpdateWorkItem',['../class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.html#afb867463d207db51a8653f14e809e392',1,'TemplatesGeneratorTool::Generators::GenerateWIFromSource']]],\n  ['updateworkitemintarget',['UpdateWorkIteminTarget',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a0287a32144b543656c69fd06131ee7f3',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['updateworkitemlinks',['UpdateWorkItemLinks',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#ad85453d724d643b50b25b2d7f39ba95d',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]],\n  ['updateworkitemusingbypassrules',['UpdateWorkItemUsingByPassRules',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.html#ae0eb3a3a473c7a1b117199a77466ab72',1,'VstsRestAPI::WorkItemAndTracking::WorkItemNew']]],\n  ['uploadattchment',['UploadAttchment',['../class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.html#a5845172621eec8d4991f3633077dc498',1,'VstsRestAPI::WorkItemAndTracking::ImportWorkItems']]]\n];\n"
  },
  {
    "path": "Report/html/search/functions_d.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"functions_d.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/functions_d.js",
    "content": "var searchData=\n[\n  ['verify',['Verify',['../class_vsts_demo_builder_1_1_controllers_1_1_account_controller.html#a6d42be6f0b98a238c2575e225940ff6e',1,'VstsDemoBuilder::Controllers::AccountController']]]\n];\n"
  },
  {
    "path": "Report/html/search/namespaces_0.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"namespaces_0.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/namespaces_0.js",
    "content": "var searchData=\n[\n  ['generators',['Generators',['../namespace_templates_generator_tool_1_1_generators.html',1,'TemplatesGeneratorTool']]],\n  ['templatesgeneratortool',['TemplatesGeneratorTool',['../namespace_templates_generator_tool.html',1,'']]],\n  ['viewmodel',['ViewModel',['../namespace_templates_generator_tool_1_1_view_model.html',1,'TemplatesGeneratorTool']]]\n];\n"
  },
  {
    "path": "Report/html/search/namespaces_1.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<meta name=\"generator\" content=\"Doxygen 1.8.14\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"namespaces_1.js\"></script>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"Loading\">Loading...</div>\n<div id=\"SRResults\"></div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ncreateResults();\n/* @license-end */\n--></script>\n<div class=\"SRStatus\" id=\"Searching\">Searching...</div>\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n<script type=\"text/javascript\"><!--\n/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */\ndocument.getElementById(\"Loading\").style.display=\"none\";\ndocument.getElementById(\"NoMatches\").style.display=\"none\";\nvar searchResults = new SearchResults(\"searchResults\");\nsearchResults.Search();\n/* @license-end */\n--></script>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/namespaces_1.js",
    "content": "var searchData=\n[\n  ['build',['Build',['../namespace_vsts_rest_a_p_i_1_1_build.html',1,'VstsRestAPI.Build'],['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.html',1,'VstsRestAPI.Viewmodel.Build']]],\n  ['controllers',['Controllers',['../namespace_vsts_demo_builder_1_1_controllers.html',1,'VstsDemoBuilder']]],\n  ['deliveryplans',['DeliveryPlans',['../namespace_vsts_rest_a_p_i_1_1_delivery_plans.html',1,'VstsRestAPI']]],\n  ['errorhandler',['ErrorHandler',['../namespace_vsts_demo_builder_1_1_error_handler.html',1,'VstsDemoBuilder']]],\n  ['extensions',['Extensions',['../namespace_vsts_demo_builder_1_1_extensions.html',1,'VstsDemoBuilder']]],\n  ['git',['Git',['../namespace_vsts_rest_a_p_i_1_1_git.html',1,'VstsRestAPI']]],\n  ['models',['Models',['../namespace_vsts_demo_builder_1_1_models.html',1,'VstsDemoBuilder']]],\n  ['projectandteams',['ProjectAndTeams',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.html',1,'VstsRestAPI::Viewmodel']]],\n  ['projectsandteams',['ProjectsAndTeams',['../namespace_vsts_rest_a_p_i_1_1_projects_and_teams.html',1,'VstsRestAPI']]],\n  ['querysandwidgets',['QuerysAndWidgets',['../namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.html',1,'VstsRestAPI.QuerysAndWidgets'],['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.html',1,'VstsRestAPI.Viewmodel.QuerysAndWidgets']]],\n  ['queue',['Queue',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.html',1,'VstsRestAPI::Viewmodel']]],\n  ['queues',['Queues',['../namespace_vsts_rest_a_p_i_1_1_queues.html',1,'VstsRestAPI']]],\n  ['release',['Release',['../namespace_vsts_rest_a_p_i_1_1_release.html',1,'VstsRestAPI']]],\n  ['releasedefinition',['ReleaseDefinition',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.html',1,'VstsRestAPI::Viewmodel']]],\n  ['repository',['Repository',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.html',1,'VstsRestAPI::Viewmodel']]],\n  ['service',['Service',['../namespace_vsts_rest_a_p_i_1_1_service.html',1,'VstsRestAPI.Service'],['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.html',1,'VstsRestAPI.Viewmodel.Service']]],\n  ['testmanagement',['TestManagement',['../namespace_vsts_rest_a_p_i_1_1_test_management.html',1,'VstsRestAPI']]],\n  ['viewmodel',['Viewmodel',['../namespace_vsts_rest_a_p_i_1_1_viewmodel.html',1,'VstsRestAPI']]],\n  ['vstsdemobuilder',['VstsDemoBuilder',['../namespace_vsts_demo_builder.html',1,'']]],\n  ['vstsrestapi',['VstsRestAPI',['../namespace_vsts_rest_a_p_i.html',1,'']]],\n  ['workitem',['WorkItem',['../namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.html',1,'VstsRestAPI::Viewmodel']]],\n  ['workitemandtracking',['WorkItemAndTracking',['../namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.html',1,'VstsRestAPI']]]\n];\n"
  },
  {
    "path": "Report/html/search/nomatches.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html><head><title></title>\n<meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=UTF-8\"/>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"search.css\"/>\n<script type=\"text/javascript\" src=\"search.js\"></script>\n</head>\n<body class=\"SRPage\">\n<div id=\"SRIndex\">\n<div class=\"SRStatus\" id=\"NoMatches\">No Matches</div>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "Report/html/search/search.css",
    "content": "/*---------------- Search Box */\n\n#FSearchBox {\n    float: left;\n}\n\n#MSearchBox {\n    white-space : nowrap;\n    float: none;\n    margin-top: 8px;\n    right: 0px;\n    width: 170px;\n    height: 24px;\n    z-index: 102;\n}\n\n#MSearchBox .left\n{\n    display:block;\n    position:absolute;\n    left:10px;\n    width:20px;\n    height:19px;\n    background:url('search_l.png') no-repeat;\n    background-position:right;\n}\n\n#MSearchSelect {\n    display:block;\n    position:absolute;\n    width:20px;\n    height:19px;\n}\n\n.left #MSearchSelect {\n    left:4px;\n}\n\n.right #MSearchSelect {\n    right:5px;\n}\n\n#MSearchField {\n    display:block;\n    position:absolute;\n    height:19px;\n    background:url('search_m.png') repeat-x;\n    border:none;\n    width:115px;\n    margin-left:20px;\n    padding-left:4px;\n    color: #909090;\n    outline: none;\n    font: 9pt Arial, Verdana, sans-serif;\n    -webkit-border-radius: 0px;\n}\n\n#FSearchBox #MSearchField {\n    margin-left:15px;\n}\n\n#MSearchBox .right {\n    display:block;\n    position:absolute;\n    right:10px;\n    top:8px;\n    width:20px;\n    height:19px;\n    background:url('search_r.png') no-repeat;\n    background-position:left;\n}\n\n#MSearchClose {\n    display: none;\n    position: absolute;\n    top: 4px;\n    background : none;\n    border: none;\n    margin: 0px 4px 0px 0px;\n    padding: 0px 0px;\n    outline: none;\n}\n\n.left #MSearchClose {\n    left: 6px;\n}\n\n.right #MSearchClose {\n    right: 2px;\n}\n\n.MSearchBoxActive #MSearchField {\n    color: #000000;\n}\n\n/*---------------- Search filter selection */\n\n#MSearchSelectWindow {\n    display: none;\n    position: absolute;\n    left: 0; top: 0;\n    border: 1px solid #90A5CE;\n    background-color: #F9FAFC;\n    z-index: 10001;\n    padding-top: 4px;\n    padding-bottom: 4px;\n    -moz-border-radius: 4px;\n    -webkit-border-top-left-radius: 4px;\n    -webkit-border-top-right-radius: 4px;\n    -webkit-border-bottom-left-radius: 4px;\n    -webkit-border-bottom-right-radius: 4px;\n    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);\n}\n\n.SelectItem {\n    font: 8pt Arial, Verdana, sans-serif;\n    padding-left:  2px;\n    padding-right: 12px;\n    border: 0px;\n}\n\nspan.SelectionMark {\n    margin-right: 4px;\n    font-family: monospace;\n    outline-style: none;\n    text-decoration: none;\n}\n\na.SelectItem {\n    display: block;\n    outline-style: none;\n    color: #000000; \n    text-decoration: none;\n    padding-left:   6px;\n    padding-right: 12px;\n}\n\na.SelectItem:focus,\na.SelectItem:active {\n    color: #000000; \n    outline-style: none;\n    text-decoration: none;\n}\n\na.SelectItem:hover {\n    color: #FFFFFF;\n    background-color: #3D578C;\n    outline-style: none;\n    text-decoration: none;\n    cursor: pointer;\n    display: block;\n}\n\n/*---------------- Search results window */\n\niframe#MSearchResults {\n    width: 60ex;\n    height: 15em;\n}\n\n#MSearchResultsWindow {\n    display: none;\n    position: absolute;\n    left: 0; top: 0;\n    border: 1px solid #000;\n    background-color: #EEF1F7;\n    z-index:10000;\n}\n\n/* ----------------------------------- */\n\n\n#SRIndex {\n    clear:both; \n    padding-bottom: 15px;\n}\n\n.SREntry {\n    font-size: 10pt;\n    padding-left: 1ex;\n}\n\n.SRPage .SREntry {\n    font-size: 8pt;\n    padding: 1px 5px;\n}\n\nbody.SRPage {\n    margin: 5px 2px;\n}\n\n.SRChildren {\n    padding-left: 3ex; padding-bottom: .5em \n}\n\n.SRPage .SRChildren {\n    display: none;\n}\n\n.SRSymbol {\n    font-weight: bold; \n    color: #425E97;\n    font-family: Arial, Verdana, sans-serif;\n    text-decoration: none;\n    outline: none;\n}\n\na.SRScope {\n    display: block;\n    color: #425E97; \n    font-family: Arial, Verdana, sans-serif;\n    text-decoration: none;\n    outline: none;\n}\n\na.SRSymbol:focus, a.SRSymbol:active,\na.SRScope:focus, a.SRScope:active {\n    text-decoration: underline;\n}\n\nspan.SRScope {\n    padding-left: 4px;\n}\n\n.SRPage .SRStatus {\n    padding: 2px 5px;\n    font-size: 8pt;\n    font-style: italic;\n}\n\n.SRResult {\n    display: none;\n}\n\nDIV.searchresults {\n    margin-left: 10px;\n    margin-right: 10px;\n}\n\n/*---------------- External search page results */\n\n.searchresult {\n    background-color: #F0F3F8;\n}\n\n.pages b {\n   color: white;\n   padding: 5px 5px 3px 5px;\n   background-image: url(\"../tab_a.png\");\n   background-repeat: repeat-x;\n   text-shadow: 0 1px 1px #000000;\n}\n\n.pages {\n    line-height: 17px;\n    margin-left: 4px;\n    text-decoration: none;\n}\n\n.hl {\n    font-weight: bold;\n}\n\n#searchresults {\n    margin-bottom: 20px;\n}\n\n.searchpages {\n    margin-top: 10px;\n}\n\n"
  },
  {
    "path": "Report/html/search/search.js",
    "content": "/*\n @licstart  The following is the entire license notice for the\n JavaScript code in this file.\n\n Copyright (C) 1997-2017 by Dimitri van Heesch\n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\n @licend  The above is the entire license notice\n for the JavaScript code in this file\n */\nfunction convertToId(search)\n{\n  var result = '';\n  for (i=0;i<search.length;i++)\n  {\n    var c = search.charAt(i);\n    var cn = c.charCodeAt(0);\n    if (c.match(/[a-z0-9\\u0080-\\uFFFF]/))\n    {\n      result+=c;\n    }\n    else if (cn<16)\n    {\n      result+=\"_0\"+cn.toString(16);\n    }\n    else\n    {\n      result+=\"_\"+cn.toString(16);\n    }\n  }\n  return result;\n}\n\nfunction getXPos(item)\n{\n  var x = 0;\n  if (item.offsetWidth)\n  {\n    while (item && item!=document.body)\n    {\n      x   += item.offsetLeft;\n      item = item.offsetParent;\n    }\n  }\n  return x;\n}\n\nfunction getYPos(item)\n{\n  var y = 0;\n  if (item.offsetWidth)\n  {\n     while (item && item!=document.body)\n     {\n       y   += item.offsetTop;\n       item = item.offsetParent;\n     }\n  }\n  return y;\n}\n\n/* A class handling everything associated with the search panel.\n\n   Parameters:\n   name - The name of the global variable that will be\n          storing this instance.  Is needed to be able to set timeouts.\n   resultPath - path to use for external files\n*/\nfunction SearchBox(name, resultsPath, inFrame, label)\n{\n  if (!name || !resultsPath) {  alert(\"Missing parameters to SearchBox.\"); }\n\n  // ---------- Instance variables\n  this.name                  = name;\n  this.resultsPath           = resultsPath;\n  this.keyTimeout            = 0;\n  this.keyTimeoutLength      = 500;\n  this.closeSelectionTimeout = 300;\n  this.lastSearchValue       = \"\";\n  this.lastResultsPage       = \"\";\n  this.hideTimeout           = 0;\n  this.searchIndex           = 0;\n  this.searchActive          = false;\n  this.insideFrame           = inFrame;\n  this.searchLabel           = label;\n\n  // ----------- DOM Elements\n\n  this.DOMSearchField = function()\n  {  return document.getElementById(\"MSearchField\");  }\n\n  this.DOMSearchSelect = function()\n  {  return document.getElementById(\"MSearchSelect\");  }\n\n  this.DOMSearchSelectWindow = function()\n  {  return document.getElementById(\"MSearchSelectWindow\");  }\n\n  this.DOMPopupSearchResults = function()\n  {  return document.getElementById(\"MSearchResults\");  }\n\n  this.DOMPopupSearchResultsWindow = function()\n  {  return document.getElementById(\"MSearchResultsWindow\");  }\n\n  this.DOMSearchClose = function()\n  {  return document.getElementById(\"MSearchClose\"); }\n\n  this.DOMSearchBox = function()\n  {  return document.getElementById(\"MSearchBox\");  }\n\n  // ------------ Event Handlers\n\n  // Called when focus is added or removed from the search field.\n  this.OnSearchFieldFocus = function(isActive)\n  {\n    this.Activate(isActive);\n  }\n\n  this.OnSearchSelectShow = function()\n  {\n    var searchSelectWindow = this.DOMSearchSelectWindow();\n    var searchField        = this.DOMSearchSelect();\n\n    if (this.insideFrame)\n    {\n      var left = getXPos(searchField);\n      var top  = getYPos(searchField);\n      left += searchField.offsetWidth + 6;\n      top += searchField.offsetHeight;\n\n      // show search selection popup\n      searchSelectWindow.style.display='block';\n      left -= searchSelectWindow.offsetWidth;\n      searchSelectWindow.style.left =  left + 'px';\n      searchSelectWindow.style.top  =  top  + 'px';\n    }\n    else\n    {\n      var left = getXPos(searchField);\n      var top  = getYPos(searchField);\n      top += searchField.offsetHeight;\n\n      // show search selection popup\n      searchSelectWindow.style.display='block';\n      searchSelectWindow.style.left =  left + 'px';\n      searchSelectWindow.style.top  =  top  + 'px';\n    }\n\n    // stop selection hide timer\n    if (this.hideTimeout)\n    {\n      clearTimeout(this.hideTimeout);\n      this.hideTimeout=0;\n    }\n    return false; // to avoid \"image drag\" default event\n  }\n\n  this.OnSearchSelectHide = function()\n  {\n    this.hideTimeout = setTimeout(this.name +\".CloseSelectionWindow()\",\n                                  this.closeSelectionTimeout);\n  }\n\n  // Called when the content of the search field is changed.\n  this.OnSearchFieldChange = function(evt)\n  {\n    if (this.keyTimeout) // kill running timer\n    {\n      clearTimeout(this.keyTimeout);\n      this.keyTimeout = 0;\n    }\n\n    var e  = (evt) ? evt : window.event; // for IE\n    if (e.keyCode==40 || e.keyCode==13)\n    {\n      if (e.shiftKey==1)\n      {\n        this.OnSearchSelectShow();\n        var win=this.DOMSearchSelectWindow();\n        for (i=0;i<win.childNodes.length;i++)\n        {\n          var child = win.childNodes[i]; // get span within a\n          if (child.className=='SelectItem')\n          {\n            child.focus();\n            return;\n          }\n        }\n        return;\n      }\n      else if (window.frames.MSearchResults.searchResults)\n      {\n        var elem = window.frames.MSearchResults.searchResults.NavNext(0);\n        if (elem) elem.focus();\n      }\n    }\n    else if (e.keyCode==27) // Escape out of the search field\n    {\n      this.DOMSearchField().blur();\n      this.DOMPopupSearchResultsWindow().style.display = 'none';\n      this.DOMSearchClose().style.display = 'none';\n      this.lastSearchValue = '';\n      this.Activate(false);\n      return;\n    }\n\n    // strip whitespaces\n    var searchValue = this.DOMSearchField().value.replace(/ +/g, \"\");\n\n    if (searchValue != this.lastSearchValue) // search value has changed\n    {\n      if (searchValue != \"\") // non-empty search\n      {\n        // set timer for search update\n        this.keyTimeout = setTimeout(this.name + '.Search()',\n                                     this.keyTimeoutLength);\n      }\n      else // empty search field\n      {\n        this.DOMPopupSearchResultsWindow().style.display = 'none';\n        this.DOMSearchClose().style.display = 'none';\n        this.lastSearchValue = '';\n      }\n    }\n  }\n\n  this.SelectItemCount = function(id)\n  {\n    var count=0;\n    var win=this.DOMSearchSelectWindow();\n    for (i=0;i<win.childNodes.length;i++)\n    {\n      var child = win.childNodes[i]; // get span within a\n      if (child.className=='SelectItem')\n      {\n        count++;\n      }\n    }\n    return count;\n  }\n\n  this.SelectItemSet = function(id)\n  {\n    var i,j=0;\n    var win=this.DOMSearchSelectWindow();\n    for (i=0;i<win.childNodes.length;i++)\n    {\n      var child = win.childNodes[i]; // get span within a\n      if (child.className=='SelectItem')\n      {\n        var node = child.firstChild;\n        if (j==id)\n        {\n          node.innerHTML='&#8226;';\n        }\n        else\n        {\n          node.innerHTML='&#160;';\n        }\n        j++;\n      }\n    }\n  }\n\n  // Called when an search filter selection is made.\n  // set item with index id as the active item\n  this.OnSelectItem = function(id)\n  {\n    this.searchIndex = id;\n    this.SelectItemSet(id);\n    var searchValue = this.DOMSearchField().value.replace(/ +/g, \"\");\n    if (searchValue!=\"\" && this.searchActive) // something was found -> do a search\n    {\n      this.Search();\n    }\n  }\n\n  this.OnSearchSelectKey = function(evt)\n  {\n    var e = (evt) ? evt : window.event; // for IE\n    if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down\n    {\n      this.searchIndex++;\n      this.OnSelectItem(this.searchIndex);\n    }\n    else if (e.keyCode==38 && this.searchIndex>0) // Up\n    {\n      this.searchIndex--;\n      this.OnSelectItem(this.searchIndex);\n    }\n    else if (e.keyCode==13 || e.keyCode==27)\n    {\n      this.OnSelectItem(this.searchIndex);\n      this.CloseSelectionWindow();\n      this.DOMSearchField().focus();\n    }\n    return false;\n  }\n\n  // --------- Actions\n\n  // Closes the results window.\n  this.CloseResultsWindow = function()\n  {\n    this.DOMPopupSearchResultsWindow().style.display = 'none';\n    this.DOMSearchClose().style.display = 'none';\n    this.Activate(false);\n  }\n\n  this.CloseSelectionWindow = function()\n  {\n    this.DOMSearchSelectWindow().style.display = 'none';\n  }\n\n  // Performs a search.\n  this.Search = function()\n  {\n    this.keyTimeout = 0;\n\n    // strip leading whitespace\n    var searchValue = this.DOMSearchField().value.replace(/^ +/, \"\");\n\n    var code = searchValue.toLowerCase().charCodeAt(0);\n    var idxChar = searchValue.substr(0, 1).toLowerCase();\n    if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair\n    {\n      idxChar = searchValue.substr(0, 2);\n    }\n\n    var resultsPage;\n    var resultsPageWithSearch;\n    var hasResultsPage;\n\n    var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar);\n    if (idx!=-1)\n    {\n       var hexCode=idx.toString(16);\n       resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html';\n       resultsPageWithSearch = resultsPage+'?'+escape(searchValue);\n       hasResultsPage = true;\n    }\n    else // nothing available for this search term\n    {\n       resultsPage = this.resultsPath + '/nomatches.html';\n       resultsPageWithSearch = resultsPage;\n       hasResultsPage = false;\n    }\n\n    window.frames.MSearchResults.location = resultsPageWithSearch;\n    var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow();\n\n    if (domPopupSearchResultsWindow.style.display!='block')\n    {\n       var domSearchBox = this.DOMSearchBox();\n       this.DOMSearchClose().style.display = 'inline';\n       if (this.insideFrame)\n       {\n         var domPopupSearchResults = this.DOMPopupSearchResults();\n         domPopupSearchResultsWindow.style.position = 'relative';\n         domPopupSearchResultsWindow.style.display  = 'block';\n         var width = document.body.clientWidth - 8; // the -8 is for IE :-(\n         domPopupSearchResultsWindow.style.width    = width + 'px';\n         domPopupSearchResults.style.width          = width + 'px';\n       }\n       else\n       {\n         var domPopupSearchResults = this.DOMPopupSearchResults();\n         var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth;\n         var top  = getYPos(domSearchBox) + 20;  // domSearchBox.offsetHeight + 1;\n         domPopupSearchResultsWindow.style.display = 'block';\n         left -= domPopupSearchResults.offsetWidth;\n         domPopupSearchResultsWindow.style.top     = top  + 'px';\n         domPopupSearchResultsWindow.style.left    = left + 'px';\n       }\n    }\n\n    this.lastSearchValue = searchValue;\n    this.lastResultsPage = resultsPage;\n  }\n\n  // -------- Activation Functions\n\n  // Activates or deactivates the search panel, resetting things to\n  // their default values if necessary.\n  this.Activate = function(isActive)\n  {\n    if (isActive || // open it\n        this.DOMPopupSearchResultsWindow().style.display == 'block'\n       )\n    {\n      this.DOMSearchBox().className = 'MSearchBoxActive';\n\n      var searchField = this.DOMSearchField();\n\n      if (searchField.value == this.searchLabel) // clear \"Search\" term upon entry\n      {\n        searchField.value = '';\n        this.searchActive = true;\n      }\n    }\n    else if (!isActive) // directly remove the panel\n    {\n      this.DOMSearchBox().className = 'MSearchBoxInactive';\n      this.DOMSearchField().value   = this.searchLabel;\n      this.searchActive             = false;\n      this.lastSearchValue          = ''\n      this.lastResultsPage          = '';\n    }\n  }\n}\n\n// -----------------------------------------------------------------------\n\n// The class that handles everything on the search results page.\nfunction SearchResults(name)\n{\n    // The number of matches from the last run of <Search()>.\n    this.lastMatchCount = 0;\n    this.lastKey = 0;\n    this.repeatOn = false;\n\n    // Toggles the visibility of the passed element ID.\n    this.FindChildElement = function(id)\n    {\n      var parentElement = document.getElementById(id);\n      var element = parentElement.firstChild;\n\n      while (element && element!=parentElement)\n      {\n        if (element.nodeName == 'DIV' && element.className == 'SRChildren')\n        {\n          return element;\n        }\n\n        if (element.nodeName == 'DIV' && element.hasChildNodes())\n        {\n           element = element.firstChild;\n        }\n        else if (element.nextSibling)\n        {\n           element = element.nextSibling;\n        }\n        else\n        {\n          do\n          {\n            element = element.parentNode;\n          }\n          while (element && element!=parentElement && !element.nextSibling);\n\n          if (element && element!=parentElement)\n          {\n            element = element.nextSibling;\n          }\n        }\n      }\n    }\n\n    this.Toggle = function(id)\n    {\n      var element = this.FindChildElement(id);\n      if (element)\n      {\n        if (element.style.display == 'block')\n        {\n          element.style.display = 'none';\n        }\n        else\n        {\n          element.style.display = 'block';\n        }\n      }\n    }\n\n    // Searches for the passed string.  If there is no parameter,\n    // it takes it from the URL query.\n    //\n    // Always returns true, since other documents may try to call it\n    // and that may or may not be possible.\n    this.Search = function(search)\n    {\n      if (!search) // get search word from URL\n      {\n        search = window.location.search;\n        search = search.substring(1);  // Remove the leading '?'\n        search = unescape(search);\n      }\n\n      search = search.replace(/^ +/, \"\"); // strip leading spaces\n      search = search.replace(/ +$/, \"\"); // strip trailing spaces\n      search = search.toLowerCase();\n      search = convertToId(search);\n\n      var resultRows = document.getElementsByTagName(\"div\");\n      var matches = 0;\n\n      var i = 0;\n      while (i < resultRows.length)\n      {\n        var row = resultRows.item(i);\n        if (row.className == \"SRResult\")\n        {\n          var rowMatchName = row.id.toLowerCase();\n          rowMatchName = rowMatchName.replace(/^sr\\d*_/, ''); // strip 'sr123_'\n\n          if (search.length<=rowMatchName.length &&\n             rowMatchName.substr(0, search.length)==search)\n          {\n            row.style.display = 'block';\n            matches++;\n          }\n          else\n          {\n            row.style.display = 'none';\n          }\n        }\n        i++;\n      }\n      document.getElementById(\"Searching\").style.display='none';\n      if (matches == 0) // no results\n      {\n        document.getElementById(\"NoMatches\").style.display='block';\n      }\n      else // at least one result\n      {\n        document.getElementById(\"NoMatches\").style.display='none';\n      }\n      this.lastMatchCount = matches;\n      return true;\n    }\n\n    // return the first item with index index or higher that is visible\n    this.NavNext = function(index)\n    {\n      var focusItem;\n      while (1)\n      {\n        var focusName = 'Item'+index;\n        focusItem = document.getElementById(focusName);\n        if (focusItem && focusItem.parentNode.parentNode.style.display=='block')\n        {\n          break;\n        }\n        else if (!focusItem) // last element\n        {\n          break;\n        }\n        focusItem=null;\n        index++;\n      }\n      return focusItem;\n    }\n\n    this.NavPrev = function(index)\n    {\n      var focusItem;\n      while (1)\n      {\n        var focusName = 'Item'+index;\n        focusItem = document.getElementById(focusName);\n        if (focusItem && focusItem.parentNode.parentNode.style.display=='block')\n        {\n          break;\n        }\n        else if (!focusItem) // last element\n        {\n          break;\n        }\n        focusItem=null;\n        index--;\n      }\n      return focusItem;\n    }\n\n    this.ProcessKeys = function(e)\n    {\n      if (e.type == \"keydown\")\n      {\n        this.repeatOn = false;\n        this.lastKey = e.keyCode;\n      }\n      else if (e.type == \"keypress\")\n      {\n        if (!this.repeatOn)\n        {\n          if (this.lastKey) this.repeatOn = true;\n          return false; // ignore first keypress after keydown\n        }\n      }\n      else if (e.type == \"keyup\")\n      {\n        this.lastKey = 0;\n        this.repeatOn = false;\n      }\n      return this.lastKey!=0;\n    }\n\n    this.Nav = function(evt,itemIndex)\n    {\n      var e  = (evt) ? evt : window.event; // for IE\n      if (e.keyCode==13) return true;\n      if (!this.ProcessKeys(e)) return false;\n\n      if (this.lastKey==38) // Up\n      {\n        var newIndex = itemIndex-1;\n        var focusItem = this.NavPrev(newIndex);\n        if (focusItem)\n        {\n          var child = this.FindChildElement(focusItem.parentNode.parentNode.id);\n          if (child && child.style.display == 'block') // children visible\n          {\n            var n=0;\n            var tmpElem;\n            while (1) // search for last child\n            {\n              tmpElem = document.getElementById('Item'+newIndex+'_c'+n);\n              if (tmpElem)\n              {\n                focusItem = tmpElem;\n              }\n              else // found it!\n              {\n                break;\n              }\n              n++;\n            }\n          }\n        }\n        if (focusItem)\n        {\n          focusItem.focus();\n        }\n        else // return focus to search field\n        {\n           parent.document.getElementById(\"MSearchField\").focus();\n        }\n      }\n      else if (this.lastKey==40) // Down\n      {\n        var newIndex = itemIndex+1;\n        var focusItem;\n        var item = document.getElementById('Item'+itemIndex);\n        var elem = this.FindChildElement(item.parentNode.parentNode.id);\n        if (elem && elem.style.display == 'block') // children visible\n        {\n          focusItem = document.getElementById('Item'+itemIndex+'_c0');\n        }\n        if (!focusItem) focusItem = this.NavNext(newIndex);\n        if (focusItem)  focusItem.focus();\n      }\n      else if (this.lastKey==39) // Right\n      {\n        var item = document.getElementById('Item'+itemIndex);\n        var elem = this.FindChildElement(item.parentNode.parentNode.id);\n        if (elem) elem.style.display = 'block';\n      }\n      else if (this.lastKey==37) // Left\n      {\n        var item = document.getElementById('Item'+itemIndex);\n        var elem = this.FindChildElement(item.parentNode.parentNode.id);\n        if (elem) elem.style.display = 'none';\n      }\n      else if (this.lastKey==27) // Escape\n      {\n        parent.searchBox.CloseResultsWindow();\n        parent.document.getElementById(\"MSearchField\").focus();\n      }\n      else if (this.lastKey==13) // Enter\n      {\n        return true;\n      }\n      return false;\n    }\n\n    this.NavChild = function(evt,itemIndex,childIndex)\n    {\n      var e  = (evt) ? evt : window.event; // for IE\n      if (e.keyCode==13) return true;\n      if (!this.ProcessKeys(e)) return false;\n\n      if (this.lastKey==38) // Up\n      {\n        if (childIndex>0)\n        {\n          var newIndex = childIndex-1;\n          document.getElementById('Item'+itemIndex+'_c'+newIndex).focus();\n        }\n        else // already at first child, jump to parent\n        {\n          document.getElementById('Item'+itemIndex).focus();\n        }\n      }\n      else if (this.lastKey==40) // Down\n      {\n        var newIndex = childIndex+1;\n        var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);\n        if (!elem) // last child, jump to parent next parent\n        {\n          elem = this.NavNext(itemIndex+1);\n        }\n        if (elem)\n        {\n          elem.focus();\n        }\n      }\n      else if (this.lastKey==27) // Escape\n      {\n        parent.searchBox.CloseResultsWindow();\n        parent.document.getElementById(\"MSearchField\").focus();\n      }\n      else if (this.lastKey==13) // Enter\n      {\n        return true;\n      }\n      return false;\n    }\n}\n\nfunction setKeyActions(elem,action)\n{\n  elem.setAttribute('onkeydown',action);\n  elem.setAttribute('onkeypress',action);\n  elem.setAttribute('onkeyup',action);\n}\n\nfunction setClassAttr(elem,attr)\n{\n  elem.setAttribute('class',attr);\n  elem.setAttribute('className',attr);\n}\n\nfunction createResults()\n{\n  var results = document.getElementById(\"SRResults\");\n  for (var e=0; e<searchData.length; e++)\n  {\n    var id = searchData[e][0];\n    var srResult = document.createElement('div');\n    srResult.setAttribute('id','SR_'+id);\n    setClassAttr(srResult,'SRResult');\n    var srEntry = document.createElement('div');\n    setClassAttr(srEntry,'SREntry');\n    var srLink = document.createElement('a');\n    srLink.setAttribute('id','Item'+e);\n    setKeyActions(srLink,'return searchResults.Nav(event,'+e+')');\n    setClassAttr(srLink,'SRSymbol');\n    srLink.innerHTML = searchData[e][1][0];\n    srEntry.appendChild(srLink);\n    if (searchData[e][1].length==2) // single result\n    {\n      srLink.setAttribute('href',searchData[e][1][1][0]);\n      if (searchData[e][1][1][1])\n      {\n       srLink.setAttribute('target','_parent');\n      }\n      var srScope = document.createElement('span');\n      setClassAttr(srScope,'SRScope');\n      srScope.innerHTML = searchData[e][1][1][2];\n      srEntry.appendChild(srScope);\n    }\n    else // multiple results\n    {\n      srLink.setAttribute('href','javascript:searchResults.Toggle(\"SR_'+id+'\")');\n      var srChildren = document.createElement('div');\n      setClassAttr(srChildren,'SRChildren');\n      for (var c=0; c<searchData[e][1].length-1; c++)\n      {\n        var srChild = document.createElement('a');\n        srChild.setAttribute('id','Item'+e+'_c'+c);\n        setKeyActions(srChild,'return searchResults.NavChild(event,'+e+','+c+')');\n        setClassAttr(srChild,'SRScope');\n        srChild.setAttribute('href',searchData[e][1][c+1][0]);\n        if (searchData[e][1][c+1][1])\n        {\n         srChild.setAttribute('target','_parent');\n        }\n        srChild.innerHTML = searchData[e][1][c+1][2];\n        srChildren.appendChild(srChild);\n      }\n      srEntry.appendChild(srChildren);\n    }\n    srResult.appendChild(srEntry);\n    results.appendChild(srResult);\n  }\n}\n\nfunction init_search()\n{\n  var results = document.getElementById(\"MSearchSelectWindow\");\n  for (var key in indexSectionLabels)\n  {\n    var link = document.createElement('a');\n    link.setAttribute('class','SelectItem');\n    link.setAttribute('onclick','searchBox.OnSelectItem('+key+')');\n    link.href='javascript:void(0)';\n    link.innerHTML='<span class=\"SelectionMark\">&#160;</span>'+indexSectionLabels[key];\n    results.appendChild(link);\n  }\n  searchBox.OnSelectItem(0);\n}\n/* @license-end */\n"
  },
  {
    "path": "Report/html/search/searchdata.js",
    "content": "var indexSectionsWithContent =\n{\n  0: \"_abcdefghilmnopqrstuvw\",\n  1: \"_abcdefghilmnopqrstuvw\",\n  2: \"tv\",\n  3: \"acdegilmpqrsuv\"\n};\n\nvar indexSectionNames =\n{\n  0: \"all\",\n  1: \"classes\",\n  2: \"namespaces\",\n  3: \"functions\"\n};\n\nvar indexSectionLabels =\n{\n  0: \"All\",\n  1: \"Classes\",\n  2: \"Namespaces\",\n  3: \"Functions\"\n};\n\n"
  },
  {
    "path": "Report/html/tabs.css",
    "content": ".sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:\"\\00a0\";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#doc-content{overflow:auto;display:block;padding:0;margin:0;-webkit-overflow-scrolling:touch}.sm-dox{background-image:url(\"tab_b.png\")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:\"Lucida Grande\",\"Geneva\",\"Helvetica\",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url(\"tab_a.png\");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url(\"tab_a.png\");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url(\"tab_b.png\");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url(\"tab_s.png\");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url(\"tab_a.png\");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url(\"tab_a.png\");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url(\"tab_b.png\")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}}"
  },
  {
    "path": "Report/latex/Makefile",
    "content": "all: refman.pdf\n\npdf: refman.pdf\n\nrefman.pdf: clean refman.tex\n\tpdflatex refman\n\tmakeindex refman.idx\n\tpdflatex refman\n\tlatex_count=8 ; \\\n\twhile egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\\\n\t    do \\\n\t      echo \"Rerunning latex....\" ;\\\n\t      pdflatex refman ;\\\n\t      latex_count=`expr $$latex_count - 1` ;\\\n\t    done\n\tmakeindex refman.idx\n\tpdflatex refman\n\n\nclean:\n\trm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf\n"
  },
  {
    "path": "Report/latex/annotated.tex",
    "content": "\\section{Class List}\nHere are the classes, structs, unions and interfaces with brief descriptions\\+:\\begin{DoxyCompactList}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+\\_\\+\\+Links}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+\\_\\+\\+Links}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+\\_\\+\\+Links}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Vsts\\+Demo\\+Builder.\\+Models.\\+Access\\+Details}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_access_details}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Access\\+Level}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Account}} }{\\pageref{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Account}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_account_controller}{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller}} }{\\pageref{class_vsts_demo_builder_1_1_controllers_1_1_account_controller}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Account\\+List}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts}{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_accounts}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Agent\\+Queue\\+Model}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute}{Vsts\\+Demo\\+Builder.\\+Error\\+Handler.\\+Ai\\+Handle\\+Error\\+Attribute}} }{\\pageref{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+All\\+Plans}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approval}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approval}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approver}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approver}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Artifact}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Artifact}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Attributes}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Attributes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Attributes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Attributes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Attributes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Attributes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Attributes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Attributes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Authentication}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Authoredby}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Authorization}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Authorization}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Backlog\\+Iteration}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Backlog\\+Visibilities}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_base_view_model}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Base\\+View\\+Model}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_base_view_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Base\\+View\\+Model}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Board\\+Column}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_board_columns}{Templates\\+Generator\\+Tool.\\+Generators.\\+Board\\+Columns}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_board_columns}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Bug}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Build}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Configuration}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_build_def}{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Def}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_build_def}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Definition}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition}{Vsts\\+Rest\\+A\\+P\\+I.\\+Build.\\+Build\\+Definition}} }{\\pageref{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_build_definitions}{Templates\\+Generator\\+Tool.\\+Generators.\\+Build\\+Definitions}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_build_definitions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Platform}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping}{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Release\\+Mapping}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_bundle_config}{Vsts\\+Demo\\+Builder.\\+Bundle\\+Config}} }{\\pageref{class_vsts_demo_builder_1_1_bundle_config}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Card\\+Fields}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles}{Templates\\+Generator\\+Tool.\\+Generators.\\+Card\\+Fields\\+And\\+Card\\+Styles}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Cards}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Cards}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Cards}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Card\\+Settings}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Card\\+Styles}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Child}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Child}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child1}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Code}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+Column}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Column}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Column}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Column\\+Post}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Column\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comment}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comment}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comments}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comments}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Condition}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Condition}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_configuration}{Templates\\+Generator\\+Tool.\\+Configuration}} }{\\pageref{class_templates_generator_tool_1_1_configuration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Vsts\\+Demo\\+Builder.\\+Models.\\+Configuration}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_configuration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+Configuration}} }{\\pageref{class_vsts_rest_a_p_i_1_1_configuration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Core\\+Field}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Created\\+By}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Criterion}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Dashboard}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_dashboard}{Vsts\\+Demo\\+Builder.\\+Models.\\+Dashboard}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_dashboard}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Dashboard}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response.\\+Dashboard}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Dashboard}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Data}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_default}{Vsts\\+Demo\\+Builder.\\+Models.\\+Default}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_default}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Default\\+Iteration}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Definition}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition\\+Reference}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition\\+Reference}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Definitions}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Delivery\\+Plan}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deployment\\+Input}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deployment\\+Input}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Phas}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Phas}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Step}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Step}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_email}{Vsts\\+Demo\\+Builder.\\+Models.\\+Email}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_email}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller}{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller}} }{\\pageref{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment\\+Options}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment\\+Options}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_environment_values}{Vsts\\+Demo\\+Builder.\\+Models.\\+Environment\\+Values}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_environment_values}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Epiclist}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Execution\\+Policy}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Execution\\+Policy}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_export_dashboards}{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Dashboards}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_export_dashboards}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_export_queries}{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Queries}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_export_queries}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension}{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link}{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension\\+With\\+Link}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Field}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Field}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Fields}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Fields}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Fields}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Fields}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields1}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Fill}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Fill}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_filter_config}{Vsts\\+Demo\\+Builder.\\+Filter\\+Config}} }{\\pageref{class_vsts_demo_builder_1_1_filter_config}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source}{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Git\\+Source}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_group_details}{Vsts\\+Demo\\+Builder.\\+Models.\\+Group\\+Details}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_group_details}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_groupwise_template}{Vsts\\+Demo\\+Builder.\\+Models.\\+Groupwise\\+Template}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_groupwise_template}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_home_controller}{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Home\\+Controller}} }{\\pageref{class_vsts_demo_builder_1_1_controllers_1_1_home_controller}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Html}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{interface_vsts_demo_builder_1_1_models_1_1_i_configuration}{Vsts\\+Demo\\+Builder.\\+Models.\\+I\\+Configuration}} }{\\pageref{interface_vsts_demo_builder_1_1_models_1_1_i_configuration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} }{\\pageref{interface_vsts_rest_a_p_i_1_1_i_configuration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{interface_templates_generator_tool_1_1_i_configuration}{Templates\\+Generator\\+Tool.\\+I\\+Configuration}} }{\\pageref{interface_templates_generator_tool_1_1_i_configuration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Inputs}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Inputs}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs1}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator}{Vsts\\+Demo\\+Builder.\\+Models.\\+Location.\\+I\\+P\\+Host\\+Generator}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Issue\\+WI}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Iteration\\+Context}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Iteration\\+Context}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Iterations}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Links}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Links}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Listof\\+Cards}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Listof\\+Card\\+Styles}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_location}{Vsts\\+Demo\\+Builder.\\+Models.\\+Location}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_location}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_login_model}{Vsts\\+Demo\\+Builder.\\+Models.\\+Login\\+Model}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_login_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Member}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Memberships}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_mvc_application}{Vsts\\+Demo\\+Builder.\\+Mvc\\+Application}} }{\\pageref{class_vsts_demo_builder_1_1_mvc_application}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Node}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Node}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Nodes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Option}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Owner}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Owner}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Parallel\\+Execution}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Parallel\\+Execution}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+parameter}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Parameters}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Parent}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Plan}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans}{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans.\\+Plans}} }{\\pageref{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Pool}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Pool}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Pool}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Position}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Product\\+Backlog\\+Item}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_profile_details}{Vsts\\+Demo\\+Builder.\\+Models.\\+Profile\\+Details}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_profile_details}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_program}{Templates\\+Generator\\+Tool.\\+Program}} }{\\pageref{class_templates_generator_tool_1_1_program}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Project}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Project}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Project}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Project}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Project}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Project\\+Count}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_list}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects}{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects}} }{\\pageref{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Projects}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_settings}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Settings}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_settings}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_template}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Template}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_template}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Properties}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Properties}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Properties}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Properties}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties}{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Properties}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Pull\\+Request}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_pull_requests}{Templates\\+Generator\\+Tool.\\+Generators.\\+Pull\\+Requests}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_pull_requests}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Pull\\+Request\\+Thread\\+Context}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Pull\\+Request\\+Thread\\+Context}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Query}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_query}{Vsts\\+Demo\\+Builder.\\+Models.\\+Query}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_query}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+query}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Query\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys}{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys}} }{\\pageref{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Query\\+With\\+Wiql}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Queue}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_queues_1_1_queue}{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues.\\+Queue}} }{\\pageref{class_vsts_rest_a_p_i_1_1_queues_1_1_queue}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Queue}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Queue\\+Model}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Relation}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Relations}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Relations}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Release}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Release}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_release_def}{Vsts\\+Demo\\+Builder.\\+Models.\\+Release\\+Def}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_release_def}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Release\\+Definition}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Release\\+Definition}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition}{Vsts\\+Rest\\+A\\+P\\+I.\\+Release.\\+Release\\+Definition}} }{\\pageref{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_release_definitions}{Templates\\+Generator\\+Tool.\\+Generators.\\+Release\\+Definitions}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_release_definitions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+reply}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Repositories}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Repository}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository}{Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository}} }{\\pageref{class_vsts_rest_a_p_i_1_1_git_1_1_repository}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Repository}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_repository_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_repository_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_required_extensions}{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_required_extensions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Result}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Results}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Results}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Retention\\+Policy}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Retention\\+Policy}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Retention\\+Rule}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Return\\+Exception}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Reviewer}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+End}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+End}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+Start}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+Start}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_route_config}{Vsts\\+Demo\\+Builder.\\+Route\\+Config}} }{\\pageref{class_vsts_demo_builder_1_1_route_config}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Rules}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Rules}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Self}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Self}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Self}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Self}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Service}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point}{Vsts\\+Rest\\+A\\+P\\+I.\\+Service.\\+Service\\+End\\+Point}} }{\\pageref{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Service\\+Endpoint\\+Model}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Settings}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Settings\\+Version}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Size}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_source_code}{Templates\\+Generator\\+Tool.\\+Generators.\\+Source\\+Code}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_source_code}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_source_configuration}{Templates\\+Generator\\+Tool.\\+Source\\+Configuration}} }{\\pageref{class_templates_generator_tool_1_1_source_configuration}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+State\\+Mappings}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+State\\+Mappings}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+State\\+Mappings}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Swim\\+Lanes}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+System\\+Debug}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Tag\\+Style}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Tag\\+Style}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Task}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Task}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Task}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Team}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team}} }{\\pageref{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response.\\+Team}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Team\\+Backlog\\+Mapping}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+Team\\+Members}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_teams}{Templates\\+Generator\\+Tool.\\+Generators.\\+Teams}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_teams}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Team\\+Setting}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_teams_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_teams_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_template}{Vsts\\+Demo\\+Builder.\\+Models.\\+Template}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_template}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1template_key_value}{Vsts\\+Demo\\+Builder.\\+Models.\\+template\\+Key\\+Value}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1template_key_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_template_setting}{Vsts\\+Demo\\+Builder.\\+Models.\\+Template\\+Setting}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_template_setting}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_case}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Case}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_case}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management}{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management.\\+Test\\+Management}} }{\\pageref{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_suite}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Test\\+Suites}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Thread\\+Context}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Thread\\+Context}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Trigger}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Trigger}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_utility}{Vsts\\+Rest\\+A\\+P\\+I.\\+Utility}} }{\\pageref{class_vsts_rest_a_p_i_1_1_utility}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_validate_login}{Templates\\+Generator\\+Tool.\\+Generators.\\+Validate\\+Login}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_validate_login}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Value}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value}{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Value}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Value}} }{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Value}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Value}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Variables}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Variables}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Variables}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Widget}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data}{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+W\\+I\\+Map\\+Data}} }{\\pageref{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+W\\+I\\+Map\\+Data}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Wiql}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Workitem}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Work\\+Item}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Workitem}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemhistory}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Item\\+New}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemrevisions}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Work\\+Items}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Items}} }{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}} }{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemtype}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemupdates}} }{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates}}{}\n\\end{DoxyCompactList}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_configuration.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 166.666667\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.000000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(TemplatesGeneratorTool.Configuration) cw\n(TemplatesGeneratorTool.IConfiguration) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (TemplatesGeneratorTool.Configuration) 0.000000 0.000000 box\n (TemplatesGeneratorTool.IConfiguration) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_configuration.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_configuration}{}\\section{Templates\\+Generator\\+Tool.\\+Configuration Class Reference}\n\\label{class_templates_generator_tool_1_1_configuration}\\index{Templates\\+Generator\\+Tool.\\+Configuration@{Templates\\+Generator\\+Tool.\\+Configuration}}\nInheritance diagram for Templates\\+Generator\\+Tool.\\+Configuration\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_templates_generator_tool_1_1_configuration}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_a1a2d7be991ab8d3978099a08a6885366}\\label{class_templates_generator_tool_1_1_configuration_a1a2d7be991ab8d3978099a08a6885366}} \nstring {\\bfseries Uri\\+String}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_a8990845201181389f3393a1285dcb218}\\label{class_templates_generator_tool_1_1_configuration_a8990845201181389f3393a1285dcb218}} \nstring {\\bfseries Personal\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_a427558a28114d3c7cba5e6062c5490b1}\\label{class_templates_generator_tool_1_1_configuration_a427558a28114d3c7cba5e6062c5490b1}} \nstring {\\bfseries Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_a16e8a47facbb73906f2e8f7a162bdbb5}\\label{class_templates_generator_tool_1_1_configuration_a16e8a47facbb73906f2e8f7a162bdbb5}} \nstring {\\bfseries Team}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_a77f2e1a4bf54c1fb460ffec7ab9aa841}\\label{class_templates_generator_tool_1_1_configuration_a77f2e1a4bf54c1fb460ffec7ab9aa841}} \nstring {\\bfseries Move\\+To\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_aaaa0ef3781ab0df4037670fb27051c8c}\\label{class_templates_generator_tool_1_1_configuration_aaaa0ef3781ab0df4037670fb27051c8c}} \nstring {\\bfseries Query}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_add75df6197afdc1c741868a13c32b26f}\\label{class_templates_generator_tool_1_1_configuration_add75df6197afdc1c741868a13c32b26f}} \nstring {\\bfseries Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_aa926161a0b00a2cb5cd09c1bd812037f}\\label{class_templates_generator_tool_1_1_configuration_aa926161a0b00a2cb5cd09c1bd812037f}} \nstring {\\bfseries Work\\+Item\\+Ids}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_abf11ed77aaf36df00c317a9d75ee59ec}\\label{class_templates_generator_tool_1_1_configuration_abf11ed77aaf36df00c317a9d75ee59ec}} \nstring {\\bfseries Work\\+Item\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_ae1cfab93e3ac69daeab8155f712f75ff}\\label{class_templates_generator_tool_1_1_configuration_ae1cfab93e3ac69daeab8155f712f75ff}} \nstring {\\bfseries Process\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_adf69b63a5476cd1017e1202d8e76e921}\\label{class_templates_generator_tool_1_1_configuration_adf69b63a5476cd1017e1202d8e76e921}} \nstring {\\bfseries Pick\\+List\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_ac258792c1668fecc38e6323777dbe97f}\\label{class_templates_generator_tool_1_1_configuration_ac258792c1668fecc38e6323777dbe97f}} \nstring {\\bfseries Query\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_a16c7678d486bd12405cae7c095f7461a}\\label{class_templates_generator_tool_1_1_configuration_a16c7678d486bd12405cae7c095f7461a}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_configuration_abaa1cf3f5625dd00844a676a5d745136}\\label{class_templates_generator_tool_1_1_configuration_abaa1cf3f5625dd00844a676a5d745136}} \nstring {\\bfseries Git\\+Repository\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/Configuration.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_board_columns.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_board_columns}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Board\\+Columns Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_board_columns}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Board\\+Columns@{Templates\\+Generator\\+Tool.\\+Generators.\\+Board\\+Columns}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_board_columns_a2cf1afb0c72bee7188a14311079ef8d5}\\label{class_templates_generator_tool_1_1_generators_1_1_board_columns_a2cf1afb0c72bee7188a14311079ef8d5}} \n{\\bfseries Board\\+Columns} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_board_columns_aada06c13642a29046cb06f3d2ef2e322}{Export\\+Board\\+Columns}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em method to export \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_board_columns}{Board\\+Columns}} json from the source project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_board_columns_aada06c13642a29046cb06f3d2ef2e322}\\label{class_templates_generator_tool_1_1_generators_1_1_board_columns_aada06c13642a29046cb06f3d2ef2e322}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Board\\+Columns@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Board\\+Columns}!Export\\+Board\\+Columns@{Export\\+Board\\+Columns}}\n\\index{Export\\+Board\\+Columns@{Export\\+Board\\+Columns}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Board\\+Columns@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Board\\+Columns}}\n\\subsubsection{\\texorpdfstring{Export\\+Board\\+Columns()}{ExportBoardColumns()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Board\\+Columns.\\+Export\\+Board\\+Columns (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nmethod to export \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_board_columns}{Board\\+Columns}} json from the source project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Board\\+Columns.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_build_definitions.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_build_definitions}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Build\\+Definitions Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_build_definitions}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Build\\+Definitions@{Templates\\+Generator\\+Tool.\\+Generators.\\+Build\\+Definitions}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_build_definitions_ad677e6263ff3adc7b7df52ab8b023a3e}\\label{class_templates_generator_tool_1_1_generators_1_1_build_definitions_ad677e6263ff3adc7b7df52ab8b023a3e}} \n{\\bfseries Build\\+Definitions} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration, string account\\+Name)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_build_definitions_a15b3c815112e04b0748ed7f1f12fa2cb}{Export\\+Build\\+Definitions}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em Method to export build definitions json from source project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_build_definitions_a15b3c815112e04b0748ed7f1f12fa2cb}\\label{class_templates_generator_tool_1_1_generators_1_1_build_definitions_a15b3c815112e04b0748ed7f1f12fa2cb}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Build\\+Definitions@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Build\\+Definitions}!Export\\+Build\\+Definitions@{Export\\+Build\\+Definitions}}\n\\index{Export\\+Build\\+Definitions@{Export\\+Build\\+Definitions}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Build\\+Definitions@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Build\\+Definitions}}\n\\subsubsection{\\texorpdfstring{Export\\+Build\\+Definitions()}{ExportBuildDefinitions()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Build\\+Definitions.\\+Export\\+Build\\+Definitions (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nMethod to export build definitions json from source project \n\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Card\\+Fields\\+And\\+Card\\+Styles Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Card\\+Fields\\+And\\+Card\\+Styles@{Templates\\+Generator\\+Tool.\\+Generators.\\+Card\\+Fields\\+And\\+Card\\+Styles}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles_aef09dac397d7f80b7c6a4e7c7ddff47b}\\label{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles_aef09dac397d7f80b7c6a4e7c7ddff47b}} \n{\\bfseries Card\\+Fields\\+And\\+Card\\+Styles} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles_a3f285cbf53c28a958fff0123d88a3e8a}{Get\\+Card\\+Fields}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em Method to export cardfield json from source project \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles_a2882c956f1ddc904ab0502fb78a31ca2}{Get\\+Card\\+Styles}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em Method to export cardstyles json from source project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles_a3f285cbf53c28a958fff0123d88a3e8a}\\label{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles_a3f285cbf53c28a958fff0123d88a3e8a}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Card\\+Fields\\+And\\+Card\\+Styles@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Card\\+Fields\\+And\\+Card\\+Styles}!Get\\+Card\\+Fields@{Get\\+Card\\+Fields}}\n\\index{Get\\+Card\\+Fields@{Get\\+Card\\+Fields}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Card\\+Fields\\+And\\+Card\\+Styles@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Card\\+Fields\\+And\\+Card\\+Styles}}\n\\subsubsection{\\texorpdfstring{Get\\+Card\\+Fields()}{GetCardFields()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Card\\+Fields\\+And\\+Card\\+Styles.\\+Get\\+Card\\+Fields (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nMethod to export cardfield json from source project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles_a2882c956f1ddc904ab0502fb78a31ca2}\\label{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles_a2882c956f1ddc904ab0502fb78a31ca2}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Card\\+Fields\\+And\\+Card\\+Styles@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Card\\+Fields\\+And\\+Card\\+Styles}!Get\\+Card\\+Styles@{Get\\+Card\\+Styles}}\n\\index{Get\\+Card\\+Styles@{Get\\+Card\\+Styles}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Card\\+Fields\\+And\\+Card\\+Styles@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Card\\+Fields\\+And\\+Card\\+Styles}}\n\\subsubsection{\\texorpdfstring{Get\\+Card\\+Styles()}{GetCardStyles()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Card\\+Fields\\+And\\+Card\\+Styles.\\+Get\\+Card\\+Styles (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nMethod to export cardstyles json from source project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Card\\+Fields\\+And\\+Card\\+Styles.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_export_dashboards.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_export_dashboards}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Dashboards Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_export_dashboards}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Dashboards@{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Dashboards}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_export_dashboards_a08fbf444146cbcac2c599781f39ee34a}\\label{class_templates_generator_tool_1_1_generators_1_1_export_dashboards_a08fbf444146cbcac2c599781f39ee34a}} \n{\\bfseries Export\\+Dashboards} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_export_dashboards_a5f23b2dc5bd704add76697f8dfe5a530}{Get\\+Dashboard}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em Method to export Dashboard jsons form source project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_export_dashboards_a5f23b2dc5bd704add76697f8dfe5a530}\\label{class_templates_generator_tool_1_1_generators_1_1_export_dashboards_a5f23b2dc5bd704add76697f8dfe5a530}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Export\\+Dashboards@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Export\\+Dashboards}!Get\\+Dashboard@{Get\\+Dashboard}}\n\\index{Get\\+Dashboard@{Get\\+Dashboard}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Export\\+Dashboards@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Export\\+Dashboards}}\n\\subsubsection{\\texorpdfstring{Get\\+Dashboard()}{GetDashboard()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Dashboards.\\+Get\\+Dashboard (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nMethod to export Dashboard jsons form source project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Export\\+Dashboards.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_export_queries.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_export_queries}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Queries Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_export_queries}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Queries@{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Queries}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_export_queries_a558cf669caa0f03158bc099e95b1cb6a}\\label{class_templates_generator_tool_1_1_generators_1_1_export_queries_a558cf669caa0f03158bc099e95b1cb6a}} \n{\\bfseries Export\\+Queries} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_export_queries_a5891d5275dcffb8a38960ccb7de53004}{Get\\+Queries\\+By\\+Path}} (string project, string path)\n\\begin{DoxyCompactList}\\small\\item\\em Method to get queries jsons under Shared folder path \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_export_queries_a5891d5275dcffb8a38960ccb7de53004}\\label{class_templates_generator_tool_1_1_generators_1_1_export_queries_a5891d5275dcffb8a38960ccb7de53004}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Export\\+Queries@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Export\\+Queries}!Get\\+Queries\\+By\\+Path@{Get\\+Queries\\+By\\+Path}}\n\\index{Get\\+Queries\\+By\\+Path@{Get\\+Queries\\+By\\+Path}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Export\\+Queries@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Export\\+Queries}}\n\\subsubsection{\\texorpdfstring{Get\\+Queries\\+By\\+Path()}{GetQueriesByPath()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Queries.\\+Get\\+Queries\\+By\\+Path (\\begin{DoxyParamCaption}\\item[{string}]{project,  }\\item[{string}]{path }\\end{DoxyParamCaption})}\n\n\n\nMethod to get queries jsons under Shared folder path \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n{\\em path} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Export\\+Queries.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data}{W\\+I\\+Map\\+Data}}\n\\end{DoxyCompactItemize}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_ae7a1ea93683e3ad3993b7260fde411f9}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_ae7a1ea93683e3ad3993b7260fde411f9}} \n{\\bfseries Generate\\+W\\+I\\+From\\+Source} (\\mbox{\\hyperlink{interface_templates_generator_tool_1_1_i_configuration}{I\\+Configuration}} configuration, string account\\+Name)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_afb867463d207db51a8653f14e809e392}{Update\\+Work\\+Item}} ()\n\\begin{DoxyCompactList}\\small\\item\\em method to get each work item type and save as json \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}} \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a99040ad4f9108c0ca4d1b9ab8edbdc62}{get\\+Work\\+Itemsfrom\\+Source}} (string work\\+Item\\+Type)\n\\begin{DoxyCompactList}\\small\\item\\em method to get list of work items \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}} \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a8471c5b52c936c6887720f60cd56c537}{Get\\+Work\\+Items\\+Detailin\\+Batch}} (string workitemsto\\+Fetch)\n\\begin{DoxyCompactList}\\small\\item\\em method to get work item data in detail \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a20c36bbbe10bb56f7f0472e8dd05b8bf}{Download\\+Attached\\+Files}} (\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}} work\\+Items)\n\\begin{DoxyCompactList}\\small\\item\\em Method to export Work item attachments \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}{Get\\+Board\\+Rows\\+Response.\\+Result}} \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a07950971f3e02be2a376722ac76bf73a}{Get\\+Board\\+Rows}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em method to export board rows (kanban board) from source project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a20c36bbbe10bb56f7f0472e8dd05b8bf}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a20c36bbbe10bb56f7f0472e8dd05b8bf}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}!Download\\+Attached\\+Files@{Download\\+Attached\\+Files}}\n\\index{Download\\+Attached\\+Files@{Download\\+Attached\\+Files}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}}\n\\subsubsection{\\texorpdfstring{Download\\+Attached\\+Files()}{DownloadAttachedFiles()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+Download\\+Attached\\+Files (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}}}]{work\\+Items }\\end{DoxyParamCaption})}\n\n\n\nMethod to export Work item attachments \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em work\\+Items} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a07950971f3e02be2a376722ac76bf73a}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a07950971f3e02be2a376722ac76bf73a}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}!Get\\+Board\\+Rows@{Get\\+Board\\+Rows}}\n\\index{Get\\+Board\\+Rows@{Get\\+Board\\+Rows}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}}\n\\subsubsection{\\texorpdfstring{Get\\+Board\\+Rows()}{GetBoardRows()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}{Get\\+Board\\+Rows\\+Response.\\+Result}} Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+Get\\+Board\\+Rows (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nmethod to export board rows (kanban board) from source project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a8471c5b52c936c6887720f60cd56c537}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a8471c5b52c936c6887720f60cd56c537}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}!Get\\+Work\\+Items\\+Detailin\\+Batch@{Get\\+Work\\+Items\\+Detailin\\+Batch}}\n\\index{Get\\+Work\\+Items\\+Detailin\\+Batch@{Get\\+Work\\+Items\\+Detailin\\+Batch}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}}\n\\subsubsection{\\texorpdfstring{Get\\+Work\\+Items\\+Detailin\\+Batch()}{GetWorkItemsDetailinBatch()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}} Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+Get\\+Work\\+Items\\+Detailin\\+Batch (\\begin{DoxyParamCaption}\\item[{string}]{workitemsto\\+Fetch }\\end{DoxyParamCaption})}\n\n\n\nmethod to get work item data in detail \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em workitemsto\\+Fetch} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a99040ad4f9108c0ca4d1b9ab8edbdc62}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_a99040ad4f9108c0ca4d1b9ab8edbdc62}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}!get\\+Work\\+Itemsfrom\\+Source@{get\\+Work\\+Itemsfrom\\+Source}}\n\\index{get\\+Work\\+Itemsfrom\\+Source@{get\\+Work\\+Itemsfrom\\+Source}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}}\n\\subsubsection{\\texorpdfstring{get\\+Work\\+Itemsfrom\\+Source()}{getWorkItemsfromSource()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}} Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+get\\+Work\\+Itemsfrom\\+Source (\\begin{DoxyParamCaption}\\item[{string}]{work\\+Item\\+Type }\\end{DoxyParamCaption})}\n\n\n\nmethod to get list of work items \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em work\\+Item\\+Type} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_afb867463d207db51a8653f14e809e392}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_afb867463d207db51a8653f14e809e392}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}!Update\\+Work\\+Item@{Update\\+Work\\+Item}}\n\\index{Update\\+Work\\+Item@{Update\\+Work\\+Item}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Generate\\+W\\+I\\+From\\+Source}}\n\\subsubsection{\\texorpdfstring{Update\\+Work\\+Item()}{UpdateWorkItem()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+Update\\+Work\\+Item (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nmethod to get each work item type and save as json \n\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Generate\\+W\\+I\\+From\\+Source.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+W\\+I\\+Map\\+Data Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+W\\+I\\+Map\\+Data@{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+W\\+I\\+Map\\+Data}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data_accea8c3c9fc05b21eef603dc4c43d0f6}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data_accea8c3c9fc05b21eef603dc4c43d0f6}} \nstring {\\bfseries old\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data_a19a99c510e350d27d0f17fd295da7934}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data_a19a99c510e350d27d0f17fd295da7934}} \nstring {\\bfseries new\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data_a7c0a29eb161249ddbfa046507fa9ed95}\\label{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data_a7c0a29eb161249ddbfa046507fa9ed95}} \nstring {\\bfseries W\\+I\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Generate\\+W\\+I\\+From\\+Source.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_pull_requests.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_pull_requests}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Pull\\+Requests Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_pull_requests}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Pull\\+Requests@{Templates\\+Generator\\+Tool.\\+Generators.\\+Pull\\+Requests}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_pull_requests_a02fb0623117f96693b9aa0a104c1bd15}\\label{class_templates_generator_tool_1_1_generators_1_1_pull_requests_a02fb0623117f96693b9aa0a104c1bd15}} \n{\\bfseries Pull\\+Requests} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_pull_requests_aff016c663661c1421f673f1a707c362c}{Export\\+Pull\\+Requests}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em method to export Pull\\+Request jsons from source project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_pull_requests_aff016c663661c1421f673f1a707c362c}\\label{class_templates_generator_tool_1_1_generators_1_1_pull_requests_aff016c663661c1421f673f1a707c362c}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Pull\\+Requests@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Pull\\+Requests}!Export\\+Pull\\+Requests@{Export\\+Pull\\+Requests}}\n\\index{Export\\+Pull\\+Requests@{Export\\+Pull\\+Requests}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Pull\\+Requests@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Pull\\+Requests}}\n\\subsubsection{\\texorpdfstring{Export\\+Pull\\+Requests()}{ExportPullRequests()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Pull\\+Requests.\\+Export\\+Pull\\+Requests (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nmethod to export Pull\\+Request jsons from source project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Pull\\+Requests.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_release_definitions.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_release_definitions}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Release\\+Definitions Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_release_definitions}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Release\\+Definitions@{Templates\\+Generator\\+Tool.\\+Generators.\\+Release\\+Definitions}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_release_definitions_a71468dc455e8addf7ecf4ad84e2526f2}\\label{class_templates_generator_tool_1_1_generators_1_1_release_definitions_a71468dc455e8addf7ecf4ad84e2526f2}} \n{\\bfseries Release\\+Definitions} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration, string account\\+Name)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_release_definitions_a3660f90a0a356fdf82aee0373f7e2941}{Export\\+Release\\+Definitions}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em method to export release definition jsons from source project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_release_definitions_a3660f90a0a356fdf82aee0373f7e2941}\\label{class_templates_generator_tool_1_1_generators_1_1_release_definitions_a3660f90a0a356fdf82aee0373f7e2941}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Release\\+Definitions@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Release\\+Definitions}!Export\\+Release\\+Definitions@{Export\\+Release\\+Definitions}}\n\\index{Export\\+Release\\+Definitions@{Export\\+Release\\+Definitions}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Release\\+Definitions@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Release\\+Definitions}}\n\\subsubsection{\\texorpdfstring{Export\\+Release\\+Definitions()}{ExportReleaseDefinitions()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Release\\+Definitions.\\+Export\\+Release\\+Definitions (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nmethod to export release definition jsons from source project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_source_code.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_source_code}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Source\\+Code Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_source_code}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Source\\+Code@{Templates\\+Generator\\+Tool.\\+Generators.\\+Source\\+Code}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_source_code_a5c1c7360088748de7af6bd2777a25a79}\\label{class_templates_generator_tool_1_1_generators_1_1_source_code_a5c1c7360088748de7af6bd2777a25a79}} \n{\\bfseries Source\\+Code} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_source_code_a9ec5af1319436537f1aa58ed45c3ca7f}{Export\\+Source\\+Code}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em method to export source code url jsons \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_source_code_a9ec5af1319436537f1aa58ed45c3ca7f}\\label{class_templates_generator_tool_1_1_generators_1_1_source_code_a9ec5af1319436537f1aa58ed45c3ca7f}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Source\\+Code@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Source\\+Code}!Export\\+Source\\+Code@{Export\\+Source\\+Code}}\n\\index{Export\\+Source\\+Code@{Export\\+Source\\+Code}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Source\\+Code@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Source\\+Code}}\n\\subsubsection{\\texorpdfstring{Export\\+Source\\+Code()}{ExportSourceCode()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Source\\+Code.\\+Export\\+Source\\+Code (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nmethod to export source code url jsons \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Source\\+Code.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_teams.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_teams}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Teams Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_teams}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Teams@{Templates\\+Generator\\+Tool.\\+Generators.\\+Teams}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_teams_a9141923b6c0e573e64c94bdd2da26833}\\label{class_templates_generator_tool_1_1_generators_1_1_teams_a9141923b6c0e573e64c94bdd2da26833}} \n{\\bfseries Teams} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration)\n\\item \nvoid \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_teams_a3416f9b5acd249ffcd8d63abbb1fe480}{Export\\+Teams}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em method to export teams jsons from source projects \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_teams_a3416f9b5acd249ffcd8d63abbb1fe480}\\label{class_templates_generator_tool_1_1_generators_1_1_teams_a3416f9b5acd249ffcd8d63abbb1fe480}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Teams@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Teams}!Export\\+Teams@{Export\\+Teams}}\n\\index{Export\\+Teams@{Export\\+Teams}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Teams@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Teams}}\n\\subsubsection{\\texorpdfstring{Export\\+Teams()}{ExportTeams()}}\n{\\footnotesize\\ttfamily void Templates\\+Generator\\+Tool.\\+Generators.\\+Teams.\\+Export\\+Teams (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nmethod to export teams jsons from source projects \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Teams.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_generators_1_1_validate_login.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_generators_1_1_validate_login}{}\\section{Templates\\+Generator\\+Tool.\\+Generators.\\+Validate\\+Login Class Reference}\n\\label{class_templates_generator_tool_1_1_generators_1_1_validate_login}\\index{Templates\\+Generator\\+Tool.\\+Generators.\\+Validate\\+Login@{Templates\\+Generator\\+Tool.\\+Generators.\\+Validate\\+Login}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_validate_login_aaff23f8fef218b8d0ddb84d9610cb754}\\label{class_templates_generator_tool_1_1_generators_1_1_validate_login_aaff23f8fef218b8d0ddb84d9610cb754}} \n{\\bfseries Validate\\+Login} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}} configuration)\n\\item \nbool \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_validate_login_ab3bf9583c98282065b77f2a35ddeacd2}{is\\+Valid\\+Account}} ()\n\\begin{DoxyCompactList}\\small\\item\\em method to validate Account name and P\\+AT \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_generators_1_1_validate_login_ab3bf9583c98282065b77f2a35ddeacd2}\\label{class_templates_generator_tool_1_1_generators_1_1_validate_login_ab3bf9583c98282065b77f2a35ddeacd2}} \n\\index{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Validate\\+Login@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Validate\\+Login}!is\\+Valid\\+Account@{is\\+Valid\\+Account}}\n\\index{is\\+Valid\\+Account@{is\\+Valid\\+Account}!Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Validate\\+Login@{Templates\\+Generator\\+Tool\\+::\\+Generators\\+::\\+Validate\\+Login}}\n\\subsubsection{\\texorpdfstring{is\\+Valid\\+Account()}{isValidAccount()}}\n{\\footnotesize\\ttfamily bool Templates\\+Generator\\+Tool.\\+Generators.\\+Validate\\+Login.\\+is\\+Valid\\+Account (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nmethod to validate Account name and P\\+AT \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+Generators/Validate\\+Login.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_program.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_program}{}\\section{Templates\\+Generator\\+Tool.\\+Program Class Reference}\n\\label{class_templates_generator_tool_1_1_program}\\index{Templates\\+Generator\\+Tool.\\+Program@{Templates\\+Generator\\+Tool.\\+Program}}\n\\subsection*{Static Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_program_a6a9125dac357bdc201a9cb7f3fc72710}\\label{class_templates_generator_tool_1_1_program_a6a9125dac357bdc201a9cb7f3fc72710}} \nstatic void {\\bfseries Main} (string\\mbox{[}$\\,$\\mbox{]} args)\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/Program.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_source_configuration.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 143.884892\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.475000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(TemplatesGeneratorTool.SourceConfiguration) cw\n(TemplatesGeneratorTool.IConfiguration) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (TemplatesGeneratorTool.SourceConfiguration) 0.000000 0.000000 box\n (TemplatesGeneratorTool.IConfiguration) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_source_configuration.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_source_configuration}{}\\section{Templates\\+Generator\\+Tool.\\+Source\\+Configuration Class Reference}\n\\label{class_templates_generator_tool_1_1_source_configuration}\\index{Templates\\+Generator\\+Tool.\\+Source\\+Configuration@{Templates\\+Generator\\+Tool.\\+Source\\+Configuration}}\nInheritance diagram for Templates\\+Generator\\+Tool.\\+Source\\+Configuration\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_templates_generator_tool_1_1_source_configuration}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a8f30ae2dde8e1d6b4f5254a1ffe02e9b}\\label{class_templates_generator_tool_1_1_source_configuration_a8f30ae2dde8e1d6b4f5254a1ffe02e9b}} \nstring {\\bfseries Uri\\+String}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a891028577d90bfe9e7eab6d4218fcd13}\\label{class_templates_generator_tool_1_1_source_configuration_a891028577d90bfe9e7eab6d4218fcd13}} \nstring {\\bfseries Personal\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a92588e5ee286a2a3f771f66bc67ac1e7}\\label{class_templates_generator_tool_1_1_source_configuration_a92588e5ee286a2a3f771f66bc67ac1e7}} \nstring {\\bfseries Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a3969468d8ad132a932aaf9172d38c59c}\\label{class_templates_generator_tool_1_1_source_configuration_a3969468d8ad132a932aaf9172d38c59c}} \nstring {\\bfseries Team}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a9ed93a363eae70b785dc9e185147f2c3}\\label{class_templates_generator_tool_1_1_source_configuration_a9ed93a363eae70b785dc9e185147f2c3}} \nstring {\\bfseries Move\\+To\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a21d977021107f1728a7d97aca9e04091}\\label{class_templates_generator_tool_1_1_source_configuration_a21d977021107f1728a7d97aca9e04091}} \nstring {\\bfseries Query}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a001336c7da020e7d73a3934c47c6d8c7}\\label{class_templates_generator_tool_1_1_source_configuration_a001336c7da020e7d73a3934c47c6d8c7}} \nstring {\\bfseries Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_ab5b6f1dd79f3808dceacdeb93bc1d582}\\label{class_templates_generator_tool_1_1_source_configuration_ab5b6f1dd79f3808dceacdeb93bc1d582}} \nstring {\\bfseries Work\\+Item\\+Ids}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_acc9fb5a0b38f2ff4d3b6bec38bf130d1}\\label{class_templates_generator_tool_1_1_source_configuration_acc9fb5a0b38f2ff4d3b6bec38bf130d1}} \nstring {\\bfseries Work\\+Item\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a6685e57cb95f0a7d42e8bb3368317c16}\\label{class_templates_generator_tool_1_1_source_configuration_a6685e57cb95f0a7d42e8bb3368317c16}} \nstring {\\bfseries Process\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_aef64a91dca43071513eb4ba93ccabf1c}\\label{class_templates_generator_tool_1_1_source_configuration_aef64a91dca43071513eb4ba93ccabf1c}} \nstring {\\bfseries Pick\\+List\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_ae0734ae9185120257ddd7a01806493fd}\\label{class_templates_generator_tool_1_1_source_configuration_ae0734ae9185120257ddd7a01806493fd}} \nstring {\\bfseries Query\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_a70a791cb80d804ae75c2c28b5e4dab4a}\\label{class_templates_generator_tool_1_1_source_configuration_a70a791cb80d804ae75c2c28b5e4dab4a}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_source_configuration_ae79fa2db7e8b6570a37278898ffc2639}\\label{class_templates_generator_tool_1_1_source_configuration_ae79fa2db7e8b6570a37278898ffc2639}} \nstring {\\bfseries Git\\+Repository\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/Source\\+Configuration.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_base_view_model.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 23.419204\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 21.350000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 4 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(TemplatesGeneratorTool.ViewModel.BaseViewModel) cw\n(TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard) cw\n(TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result) cw\n(TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results) cw\n(TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (TemplatesGeneratorTool.ViewModel.BaseViewModel) 1.500000 1.000000 box\n (TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard) 0.000000 0.000000 box\n (TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result) 1.000000 0.000000 box\n (TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results) 2.000000 0.000000 box\n (TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems) 3.000000 0.000000 box\n\n% ----- relations -----\n\nsolid\n1 1.500000 0.250000 out\nsolid\n0.000000 3.000000 1.000000 conn\nsolid\n0 0.000000 0.750000 in\nsolid\n0 1.000000 0.750000 in\nsolid\n0 2.000000 0.750000 in\nsolid\n0 3.000000 0.750000 in\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_base_view_model.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_base_view_model}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Base\\+View\\+Model Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_base_view_model}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Base\\+View\\+Model@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Base\\+View\\+Model}}\nInheritance diagram for Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Base\\+View\\+Model\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=0.655738cm]{class_templates_generator_tool_1_1_view_model_1_1_base_view_model}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_base_view_model_a419a1f92ce6ec21394cb8b025a2c38c3}\\label{class_templates_generator_tool_1_1_view_model_1_1_base_view_model_a419a1f92ce6ec21394cb8b025a2c38c3}} \nHttp\\+Status\\+Code {\\bfseries Http\\+Status\\+Code}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Base\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column}{Column}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings}{State\\+Mappings}}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_a76a64c770b5ee6bb623a071bca283df8}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_a76a64c770b5ee6bb623a071bca283df8}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column}{Column}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Board\\+Columns\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+Column Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+Column@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+Column}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_a308eca8ef85a4afe8895251d372341db}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_a308eca8ef85a4afe8895251d372341db}} \nstring {\\bfseries description} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_aa8111ed15ac9e3c0d7a5c224f0837dcd}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_aa8111ed15ac9e3c0d7a5c224f0837dcd}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_aaebf0ec2d661ff37c5c8802671896860}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_aaebf0ec2d661ff37c5c8802671896860}} \nint {\\bfseries item\\+Limit}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_ac8cb20d9f0ceaa892523791230162d90}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_ac8cb20d9f0ceaa892523791230162d90}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings}{State\\+Mappings}} {\\bfseries state\\+Mappings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_a20e4167c3d72559af050f90a8192c3d5}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_a20e4167c3d72559af050f90a8192c3d5}} \nstring {\\bfseries column\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_a6d2a33f854250e2427a7f54ca8365db0}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column_a6d2a33f854250e2427a7f54ca8365db0}} \nbool {\\bfseries is\\+Split}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Board\\+Columns\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+State\\+Mappings Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+State\\+Mappings@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+State\\+Mappings}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings_ae2c3f6908dfb93d41dc33f0e2e8dd020}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings_ae2c3f6908dfb93d41dc33f0e2e8dd020}} \nstring {\\bfseries Product\\+Backlog\\+Item}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings_ab771adeb48d98e2f803ed3596ad9a115}\\label{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings_ab771adeb48d98e2f803ed3596ad9a115}} \nstring {\\bfseries Bug}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Board\\+Columns\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definition_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build}{Build}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definition\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Build Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Build@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Build}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build_a804ba35906a8d73f2712b5de4c606833}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build_a804ba35906a8d73f2712b5de4c606833}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build_ad8ff840185b0183f7caf9b5902776390}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build_ad8ff840185b0183f7caf9b5902776390}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definition\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value_ab45c38c65781181e924995834c516d6d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value_ab45c38c65781181e924995834c516d6d}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definition\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build}{Build}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}{Build\\+Configuration}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition}{Build\\+Definition}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}{Build\\+Platform}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition}{Definition}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs}{Inputs}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1}{Inputs1}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option}{Option}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool}{Pool}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties}{Properties}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue}{Queue}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository}{Repository}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule}{Retention\\+Rule}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}{System\\+Debug}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task}{Task}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables}{Variables}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a4096c37e687c8dd1a97625c616636a64}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a4096c37e687c8dd1a97625c616636a64}} \nbool {\\bfseries enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a39dc1c4bf357a498f4ceac7f31c19ffd}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a39dc1c4bf357a498f4ceac7f31c19ffd}} \nbool {\\bfseries continue\\+On\\+Error}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a8795f099e2cde3f31285f58f7a2d05c5}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a8795f099e2cde3f31285f58f7a2d05c5}} \nbool {\\bfseries always\\+Run}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a182cb370cb4aced4635798ab6c16e7c8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a182cb370cb4aced4635798ab6c16e7c8}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a2b9132fec6e7811a9331474c09ae694f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a2b9132fec6e7811a9331474c09ae694f}} \nint {\\bfseries timeout\\+In\\+Minutes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_aba9475025ba417b25d181ec9b0ae09a2}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_aba9475025ba417b25d181ec9b0ae09a2}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task}{Task}} {\\bfseries task}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a424959028e2430c50fcfe322638a6afb}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_a424959028e2430c50fcfe322638a6afb}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs}{Inputs}} {\\bfseries inputs}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Configuration Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Configuration@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Configuration}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration_a2dcaae5e251f8f931964a2d9284fdc58}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration_a2dcaae5e251f8f931964a2d9284fdc58}} \nstring {\\bfseries value} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration_a82e1fc21b5497adaa13b49fb02f4b779}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration_a82e1fc21b5497adaa13b49fb02f4b779}} \nbool {\\bfseries allow\\+Override} = false\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Definition Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Definition@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Definition}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_ad0504177e756edaba26bf86b1abc08d6}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_ad0504177e756edaba26bf86b1abc08d6}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a4b2444460c936f09bbdb229f1c8390b8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a4b2444460c936f09bbdb229f1c8390b8}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build}} $>$ {\\bfseries build}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a6526edf5740b2dabb237d05f695fd713}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a6526edf5740b2dabb237d05f695fd713}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Option}} $>$ {\\bfseries options}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_ad52c58be76f8421e2b7d62356a19b19f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_ad52c58be76f8421e2b7d62356a19b19f}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables}{Variables}} {\\bfseries variables}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_af13460e02aae22bbb173120f473da8b7}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_af13460e02aae22bbb173120f473da8b7}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule}{Retention\\+Rule}} $>$ {\\bfseries retention\\+Rules}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a08ce8e65270a1d0324eabe1ad676375f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a08ce8e65270a1d0324eabe1ad676375f}} \nstring {\\bfseries build\\+Number\\+Format}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a77ad9e679b1243010f5151be6eef67da}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a77ad9e679b1243010f5151be6eef67da}} \nstring {\\bfseries job\\+Authorization\\+Scope}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a512a84ac930005017555f045cb70863c}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a512a84ac930005017555f045cb70863c}} \nint {\\bfseries job\\+Timeout\\+In\\+Minutes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_acfe25c58827a380d0fc49f3e7633dac0}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_acfe25c58827a380d0fc49f3e7633dac0}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository}{Repository}} {\\bfseries repository}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_ad0f6944604c181ebbe0f6ec3dc43a119}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_ad0f6944604c181ebbe0f6ec3dc43a119}} \nstring {\\bfseries quality}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a80e92955ff039b383a117f4c07f88652}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_a80e92955ff039b383a117f4c07f88652}} \nstring {\\bfseries default\\+Branch}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_ada92aaf7feae5285cd9931b944db071d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition_ada92aaf7feae5285cd9931b944db071d}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue}{Queue}} {\\bfseries queue}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Platform Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Platform@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Platform}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform_aba321b9fc1940cd61c9576c3892f4663}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform_aba321b9fc1940cd61c9576c3892f4663}} \nstring {\\bfseries value} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform_a9a74374405de9a9a411741f8fc5af786}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform_a9a74374405de9a9a411741f8fc5af786}} \nbool {\\bfseries allow\\+Override} = false\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Definition Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Definition@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Definition}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition_ab657b4daaa5d97eb1e701500fbf36f6a}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition_ab657b4daaa5d97eb1e701500fbf36f6a}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a8eaeefeee1fcfa5548004b7151d495f0}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a8eaeefeee1fcfa5548004b7151d495f0}} \nobject {\\bfseries command}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a6f83465add4c4d9d6deece66cea32805}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a6f83465add4c4d9d6deece66cea32805}} \nobject {\\bfseries arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aa84016163ac62dac258a9fa2f87eb49c}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aa84016163ac62dac258a9fa2f87eb49c}} \nobject {\\bfseries cwd}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ae781bfacdd227299af74ad683cc22755}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ae781bfacdd227299af74ad683cc22755}} \nstring {\\bfseries source\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a3e7016a94ee2726b3723d478555d3de4}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a3e7016a94ee2726b3723d478555d3de4}} \nstring {\\bfseries file\\+Pattern}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a109c5f700bb41f87e339e7df1adfdcf9}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a109c5f700bb41f87e339e7df1adfdcf9}} \nobject {\\bfseries token\\+Regex}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a56c225960768b371c73525a17f6f87ba}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a56c225960768b371c73525a17f6f87ba}} \nobject {\\bfseries secret\\+Tokens}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a1bfeee20a0268ce156a5038cef164ed3}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a1bfeee20a0268ce156a5038cef164ed3}} \nobject {\\bfseries gulp\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a5649571d89bd96a91730f83d5cd399c8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a5649571d89bd96a91730f83d5cd399c8}} \nobject {\\bfseries targets}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aa56de9f20260f909f2e6944f65735089}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aa56de9f20260f909f2e6944f65735089}} \nobject {\\bfseries gulpjs}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ad7462d3cd380fd953e1de442a3083202}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ad7462d3cd380fd953e1de442a3083202}} \nobject {\\bfseries publish\\+J\\+Unit\\+Results}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a822dd1fe97b0df6abc13b06128c4960b}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a822dd1fe97b0df6abc13b06128c4960b}} \nobject {\\bfseries test\\+Results\\+Files}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ad111f2ef67440b5dda23aed00c878ae0}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ad111f2ef67440b5dda23aed00c878ae0}} \nstring {\\bfseries test\\+Run\\+Title}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a490d59640ed445b70a4e6f1fed0e3641}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a490d59640ed445b70a4e6f1fed0e3641}} \nobject {\\bfseries enable\\+Code\\+Coverage}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aba8fdcc459d544e8ced2d53fed0f697b}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aba8fdcc459d544e8ced2d53fed0f697b}} \nobject {\\bfseries test\\+Framework}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a44d613b585e480457b9cdded99a6593a}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a44d613b585e480457b9cdded99a6593a}} \nobject {\\bfseries src\\+Files}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aaa942b800191a12c8dd121514fdfe665}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aaa942b800191a12c8dd121514fdfe665}} \nobject {\\bfseries test\\+Files}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a7154b0abd5863a4550274e103d9796bc}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a7154b0abd5863a4550274e103d9796bc}} \nstring {\\bfseries platform}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aa0613b205200b9546a08eecc5cd6b40b}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aa0613b205200b9546a08eecc5cd6b40b}} \nstring {\\bfseries configuration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a37bea49e5c68f123edd4989ec836ecac}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a37bea49e5c68f123edd4989ec836ecac}} \nobject {\\bfseries archs}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a9c9becf132c2db0f18343815529e14ed}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a9c9becf132c2db0f18343815529e14ed}} \nobject {\\bfseries cordova\\+Version}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aafff9f64c60aa053a95b8ea5a5b9c04e}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aafff9f64c60aa053a95b8ea5a5b9c04e}} \nobject {\\bfseries ant\\+Build}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ae87bd499b43836c0fb994a2bf7f9b226}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ae87bd499b43836c0fb994a2bf7f9b226}} \nobject {\\bfseries keystore\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a96f5d06e802e62825ed2c49519532ca8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a96f5d06e802e62825ed2c49519532ca8}} \nobject {\\bfseries keystore\\+Pass}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a14d683e29aafe73981ca80fabdf5c784}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a14d683e29aafe73981ca80fabdf5c784}} \nobject {\\bfseries keystore\\+Alias}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a967194be483cd3420f4f2027db40a21f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a967194be483cd3420f4f2027db40a21f}} \nobject {\\bfseries key\\+Pass}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_abbbd8eab3cb24d9ae622713c03309e51}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_abbbd8eab3cb24d9ae622713c03309e51}} \nobject {\\bfseries ios\\+Sign\\+Method}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ad886885d5586643ab601c2ce3282451c}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ad886885d5586643ab601c2ce3282451c}} \nobject {\\bfseries ios\\+Signing\\+Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a92a7d40339191de2c4b18ed441489ff3}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a92a7d40339191de2c4b18ed441489ff3}} \nobject {\\bfseries p12}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a2b4e42d62521de52e089e4dcbec28ccc}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a2b4e42d62521de52e089e4dcbec28ccc}} \nobject {\\bfseries p12pwd}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a8d3f24a7524d8ec5145706f7efd3e9b5}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a8d3f24a7524d8ec5145706f7efd3e9b5}} \nobject {\\bfseries unlock\\+Default\\+Keychain}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a3d79c2208dc7c7859fa3e3f69f3bad34}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a3d79c2208dc7c7859fa3e3f69f3bad34}} \nobject {\\bfseries default\\+Keychain\\+Password}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a13f8dbe62a322ab35ae3bc82dcdb344f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a13f8dbe62a322ab35ae3bc82dcdb344f}} \nobject {\\bfseries prov\\+Profile\\+Uuid}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a53aa746c12e184519ebf2be63ee231c4}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a53aa746c12e184519ebf2be63ee231c4}} \nobject {\\bfseries prov\\+Profile}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a69900046cc9600dd7919ab0f0fcd9042}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a69900046cc9600dd7919ab0f0fcd9042}} \nobject {\\bfseries remove\\+Profile}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a8e53bca81d5921d14af776067674d429}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a8e53bca81d5921d14af776067674d429}} \nobject {\\bfseries xcode\\+Developer\\+Dir}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a1fe3228dc35f40dcb89d5dbaaa75a62f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a1fe3228dc35f40dcb89d5dbaaa75a62f}} \nobject {\\bfseries windows\\+Appx}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aadda6e15bd5b8549e5d765cd9e3a6f1f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aadda6e15bd5b8549e5d765cd9e3a6f1f}} \nobject {\\bfseries windows\\+Phone\\+Only}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4698f476f26a46753764a5294687cb68}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4698f476f26a46753764a5294687cb68}} \nobject {\\bfseries windows\\+Only}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_af4be6ee8bb8081eaeff01290528fb315}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_af4be6ee8bb8081eaeff01290528fb315}} \nobject {\\bfseries cordova\\+Args}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_adb34b7b798938ed4b2c44281d14e4daf}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_adb34b7b798938ed4b2c44281d14e4daf}} \nobject {\\bfseries output\\+Pattern}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_af8d5e29c79861cd354a60f82cb51d1e5}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_af8d5e29c79861cd354a60f82cb51d1e5}} \nobject {\\bfseries target\\+Emulator}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a1e1bab7a1f640ea70556274c0142224e}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a1e1bab7a1f640ea70556274c0142224e}} \nobject {\\bfseries test\\+Runner}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a7e707e0c5c009b95d992008db94389f1}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a7e707e0c5c009b95d992008db94389f1}} \nobject {\\bfseries merge\\+Test\\+Results}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ab60b6a88ca7ea89c45e8c55cdf006bd2}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ab60b6a88ca7ea89c45e8c55cdf006bd2}} \nstring {\\bfseries publish\\+Run\\+Attachments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a0e58590a317e2621bd2d8048702b3711}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a0e58590a317e2621bd2d8048702b3711}} \nobject {\\bfseries connected\\+Service\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a5f04b89fbfa572b2d1f49b74846164b3}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a5f04b89fbfa572b2d1f49b74846164b3}} \nobject {\\bfseries app\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aa0e417bffcbedf861eda0c1461b27c36}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aa0e417bffcbedf861eda0c1461b27c36}} \nobject {\\bfseries binary\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a15cbb5f65d1bdab2019b098a09890d2f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a15cbb5f65d1bdab2019b098a09890d2f}} \nstring {\\bfseries symbols\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a5358c231105f724dad3498b2bb4dd9c6}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a5358c231105f724dad3498b2bb4dd9c6}} \nobject {\\bfseries native\\+Library\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_af66a3e8c31d6b094f2af927d91ff51b7}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_af66a3e8c31d6b094f2af927d91ff51b7}} \nobject {\\bfseries notes\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a5155fe4210167843ecc57f73cbbfa437}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a5155fe4210167843ecc57f73cbbfa437}} \nobject {\\bfseries notes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a12f1dab558a79826f57c3625527f7efc}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a12f1dab558a79826f57c3625527f7efc}} \nobject {\\bfseries publish}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4c990815e9c3a6887a0bae84ca2a8ed8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4c990815e9c3a6887a0bae84ca2a8ed8}} \nobject {\\bfseries mandatory}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aab6fea814ee9b417b00b0729ecd5ba8c}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aab6fea814ee9b417b00b0729ecd5ba8c}} \nobject {\\bfseries notify}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aca05622a480de4280c85d25ff85b10f1}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aca05622a480de4280c85d25ff85b10f1}} \nobject {\\bfseries tags}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_abaaf03f14cb23f1bd978330c8cf19ee3}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_abaaf03f14cb23f1bd978330c8cf19ee3}} \nobject {\\bfseries teams}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_acdb7387681fa3029b5cbd84ddb9b3647}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_acdb7387681fa3029b5cbd84ddb9b3647}} \nobject {\\bfseries users}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aab045eeec64932731a7c598da106678e}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aab045eeec64932731a7c598da106678e}} \nstring {\\bfseries Pathto\\+Publish}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ae8a8e28e19bf0b192c1adc82b578cee0}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ae8a8e28e19bf0b192c1adc82b578cee0}} \nstring {\\bfseries Artifact\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4ac86f19facc9ec581901449942b53c0}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4ac86f19facc9ec581901449942b53c0}} \nstring {\\bfseries Artifact\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ab0258cb90cf3782b41ae2425882d31d5}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ab0258cb90cf3782b41ae2425882d31d5}} \nstring {\\bfseries Target\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4c72cfd03e8a742b82713b282d83ae53}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4c72cfd03e8a742b82713b282d83ae53}} \nstring {\\bfseries solution}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ae0fe5da9d8dd3448505f7dc9a3c39973}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ae0fe5da9d8dd3448505f7dc9a3c39973}} \nstring {\\bfseries msbuild\\+Args}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_abd6b5bec3009b82f4e020360341fd952}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_abd6b5bec3009b82f4e020360341fd952}} \nstring {\\bfseries clean}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_af8682293788222728e2c4c7e004e8f55}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_af8682293788222728e2c4c7e004e8f55}} \nstring {\\bfseries restore\\+Nuget\\+Packages}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a714ac46c33545a9987d47a3e102e67a7}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a714ac46c33545a9987d47a3e102e67a7}} \nstring {\\bfseries vs\\+Location\\+Method}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a63728180c4d7b4e0b27f0b128d310fde}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a63728180c4d7b4e0b27f0b128d310fde}} \nstring {\\bfseries vs\\+Version}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ac56677a41b29c0a8da11102aee8cad5d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ac56677a41b29c0a8da11102aee8cad5d}} \nstring {\\bfseries vs\\+Location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a834d85b1dcfb63a459087e35bcd4fc28}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a834d85b1dcfb63a459087e35bcd4fc28}} \nstring {\\bfseries msbuild\\+Location\\+Method}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a8a6684d3ac1c75dd0bdc267244ea05a3}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a8a6684d3ac1c75dd0bdc267244ea05a3}} \nstring {\\bfseries msbuild\\+Version}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a10e9d713c7eb95cc99290496c5553e9a}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a10e9d713c7eb95cc99290496c5553e9a}} \nstring {\\bfseries msbuild\\+Architecture}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_adbc68b196bb40f070f46a391af4d331b}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_adbc68b196bb40f070f46a391af4d331b}} \nstring {\\bfseries msbuild\\+Location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a6bd87af98e6a6be88a943ffee63a31dc}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a6bd87af98e6a6be88a943ffee63a31dc}} \nstring {\\bfseries log\\+Project\\+Events}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ab5fd47a4bc4731a5784de239ebaeb98e}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ab5fd47a4bc4731a5784de239ebaeb98e}} \nstring {\\bfseries test\\+Assembly}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ad143ad90c2ec480c44d5255552be54cf}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_ad143ad90c2ec480c44d5255552be54cf}} \nstring {\\bfseries test\\+Filtercriteria}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a54435aea16e1e2380389a86904512cad}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a54435aea16e1e2380389a86904512cad}} \nstring {\\bfseries run\\+Settings\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a21d5a2fb7dbde73ca967185afdc84ac4}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a21d5a2fb7dbde73ca967185afdc84ac4}} \nstring {\\bfseries code\\+Coverage\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aff9732579520ae13485ed6dda252720e}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_aff9732579520ae13485ed6dda252720e}} \nstring {\\bfseries other\\+Console\\+Options}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a7c73c9cd9fb75eb3857df010609b796d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a7c73c9cd9fb75eb3857df010609b796d}} \nstring {\\bfseries vs\\+Test\\+Version}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a791276034a6f467c53b40fc355dccb13}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a791276034a6f467c53b40fc355dccb13}} \nstring {\\bfseries pathto\\+Custom\\+Test\\+Adapters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a36c295332dd54f0a308c49c493b8419e}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a36c295332dd54f0a308c49c493b8419e}} \nstring {\\bfseries Copy\\+Root}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4ecf5e43c3e8ab3d224595550d331f22}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs_a4ecf5e43c3e8ab3d224595550d331f22}} \nstring {\\bfseries Contents}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs1 Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs1@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs1}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_a7889a8105e52ce2127f5bbdc7e38c521}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_a7889a8105e52ce2127f5bbdc7e38c521}} \nbool {\\bfseries parallel}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_a112625b2b75f0912c9e38880867ef072}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_a112625b2b75f0912c9e38880867ef072}} \nbool {\\bfseries continue\\+On\\+Error}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_afe2dcf45837d9b8d3ca11f949ca28c81}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_afe2dcf45837d9b8d3ca11f949ca28c81}} \nstring {\\bfseries work\\+Item\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_ae087b3d02f2ff342478081624b246f3e}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_ae087b3d02f2ff342478081624b246f3e}} \nbool {\\bfseries assign\\+To\\+Requestor}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_ac0ee63877f2a1c44190295679d99bc19}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_ac0ee63877f2a1c44190295679d99bc19}} \nstring {\\bfseries additional\\+Fields}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_a1deebb4082ac7b6dfc1fe4128d295cb8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1_a1deebb4082ac7b6dfc1fe4128d295cb8}} \nstring {\\bfseries multipliers}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Option Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Option@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Option}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option_a1a4ecfbed6916154f95fa591a5de0c47}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option_a1a4ecfbed6916154f95fa591a5de0c47}} \nbool {\\bfseries enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option_a9fe15448f2401d868aadbbb28bc69204}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option_a9fe15448f2401d868aadbbb28bc69204}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition}{Definition}} {\\bfseries definition}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option_ace2c7a13bda1ef9f7ee4a5a170083f59}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option_ace2c7a13bda1ef9f7ee4a5a170083f59}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1}{Inputs1}} {\\bfseries inputs}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Pool Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Pool@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Pool}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool_a13e69b3173e003ebd795b2e2db16e13f}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool_a13e69b3173e003ebd795b2e2db16e13f}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Properties Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Properties@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Properties}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties_ac736556fda7995d04ec2ea56ac9c7586}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties_ac736556fda7995d04ec2ea56ac9c7586}} \nstring {\\bfseries label\\+Sources}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties_ad828cfcd2691ba9cbe3f677e0e8fece0}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties_ad828cfcd2691ba9cbe3f677e0e8fece0}} \nstring {\\bfseries report\\+Build\\+Status}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Queue Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Queue@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Queue}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue_a1482f515851248651657aca45a37f63d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue_a1482f515851248651657aca45a37f63d}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool}{Pool}} {\\bfseries pool}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue_a8a499faeb0debfea3767a73b5c43d493}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue_a8a499faeb0debfea3767a73b5c43d493}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Repository Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Repository@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Repository}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_ac6a6105ecc377510301cbc0f7ad8c204}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_ac6a6105ecc377510301cbc0f7ad8c204}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties}{Properties}} {\\bfseries properties}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a6a53a0c182c6082b8345131f34343aef}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a6a53a0c182c6082b8345131f34343aef}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_ab00c10c2d1097865a2f4b503ddec23e7}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_ab00c10c2d1097865a2f4b503ddec23e7}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a15876014833315f116ed47c3c674b59a}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a15876014833315f116ed47c3c674b59a}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a544d750a3030c4596bbc40baccc10d3b}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a544d750a3030c4596bbc40baccc10d3b}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_abae4f1c913b23181c25d462283dce7a8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_abae4f1c913b23181c25d462283dce7a8}} \nstring {\\bfseries default\\+Branch}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a0071ac21af8b115584f2c017a42a9e37}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a0071ac21af8b115584f2c017a42a9e37}} \nstring {\\bfseries clean}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a3b7e0af0fd642a3fdf26d19eebc3586d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository_a3b7e0af0fd642a3fdf26d19eebc3586d}} \nbool {\\bfseries checkout\\+Submodules}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Retention\\+Rule Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Retention\\+Rule@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Retention\\+Rule}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_aefd4f05efe1d578edfd2e31893a48ed8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_aefd4f05efe1d578edfd2e31893a48ed8}} \nI\\+List$<$ string $>$ {\\bfseries branches}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a49b1900ca880294b2b69677a1dd78c33}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a49b1900ca880294b2b69677a1dd78c33}} \nI\\+List$<$ object $>$ {\\bfseries artifacts}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_ac32344aa08cc9120c0037bf8998cb8be}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_ac32344aa08cc9120c0037bf8998cb8be}} \nI\\+List$<$ string $>$ {\\bfseries artifact\\+Types\\+To\\+Delete}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a69679a576b3cc5ff755cac2c7d67111d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a69679a576b3cc5ff755cac2c7d67111d}} \nint {\\bfseries days\\+To\\+Keep}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a986080bdcb6e31bb08965a4ac6ea5ca3}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a986080bdcb6e31bb08965a4ac6ea5ca3}} \nint {\\bfseries minimum\\+To\\+Keep}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a069e8244f9b41f0881ba5674b5fc163d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a069e8244f9b41f0881ba5674b5fc163d}} \nbool {\\bfseries delete\\+Build\\+Record}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a4f759fb38aeadbe98596d615a284d29d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule_a4f759fb38aeadbe98596d615a284d29d}} \nbool {\\bfseries delete\\+Test\\+Results}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+System\\+Debug Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+System\\+Debug@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+System\\+Debug}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug_a1798973692e40e4343ee1335f7da083d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug_a1798973692e40e4343ee1335f7da083d}} \nstring {\\bfseries value} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug_abc55294c8d8e2d3a4bcefc2686b0be39}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug_abc55294c8d8e2d3a4bcefc2686b0be39}} \nbool {\\bfseries allow\\+Override} = false\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Task Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Task@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Task}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task_a1b86133118e588f4e79f5d9cae32a0eb}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task_a1b86133118e588f4e79f5d9cae32a0eb}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task_a16bb0b0fe0d42e8c525730330ef80c1d}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task_a16bb0b0fe0d42e8c525730330ef80c1d}} \nstring {\\bfseries version\\+Spec}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task_a9cd4064db86e36f39c3f38346f759b8a}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task_a9cd4064db86e36f39c3f38346f759b8a}} \nstring {\\bfseries definition\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Variables Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Variables@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Variables}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables_a3909d058fe171237f7de54d3c37a64e8}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables_a3909d058fe171237f7de54d3c37a64e8}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}{System\\+Debug}} {\\bfseries systemdebug} = new \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}{System\\+Debug}}()\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables_a6ee30b6de008d69f0960b6f27a81fada}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables_a6ee30b6de008d69f0960b6f27a81fada}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}{Build\\+Configuration}} {\\bfseries Build\\+Configuration} = new \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}{Build\\+Configuration}}()\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables_a09e06d867b8045fa1310bbb68183aadc}\\label{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables_a09e06d867b8045fa1310bbb68183aadc}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}{Build\\+Platform}} {\\bfseries Build\\+Platform} = new \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}{Build\\+Platform}}()\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Build\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_field_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug}{Bug}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields}{Card\\+Fields}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards}{Cards}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item}{Product\\+Backlog\\+Item}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Field\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Bug Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Bug@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Bug}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug_a45b134cba54edf235be401e25245f67b}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug_a45b134cba54edf235be401e25245f67b}} \nstring {\\bfseries field\\+Identifier} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug_af3a6275a25eebf20b3cc6d52de3b1935}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug_af3a6275a25eebf20b3cc6d52de3b1935}} \nstring {\\bfseries display\\+Format} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug_a8497b287089674cb21995440b3d069c4}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug_a8497b287089674cb21995440b3d069c4}} \nstring {\\bfseries display\\+Type} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug_ae53006a419a4760ba695ee2bd4e53350}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug_ae53006a419a4760ba695ee2bd4e53350}} \nstring {\\bfseries show\\+Empty\\+Fields} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Field\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Card\\+Fields Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Card\\+Fields@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Card\\+Fields}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields_a681969513afc056bd466c003611a0e02}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields_a681969513afc056bd466c003611a0e02}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards}{Cards}} {\\bfseries cards}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Field\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Cards Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Cards@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Cards}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards_a59c1460c2bc307f9b18ca95a83dade81}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards_a59c1460c2bc307f9b18ca95a83dade81}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug}{Bug}} $>$ {\\bfseries Bug}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards_a3e6190a13bface2f2cfaf7541a855f1e}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards_a3e6190a13bface2f2cfaf7541a855f1e}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item}{Product\\+Backlog\\+Item}} $>$ {\\bfseries Product\\+Backlog\\+Item}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Field\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Product\\+Backlog\\+Item Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Product\\+Backlog\\+Item@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Product\\+Backlog\\+Item}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item_a4e38df031210c34a252dfea874f11720}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item_a4e38df031210c34a252dfea874f11720}} \nstring {\\bfseries field\\+Identifier} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item_ab30dd3134567c775ac27cc74771440c6}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item_ab30dd3134567c775ac27cc74771440c6}} \nstring {\\bfseries display\\+Format} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item_ab290cc9937b015d620fb52e34422ddd0}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item_ab290cc9937b015d620fb52e34422ddd0}} \nstring {\\bfseries display\\+Type} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item_a8569b229203bbf88e3e81accd6d6e946}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item_a8569b229203bbf88e3e81accd6d6e946}} \nstring {\\bfseries show\\+Empty\\+Fields} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Field\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_style_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles}{Card\\+Styles}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill}{Fill}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules}{Rules}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}{Settings}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style}{Tag\\+Style}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Style\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Card\\+Styles Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Card\\+Styles@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Card\\+Styles}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles_abda57089ab01977073c7ef845602cdda}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles_abda57089ab01977073c7ef845602cdda}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules}{Rules}} {\\bfseries rules}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Style\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Fill Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Fill@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Fill}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill_a3d35810e1a43e6e56300be2428520b1c}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill_a3d35810e1a43e6e56300be2428520b1c}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill_a719c6156040f35b44749e281a2156928}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill_a719c6156040f35b44749e281a2156928}} \nstring {\\bfseries is\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill_a770a37ecac5b1129beebef242bd17665}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill_a770a37ecac5b1129beebef242bd17665}} \nstring {\\bfseries filter}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill_a596224d4b8f7f337db38d4809af0da7d}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill_a596224d4b8f7f337db38d4809af0da7d}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}{Settings}} {\\bfseries settings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Style\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Rules Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Rules@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Rules}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules_ad10b9b14a9ab3bcffb4f497b8f2b4ffe}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules_ad10b9b14a9ab3bcffb4f497b8f2b4ffe}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill}{Fill}} $>$ {\\bfseries fill}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules_a719e2c922ad66aa1d3fef0fe4ed23b43}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules_a719e2c922ad66aa1d3fef0fe4ed23b43}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style}{Tag\\+Style}} $>$ {\\bfseries tag\\+Style}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Style\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Settings Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Settings@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Settings}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings_a63a38f26c177bf95004ede430239370e}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings_a63a38f26c177bf95004ede430239370e}} \nstring {\\bfseries titlecolor} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings_a1cc406ddec19b956f3fad8d1e0740e1d}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings_a1cc406ddec19b956f3fad8d1e0740e1d}} \nstring {\\bfseries backgroundcolor}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Style\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Tag\\+Style Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Tag\\+Style@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Tag\\+Style}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style_a1a115d85ef59bf93f3e7464d70db7390}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style_a1a115d85ef59bf93f3e7464d70db7390}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style_a7093c8f25bbe04f9810d91c00fbfdddf}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style_a7093c8f25bbe04f9810d91c00fbfdddf}} \nstring {\\bfseries is\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style_aaedd930603c51c34dc3363ae9eb716f5}\\label{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style_aaedd930603c51c34dc3363ae9eb716f5}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}{Settings}} {\\bfseries settings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Card\\+Style\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard}{Dashboard}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Dash\\+Board\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 97.087379\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.150000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard) cw\n(TemplatesGeneratorTool.ViewModel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (TemplatesGeneratorTool.ViewModel.DashBoardResponse.Dashboard) 0.000000 0.000000 box\n (TemplatesGeneratorTool.ViewModel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Dashboard Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Dashboard@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Dashboard}}\nInheritance diagram for Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Dashboard\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard_ac978333bae64a15376ce2e0c9ffa09f9}\\label{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard_ac978333bae64a15376ce2e0c9ffa09f9}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries dashboard\\+Entries}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Dash\\+Board\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value_a2ab5be1725142fda437ce22e08cb4145}\\label{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value_a2ab5be1725142fda437ce22e08cb4145}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value_ae9a8e23fe4d04e457fdb50d840254255}\\label{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value_ae9a8e23fe4d04e457fdb50d840254255}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Dash\\+Board\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}{Result}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Get\\+Board\\+Rows\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 99.009901\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.050000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result) cw\n(TemplatesGeneratorTool.ViewModel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (TemplatesGeneratorTool.ViewModel.GetBoardRowsResponse.Result) 0.000000 0.000000 box\n (TemplatesGeneratorTool.ViewModel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Result Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Result@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Result}}\nInheritance diagram for Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Result\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result_aa01446d926e9cb012931db546650257d}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result_aa01446d926e9cb012931db546650257d}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Get\\+Board\\+Rows\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value_a2ed17fdead943b7d99a4ba5181a4aa42}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value_a2ed17fdead943b7d99a4ba5181a4aa42}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value_aa8e3fa9bdc8f4fcf000972f904a78e3d}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value_aa8e3fa9bdc8f4fcf000972f904a78e3d}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Get\\+Board\\+Rows\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column}{Column}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results}{Results}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem}{Workitem}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Get\\+Work\\+Items\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Column Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Column@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Column}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column_a1a86c9815be8c7d0a71cf00bd73687d3}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column_a1a86c9815be8c7d0a71cf00bd73687d3}} \nstring {\\bfseries reference\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column_a20579b38cab490fc45c110a5c736397d}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column_a20579b38cab490fc45c110a5c736397d}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column_affc80128ec2121ec5e1c1a5b97367f35}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column_affc80128ec2121ec5e1c1a5b97367f35}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Get\\+Work\\+Items\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 99.255583\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.037500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results) cw\n(TemplatesGeneratorTool.ViewModel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (TemplatesGeneratorTool.ViewModel.GetWorkItemsResponse.Results) 0.000000 0.000000 box\n (TemplatesGeneratorTool.ViewModel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Results Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Results@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Results}}\nInheritance diagram for Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Results\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_ad097654d3c3272b51763ff99d77a27b6}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_ad097654d3c3272b51763ff99d77a27b6}} \nstring {\\bfseries query\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_a248db1d152bcfff6a9d7ba9ff21d4f5c}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_a248db1d152bcfff6a9d7ba9ff21d4f5c}} \nstring {\\bfseries query\\+Result\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_a7f4860e5679fa71f02e35bde6c3e69cf}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_a7f4860e5679fa71f02e35bde6c3e69cf}} \nDate\\+Time {\\bfseries as\\+Of}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_aefea24688f8ef1eb424dfe4c522c3c2b}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_aefea24688f8ef1eb424dfe4c522c3c2b}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column}{Column}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries columns}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_adc6c859214c98b6b41e17ef5e7b899b2}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results_adc6c859214c98b6b41e17ef5e7b899b2}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem}{Workitem}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries work\\+Items}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Get\\+Work\\+Items\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Workitem Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Workitem@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Workitem}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem_a61f14d895bd5387c9f621cd4bb325b58}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem_a61f14d895bd5387c9f621cd4bb325b58}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem_ac0c95e7f35ff289765d7638a8aae3693}\\label{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem_ac0c95e7f35ff289765d7638a8aae3693}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Get\\+Work\\+Items\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans}{All\\+Plans}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings}{Card\\+Settings}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field}{Core\\+Field}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion}{Criterion}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan}{Delivery\\+Plan}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields}{Fields}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties}{Properties}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping}{Team\\+Backlog\\+Mapping}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+All\\+Plans Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+All\\+Plans@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+All\\+Plans}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans_a1fba491cb65b0e5612451a4069c77424}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans_a1fba491cb65b0e5612451a4069c77424}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans_a705d3245389f28bd3cc8d62044561a3d}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans_a705d3245389f28bd3cc8d62044561a3d}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Card\\+Settings Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Card\\+Settings@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Card\\+Settings}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings_acb756df4f2f866fd5ce9d6c0c18de698}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings_acb756df4f2f866fd5ce9d6c0c18de698}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields}{Fields}} {\\bfseries fields}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Core\\+Field Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Core\\+Field@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Core\\+Field}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field_a3f1e4c7c249c543021ab3240574337b1}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field_a3f1e4c7c249c543021ab3240574337b1}} \nstring {\\bfseries reference\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field_a51a5445ad357d151bddea1f1e3e6d2f0}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field_a51a5445ad357d151bddea1f1e3e6d2f0}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field_ac2c564a7bfd84a492e07e549707f40eb}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field_ac2c564a7bfd84a492e07e549707f40eb}} \nstring {\\bfseries field\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field_a5533099dc8ce9adab762bfe61bebf79e}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field_a5533099dc8ce9adab762bfe61bebf79e}} \nbool {\\bfseries is\\+Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Criterion Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Criterion@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Criterion}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion_a92fa7f4e5cde13a36b1f8e803ebc05d8}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion_a92fa7f4e5cde13a36b1f8e803ebc05d8}} \nstring {\\bfseries field\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion_a05f8d036016e12f2823b643cd320a2a1}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion_a05f8d036016e12f2823b643cd320a2a1}} \nstring {\\bfseries logical\\+Operator}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion_aadb42843944bfa8d363d28b1da34f5c8}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion_aadb42843944bfa8d363d28b1da34f5c8}} \nstring {\\bfseries Operator}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion_adfd471f2a6a77ec8512acfab87bd3f5e}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion_adfd471f2a6a77ec8512acfab87bd3f5e}} \nstring {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Delivery\\+Plan Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Delivery\\+Plan@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Delivery\\+Plan}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan_a316504b55a5d9d22cd18716014e75e15}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan_a316504b55a5d9d22cd18716014e75e15}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan_a1a6b90bad5f77638dfaf9486a6617248}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan_a1a6b90bad5f77638dfaf9486a6617248}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan_adf2960d81504258742efbbcd3a062dbf}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan_adf2960d81504258742efbbcd3a062dbf}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties}{Properties}} {\\bfseries properties}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Fields Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Fields@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Fields}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_ac18396161a54bf37afb51f3dbd4fd77b}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_ac18396161a54bf37afb51f3dbd4fd77b}} \nbool {\\bfseries show\\+Assigned\\+To}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_adc6f6fa6a979a0faad8816af1a95c809}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_adc6f6fa6a979a0faad8816af1a95c809}} \nstring {\\bfseries assigned\\+To\\+Display\\+Format}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_adcb14b34dcfb582e904fe978e12dcf2e}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_adcb14b34dcfb582e904fe978e12dcf2e}} \nbool {\\bfseries show\\+Tags}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_af65c8a98bf919eaf8d3897feb730c3b5}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_af65c8a98bf919eaf8d3897feb730c3b5}} \nbool {\\bfseries show\\+State}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_a1614af43206587b1e6997397248d5ef2}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields_a1614af43206587b1e6997397248d5ef2}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field}{Core\\+Field}} $>$ {\\bfseries core\\+Fields}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Properties Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Properties@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Properties}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties_a76fdfe1ed76e610e854663bedb6dcc33}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties_a76fdfe1ed76e610e854663bedb6dcc33}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping}{Team\\+Backlog\\+Mapping}} $>$ {\\bfseries team\\+Backlog\\+Mappings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties_ab040b6d1b4661a1b755265c88372d6c7}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties_ab040b6d1b4661a1b755265c88372d6c7}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion}{Criterion}} $>$ {\\bfseries criteria}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties_a52ca7c5cb3dabb325b8f143a689ad5ee}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties_a52ca7c5cb3dabb325b8f143a689ad5ee}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings}{Card\\+Settings}} {\\bfseries card\\+Settings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Team\\+Backlog\\+Mapping Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Team\\+Backlog\\+Mapping@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Team\\+Backlog\\+Mapping}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping_a6485f2467b6670016e041947b9a25a66}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping_a6485f2467b6670016e041947b9a25a66}} \nstring {\\bfseries team\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping_a77ab4b00c2ac02662e10844b6ea36e6f}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping_a77ab4b00c2ac02662e10844b6ea36e6f}} \nstring {\\bfseries category\\+Reference\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value_a27b0efd010e1fc47960137582dde7461}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value_a27b0efd010e1fc47960137582dde7461}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value_a9a391f8c98105c91d3cdfcf77edc8a42}\\label{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value_a9a391f8c98105c91d3cdfcf77edc8a42}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Plan\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment}{Comment}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments}{Comments}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context}{Iteration\\+Context}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf}{Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties}{Properties}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context}{Pull\\+Request\\+Thread\\+Context}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end}{Right\\+File\\+End}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start}{Right\\+File\\+Start}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context}{Thread\\+Context}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comment Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comment@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comment}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment_a73447bbb4e40967aed9313041162908d}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment_a73447bbb4e40967aed9313041162908d}} \nint {\\bfseries parent\\+Comment\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment_a76fba73563f4d827619ad729cb0e0034}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment_a76fba73563f4d827619ad729cb0e0034}} \nstring {\\bfseries content}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment_a6625a83d9ba77410798a0d424b0ec0ca}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment_a6625a83d9ba77410798a0d424b0ec0ca}} \nstring {\\bfseries comment\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comments Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comments@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comments}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments_a3171e063e7c0b6c8ec1aeb3d58c43ca0}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments_a3171e063e7c0b6c8ec1aeb3d58c43ca0}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments_acdc45cc8d36c91236f72ee21ea4cfe75}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments_acdc45cc8d36c91236f72ee21ea4cfe75}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Iteration\\+Context Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Iteration\\+Context@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Iteration\\+Context}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context_a772b9b5faf4cd9bbf61a910395011c36}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context_a772b9b5faf4cd9bbf61a910395011c36}} \nint {\\bfseries first\\+Comparing\\+Iteration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context_a4012b1e389417656bc070b995e788c44}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context_a4012b1e389417656bc070b995e788c44}} \nint {\\bfseries second\\+Comparing\\+Iteration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf_a36f728121e203dba3939822f874cfc02}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf_a36f728121e203dba3939822f874cfc02}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf_a1162c447fca5f950f03b5de08aa58db3}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf_a1162c447fca5f950f03b5de08aa58db3}} \nint {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Properties Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Properties@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Properties}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties_a93db80f4ad65c5155dd4ba326cef23ef}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties_a93db80f4ad65c5155dd4ba326cef23ef}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf}{Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}} {\\bfseries Microsoft\\+\\_\\+\\+Team\\+Foundation\\+\\_\\+\\+Discussion\\+\\_\\+\\+Supports\\+Markdown}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Pull\\+Request\\+Thread\\+Context Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Pull\\+Request\\+Thread\\+Context@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Pull\\+Request\\+Thread\\+Context}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context_a7b99e01367e01b6a58722709d25e59ff}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context_a7b99e01367e01b6a58722709d25e59ff}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context}{Iteration\\+Context}} {\\bfseries iteration\\+Context}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context_ae54ea45a8ee907551112df7334517fed}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context_ae54ea45a8ee907551112df7334517fed}} \nint {\\bfseries change\\+Tracking\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+End Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+End@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+End}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end_ab4f4cfabba416767b4457e220f2f6bd3}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end_ab4f4cfabba416767b4457e220f2f6bd3}} \nint {\\bfseries line}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end_af842467c236896d7a3d6113a7c66c202}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end_af842467c236896d7a3d6113a7c66c202}} \nint {\\bfseries offset}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+Start Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+Start@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+Start}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start_a829ef113ac6c5f649cb377954b1e2ba8}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start_a829ef113ac6c5f649cb377954b1e2ba8}} \nint {\\bfseries line}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start_a298a1f012daf233c09e9301da25cb20d}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start_a298a1f012daf233c09e9301da25cb20d}} \nint {\\bfseries offset}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Thread\\+Context Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Thread\\+Context@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Thread\\+Context}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context_a306f47d778ca771fc6a345763f0fcf10}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context_a306f47d778ca771fc6a345763f0fcf10}} \nstring {\\bfseries file\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context_a660916f856155807525ed2d5ec9db0ff}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context_a660916f856155807525ed2d5ec9db0ff}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start}{Right\\+File\\+Start}} {\\bfseries right\\+File\\+Start}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context_afa1e0ff08cb40124675dba9cb9b7478f}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context_afa1e0ff08cb40124675dba9cb9b7478f}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end}{Right\\+File\\+End}} {\\bfseries right\\+File\\+End}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_aec5c80904c36efefa46aa54377b0af91}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_aec5c80904c36efefa46aa54377b0af91}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment}{Comment}} $>$ {\\bfseries comments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_af2f0ecb9401a00eb0b2e7d20a1175d8b}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_af2f0ecb9401a00eb0b2e7d20a1175d8b}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties}{Properties}} {\\bfseries properties}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_a664fdb12254d2d5cd02a2cb23988ed54}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_a664fdb12254d2d5cd02a2cb23988ed54}} \nstring {\\bfseries status}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_a551ce24b2124b94d58285f30279ffa2f}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_a551ce24b2124b94d58285f30279ffa2f}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context}{Pull\\+Request\\+Thread\\+Context}} {\\bfseries pull\\+Request\\+Thread\\+Context}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_af952c589230044c1a08855b56e9a0ec5}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value_af952c589230044c1a08855b56e9a0ec5}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context}{Thread\\+Context}} {\\bfseries thread\\+Context}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Comment\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request}{Pull\\+Request}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer}{Reviewer}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Pull\\+Request Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Pull\\+Request@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Pull\\+Request}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request_a161f49e8bca47c6aebca140eb435651a}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request_a161f49e8bca47c6aebca140eb435651a}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request_aa21b7245d91a4c2ea48baf6ee9d89f57}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request_aa21b7245d91a4c2ea48baf6ee9d89f57}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Reviewer Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Reviewer@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Reviewer}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer_a67a2c7f2c0b39657ad7c7320b9376fd5}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer_a67a2c7f2c0b39657ad7c7320b9376fd5}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a830b37dbdfd3586b80ef9e5ddc10f565}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a830b37dbdfd3586b80ef9e5ddc10f565}} \nstring {\\bfseries pull\\+Request\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a9dde8449dd7c0c265e2e4f5ca60e99bb}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a9dde8449dd7c0c265e2e4f5ca60e99bb}} \nstring {\\bfseries title}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a9377567028c55c5b474320346a601cd8}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a9377567028c55c5b474320346a601cd8}} \nstring {\\bfseries description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a0f26195540cd47f15bc585ca06eb5996}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a0f26195540cd47f15bc585ca06eb5996}} \nstring {\\bfseries source\\+Ref\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_af7cf60ef93420fde50de2bee472d9375}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_af7cf60ef93420fde50de2bee472d9375}} \nstring {\\bfseries target\\+Ref\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a48bf30eb3d4e26ecfd01770cb5ad890e}\\label{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value_a48bf30eb3d4e26ecfd01770cb5ad890e}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer}{Reviewer}} $>$ {\\bfseries reviewers}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Pull\\+Request\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}{Child}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query}{query}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql}{Query\\+With\\+Wiql}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+By\\+Path\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Child Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Child@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Child}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_afca84df39c872f848a85c7bfa541190f}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_afca84df39c872f848a85c7bfa541190f}} \nbool {\\bfseries is\\+Folder} = false\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_adb5a2daa5ed69117be8bdae07b3c435d}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_adb5a2daa5ed69117be8bdae07b3c435d}} \nstring {\\bfseries wiql} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a7bb7b370e65b4568f53960014ce25d8b}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a7bb7b370e65b4568f53960014ce25d8b}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a317f814af4cd43405e04fdbb4a088625}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a317f814af4cd43405e04fdbb4a088625}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a66eebbcc3340a0384536c754e20680db}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a66eebbcc3340a0384536c754e20680db}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a2bc7acbc89b271efa4ee06ac657fc333}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a2bc7acbc89b271efa4ee06ac657fc333}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}{Child}} $>$ {\\bfseries children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a65fd71c44135d1b773f3f14f503f98ad}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child_a65fd71c44135d1b773f3f14f503f98ad}} \nbool {\\bfseries is\\+Public}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+By\\+Path\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Query\\+With\\+Wiql Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Query\\+With\\+Wiql@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Query\\+With\\+Wiql}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql_a87cafeb4afdb3bf3a7d3ae42536710d2}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql_a87cafeb4afdb3bf3a7d3ae42536710d2}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql_a19069a73ed969c95fd26ff070abe0f68}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql_a19069a73ed969c95fd26ff070abe0f68}} \nstring {\\bfseries wiql}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+By\\+Path\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+query Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+query@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+query}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_aae84b75edb93cef4298327e82018d410}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_aae84b75edb93cef4298327e82018d410}} \nstring {\\bfseries wiql} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_ae3ab9575e34f06d5b90531a741350970}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_ae3ab9575e34f06d5b90531a741350970}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_a2aaa0b822d022916d71d11a879f655f1}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_a2aaa0b822d022916d71d11a879f655f1}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_a4e84e999f247ad5f22885255cbd89312}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_a4e84e999f247ad5f22885255cbd89312}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_a275a514d4c68075a7d497c2b026601c0}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_a275a514d4c68075a7d497c2b026601c0}} \nbool {\\bfseries is\\+Folder}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_a211872aaa5cbab0479c1416816d561eb}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_a211872aaa5cbab0479c1416816d561eb}} \nbool {\\bfseries has\\+Children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_af9fdbfd195c447def7e0c4d486dba42a}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_af9fdbfd195c447def7e0c4d486dba42a}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}{Child}} $>$ {\\bfseries children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_af6d3dd82b0cbbaee83b38f67151e6bcb}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query_af6d3dd82b0cbbaee83b38f67151e6bcb}} \nbool {\\bfseries is\\+Public}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+By\\+Path\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}{Child}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}{Links}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query}{Query}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value}{Value}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql}{Wiql}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Child Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Child@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Child}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_aee41d77c3d1806b2e48f3add0e603582}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_aee41d77c3d1806b2e48f3add0e603582}} \nbool {\\bfseries is\\+Folder} = false\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a626352a01c278f914389c2c6cd11fe8a}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a626352a01c278f914389c2c6cd11fe8a}} \nbool {\\bfseries has\\+Children} = false\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a5fed7d29046d2ae590e419302c987145}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a5fed7d29046d2ae590e419302c987145}} \nstring {\\bfseries wiql} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_adb65202ae8873a8a98349c9a24db0946}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_adb65202ae8873a8a98349c9a24db0946}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a25dd3c0f09ca57f66c2bf96da5bf4b94}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a25dd3c0f09ca57f66c2bf96da5bf4b94}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a00450b2f3e91fe01cc16e35351f383db}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a00450b2f3e91fe01cc16e35351f383db}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a71a2f1bfa2ca4fbb1db8d80ea926fa51}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_a71a2f1bfa2ca4fbb1db8d80ea926fa51}} \nbool {\\bfseries is\\+Public}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_af79dc7f21b430e2071f946525a1145b4}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_af79dc7f21b430e2071f946525a1145b4}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}{Links}} {\\bfseries \\+\\_\\+links}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_aa6cba0bafbacd97e0f45a4b0b2e8b717}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_aa6cba0bafbacd97e0f45a4b0b2e8b717}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_aaf85db08ff26dd26421f13b312c426e9}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child_aaf85db08ff26dd26421f13b312c426e9}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}{Child}} $>$ {\\bfseries children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Links Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Links@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Links}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links_a3a742f30401b2ba6610a09a2f2a257de}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links_a3a742f30401b2ba6610a09a2f2a257de}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql}{Wiql}} {\\bfseries wiql}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Query Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Query@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Query}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query_a3ccef051ff74d634d054a7d33e55847a}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query_a3ccef051ff74d634d054a7d33e55847a}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query_ab587fbe453d02a48548d64ea0ca1da8e}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query_ab587fbe453d02a48548d64ea0ca1da8e}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Value}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a3da850e40a5c746d53e23aec7da73265}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a3da850e40a5c746d53e23aec7da73265}} \nstring {\\bfseries wiql} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_ac719f0aeec3c3e06769986ba09a2dfdd}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_ac719f0aeec3c3e06769986ba09a2dfdd}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a857a38aa899efb4c8133a61aec6833e0}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a857a38aa899efb4c8133a61aec6833e0}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a2e959f9295fdc2d4a6bbd6f9b27bd145}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a2e959f9295fdc2d4a6bbd6f9b27bd145}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a16e837df9efbee9e667a40c5cd8066d5}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a16e837df9efbee9e667a40c5cd8066d5}} \nbool {\\bfseries is\\+Folder}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_ad42df266497a9710bdeed488b31c9111}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_ad42df266497a9710bdeed488b31c9111}} \nbool {\\bfseries has\\+Children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a1bdc36efba2611532eab2be4d3cc9c17}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a1bdc36efba2611532eab2be4d3cc9c17}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}{Child}} $>$ {\\bfseries children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a1a5b43259c8508f2b6ab797e5b5894f4}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a1a5b43259c8508f2b6ab797e5b5894f4}} \nbool {\\bfseries is\\+Public}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a3b62bf293b076ada7f68a202fc948a82}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a3b62bf293b076ada7f68a202fc948a82}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}{Links}} {\\bfseries \\+\\_\\+links}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a2e0afa0d17c35da7bb967ff6c18788a5}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value_a2e0afa0d17c35da7bb967ff6c18788a5}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Wiql Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Wiql@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Wiql}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql_a2a0e89a69812e6b920eca51fbfbf9ea7}\\label{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql_a2a0e89a69812e6b920eca51fbfbf9ea7}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Query\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}{Approval}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver}{Approver}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact}{Artifact}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition}{Condition}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition}{Definition}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference}{Definition\\+Reference}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input}{Deployment\\+Input}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas}{Deploy\\+Phas}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step}{Deploy\\+Step}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment}{Environment}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options}{Environment\\+Options}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy}{Execution\\+Policy}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs}{Inputs}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner}{Owner}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution}{Parallel\\+Execution}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals}{Post\\+Deploy\\+Approvals}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals}{Pre\\+Deploy\\+Approvals}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project}{Project}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition}{Release\\+Definition}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy}{Retention\\+Policy}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task}{Task}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger}{Trigger}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}{Variables}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approval Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approval@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approval}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval_ab761ee47c9052fc45b0089ff8041c2ac}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval_ab761ee47c9052fc45b0089ff8041c2ac}} \nint {\\bfseries rank}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval_a51c26d76e07568201756978d134e4de6}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval_a51c26d76e07568201756978d134e4de6}} \nbool {\\bfseries is\\+Automated}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval_ac8273c40823ff0b3871aa5b80875a8f4}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval_ac8273c40823ff0b3871aa5b80875a8f4}} \nbool {\\bfseries is\\+Notification\\+On}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval_a4151d86b88351995d1a7fb08166e25c8}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval_a4151d86b88351995d1a7fb08166e25c8}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver}{Approver}} {\\bfseries approver}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approver Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approver@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approver}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver_aa86607ef167d7c96ec24ef69a4dea706}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver_aa86607ef167d7c96ec24ef69a4dea706}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver_a9813382b97c801d7828d7830f77dbd1a}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver_a9813382b97c801d7828d7830f77dbd1a}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver_ae90b67f67458edd5de824b4c2bdd49ec}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver_ae90b67f67458edd5de824b4c2bdd49ec}} \nstring {\\bfseries unique\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Artifact Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Artifact@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Artifact}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_a771adbb66b2c5c228bc65327fa69fab1}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_a771adbb66b2c5c228bc65327fa69fab1}} \nstring {\\bfseries source\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_ab3de6d8558842e104f4fec1e653376ab}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_ab3de6d8558842e104f4fec1e653376ab}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_a14f189fce5f7114051dc1cad2aa53cd5}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_a14f189fce5f7114051dc1cad2aa53cd5}} \nstring {\\bfseries alias}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_a23635e3d5687d273b1f0597785e145d4}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_a23635e3d5687d273b1f0597785e145d4}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference}{Definition\\+Reference}} {\\bfseries definition\\+Reference}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_afc5f29b7cdf28b4ba63095d4ef236b79}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact_afc5f29b7cdf28b4ba63095d4ef236b79}} \nbool {\\bfseries is\\+Primary}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Condition Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Condition@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Condition}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition_a9a7b11f6643ae43e63c020d111bc5160}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition_a9a7b11f6643ae43e63c020d111bc5160}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition_a4c65941de63ce82d1eca92b5d29247df}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition_a4c65941de63ce82d1eca92b5d29247df}} \nstring {\\bfseries condition\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition_acf372534f52eb8935c8cbb080e9dc57d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition_acf372534f52eb8935c8cbb080e9dc57d}} \nstring {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_aa520c465202dcc08f332038ceb9b0b88}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_aa520c465202dcc08f332038ceb9b0b88}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_a6c1535e6002f659d38b0c41d37c07591}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_a6c1535e6002f659d38b0c41d37c07591}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition\\+Reference Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition\\+Reference@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition\\+Reference}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference_ac3812075c26ca8bd4f4aa9b848a78ee3}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference_ac3812075c26ca8bd4f4aa9b848a78ee3}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition}{Definition}} {\\bfseries definition}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference_a8743850f594add28dd2433bd95100d6e}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference_a8743850f594add28dd2433bd95100d6e}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project}{Project}} {\\bfseries project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Phas Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Phas@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Phas}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a2c4ae32a2630da71b86b6c769784a6c8}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a2c4ae32a2630da71b86b6c769784a6c8}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input}{Deployment\\+Input}} {\\bfseries deployment\\+Input}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a430d7ff43d664e53078451f9dc58aa8d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a430d7ff43d664e53078451f9dc58aa8d}} \nint {\\bfseries rank}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a937444a75c681d4abf096786af2c5a94}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a937444a75c681d4abf096786af2c5a94}} \nstring {\\bfseries phase\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a830096dfabd9e98b4d4f4cad0e60679b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a830096dfabd9e98b4d4f4cad0e60679b}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a0f2e296e02cac56b8a41056d6191e7e7}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas_a0f2e296e02cac56b8a41056d6191e7e7}} \nI\\+List$<$ object $>$ {\\bfseries workflow\\+Tasks}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Step Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Step@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Step}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step_a38782ae2dc31eb2a5cd898f03e91463e}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step_a38782ae2dc31eb2a5cd898f03e91463e}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task}{Task}} $>$ {\\bfseries tasks}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deployment\\+Input Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deployment\\+Input@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deployment\\+Input}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_ab373533d0bcfe720e3e7c7c8d29e34d1}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_ab373533d0bcfe720e3e7c7c8d29e34d1}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution}{Parallel\\+Execution}} {\\bfseries parallel\\+Execution}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a86799a053e91bbe739947c5d3b6c3d4d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a86799a053e91bbe739947c5d3b6c3d4d}} \nbool {\\bfseries skip\\+Artifacts\\+Download}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a2f6c861a77fbe2b2e30d486860d9ea11}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a2f6c861a77fbe2b2e30d486860d9ea11}} \nint {\\bfseries timeout\\+In\\+Minutes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a2eeccb9fae61fdbab902f9ea987408ed}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a2eeccb9fae61fdbab902f9ea987408ed}} \nstring {\\bfseries queue\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a38f9b28752712fe37e18222397a7ff3d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a38f9b28752712fe37e18222397a7ff3d}} \nI\\+List$<$ object $>$ {\\bfseries demands}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a099db4a0d295f34fb66f6e39b17104f8}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a099db4a0d295f34fb66f6e39b17104f8}} \nbool {\\bfseries enable\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a76f770683ae929d99c4dbb543bc7b8cf}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_a76f770683ae929d99c4dbb543bc7b8cf}} \nbool {\\bfseries clean}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_affd076196a5cd0099dfbc5a42d012596}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input_affd076196a5cd0099dfbc5a42d012596}} \nstring {\\bfseries clean\\+Options}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_ae9dd3ffa6cb630e25afda87f8213f39f}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_ae9dd3ffa6cb630e25afda87f8213f39f}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a3f194681d12e4d0a9835634976bf5f49}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a3f194681d12e4d0a9835634976bf5f49}} \nint {\\bfseries rank}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a879f40472717497cec0c675313cd3566}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a879f40472717497cec0c675313cd3566}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner}{Owner}} {\\bfseries owner}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a71cb71a6f9494235c90b85687334059c}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a71cb71a6f9494235c90b85687334059c}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}{Variables}} {\\bfseries variables}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a3e1a9215cc8372c94c5bc860974a69ad}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a3e1a9215cc8372c94c5bc860974a69ad}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals}{Pre\\+Deploy\\+Approvals}} {\\bfseries pre\\+Deploy\\+Approvals}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a18fb4661f1ea6d0d9aadb8fb49047089}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a18fb4661f1ea6d0d9aadb8fb49047089}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step}{Deploy\\+Step}} {\\bfseries deploy\\+Step}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a3d993920e1c0021ddbd6b894c986e5fa}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a3d993920e1c0021ddbd6b894c986e5fa}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals}{Post\\+Deploy\\+Approvals}} {\\bfseries post\\+Deploy\\+Approvals}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_aa1eb6058fc6d05d47085fcdd473feec3}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_aa1eb6058fc6d05d47085fcdd473feec3}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas}{Deploy\\+Phas}} $>$ {\\bfseries deploy\\+Phases}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a1094297f5bdf9eba6dd61277f83a6eaa}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a1094297f5bdf9eba6dd61277f83a6eaa}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options}{Environment\\+Options}} {\\bfseries environment\\+Options}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_ac4e9c033dc8bbc12ea44d8bb9af6e05a}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_ac4e9c033dc8bbc12ea44d8bb9af6e05a}} \nI\\+List$<$ object $>$ {\\bfseries demands}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a0e11e32a6ba3b578d1c570e40d664ec8}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a0e11e32a6ba3b578d1c570e40d664ec8}} \nstring {\\bfseries queue\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_ad3895cea689f8b1d28c61f1d381c7042}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_ad3895cea689f8b1d28c61f1d381c7042}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition}{Condition}} $>$ {\\bfseries conditions}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_adb5c3c7d66ed80bc207351b819e18dcb}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_adb5c3c7d66ed80bc207351b819e18dcb}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy}{Execution\\+Policy}} {\\bfseries execution\\+Policy}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_aca8a80fc29b644900a504c2217ad462a}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_aca8a80fc29b644900a504c2217ad462a}} \nI\\+List$<$ object $>$ {\\bfseries schedules}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a0f759cbef2398004bed38aa3d895a54d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_a0f759cbef2398004bed38aa3d895a54d}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy}{Retention\\+Policy}} {\\bfseries retention\\+Policy}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment\\+Options Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment\\+Options@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment\\+Options}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_a10743b059e04309bfa19380d137eaff9}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_a10743b059e04309bfa19380d137eaff9}} \nstring {\\bfseries email\\+Notification\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_ab193bc4f33a573f97b84f98cc88bbf2b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_ab193bc4f33a573f97b84f98cc88bbf2b}} \nstring {\\bfseries email\\+Recipients}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_ab280afb8fa6934687621b16d1b874459}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_ab280afb8fa6934687621b16d1b874459}} \nbool {\\bfseries skip\\+Artifacts\\+Download}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_a5798e4d3007cc184a8861be6a7165ecf}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_a5798e4d3007cc184a8861be6a7165ecf}} \nint {\\bfseries timeout\\+In\\+Minutes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_a4e06f45aad915ab7f64568264ba00354}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options_a4e06f45aad915ab7f64568264ba00354}} \nbool {\\bfseries enable\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Execution\\+Policy Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Execution\\+Policy@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Execution\\+Policy}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy_ac40d7d6db8bd432fb711ede009bdc214}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy_ac40d7d6db8bd432fb711ede009bdc214}} \nint {\\bfseries concurrency\\+Count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy_a44d63c5c4d1423a7a848e9971d82f5c8}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy_a44d63c5c4d1423a7a848e9971d82f5c8}} \nint {\\bfseries queue\\+Depth\\+Count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Inputs Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Inputs@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Inputs}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a80a5b29088cc4e68e1ec9bd97040686b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a80a5b29088cc4e68e1ec9bd97040686b}} \nstring {\\bfseries Connected\\+Service\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9c2310b2e692e7619d1d8a0a9e22c691}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9c2310b2e692e7619d1d8a0a9e22c691}} \nstring {\\bfseries Web\\+App\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a386e960889fb64ab1b958f8615563505}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a386e960889fb64ab1b958f8615563505}} \nstring {\\bfseries Deploy\\+To\\+Slot\\+Flag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_abcaa909187fd91431ff416da5beed3c5}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_abcaa909187fd91431ff416da5beed3c5}} \nstring {\\bfseries Resource\\+Group\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a8541a224f32dc56cf307e78bbac1e42b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a8541a224f32dc56cf307e78bbac1e42b}} \nstring {\\bfseries Slot\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a218add58e87341b539de47d13745da67}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a218add58e87341b539de47d13745da67}} \nstring {\\bfseries Package}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a885045db700f8ac879aeb2cebdda2ac7}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a885045db700f8ac879aeb2cebdda2ac7}} \nstring {\\bfseries Set\\+Parameters\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a214405f30000f424247399892fca093e}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a214405f30000f424247399892fca093e}} \nstring {\\bfseries Use\\+Web\\+Deploy}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_adddd77f62255656664ae8f0ac490d0f8}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_adddd77f62255656664ae8f0ac490d0f8}} \nstring {\\bfseries Remove\\+Additional\\+Files\\+Flag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a7a0913fd120d40cbb128eb7cc0c2bb16}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a7a0913fd120d40cbb128eb7cc0c2bb16}} \nstring {\\bfseries Exclude\\+Files\\+From\\+App\\+Data\\+Flag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1eb961b3f751dc7fa4f2fbf81cce3259}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1eb961b3f751dc7fa4f2fbf81cce3259}} \nstring {\\bfseries Take\\+App\\+Offline\\+Flag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae9db1c667027b0a4c1d1fa887c12f867}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae9db1c667027b0a4c1d1fa887c12f867}} \nstring {\\bfseries Virtual\\+Application}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ab5232bbef8badb20a98f234b5a1a0137}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ab5232bbef8badb20a98f234b5a1a0137}} \nstring {\\bfseries Additional\\+Arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac3c4842b4bee0966859b6621fe0c6aa1}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac3c4842b4bee0966859b6621fe0c6aa1}} \nstring {\\bfseries Web\\+App\\+Uri}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_abf5f77c8ae7b7eff5eb8a4368512ce5f}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_abf5f77c8ae7b7eff5eb8a4368512ce5f}} \nstring {\\bfseries Connected\\+Service\\+Name\\+Selector}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4e1cef5bbdcde9e491c9df95d7aa98c7}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4e1cef5bbdcde9e491c9df95d7aa98c7}} \nstring {\\bfseries Connected\\+Service\\+Name\\+A\\+RM}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a047022a17d169e0fa54945ece9c6320f}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a047022a17d169e0fa54945ece9c6320f}} \nstring {\\bfseries Server\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a29bcf7d9130bcecb47a413399b59eaab}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a29bcf7d9130bcecb47a413399b59eaab}} \nstring {\\bfseries Database\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a0cc949259be6fbde5364a0c1b76131ac}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a0cc949259be6fbde5364a0c1b76131ac}} \nstring {\\bfseries Sql\\+Username}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a643da8c71b46d6019f3c7ccc701a9bf7}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a643da8c71b46d6019f3c7ccc701a9bf7}} \nstring {\\bfseries Sql\\+Password}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a66e74810ab5bfb2d8a8e2c4413093c23}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a66e74810ab5bfb2d8a8e2c4413093c23}} \nstring {\\bfseries Task\\+Name\\+Selector}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a6fe3975e5dab2b8f9c08a64740ab6610}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a6fe3975e5dab2b8f9c08a64740ab6610}} \nstring {\\bfseries Dacpac\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3d1a2d4750140332b0a76384dc5e0d9b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3d1a2d4750140332b0a76384dc5e0d9b}} \nstring {\\bfseries Sql\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1f8ab2ee5c01698535e2cf9da4e009a4}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1f8ab2ee5c01698535e2cf9da4e009a4}} \nstring {\\bfseries Sql\\+Inline}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad91c190a409f874b114263b4837477b6}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad91c190a409f874b114263b4837477b6}} \nstring {\\bfseries Publish\\+Profile}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a594f00c0487ebdd60973f90916353579}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a594f00c0487ebdd60973f90916353579}} \nstring {\\bfseries Sql\\+Additional\\+Arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aca0d3abe7c6fb5eef549ce0f3c065854}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aca0d3abe7c6fb5eef549ce0f3c065854}} \nstring {\\bfseries Inline\\+Additional\\+Arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a22dd1c32735c676156a407602503b489}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a22dd1c32735c676156a407602503b489}} \nstring {\\bfseries Ip\\+Detection\\+Method}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a03a7b4ecb328cd2901075019d629d70b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a03a7b4ecb328cd2901075019d629d70b}} \nstring {\\bfseries Start\\+Ip\\+Address}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a721662ad9dc99ef55cfad3e6d5e99d4f}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a721662ad9dc99ef55cfad3e6d5e99d4f}} \nstring {\\bfseries End\\+Ip\\+Address}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1c5c0615059752a293661838b38bf572}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1c5c0615059752a293661838b38bf572}} \nstring {\\bfseries Delete\\+Firewall\\+Rule}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a518d06f59c21d2bcbfd8356982e50abe}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a518d06f59c21d2bcbfd8356982e50abe}} \nstring {\\bfseries app\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a766de4d93adf83da3c86417b06c11235}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a766de4d93adf83da3c86417b06c11235}} \nstring {\\bfseries binary\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9bb0661b9d3b448049c0399d5889922a}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9bb0661b9d3b448049c0399d5889922a}} \nstring {\\bfseries symbols\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a34c2b0d975489febe8fc5b20430c0eb1}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a34c2b0d975489febe8fc5b20430c0eb1}} \nstring {\\bfseries native\\+Library\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ab3d81c16609ca0c0f0388851a93bbfed}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ab3d81c16609ca0c0f0388851a93bbfed}} \nstring {\\bfseries notes\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a96d29239c89406254f87327798e1311c}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a96d29239c89406254f87327798e1311c}} \nstring {\\bfseries notes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ada41b82cdfda138f3fc6212405c0e199}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ada41b82cdfda138f3fc6212405c0e199}} \nstring {\\bfseries publish}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a999c471da2c87978df9d0dfbe7230d39}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a999c471da2c87978df9d0dfbe7230d39}} \nstring {\\bfseries mandatory}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a74aa4a0bccff0f68bbe112a956be8afb}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a74aa4a0bccff0f68bbe112a956be8afb}} \nstring {\\bfseries notify}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a78e89a4035cbf724935d56bf1f7be4a6}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a78e89a4035cbf724935d56bf1f7be4a6}} \nstring {\\bfseries tags}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac6a1d0ba9f40a08e0eb25191f3a52b2a}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac6a1d0ba9f40a08e0eb25191f3a52b2a}} \nstring {\\bfseries teams}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4f0d43387406fd9162d3b10d6a246c73}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4f0d43387406fd9162d3b10d6a246c73}} \nstring {\\bfseries users}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a70a9a327a5e91032fd464a7d5b00382e}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a70a9a327a5e91032fd464a7d5b00382e}} \nstring {\\bfseries auth\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a0ad29bd7cb1959c434372d516ae3c896}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a0ad29bd7cb1959c434372d516ae3c896}} \nstring {\\bfseries service\\+Endpoint}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a0061841b857fb863509aad7732f4adb3}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a0061841b857fb863509aad7732f4adb3}} \nstring {\\bfseries service\\+Account\\+Key}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3df2108c38f722012f14a6bb8d973901}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3df2108c38f722012f14a6bb8d973901}} \nstring {\\bfseries apk\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae1fd2b150a1ebc98f9d21b2d91359d25}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae1fd2b150a1ebc98f9d21b2d91359d25}} \nstring {\\bfseries track}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4f6a5c2dbdf332fe013bce79a30ce908}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4f6a5c2dbdf332fe013bce79a30ce908}} \nstring {\\bfseries user\\+Fraction}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ab48335c8091e8afb22f51d01ecbd5bcc}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ab48335c8091e8afb22f51d01ecbd5bcc}} \nstring {\\bfseries change\\+Log\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad8215850ce3e909a4da04815ba391414}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad8215850ce3e909a4da04815ba391414}} \nstring {\\bfseries should\\+Attach\\+Metadata}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad752acf51405172c411c4a6a29e6ef19}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad752acf51405172c411c4a6a29e6ef19}} \nstring {\\bfseries metadata\\+Root\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3012dc2b06312f3b942a955162c8bae0}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3012dc2b06312f3b942a955162c8bae0}} \nstring {\\bfseries additional\\+Apks}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4bd19f92c21ca4a4cab5355ac4b0f1d8}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4bd19f92c21ca4a4cab5355ac4b0f1d8}} \nstring {\\bfseries min\\+Delta}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9b28c49066352ccee20c76feb74aa607}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9b28c49066352ccee20c76feb74aa607}} \nstring {\\bfseries Operator}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a291bb06f960f4fa4237c888b0fe2a82a}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a291bb06f960f4fa4237c888b0fe2a82a}} \nstring {\\bfseries username}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a214300296e7af07590eff36e514a57ba}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a214300296e7af07590eff36e514a57ba}} \nstring {\\bfseries password}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a5060acea9ca6d0dfb92fc3aada196151}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a5060acea9ca6d0dfb92fc3aada196151}} \nstring {\\bfseries filename}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae104363ce48192e7ac3bc49d70e44b3b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae104363ce48192e7ac3bc49d70e44b3b}} \nstring {\\bfseries arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac2ced61eb8d0e01f7611f1eeb9bbef32}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac2ced61eb8d0e01f7611f1eeb9bbef32}} \nstring {\\bfseries modify\\+Environment}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9aa0b01d8961405511e7b6ada6ec5a32}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9aa0b01d8961405511e7b6ada6ec5a32}} \nstring {\\bfseries working\\+Folder}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a2012c6cd38a0bc0d944b71907da1bf37}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a2012c6cd38a0bc0d944b71907da1bf37}} \nstring {\\bfseries fail\\+On\\+Standard\\+Error}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3da46e2ff840099027638dec8c83cc2d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3da46e2ff840099027638dec8c83cc2d}} \nstring {\\bfseries test\\+Machine\\+Group}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a239856345c6722be00c1aecb9e751dd0}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a239856345c6722be00c1aecb9e751dd0}} \nstring {\\bfseries drop\\+Location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a09cf69eb134d0bf5c7b3bb911fd1be43}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a09cf69eb134d0bf5c7b3bb911fd1be43}} \nstring {\\bfseries test\\+Selection}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4ac07f4317094def41412a9c130c181f}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a4ac07f4317094def41412a9c130c181f}} \nstring {\\bfseries test\\+Plan}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aab5ade2c89b83ef09dfd4819dff3a15e}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aab5ade2c89b83ef09dfd4819dff3a15e}} \nstring {\\bfseries test\\+Suite}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_afb9a9d600ec2d309727cbead97c264f5}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_afb9a9d600ec2d309727cbead97c264f5}} \nstring {\\bfseries test\\+Configuration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_afecd66c3cc6efed0f97676b97a012d10}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_afecd66c3cc6efed0f97676b97a012d10}} \nstring {\\bfseries sourcefilters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a944188218da501a15f81a7c91753f166}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a944188218da501a15f81a7c91753f166}} \nstring {\\bfseries test\\+Filter\\+Criteria}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac2dbebabc3a178d7c50ef7fff8db6dea}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac2dbebabc3a178d7c50ef7fff8db6dea}} \nstring {\\bfseries run\\+Settings\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aa93d0d68a8e79c55f1381679cd1571b1}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aa93d0d68a8e79c55f1381679cd1571b1}} \nstring {\\bfseries override\\+Run\\+Params}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a2f1b7d7d95ce3408a90d7b1a074c7311}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a2f1b7d7d95ce3408a90d7b1a074c7311}} \nstring {\\bfseries code\\+Coverage\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aec549e85fad9b9c940ae37f538031258}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aec549e85fad9b9c940ae37f538031258}} \nstring {\\bfseries custom\\+Slicing\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad01a9273fed53de54bfbb6038a15a159}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad01a9273fed53de54bfbb6038a15a159}} \nstring {\\bfseries test\\+Run\\+Title}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1e72a8245b960497db1e9ecff28d0b17}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1e72a8245b960497db1e9ecff28d0b17}} \nstring {\\bfseries platform}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aa6654438641db6d0ff9ccc98d3bca985}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aa6654438641db6d0ff9ccc98d3bca985}} \nstring {\\bfseries configuration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a558b8192997875236ade6767e8c24aae}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a558b8192997875236ade6767e8c24aae}} \nstring {\\bfseries test\\+Configurations}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a44439e5087635f5ce870f830e44281d1}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a44439e5087635f5ce870f830e44281d1}} \nstring {\\bfseries aut\\+Machine\\+Group}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a36487b076ebd4292cdbb3adb62cca0dd}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a36487b076ebd4292cdbb3adb62cca0dd}} \nstring {\\bfseries connected\\+Service\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a746074b06a690a50f0bce7c6566a17ae}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a746074b06a690a50f0bce7c6566a17ae}} \nstring {\\bfseries website\\+Url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_afbae5af6bb23ba9d3e0861bebe692161}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_afbae5af6bb23ba9d3e0861bebe692161}} \nstring {\\bfseries test\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a58cb1f85001ae1612a2c4d027fe0e235}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a58cb1f85001ae1612a2c4d027fe0e235}} \nstring {\\bfseries vu\\+Load}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a64304e85aab8faa063ac8869e94c0eb2}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a64304e85aab8faa063ac8869e94c0eb2}} \nstring {\\bfseries run\\+Duration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae1d0ef9b23d25eab4e1aa7dd771fbf33}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae1d0ef9b23d25eab4e1aa7dd771fbf33}} \nstring {\\bfseries geo\\+Location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3a28d2f4a4040aa9eb7b45034cfdb4d1}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3a28d2f4a4040aa9eb7b45034cfdb4d1}} \nstring {\\bfseries machine\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a84bb313c28044b4036818349948ff8ec}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a84bb313c28044b4036818349948ff8ec}} \nstring {\\bfseries avg\\+Response\\+Time\\+Threshold}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a2deafbad76eb230a2ff1e96f84ddcc57}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a2deafbad76eb230a2ff1e96f84ddcc57}} \nstring {\\bfseries Connected\\+Service\\+Name\\+Classic}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a7ca42cf632b5c646d6f979d12bc66b12}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a7ca42cf632b5c646d6f979d12bc66b12}} \nstring {\\bfseries action}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3dc73a9a571d823c59ad40e9e2dbfce0}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a3dc73a9a571d823c59ad40e9e2dbfce0}} \nstring {\\bfseries action\\+Classic}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1ea88e8d6cad564a3b0fcfad70c85540}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a1ea88e8d6cad564a3b0fcfad70c85540}} \nstring {\\bfseries resource\\+Group\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a6d6cf829c8b6270c5845edb2a28987c4}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a6d6cf829c8b6270c5845edb2a28987c4}} \nstring {\\bfseries cloud\\+Service}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a411b6accc47f179c918197b5d23f6694}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a411b6accc47f179c918197b5d23f6694}} \nstring {\\bfseries location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aaad582ffb99ad1cbcd5cdbf6d78980ff}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aaad582ffb99ad1cbcd5cdbf6d78980ff}} \nstring {\\bfseries csm\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_af2b95204c51f79a9a7a43838d2d9577f}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_af2b95204c51f79a9a7a43838d2d9577f}} \nstring {\\bfseries csm\\+Parameters\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a5988a2bfbdc689ca8eca7f268c753a31}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a5988a2bfbdc689ca8eca7f268c753a31}} \nstring {\\bfseries override\\+Parameters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a788acbdce397fcf2c4fd01920ab857c9}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a788acbdce397fcf2c4fd01920ab857c9}} \nstring {\\bfseries deployment\\+Mode}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9059cc2bb32d2b8080be72fda5145f8d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a9059cc2bb32d2b8080be72fda5145f8d}} \nstring {\\bfseries enable\\+Deployment\\+Prerequisites\\+For\\+Create}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_af6d08b82c46f04dcfba2c695c714e1ae}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_af6d08b82c46f04dcfba2c695c714e1ae}} \nstring {\\bfseries enable\\+Deployment\\+Prerequisites\\+For\\+Select}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a7dd012fa3ca75ca986abc6bc6e8d3549}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a7dd012fa3ca75ca986abc6bc6e8d3549}} \nstring {\\bfseries output\\+Variable}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a8fd3c6663ebd74afb883057565aafa8d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a8fd3c6663ebd74afb883057565aafa8d}} \nstring {\\bfseries Web\\+Site\\+Location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_abf7a9fd48e593da074d42dc4ab79532c}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_abf7a9fd48e593da074d42dc4ab79532c}} \nstring {\\bfseries Web\\+Site\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_af8f8cfc7542b2860125aa6f6393fc13c}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_af8f8cfc7542b2860125aa6f6393fc13c}} \nstring {\\bfseries Slot}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a663caf03b43e9a12af1e23a0b99388c6}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a663caf03b43e9a12af1e23a0b99388c6}} \nstring {\\bfseries do\\+Not\\+Delete}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a22fde316c05c2384bc5f1e49d59584d6}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a22fde316c05c2384bc5f1e49d59584d6}} \nstring {\\bfseries app\\+Identifier}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aa0e8a93f25bf0a3322b435ba78d410aa}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_aa0e8a93f25bf0a3322b435ba78d410aa}} \nstring {\\bfseries ipa\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a8fa0468965adc9bda67b326a32188b86}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a8fa0468965adc9bda67b326a32188b86}} \nstring {\\bfseries release\\+Track}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a903e9a267d8d6de6d06111fec6c787be}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a903e9a267d8d6de6d06111fec6c787be}} \nstring {\\bfseries skip\\+Binary\\+Upload}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a051ae1b3b3cbb5bfe179ff696626778b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a051ae1b3b3cbb5bfe179ff696626778b}} \nstring {\\bfseries upload\\+Metadata}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a09f089bccec95fd4f2509c0d78884bba}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a09f089bccec95fd4f2509c0d78884bba}} \nstring {\\bfseries metadata\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a7cac6b51e042d22a43c03e92e6e211de}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a7cac6b51e042d22a43c03e92e6e211de}} \nstring {\\bfseries upload\\+Screenshots}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad41ef55daa2940eb3e8680bbb8152fa0}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad41ef55daa2940eb3e8680bbb8152fa0}} \nstring {\\bfseries screenshots\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad02b8d52feccdfb67fdd2a6f209e729d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ad02b8d52feccdfb67fdd2a6f209e729d}} \nstring {\\bfseries should\\+Submit\\+For\\+Review}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a11343861f9d728105a817da42d52129b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a11343861f9d728105a817da42d52129b}} \nstring {\\bfseries should\\+Auto\\+Release}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a46bec4f965bd5013067ec6a8168ea44b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a46bec4f965bd5013067ec6a8168ea44b}} \nstring {\\bfseries release\\+Notes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae8224128b492196e31dc9d0b840f08af}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ae8224128b492196e31dc9d0b840f08af}} \nstring {\\bfseries should\\+Skip\\+Waiting\\+For\\+Processing}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac9ce99fcbce438487b5ceda38ed0f955}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_ac9ce99fcbce438487b5ceda38ed0f955}} \nstring {\\bfseries should\\+Skip\\+Submission}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a2b118218ffa61637f18c297cd38a256e}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a2b118218ffa61637f18c297cd38a256e}} \nstring {\\bfseries team\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a6d83ad6afebcc9cc6df3cd514afcc7df}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs_a6d83ad6afebcc9cc6df3cd514afcc7df}} \nstring {\\bfseries team\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Owner Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Owner@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Owner}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner_a633dd59a4d0aa138b1c0d1cc1697e495}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner_a633dd59a4d0aa138b1c0d1cc1697e495}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner_a90a0a1d9031d28da3293ab9ca03bdd8e}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner_a90a0a1d9031d28da3293ab9ca03bdd8e}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner_a047cb2c8cd6dc196104d00359a9784c2}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner_a047cb2c8cd6dc196104d00359a9784c2}} \nstring {\\bfseries unique\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Parallel\\+Execution Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Parallel\\+Execution@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Parallel\\+Execution}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution_a30b6d23389d44207df06ab725e83f84b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution_a30b6d23389d44207df06ab725e83f84b}} \nstring {\\bfseries parallel\\+Execution\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals_ab5c17a61fadbe5c5e0973858fab6e27d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals_ab5c17a61fadbe5c5e0973858fab6e27d}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}{Approval}} $>$ {\\bfseries approvals}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals_add3c6cde94fb0bfbf0691853ddf0ca9e}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals_add3c6cde94fb0bfbf0691853ddf0ca9e}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}{Approval}} $>$ {\\bfseries approvals}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Project Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Project@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Project}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project_a1b7b87af9cff7411624a9bed02835f99}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project_a1b7b87af9cff7411624a9bed02835f99}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project_a7f3466f6040eec66001380871526321d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project_a7f3466f6040eec66001380871526321d}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Release\\+Definition Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Release\\+Definition@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Release\\+Definition}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a6e7d0929e4f25179b8f32efd68f59a68}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a6e7d0929e4f25179b8f32efd68f59a68}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a79e6706e08c4fcb6d1ad15772873a689}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a79e6706e08c4fcb6d1ad15772873a689}} \nobject {\\bfseries last\\+Release}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a407f7f40feb041bdebaf20f7975ec48d}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a407f7f40feb041bdebaf20f7975ec48d}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_aaa9184d7d6bc0cccc30116dfc3af4751}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_aaa9184d7d6bc0cccc30116dfc3af4751}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}{Variables}} {\\bfseries variables}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_aacf55c822c64017831011a8f52a3176f}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_aacf55c822c64017831011a8f52a3176f}} \nI\\+List$<$ object $>$ {\\bfseries variable\\+Groups}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_ad4354e002f7864357c6ab1c4ec0ac821}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_ad4354e002f7864357c6ab1c4ec0ac821}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment}{Environment}} $>$ {\\bfseries environments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a914cd813bcc8a528496183d05f199580}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a914cd813bcc8a528496183d05f199580}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact}{Artifact}} $>$ {\\bfseries artifacts}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_ab9694bcf5561e170f772e804e6dcf6c4}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_ab9694bcf5561e170f772e804e6dcf6c4}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger}{Trigger}} $>$ {\\bfseries triggers}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a4425a95f8e63f8fe439f219d4a8ae3cc}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition_a4425a95f8e63f8fe439f219d4a8ae3cc}} \nstring {\\bfseries release\\+Name\\+Format}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Retention\\+Policy Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Retention\\+Policy@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Retention\\+Policy}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy_a6244199885f6cae444ea9040ede92eb2}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy_a6244199885f6cae444ea9040ede92eb2}} \nint {\\bfseries days\\+To\\+Keep}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy_a833e7df1248dd241a8b996b4fa792d6b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy_a833e7df1248dd241a8b996b4fa792d6b}} \nint {\\bfseries releases\\+To\\+Keep}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy_ab431facb8188b44ad8247e43cb5327ca}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy_ab431facb8188b44ad8247e43cb5327ca}} \nbool {\\bfseries retain\\+Build}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Task Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Task@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Task}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a8abbd9e75d4b02b29b85822e32b4bfe2}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a8abbd9e75d4b02b29b85822e32b4bfe2}} \nstring {\\bfseries task\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a163208fed7092d1ec2aa6c7497d0f53b}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a163208fed7092d1ec2aa6c7497d0f53b}} \nstring {\\bfseries version}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a5a638f694776215e250ada038ecfb958}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a5a638f694776215e250ada038ecfb958}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_acf1b0977a474dfc7634cf282edd4bf27}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_acf1b0977a474dfc7634cf282edd4bf27}} \nbool {\\bfseries enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a959daebdcca103882c539a5f1aef5d34}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a959daebdcca103882c539a5f1aef5d34}} \nbool {\\bfseries always\\+Run}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_ace43f136a32fb9863d927c08fd43b92c}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_ace43f136a32fb9863d927c08fd43b92c}} \nbool {\\bfseries continue\\+On\\+Error}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_abc2e5f2fd65201a622c1a452e726494a}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_abc2e5f2fd65201a622c1a452e726494a}} \nint {\\bfseries timeout\\+In\\+Minutes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_ae3b71c88b17ca448e5b93dad8b2f4b20}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_ae3b71c88b17ca448e5b93dad8b2f4b20}} \nstring {\\bfseries definition\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a23bc3f4927d21fd2557f7ab7851d2a74}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task_a23bc3f4927d21fd2557f7ab7851d2a74}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs}{Inputs}} {\\bfseries inputs}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Trigger Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Trigger@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Trigger}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger_a8bdef2f98892ee8510e0cb31462e1982}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger_a8bdef2f98892ee8510e0cb31462e1982}} \nstring {\\bfseries artifact\\+Alias}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger_ac719487b4de80ead00917417f29cee40}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger_ac719487b4de80ead00917417f29cee40}} \nstring {\\bfseries trigger\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Variables Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Variables@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Variables}}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release}{Release}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Release Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Release@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Release}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release_a7f4e5dc8f96e1441fc0958660704a545}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release_a7f4e5dc8f96e1441fc0958660704a545}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release_aff71f503069d0f9c57f01cf0a80dec14}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release_aff71f503069d0f9c57f01cf0a80dec14}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value_afb5394a3fe8da222a178e6e806f2872c}\\label{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value_afb5394a3fe8da222a178e6e806f2872c}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Release\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_repository_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_repository_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_repository_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository}{Repository}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Repository\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Repository Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Repository@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Repository}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository_a443cabc56e299869574a726ba5e7371d}\\label{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository_a443cabc56e299869574a726ba5e7371d}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository_a25068dbd4594d583515bb3c93ba780f0}\\label{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository_a25068dbd4594d583515bb3c93ba780f0}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Repository\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value_a0547a6060aa8fe67095fe830311ee2ba}\\label{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value_a0547a6060aa8fe67095fe830311ee2ba}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value_afde66aac0587f278ab01da21e25e8a8f}\\label{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value_afde66aac0587f278ab01da21e25e8a8f}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Repository\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization}{Authorization}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}{parameter}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service}{Service}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Service\\+End\\+Points\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Authorization Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Authorization@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Authorization}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization_a89bba93441920c0fbf005a934eeed2e7}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization_a89bba93441920c0fbf005a934eeed2e7}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}{parameter}} {\\bfseries parameters} = new \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}{parameter}} \\{ subscription\\+Id = \\char`\\\"{}\\char`\\\"{} \\}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization_a9904c30620d2950438c983f92f0b6d4e}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization_a9904c30620d2950438c983f92f0b6d4e}} \nstring {\\bfseries scheme}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Service\\+End\\+Points\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Service Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Service@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Service}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service_a60c19e07d0cd4047e9240627d58c0a14}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service_a60c19e07d0cd4047e9240627d58c0a14}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service_abe6c1d50ac869778f9b44db7e3fa11d4}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service_abe6c1d50ac869778f9b44db7e3fa11d4}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Service\\+End\\+Points\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Value}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a283dfd40444d79055c057cd5c88eedf3}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a283dfd40444d79055c057cd5c88eedf3}} \nstring {\\bfseries subscription\\+Id} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_af4e1f7cf94cf943081056566cc375942}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_af4e1f7cf94cf943081056566cc375942}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a2a356b27524d3be69b63112eff9b7bf7}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a2a356b27524d3be69b63112eff9b7bf7}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a5c7a2ed5d0a9b58ed446539fd11f782e}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a5c7a2ed5d0a9b58ed446539fd11f782e}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a9c91335bfaf5f073dfd682447748f339}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a9c91335bfaf5f073dfd682447748f339}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a766f0fdaa0a599f29d19e1294af65ed0}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a766f0fdaa0a599f29d19e1294af65ed0}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization}{Authorization}} {\\bfseries authorization}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a6e04a5a66a805992bd58ca8804e42e73}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value_a6e04a5a66a805992bd58ca8804e42e73}} \nbool {\\bfseries is\\+Ready}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Service\\+End\\+Points\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+parameter Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+parameter@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+parameter}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter_ae65bda60fc4cabb303817f5b4ab29772}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter_ae65bda60fc4cabb303817f5b4ab29772}} \nstring {\\bfseries subscription\\+Id} = \\char`\\\"{}\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter_a969b6b3f173d72d7fb3f12a2059a602b}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter_a969b6b3f173d72d7fb3f12a2059a602b}} \nstring {\\bfseries username}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter_aa19b7de451aebcd7a4dbb1ec29de9cc9}\\label{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter_aa19b7de451aebcd7a4dbb1ec29de9cc9}} \nstring {\\bfseries password}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Service\\+End\\+Points\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_source_code_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code}{Code}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source}{Git\\+Source}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters}{Parameters}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Source\\+Code\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Code Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Code@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Code}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code_af659c27ae4c78d14ad13674a30a0a3bb}\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code_af659c27ae4c78d14ad13674a30a0a3bb}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code_a03a16172f059d9d98f141d304ee85c35}\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code_a03a16172f059d9d98f141d304ee85c35}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Source\\+Code\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Git\\+Source Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Git\\+Source@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Git\\+Source}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source_ab5c23de77706b0d87f683f6f82787467}\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source_ab5c23de77706b0d87f683f6f82787467}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Source\\+Code\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Parameters Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Parameters@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Parameters}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters_a9750bbdbfd562736c964bd5a46b362e2}\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters_a9750bbdbfd562736c964bd5a46b362e2}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source}{Git\\+Source}} {\\bfseries git\\+Source}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Source\\+Code\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Value}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value_affff163626c11597354d48e523397c98}\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value_affff163626c11597354d48e523397c98}} \nstring {\\bfseries service\\+Endpoint\\+Id} = \\char`\\\"{}\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value_a1fa8bd4e81fad1256ce731575f153e6d}\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value_a1fa8bd4e81fad1256ce731575f153e6d}} \nbool {\\bfseries delete\\+Service\\+Endpoint\\+After\\+Import\\+Is\\+Done} = true\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value_adeada7b965588f933b95e236ff5c3c35}\\label{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value_adeada7b965588f933b95e236ff5c3c35}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters}{Parameters}} {\\bfseries parameters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Source\\+Code\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_teams_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_teams_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_teams_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team}{Team}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Teams\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Team Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Team@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Team}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team_acb59c348a06ea2c60040cce5e242da2e}\\label{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team_acb59c348a06ea2c60040cce5e242da2e}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team_a9791ef6d060c878531144c98f4c6a6f3}\\label{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team_a9791ef6d060c878531144c98f4c6a6f3}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Teams\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value_a65bc346e80fb6ab81a248cda3f10edd8}\\label{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value_a65bc346e80fb6ab81a248cda3f10edd8}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value_a4d4c214685f06bf31f1ad04ac0bcc2ac}\\label{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value_a4d4c214685f06bf31f1ad04ac0bcc2ac}} \nstring {\\bfseries description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Teams\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}{Dashboard}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position}{Position}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version}{Settings\\+Version}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size}{Size}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value}{Value}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget}{Widget}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Widget\\+And\\+Chart\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Dashboard Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Dashboard@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Dashboard}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard_a44021a2e3ab5a06ab4e240a68490a87a}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard_a44021a2e3ab5a06ab4e240a68490a87a}} \nstring {\\bfseries e\\+Tag} = \\char`\\\"{}\\$e\\+Tag\\$\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Widget\\+And\\+Chart\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Position Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Position@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Position}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position_a4d19c60f9ddb7937a047d4e906a18f85}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position_a4d19c60f9ddb7937a047d4e906a18f85}} \nint {\\bfseries row}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position_a983021e38e6e4eaaffb333e1cbb11232}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position_a983021e38e6e4eaaffb333e1cbb11232}} \nint {\\bfseries column}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Widget\\+And\\+Chart\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Settings\\+Version Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Settings\\+Version@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Settings\\+Version}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version_aaf706eefe326678f8223769360501da2}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version_aaf706eefe326678f8223769360501da2}} \nint {\\bfseries major}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version_ad324aa849cdd74903ed41f32f4a726d4}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version_ad324aa849cdd74903ed41f32f4a726d4}} \nint {\\bfseries minor}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version_a1fb2e8d98d82e357c22178c29f4596b7}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version_a1fb2e8d98d82e357c22178c29f4596b7}} \nint {\\bfseries patch}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Widget\\+And\\+Chart\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Size Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Size@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Size}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size_a6bfe41ace6ca24ae523c35944624128e}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size_a6bfe41ace6ca24ae523c35944624128e}} \nint {\\bfseries row\\+Span}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size_a59f85888773e62833b16650db365026d}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size_a59f85888773e62833b16650db365026d}} \nint {\\bfseries column\\+Span}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Widget\\+And\\+Chart\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Value}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a118636b0c921bd76f1c288fe349a50b2}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a118636b0c921bd76f1c288fe349a50b2}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}{Dashboard}} {\\bfseries dashboard} = new \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}{Dashboard}}() \\{ e\\+Tag = \\char`\\\"{}\\$e\\+Tag\\$\\char`\\\"{} \\}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a5275f16fcce463c10b9f717c3c51ca7a}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a5275f16fcce463c10b9f717c3c51ca7a}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_aeddbeae9ff68e4625d91fc9c9aec7e90}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_aeddbeae9ff68e4625d91fc9c9aec7e90}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position}{Position}} {\\bfseries position}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a7a2a9eb0c801762cae7710a82f537765}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a7a2a9eb0c801762cae7710a82f537765}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size}{Size}} {\\bfseries size}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a00078ef8995d038f610c2e95c4849424}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a00078ef8995d038f610c2e95c4849424}} \nstring {\\bfseries settings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_ac40970a04ee3de060d16f2d35a8d7f23}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_ac40970a04ee3de060d16f2d35a8d7f23}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version}{Settings\\+Version}} {\\bfseries settings\\+Version}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a1473a6b2f5dbb188fa4c7828855b3d37}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value_a1473a6b2f5dbb188fa4c7828855b3d37}} \nstring {\\bfseries contribution\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Widget\\+And\\+Chart\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Widget Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Widget@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Widget}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget_ae41b9ab8da5844b6d2aa0752b6e755ea}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget_ae41b9ab8da5844b6d2aa0752b6e755ea}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget_acebd461467fe27052945cb1cfbbcc1a3}\\label{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget_acebd461467fe27052945cb1cfbbcc1a3}} \nI\\+List$<$ \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Widget\\+And\\+Chart\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes}{Attributes}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields}{Fields}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations}{Relations}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value}{Value}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{Work\\+Items}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Work\\+Item\\+Fetch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Attributes Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Attributes@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Attributes}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes_a3899821a24f7519a9e4e375e978e98cc}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes_a3899821a24f7519a9e4e375e978e98cc}} \nstring {\\bfseries is\\+Locked}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes_a0ebaacf76544873b0c4d4375daca56ce}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes_a0ebaacf76544873b0c4d4375daca56ce}} \nstring {\\bfseries comment}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Work\\+Item\\+Fetch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Fields Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Fields@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Fields}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a45623af0ca1600dc00d35269ee5b2209}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a45623af0ca1600dc00d35269ee5b2209}} \nstring {\\bfseries System\\+Area\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_ab40188df9e1fa8177bb741265ed07ad4}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_ab40188df9e1fa8177bb741265ed07ad4}} \nstring {\\bfseries System\\+Team\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a78a514576cd11f399b6714617f1665e0}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a78a514576cd11f399b6714617f1665e0}} \nstring {\\bfseries System\\+Iteration\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_af3184f4764f1accc54ea222cf5d6823b}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_af3184f4764f1accc54ea222cf5d6823b}} \nstring {\\bfseries System\\+Work\\+Item\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a56bd8025e8f4e85625e7d8577c91e2c2}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a56bd8025e8f4e85625e7d8577c91e2c2}} \nstring {\\bfseries System\\+State}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_afac12997c4856d5b17059c1b0ee6e16a}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_afac12997c4856d5b17059c1b0ee6e16a}} \nstring {\\bfseries System\\+Reason}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_af00032729e6673a6c87d8799e88a27ec}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_af00032729e6673a6c87d8799e88a27ec}} \nDate\\+Time {\\bfseries System\\+Created\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a75ce5fc7be8feed79c99b7636c0c4d79}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a75ce5fc7be8feed79c99b7636c0c4d79}} \nstring {\\bfseries System\\+Created\\+By}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a7500ce909a2fc078a26d4fc82eeef807}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a7500ce909a2fc078a26d4fc82eeef807}} \nDate\\+Time {\\bfseries System\\+Changed\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a25900cbcaff6ca9d4f5fac4721e543b2}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a25900cbcaff6ca9d4f5fac4721e543b2}} \nstring {\\bfseries System\\+Changed\\+By}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_aa19646215db26e94d1664a8c76242ac2}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_aa19646215db26e94d1664a8c76242ac2}} \nstring {\\bfseries System\\+Title}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a91ad8317108f5208be334923da6010b1}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a91ad8317108f5208be334923da6010b1}} \nfloat {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Scheduling\\+Effort}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a6baa4a7747e158fe885433c2e1bc8d04}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a6baa4a7747e158fe885433c2e1bc8d04}} \nstring {\\bfseries System\\+Description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a0e476032acc74976eefc53f60196349d}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a0e476032acc74976eefc53f60196349d}} \nstring {\\bfseries System\\+Assigned\\+To}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_aff8db890aeab5f1e2698f54af7a76058}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_aff8db890aeab5f1e2698f54af7a76058}} \nfloat {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Scheduling\\+Remaining\\+Work}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a8ed9724ede04d0fe653f20780336242d}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a8ed9724ede04d0fe653f20780336242d}} \nfloat {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Common\\+Priority}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a56d9cc68d898ee549087b1831b557794}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a56d9cc68d898ee549087b1831b557794}} \nstring {\\bfseries System\\+Board\\+Lane}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a2b2b537b1a2deb5abb93528918b3e052}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a2b2b537b1a2deb5abb93528918b3e052}} \nstring {\\bfseries System\\+Tags}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a5e5a6bffbbea6a72aa6c4062b1e10133}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a5e5a6bffbbea6a72aa6c4062b1e10133}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+T\\+C\\+M\\+Steps}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a9aa625252644667607bc0c12f1a03c21}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a9aa625252644667607bc0c12f1a03c21}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+T\\+C\\+M\\+Parameters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_ae079e4c0bf70dd3c271a75757be22b89}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_ae079e4c0bf70dd3c271a75757be22b89}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+T\\+C\\+M\\+Local\\+Data\\+Source}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a78f76a189bab963e5ea53554befff96e}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_a78f76a189bab963e5ea53554befff96e}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+T\\+C\\+M\\+Automation\\+Status}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_ab617410c7610c02da27f5e96a71a1a6d}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields_ab617410c7610c02da27f5e96a71a1a6d}} \nstring {\\bfseries System\\+History}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Work\\+Item\\+Fetch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Relations Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Relations@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Relations}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations_ad309a858400b6dfb3ee59dde4042cfd1}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations_ad309a858400b6dfb3ee59dde4042cfd1}} \nstring {\\bfseries rel}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations_a6c926c5f7589702d85c26aa9a78334c6}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations_a6c926c5f7589702d85c26aa9a78334c6}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations_a41b54378c223e826d29af0cc8bc686e8}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations_a41b54378c223e826d29af0cc8bc686e8}} \nDictionary$<$ string, string $>$ {\\bfseries attributes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Work\\+Item\\+Fetch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Value Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Value@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_ab498c33bc993e4293b9d59efa097329b}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_ab498c33bc993e4293b9d59efa097329b}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_ad0c9eff1b121ac7f2d8b6800b89572b7}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_ad0c9eff1b121ac7f2d8b6800b89572b7}} \nint {\\bfseries rev}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_aa88e0e20098cdbcc3821f8da1b377282}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_aa88e0e20098cdbcc3821f8da1b377282}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields}{Fields}} {\\bfseries fields}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_ae7f7685b4af50a7a744768dd9b8b7820}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_ae7f7685b4af50a7a744768dd9b8b7820}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations}{Relations}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries relations}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_abb85efbd3086d5add5c7101d2235d46a}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value_abb85efbd3086d5add5c7101d2235d46a}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Work\\+Item\\+Fetch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 93.676815\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.337500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems) cw\n(TemplatesGeneratorTool.ViewModel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (TemplatesGeneratorTool.ViewModel.WorkItemFetchResponse.WorkItems) 0.000000 0.000000 box\n (TemplatesGeneratorTool.ViewModel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items.tex",
    "content": "\\hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items Class Reference}\n\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items@{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}}\nInheritance diagram for Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items_a57d6663c312c9e721e9dd9361e4ef6ab}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items_a57d6663c312c9e721e9dd9361e4ef6ab}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items_ad0c131ead2429c1cad29975be6d1aec8}\\label{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items_ad0c131ead2429c1cad29975be6d1aec8}} \n\\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/\\+View\\+Model/Work\\+Item\\+Fetch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_bundle_config.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_bundle_config}{}\\section{Vsts\\+Demo\\+Builder.\\+Bundle\\+Config Class Reference}\n\\label{class_vsts_demo_builder_1_1_bundle_config}\\index{Vsts\\+Demo\\+Builder.\\+Bundle\\+Config@{Vsts\\+Demo\\+Builder.\\+Bundle\\+Config}}\n\\subsection*{Static Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_bundle_config_aa07a45768680a6710f679b0c8d88e902}\\label{class_vsts_demo_builder_1_1_bundle_config_aa07a45768680a6710f679b0c8d88e902}} \nstatic void {\\bfseries Register\\+Bundles} (Bundle\\+Collection bundles)\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+App\\+\\_\\+\\+Start/Bundle\\+Config.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_controllers_1_1_account_controller.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 138.408304\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.612500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsDemoBuilder.Controllers.AccountController) cw\n(Controller) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsDemoBuilder.Controllers.AccountController) 0.000000 0.000000 box\n (Controller) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_controllers_1_1_account_controller.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_account_controller}{}\\section{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller Class Reference}\n\\label{class_vsts_demo_builder_1_1_controllers_1_1_account_controller}\\index{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller@{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller}}\nInheritance diagram for Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_demo_builder_1_1_controllers_1_1_account_controller}\n\\end{center}\n\\end{figure}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \nAction\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_a6d42be6f0b98a238c2575e225940ff6e}{Verify}} (\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_login_model}{Login\\+Model}} model, string id)\n\\begin{DoxyCompactList}\\small\\item\\em Verify View \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_ae8d17a5a4622885c1ae042f2cbe8103e}{Get\\+Account\\+Name}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Get Account at the end of project provision \\end{DoxyCompactList}\\item \nAction\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_ac36624619c06ea1c9e9df88c06d9a80f}{Index}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Index view which calls V\\+S\\+TS O\\+Auth \\end{DoxyCompactList}\\item \nAction\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_abbf468c027b199a26ccc4a12fdad7fbe}{Sign\\+Out}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Sign out \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_ae8d17a5a4622885c1ae042f2cbe8103e}\\label{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_ae8d17a5a4622885c1ae042f2cbe8103e}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller}!Get\\+Account\\+Name@{Get\\+Account\\+Name}}\n\\index{Get\\+Account\\+Name@{Get\\+Account\\+Name}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller}}\n\\subsubsection{\\texorpdfstring{Get\\+Account\\+Name()}{GetAccountName()}}\n{\\footnotesize\\ttfamily string Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller.\\+Get\\+Account\\+Name (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nGet Account at the end of project provision \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_ac36624619c06ea1c9e9df88c06d9a80f}\\label{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_ac36624619c06ea1c9e9df88c06d9a80f}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller}!Index@{Index}}\n\\index{Index@{Index}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller}}\n\\subsubsection{\\texorpdfstring{Index()}{Index()}}\n{\\footnotesize\\ttfamily Action\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller.\\+Index (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nIndex view which calls V\\+S\\+TS O\\+Auth \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_abbf468c027b199a26ccc4a12fdad7fbe}\\label{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_abbf468c027b199a26ccc4a12fdad7fbe}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller}!Sign\\+Out@{Sign\\+Out}}\n\\index{Sign\\+Out@{Sign\\+Out}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller}}\n\\subsubsection{\\texorpdfstring{Sign\\+Out()}{SignOut()}}\n{\\footnotesize\\ttfamily Action\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller.\\+Sign\\+Out (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nSign out \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_a6d42be6f0b98a238c2575e225940ff6e}\\label{class_vsts_demo_builder_1_1_controllers_1_1_account_controller_a6d42be6f0b98a238c2575e225940ff6e}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller}!Verify@{Verify}}\n\\index{Verify@{Verify}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Account\\+Controller}}\n\\subsubsection{\\texorpdfstring{Verify()}{Verify()}}\n{\\footnotesize\\ttfamily Action\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller.\\+Verify (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_login_model}{Login\\+Model}}}]{model,  }\\item[{string}]{id }\\end{DoxyParamCaption})}\n\n\n\nVerify View \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em model} & \\\\\n\\hline\n{\\em id} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Controllers/Account\\+Controller.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 128.205128\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.900000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsDemoBuilder.Controllers.EnvironmentController) cw\n(Controller) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsDemoBuilder.Controllers.EnvironmentController) 0.000000 0.000000 box\n (Controller) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_controllers_1_1_environment_controller.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller}{}\\section{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller Class Reference}\n\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller}\\index{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller}}\nInheritance diagram for Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller}\n\\end{center}\n\\end{figure}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a2f78966d13ebfc59cdc8e09014229705}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a2f78966d13ebfc59cdc8e09014229705}} \nvoid {\\bfseries Add\\+Message} (string id, string message)\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8bc07279221b8cf2476ab015e6a0a38e}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8bc07279221b8cf2476ab015e6a0a38e}} \nvoid {\\bfseries Remove\\+Key} (string id)\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_aba5b74b6978113f797e33255ed69ce5e}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_aba5b74b6978113f797e33255ed69ce5e}} \nContent\\+Result {\\bfseries Get\\+Current\\+Progress} (string id)\n\\item \nstring \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ae36d3258bea98714970d2fdc5fec6bf3}{Get\\+Status\\+Message}} (string id)\n\\begin{DoxyCompactList}\\small\\item\\em Get status message to resplay \\end{DoxyCompactList}\\item \nContent\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a386641d021e2872eb8a614db7d3b1a6e}{Get\\+Template}} (string Template\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get Template Name to display \\end{DoxyCompactList}\\item \nJson\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a3b9b20acff06038e1aed58b3bfaaebd4}{Get\\+Groups}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Get groups. based on group selection get template \\end{DoxyCompactList}\\item \nAction\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a05d657b039fcb027c054e24cf53e5941}{Create}} (\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}} model)\n\\begin{DoxyCompactList}\\small\\item\\em Call to Create View() \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ac983d0c1775718689aff6f7a17c0b929}{Generate\\+Request\\+Post\\+Data}} (string app\\+Secret, string auth\\+Code, string callback\\+Url)\n\\begin{DoxyCompactList}\\small\\item\\em Formatting the request for O\\+Auth \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}} \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a9726501c86319171adf04dedab87a6a0}{Get\\+Access\\+Token}} (string body)\n\\begin{DoxyCompactList}\\small\\item\\em Generate Access Token \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_profile_details}{Profile\\+Details}} \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8d6dfbb168d7d87651c361e953feb9d9}{Get\\+Profile}} (\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}} access\\+Details)\n\\begin{DoxyCompactList}\\small\\item\\em Get Profile details \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}} \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8c1a9720f499884448fa692a6fc8b514}{Refresh\\+\\_\\+\\+Access\\+Token}} (string refresh\\+Token)\n\\begin{DoxyCompactList}\\small\\item\\em Refresh access token \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}{Accounts.\\+Account\\+List}} \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_af9d72d23dec7248e6a8b5106209e6e6d}{Get\\+Accounts}} (string Member\\+ID, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}} Details)\n\\begin{DoxyCompactList}\\small\\item\\em Get list of accounts \\end{DoxyCompactList}\\item \nJson\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a1a7a16aa8a18f17e1fafb079e5ec5de4}{Get\\+Members}} (string account\\+Name, string Access\\+Token)\n\\begin{DoxyCompactList}\\small\\item\\em Get members of the account-\\/ Not using now \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ad6b69ff448fc483cb517729d55c55dcc}{Start\\+Environment\\+Setup\\+Process}} (\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}} model)\n\\begin{DoxyCompactList}\\small\\item\\em Start the process \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ada15b3cbf0e3c37b0c9e0036b45671c2}{End\\+Environment\\+Setup\\+Process}} (I\\+Async\\+Result result)\n\\begin{DoxyCompactList}\\small\\item\\em End the process \\end{DoxyCompactList}\\item \nstring \\mbox{[}$\\,$\\mbox{]} \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a78d06b5fc70004a4b23a10a22670b04e}{Create\\+Project\\+Environment}} (\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}} model, string P\\+AT, string account\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em start provisioning project -\\/ calls required \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a990cb5c0fd92cee0d4926b92a5951436}{Rename\\+Iterations}} (\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}} model, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}} \\+\\_\\+default\\+Configuration, Dictionary$<$ string, string $>$ rename\\+Iterations)\n\\begin{DoxyCompactList}\\small\\item\\em Rename Iterations \\end{DoxyCompactList}\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_affdad07d90ffee27284c3215d538d673}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_affdad07d90ffee27284c3215d538d673}} \nvoid {\\bfseries Create\\+Release} (string templates\\+Folder, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}} model, string json, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}} \\+\\_\\+configuration, string id, int release\\+Definition\\+Id)\n\\item \nvoid \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ab1802a3d21c416002c2c7ff57019b6f8}{Create\\+Query\\+And\\+Widgets}} (string templates\\+Folder, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}} model, List$<$ string $>$ lst\\+Queries, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}} \\+\\_\\+default\\+Configuration, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}} \\+\\_\\+configuration2, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}} \\+\\_\\+configuration3, \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}} release\\+Config)\n\\begin{DoxyCompactList}\\small\\item\\em Dashboard set up operations \\end{DoxyCompactList}\\item \nJson\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a4ea213c905f5eb8d420e09d7a919a55d}{Check\\+For\\+Installed\\+Extensions}} (string selected\\+Template, string token, string \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}{Account}})\n\\begin{DoxyCompactList}\\small\\item\\em Checking for Extenison in the account \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8c6be4b2363680d958e6fdee4e74b91a}{Install\\+Extensions}} (\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}} model, string account\\+Name, string P\\+AT)\n\\begin{DoxyCompactList}\\small\\item\\em Installing \\mbox{\\hyperlink{namespace_vsts_demo_builder_1_1_extensions}{Extensions}} \\end{DoxyCompactList}\\item \nJson\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a69d4ebc71322d09e96bab8cd604ebb46}{Send\\+Email}} (\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_email}{Email}} model)\n\\begin{DoxyCompactList}\\small\\item\\em Mail Configuration \\end{DoxyCompactList}\\item \nJson\\+Result \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ac7c3e39375100aa8c8c3597d5c95c7a1}{Check\\+Session}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Get Session data \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_af94f136b0440248a4048ff67e1ca68b2}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_af94f136b0440248a4048ff67e1ca68b2}} \nbool {\\bfseries is\\+Default\\+Repo\\+Todetele} = true\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a84d9d22a1ae3761fd179efca7282ed22}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a84d9d22a1ae3761fd179efca7282ed22}} \nstring {\\bfseries website\\+Url} = string.\\+Empty\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_aaa5b31ea5984e96e2074aa83a18da16c}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_aaa5b31ea5984e96e2074aa83a18da16c}} \nstring {\\bfseries template\\+Used} = string.\\+Empty\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a34b9e8b110384be7a22653ab3203d407}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a34b9e8b110384be7a22653ab3203d407}} \nstring {\\bfseries project\\+Name} = string.\\+Empty\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a4ea213c905f5eb8d420e09d7a919a55d}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a4ea213c905f5eb8d420e09d7a919a55d}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Check\\+For\\+Installed\\+Extensions@{Check\\+For\\+Installed\\+Extensions}}\n\\index{Check\\+For\\+Installed\\+Extensions@{Check\\+For\\+Installed\\+Extensions}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Check\\+For\\+Installed\\+Extensions()}{CheckForInstalledExtensions()}}\n{\\footnotesize\\ttfamily Json\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Check\\+For\\+Installed\\+Extensions (\\begin{DoxyParamCaption}\\item[{string}]{selected\\+Template,  }\\item[{string}]{token,  }\\item[{string}]{Account }\\end{DoxyParamCaption})}\n\n\n\nChecking for Extenison in the account \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em selected\\+Template} & \\\\\n\\hline\n{\\em token} & \\\\\n\\hline\n{\\em Account} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ac7c3e39375100aa8c8c3597d5c95c7a1}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ac7c3e39375100aa8c8c3597d5c95c7a1}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Check\\+Session@{Check\\+Session}}\n\\index{Check\\+Session@{Check\\+Session}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Check\\+Session()}{CheckSession()}}\n{\\footnotesize\\ttfamily Json\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Check\\+Session (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nGet Session data \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a05d657b039fcb027c054e24cf53e5941}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a05d657b039fcb027c054e24cf53e5941}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Create@{Create}}\n\\index{Create@{Create}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Create()}{Create()}}\n{\\footnotesize\\ttfamily Action\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Create (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}}}]{model }\\end{DoxyParamCaption})}\n\n\n\nCall to Create View() \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em model} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\nView()\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a78d06b5fc70004a4b23a10a22670b04e}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a78d06b5fc70004a4b23a10a22670b04e}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Create\\+Project\\+Environment@{Create\\+Project\\+Environment}}\n\\index{Create\\+Project\\+Environment@{Create\\+Project\\+Environment}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Create\\+Project\\+Environment()}{CreateProjectEnvironment()}}\n{\\footnotesize\\ttfamily string \\mbox{[}$\\,$\\mbox{]} Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Create\\+Project\\+Environment (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}}}]{model,  }\\item[{string}]{P\\+AT,  }\\item[{string}]{account\\+Name }\\end{DoxyParamCaption})}\n\n\n\nstart provisioning project -\\/ calls required \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em model} & \\\\\n\\hline\n{\\em P\\+AT} & \\\\\n\\hline\n{\\em account\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ab1802a3d21c416002c2c7ff57019b6f8}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ab1802a3d21c416002c2c7ff57019b6f8}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Create\\+Query\\+And\\+Widgets@{Create\\+Query\\+And\\+Widgets}}\n\\index{Create\\+Query\\+And\\+Widgets@{Create\\+Query\\+And\\+Widgets}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Create\\+Query\\+And\\+Widgets()}{CreateQueryAndWidgets()}}\n{\\footnotesize\\ttfamily void Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Create\\+Query\\+And\\+Widgets (\\begin{DoxyParamCaption}\\item[{string}]{templates\\+Folder,  }\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}}}]{model,  }\\item[{List$<$ string $>$}]{lst\\+Queries,  }\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}}}]{\\+\\_\\+default\\+Configuration,  }\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}}}]{\\+\\_\\+configuration2,  }\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}}}]{\\+\\_\\+configuration3,  }\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}}}]{release\\+Config }\\end{DoxyParamCaption})}\n\n\n\nDashboard set up operations \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em templates\\+Folder} & \\\\\n\\hline\n{\\em model} & \\\\\n\\hline\n{\\em lst\\+Queries} & \\\\\n\\hline\n{\\em \\+\\_\\+default\\+Configuration} & \\\\\n\\hline\n{\\em \\+\\_\\+configuration2} & \\\\\n\\hline\n{\\em \\+\\_\\+configuration3} & \\\\\n\\hline\n{\\em release\\+Config} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ada15b3cbf0e3c37b0c9e0036b45671c2}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ada15b3cbf0e3c37b0c9e0036b45671c2}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!End\\+Environment\\+Setup\\+Process@{End\\+Environment\\+Setup\\+Process}}\n\\index{End\\+Environment\\+Setup\\+Process@{End\\+Environment\\+Setup\\+Process}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{End\\+Environment\\+Setup\\+Process()}{EndEnvironmentSetupProcess()}}\n{\\footnotesize\\ttfamily void Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+End\\+Environment\\+Setup\\+Process (\\begin{DoxyParamCaption}\\item[{I\\+Async\\+Result}]{result }\\end{DoxyParamCaption})}\n\n\n\nEnd the process \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em result} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ac983d0c1775718689aff6f7a17c0b929}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ac983d0c1775718689aff6f7a17c0b929}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Generate\\+Request\\+Post\\+Data@{Generate\\+Request\\+Post\\+Data}}\n\\index{Generate\\+Request\\+Post\\+Data@{Generate\\+Request\\+Post\\+Data}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Generate\\+Request\\+Post\\+Data()}{GenerateRequestPostData()}}\n{\\footnotesize\\ttfamily string Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Generate\\+Request\\+Post\\+Data (\\begin{DoxyParamCaption}\\item[{string}]{app\\+Secret,  }\\item[{string}]{auth\\+Code,  }\\item[{string}]{callback\\+Url }\\end{DoxyParamCaption})}\n\n\n\nFormatting the request for O\\+Auth \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em app\\+Secret} & \\\\\n\\hline\n{\\em auth\\+Code} & \\\\\n\\hline\n{\\em callback\\+Url} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a9726501c86319171adf04dedab87a6a0}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a9726501c86319171adf04dedab87a6a0}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Get\\+Access\\+Token@{Get\\+Access\\+Token}}\n\\index{Get\\+Access\\+Token@{Get\\+Access\\+Token}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Get\\+Access\\+Token()}{GetAccessToken()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}} Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Get\\+Access\\+Token (\\begin{DoxyParamCaption}\\item[{string}]{body }\\end{DoxyParamCaption})}\n\n\n\nGenerate Access Token \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em body} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_af9d72d23dec7248e6a8b5106209e6e6d}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_af9d72d23dec7248e6a8b5106209e6e6d}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Get\\+Accounts@{Get\\+Accounts}}\n\\index{Get\\+Accounts@{Get\\+Accounts}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Get\\+Accounts()}{GetAccounts()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}{Accounts.\\+Account\\+List}} Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Get\\+Accounts (\\begin{DoxyParamCaption}\\item[{string}]{Member\\+ID,  }\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}}}]{Details }\\end{DoxyParamCaption})}\n\n\n\nGet list of accounts \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Member\\+ID} & \\\\\n\\hline\n{\\em Details} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a3b9b20acff06038e1aed58b3bfaaebd4}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a3b9b20acff06038e1aed58b3bfaaebd4}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Get\\+Groups@{Get\\+Groups}}\n\\index{Get\\+Groups@{Get\\+Groups}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Get\\+Groups()}{GetGroups()}}\n{\\footnotesize\\ttfamily Json\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Get\\+Groups (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nGet groups. based on group selection get template \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em model} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a1a7a16aa8a18f17e1fafb079e5ec5de4}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a1a7a16aa8a18f17e1fafb079e5ec5de4}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Get\\+Members@{Get\\+Members}}\n\\index{Get\\+Members@{Get\\+Members}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Get\\+Members()}{GetMembers()}}\n{\\footnotesize\\ttfamily Json\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Get\\+Members (\\begin{DoxyParamCaption}\\item[{string}]{account\\+Name,  }\\item[{string}]{Access\\+Token }\\end{DoxyParamCaption})}\n\n\n\nGet members of the account-\\/ Not using now \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em account\\+Name} & \\\\\n\\hline\n{\\em Access\\+Token} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8d6dfbb168d7d87651c361e953feb9d9}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8d6dfbb168d7d87651c361e953feb9d9}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Get\\+Profile@{Get\\+Profile}}\n\\index{Get\\+Profile@{Get\\+Profile}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Get\\+Profile()}{GetProfile()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_profile_details}{Profile\\+Details}} Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Get\\+Profile (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}}}]{access\\+Details }\\end{DoxyParamCaption})}\n\n\n\nGet Profile details \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em access\\+Details} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ae36d3258bea98714970d2fdc5fec6bf3}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ae36d3258bea98714970d2fdc5fec6bf3}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Get\\+Status\\+Message@{Get\\+Status\\+Message}}\n\\index{Get\\+Status\\+Message@{Get\\+Status\\+Message}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Get\\+Status\\+Message()}{GetStatusMessage()}}\n{\\footnotesize\\ttfamily string Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Get\\+Status\\+Message (\\begin{DoxyParamCaption}\\item[{string}]{id }\\end{DoxyParamCaption})}\n\n\n\nGet status message to resplay \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em id} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a386641d021e2872eb8a614db7d3b1a6e}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a386641d021e2872eb8a614db7d3b1a6e}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Get\\+Template@{Get\\+Template}}\n\\index{Get\\+Template@{Get\\+Template}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Get\\+Template()}{GetTemplate()}}\n{\\footnotesize\\ttfamily Content\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Get\\+Template (\\begin{DoxyParamCaption}\\item[{string}]{Template\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet Template Name to display \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Template\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8c6be4b2363680d958e6fdee4e74b91a}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8c6be4b2363680d958e6fdee4e74b91a}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Install\\+Extensions@{Install\\+Extensions}}\n\\index{Install\\+Extensions@{Install\\+Extensions}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Install\\+Extensions()}{InstallExtensions()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Install\\+Extensions (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}}}]{model,  }\\item[{string}]{account\\+Name,  }\\item[{string}]{P\\+AT }\\end{DoxyParamCaption})}\n\n\n\nInstalling \\mbox{\\hyperlink{namespace_vsts_demo_builder_1_1_extensions}{Extensions}} \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em model} & \\\\\n\\hline\n{\\em account\\+Name} & \\\\\n\\hline\n{\\em P\\+AT} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8c1a9720f499884448fa692a6fc8b514}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a8c1a9720f499884448fa692a6fc8b514}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Refresh\\+\\_\\+\\+Access\\+Token@{Refresh\\+\\_\\+\\+Access\\+Token}}\n\\index{Refresh\\+\\_\\+\\+Access\\+Token@{Refresh\\+\\_\\+\\+Access\\+Token}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Refresh\\+\\_\\+\\+Access\\+Token()}{Refresh\\_AccessToken()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}} Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Refresh\\+\\_\\+\\+Access\\+Token (\\begin{DoxyParamCaption}\\item[{string}]{refresh\\+Token }\\end{DoxyParamCaption})}\n\n\n\nRefresh access token \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em refresh\\+Token} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a990cb5c0fd92cee0d4926b92a5951436}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a990cb5c0fd92cee0d4926b92a5951436}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Rename\\+Iterations@{Rename\\+Iterations}}\n\\index{Rename\\+Iterations@{Rename\\+Iterations}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Rename\\+Iterations()}{RenameIterations()}}\n{\\footnotesize\\ttfamily void Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Rename\\+Iterations (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}}}]{model,  }\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}}}]{\\+\\_\\+default\\+Configuration,  }\\item[{Dictionary$<$ string, string $>$}]{rename\\+Iterations }\\end{DoxyParamCaption})}\n\n\n\nRename Iterations \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em model} & \\\\\n\\hline\n{\\em \\+\\_\\+default\\+Configuration} & \\\\\n\\hline\n{\\em rename\\+Iterations} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a69d4ebc71322d09e96bab8cd604ebb46}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_a69d4ebc71322d09e96bab8cd604ebb46}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Send\\+Email@{Send\\+Email}}\n\\index{Send\\+Email@{Send\\+Email}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Send\\+Email()}{SendEmail()}}\n{\\footnotesize\\ttfamily Json\\+Result Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Send\\+Email (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_email}{Email}}}]{model }\\end{DoxyParamCaption})}\n\n\n\nMail Configuration \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em model} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ad6b69ff448fc483cb517729d55c55dcc}\\label{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller_ad6b69ff448fc483cb517729d55c55dcc}} \n\\index{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}!Start\\+Environment\\+Setup\\+Process@{Start\\+Environment\\+Setup\\+Process}}\n\\index{Start\\+Environment\\+Setup\\+Process@{Start\\+Environment\\+Setup\\+Process}!Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller@{Vsts\\+Demo\\+Builder\\+::\\+Controllers\\+::\\+Environment\\+Controller}}\n\\subsubsection{\\texorpdfstring{Start\\+Environment\\+Setup\\+Process()}{StartEnvironmentSetupProcess()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller.\\+Start\\+Environment\\+Setup\\+Process (\\begin{DoxyParamCaption}\\item[{\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}}}]{model }\\end{DoxyParamCaption})}\n\n\n\nStart the process \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em model} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Controllers/Environment\\+Controller.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_controllers_1_1_home_controller.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 145.985401\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.425000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsDemoBuilder.Controllers.HomeController) cw\n(Controller) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsDemoBuilder.Controllers.HomeController) 0.000000 0.000000 box\n (Controller) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_controllers_1_1_home_controller.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_home_controller}{}\\section{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Home\\+Controller Class Reference}\n\\label{class_vsts_demo_builder_1_1_controllers_1_1_home_controller}\\index{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Home\\+Controller@{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Home\\+Controller}}\nInheritance diagram for Vsts\\+Demo\\+Builder.\\+Controllers.\\+Home\\+Controller\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_demo_builder_1_1_controllers_1_1_home_controller}\n\\end{center}\n\\end{figure}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_controllers_1_1_home_controller_a21680270614e05be813b5ee0db2ae8cc}\\label{class_vsts_demo_builder_1_1_controllers_1_1_home_controller_a21680270614e05be813b5ee0db2ae8cc}} \nAction\\+Result {\\bfseries Index} ()\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Controllers/Home\\+Controller.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 121.951220\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 4.100000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute) cw\n(HandleErrorAttribute) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsDemoBuilder.ErrorHandler.AiHandleErrorAttribute) 0.000000 0.000000 box\n (HandleErrorAttribute) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute}{}\\section{Vsts\\+Demo\\+Builder.\\+Error\\+Handler.\\+Ai\\+Handle\\+Error\\+Attribute Class Reference}\n\\label{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute}\\index{Vsts\\+Demo\\+Builder.\\+Error\\+Handler.\\+Ai\\+Handle\\+Error\\+Attribute@{Vsts\\+Demo\\+Builder.\\+Error\\+Handler.\\+Ai\\+Handle\\+Error\\+Attribute}}\nInheritance diagram for Vsts\\+Demo\\+Builder.\\+Error\\+Handler.\\+Ai\\+Handle\\+Error\\+Attribute\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute}\n\\end{center}\n\\end{figure}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute_a9fbe20a7f02cbe252d91e4e4f4308771}\\label{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute_a9fbe20a7f02cbe252d91e4e4f4308771}} \noverride void {\\bfseries On\\+Exception} (Exception\\+Context filter\\+Context)\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Error\\+Handler/Ai\\+Handle\\+Error\\+Attribute.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_filter_config.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_filter_config}{}\\section{Vsts\\+Demo\\+Builder.\\+Filter\\+Config Class Reference}\n\\label{class_vsts_demo_builder_1_1_filter_config}\\index{Vsts\\+Demo\\+Builder.\\+Filter\\+Config@{Vsts\\+Demo\\+Builder.\\+Filter\\+Config}}\n\\subsection*{Static Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_filter_config_a6015bf13865a83d8815e945da8cc5c63}\\label{class_vsts_demo_builder_1_1_filter_config_a6015bf13865a83d8815e945da8cc5c63}} \nstatic void {\\bfseries Register\\+Global\\+Filters} (Global\\+Filter\\+Collection filters)\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+App\\+\\_\\+\\+Start/Filter\\+Config.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_access_details.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_access_details}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Access\\+Details Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_access_details}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Access\\+Details@{Vsts\\+Demo\\+Builder.\\+Models.\\+Access\\+Details}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_access_details_ad770a95321992a2b7e5dcf0da2503218}\\label{class_vsts_demo_builder_1_1_models_1_1_access_details_ad770a95321992a2b7e5dcf0da2503218}} \nstring {\\bfseries access\\+\\_\\+token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_access_details_ad8757717118d3d821bbc585703b02e1a}\\label{class_vsts_demo_builder_1_1_models_1_1_access_details_ad8757717118d3d821bbc585703b02e1a}} \nstring {\\bfseries token\\+\\_\\+type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_access_details_a0e8fb9803440b6ffa3e19e7e0bbe7d87}\\label{class_vsts_demo_builder_1_1_models_1_1_access_details_a0e8fb9803440b6ffa3e19e7e0bbe7d87}} \nstring {\\bfseries expires\\+\\_\\+in}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_access_details_adaa172c0bf79ee4dba0a09bb927a6732}\\label{class_vsts_demo_builder_1_1_models_1_1_access_details_adaa172c0bf79ee4dba0a09bb927a6732}} \nstring {\\bfseries refresh\\+\\_\\+token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Access\\+Details.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_accounts.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_accounts}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts@{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}{Account\\+List}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties}{Properties}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Accounts.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Account\\+List Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Account\\+List@{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Account\\+List}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list_ab63c68247ebcf8bb05246680552cf7ed}\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list_ab63c68247ebcf8bb05246680552cf7ed}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list_acd245a7b9929ba5e54f9e202b290bd6b}\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list_acd245a7b9929ba5e54f9e202b290bd6b}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Accounts.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Properties Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Properties@{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Properties}}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Accounts.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Value Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Value@{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value_a26885c246867daa01714a87804d1e1f7}\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value_a26885c246867daa01714a87804d1e1f7}} \nstring {\\bfseries account\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value_a2a1074d2650306b1b5a5c5d1daa727c0}\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value_a2a1074d2650306b1b5a5c5d1daa727c0}} \nstring {\\bfseries account\\+Uri}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value_aa4deb7dca3b4e0505738ccbdb13d4551}\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value_aa4deb7dca3b4e0505738ccbdb13d4551}} \nstring {\\bfseries account\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value_aebacab9f01af2d1f0bd56d50e9cc50ae}\\label{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value_aebacab9f01af2d1f0bd56d50e9cc50ae}} \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties}{Properties}} {\\bfseries properties}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Accounts.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_build_def.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_def}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Def Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_build_def}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Def@{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Def}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_def_a7807b5c73b1a48f22a056d025edcc7f8}\\label{class_vsts_demo_builder_1_1_models_1_1_build_def_a7807b5c73b1a48f22a056d025edcc7f8}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_def_ac1f8bd359a21b8d9d0dc8a4712bcde23}\\label{class_vsts_demo_builder_1_1_models_1_1_build_def_ac1f8bd359a21b8d9d0dc8a4712bcde23}} \nstring {\\bfseries File\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_def_ab9a4e1088379f47f026efb64855e5d72}\\label{class_vsts_demo_builder_1_1_models_1_1_build_def_ab9a4e1088379f47f026efb64855e5d72}} \nstring {\\bfseries Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_def_a373db5f3de494cb95ca3c2e7c8b18f2e}\\label{class_vsts_demo_builder_1_1_models_1_1_build_def_a373db5f3de494cb95ca3c2e7c8b18f2e}} \nstring {\\bfseries Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_build_release_mapping.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Release\\+Mapping Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Release\\+Mapping@{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Release\\+Mapping}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping_a4a7df09fd712be9a530363224bd72de2}\\label{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping_a4a7df09fd712be9a530363224bd72de2}} \nstring {\\bfseries build}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping_a09afd04f6453408c133562fbdb91d85a}\\label{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping_a09afd04f6453408c133562fbdb91d85a}} \nstring {\\bfseries release}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping_abc048f76f984b52ded47927a0786ae7a}\\label{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping_abc048f76f984b52ded47927a0786ae7a}} \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_build_def}{Build\\+Def}} {\\bfseries Build\\+Definition}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_configuration.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 163.934426\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.050000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsDemoBuilder.Models.Configuration) cw\n(VstsDemoBuilder.Models.IConfiguration) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsDemoBuilder.Models.Configuration) 0.000000 0.000000 box\n (VstsDemoBuilder.Models.IConfiguration) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_configuration.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Configuration Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_configuration}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Configuration@{Vsts\\+Demo\\+Builder.\\+Models.\\+Configuration}}\nInheritance diagram for Vsts\\+Demo\\+Builder.\\+Models.\\+Configuration\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_demo_builder_1_1_models_1_1_configuration}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a49ef7c13c560fcc1d904e1bd7d72c362}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a49ef7c13c560fcc1d904e1bd7d72c362}} \nstring {\\bfseries Uri\\+String}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a3dd6c28f29140b6906eacc12bf63dccc}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a3dd6c28f29140b6906eacc12bf63dccc}} \nstring {\\bfseries Personal\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_aab58def26e87d87427d67c038ccbc74c}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_aab58def26e87d87427d67c038ccbc74c}} \nstring {\\bfseries Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_aac8f7f53606b3dbb14067f1d5cc8e2a9}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_aac8f7f53606b3dbb14067f1d5cc8e2a9}} \nstring {\\bfseries Team}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_afc3f4ce499cd78d5c5ee7d13b3126fbe}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_afc3f4ce499cd78d5c5ee7d13b3126fbe}} \nstring {\\bfseries Move\\+To\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a5556b6940f590eab9ac3f0338ac64057}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a5556b6940f590eab9ac3f0338ac64057}} \nstring {\\bfseries Query}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a3f411263b998799eda0f12636e7de046}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a3f411263b998799eda0f12636e7de046}} \nstring {\\bfseries Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a0cd19d96a6ba887c62e98a68c32e5279}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a0cd19d96a6ba887c62e98a68c32e5279}} \nstring {\\bfseries Work\\+Item\\+Ids}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a872d730a9d11bbb980a2ec44839560af}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a872d730a9d11bbb980a2ec44839560af}} \nstring {\\bfseries Work\\+Item\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a094f39daafad11ca981773b26173324a}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a094f39daafad11ca981773b26173324a}} \nstring {\\bfseries Process\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a1c7379beb181f56174ed59e08a07c323}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a1c7379beb181f56174ed59e08a07c323}} \nstring {\\bfseries Pick\\+List\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_abe1c0d9c7249cad2b5f716406edeb80f}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_abe1c0d9c7249cad2b5f716406edeb80f}} \nstring {\\bfseries Query\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a6703afd0b93a6173a209e13cc3bf12b5}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a6703afd0b93a6173a209e13cc3bf12b5}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_configuration_a26d98dc92342fe5304a1bbbedc1fc9e6}\\label{class_vsts_demo_builder_1_1_models_1_1_configuration_a26d98dc92342fe5304a1bbbedc1fc9e6}} \nstring {\\bfseries Git\\+Repository\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Configuration.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_dashboard.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Dashboard Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Dashboard@{Vsts\\+Demo\\+Builder.\\+Models.\\+Dashboard}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a45f08b7efcf4cb170eab2782339f3930}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a45f08b7efcf4cb170eab2782339f3930}} \nstring {\\bfseries uid}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a610e172846abd50f5f5faa1b858561ff}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a610e172846abd50f5f5faa1b858561ff}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a91f820032dad2fbee0458f66a6636374}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a91f820032dad2fbee0458f66a6636374}} \nstring {\\bfseries access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a8e01eaa13b64f6ad1b1a92cc9c6574d8}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a8e01eaa13b64f6ad1b1a92cc9c6574d8}} \nstring {\\bfseries account\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_aedb01b2a1f0ceeba764b0743f3563ed1}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_aedb01b2a1f0ceeba764b0743f3563ed1}} \nstring {\\bfseries Target\\+Account\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_ae834a3fb5c72e9d2ebb3fbb537f715cd}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_ae834a3fb5c72e9d2ebb3fbb537f715cd}} \nstring {\\bfseries Version\\+Control}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_ab5b90e5b22d4f5a22b46e4651944d74a}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_ab5b90e5b22d4f5a22b46e4651944d74a}} \nstring {\\bfseries refresh\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_aa9c4e4c53baca677de5243212de28851}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_aa9c4e4c53baca677de5243212de28851}} \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list}{Project\\+List}} {\\bfseries Projects}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a67830760c0e391683c8ad3580b9b780d}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a67830760c0e391683c8ad3580b9b780d}} \nstring {\\bfseries src\\+Project\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a12ce3641ce4635d0bfc82b9fa77bd3f9}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a12ce3641ce4635d0bfc82b9fa77bd3f9}} \nstring {\\bfseries src\\+Team\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a54348204f48922fbdc91d34ed8896ebb}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a54348204f48922fbdc91d34ed8896ebb}} \nList$<$ string $>$ {\\bfseries accounts\\+For\\+Ddl}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_acd0f32d2322049acc3f613cbf9c9555c}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_acd0f32d2322049acc3f613cbf9c9555c}} \nbool {\\bfseries has\\+Account}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a5c36032c5576602d39d3d98ca4fdecf8}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a5c36032c5576602d39d3d98ca4fdecf8}} \nstring {\\bfseries acc\\+U\\+RL}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a3b21e2d2610c7a225bc5bb3f02777498}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a3b21e2d2610c7a225bc5bb3f02777498}} \nstring {\\bfseries Success\\+Msg}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_ae1a2bbfc0fc8961a006bdf4b1258947f}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_ae1a2bbfc0fc8961a006bdf4b1258947f}} \nstring {\\bfseries Err\\+List}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_abe6af95134ba30b7e84023831259a542}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_abe6af95134ba30b7e84023831259a542}} \nstring {\\bfseries Email}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_aa9ce909bccd542c921cf00a1b6d2510a}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_aa9ce909bccd542c921cf00a1b6d2510a}} \nstring {\\bfseries Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a44a4116411c907de7fbc25e6c88d7932}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a44a4116411c907de7fbc25e6c88d7932}} \nstring {\\bfseries errpath}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a916a844e263e53bae22f6a347f7efab8}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a916a844e263e53bae22f6a347f7efab8}} \nstring {\\bfseries New\\+Pat}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_ac680af908d76bd9749feeec5b0e80c2a}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_ac680af908d76bd9749feeec5b0e80c2a}} \nstring {\\bfseries Message}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a9ed85c4105f240d8d89dcbe1fd49c10a}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a9ed85c4105f240d8d89dcbe1fd49c10a}} \nstring {\\bfseries Selected\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_a0f5889ddb5f53fe7c5642a877559be3f}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_a0f5889ddb5f53fe7c5642a877559be3f}} \nstring {\\bfseries Src\\+Project\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_ae481413d4d32703e46e35b4ab7e1d541}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_ae481413d4d32703e46e35b4ab7e1d541}} \nstring {\\bfseries New\\+Project\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_dashboard_afb9f0dcd0ea528f3241a555d9cf457cd}\\label{class_vsts_demo_builder_1_1_models_1_1_dashboard_afb9f0dcd0ea528f3241a555d9cf457cd}} \nstring {\\bfseries errors}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Dashboard.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_default.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_default}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Default Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_default}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Default@{Vsts\\+Demo\\+Builder.\\+Models.\\+Default}}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_default_a834adb000f112c563b53a3e4bcd7556f}\\label{class_vsts_demo_builder_1_1_models_1_1_default_a834adb000f112c563b53a3e4bcd7556f}} \nconst string {\\bfseries Agile} = \\char`\\\"{}adcc42ab-\\/9882-\\/485e-\\/a3ed-\\/7678f01f66bc\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_default_af36e8fdd6c0363967684cadcf557987a}\\label{class_vsts_demo_builder_1_1_models_1_1_default_af36e8fdd6c0363967684cadcf557987a}} \nconst string {\\bfseries S\\+C\\+R\\+UM} = \\char`\\\"{}6b724908-\\/ef14-\\/45cf-\\/84f8-\\/768b5384da45\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_default_a573c93615c5f14cac91a142f154d1e05}\\label{class_vsts_demo_builder_1_1_models_1_1_default_a573c93615c5f14cac91a142f154d1e05}} \nconst string {\\bfseries C\\+M\\+MI} = \\char`\\\"{}27450541-\\/8e31-\\/4150-\\/9947-\\/dc59f998fc01\\char`\\\"{}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_default_a121050e849c5ce86c3a08223dcc680b4}\\label{class_vsts_demo_builder_1_1_models_1_1_default_a121050e849c5ce86c3a08223dcc680b4}} \nconst string {\\bfseries Queue} = \\char`\\\"{}Hosted\\char`\\\"{}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Default.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_email.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_email}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Email Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_email}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Email@{Vsts\\+Demo\\+Builder.\\+Models.\\+Email}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_email_af683ce06cdb3cadc83109f361755b355}\\label{class_vsts_demo_builder_1_1_models_1_1_email_af683ce06cdb3cadc83109f361755b355}} \nbool {\\bfseries Send\\+Email} (string to\\+Email, string body, string subject)\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_email_a21fcc33db645c455b085ffe43bf85a64}\\label{class_vsts_demo_builder_1_1_models_1_1_email_a21fcc33db645c455b085ffe43bf85a64}} \nstring {\\bfseries Email\\+Address}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_email_ad331a6cc88cefa517a6478a57af51af6}\\label{class_vsts_demo_builder_1_1_models_1_1_email_ad331a6cc88cefa517a6478a57af51af6}} \nstring {\\bfseries Account\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_email_a7e6ff04fb2e03180641c4a4070bb4d69}\\label{class_vsts_demo_builder_1_1_models_1_1_email_a7e6ff04fb2e03180641c4a4070bb4d69}} \nstring {\\bfseries Error\\+Log}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Email.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_environment_values.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Environment\\+Values Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Environment\\+Values@{Vsts\\+Demo\\+Builder.\\+Models.\\+Environment\\+Values}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_afff108206c2a97aeedec03d8444de566}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_afff108206c2a97aeedec03d8444de566}} \nstring {\\bfseries User\\+Uniquename}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_a966854431abd3cb9252bc774d25c42f7}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_a966854431abd3cb9252bc774d25c42f7}} \nstring {\\bfseries User\\+Unique\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_a95aade294cd2464a8051249c246a03d1}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_a95aade294cd2464a8051249c246a03d1}} \nstring {\\bfseries Project\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_a14d52f1184707c3500ddb70eccb8f968}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_a14d52f1184707c3500ddb70eccb8f968}} \nstring {\\bfseries Project\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_adb9b7ab8dff7853a585e1e6e4a45a515}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_adb9b7ab8dff7853a585e1e6e4a45a515}} \nDictionary$<$ string, string $>$ {\\bfseries Repository\\+Id\\+List}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_a24b3c5061e59d57c9049b86047c6d7af}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_a24b3c5061e59d57c9049b86047c6d7af}} \nDictionary$<$ string, int $>$ {\\bfseries Agent\\+Queues}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_a8d22f62f2440b7839ca33c734f6d8015}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_a8d22f62f2440b7839ca33c734f6d8015}} \nDictionary$<$ string, string $>$ {\\bfseries Service\\+Endpoints}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_afcd78f1075e5452e5b4bea83ee95980c}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_afcd78f1075e5452e5b4bea83ee95980c}} \nDictionary$<$ string, string $>$ {\\bfseries pull\\+Requests}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_environment_values_ae65872c9d63cdf80c673233af785eb31}\\label{class_vsts_demo_builder_1_1_models_1_1_environment_values_ae65872c9d63cdf80c673233af785eb31}} \nstring {\\bfseries Board\\+Row\\+Field\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_group_details.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_group_details}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Group\\+Details Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_group_details}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Group\\+Details@{Vsts\\+Demo\\+Builder.\\+Models.\\+Group\\+Details}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_group_details_a9140b302a4b84f5c2795e24abfa0da07}\\label{class_vsts_demo_builder_1_1_models_1_1_group_details_a9140b302a4b84f5c2795e24abfa0da07}} \nI\\+List$<$ string $>$ {\\bfseries Groups}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_group_details_ad6e7527fcd0f3a9754ee51825290987f}\\label{class_vsts_demo_builder_1_1_models_1_1_group_details_ad6e7527fcd0f3a9754ee51825290987f}} \nI\\+List$<$ string $>$ {\\bfseries Private\\+Groups}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_group_details_a8a1a6e2d5ab2404e1109c763a47edf9b}\\label{class_vsts_demo_builder_1_1_models_1_1_group_details_a8a1a6e2d5ab2404e1109c763a47edf9b}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_groupwise_template}{Groupwise\\+Template}} $>$ {\\bfseries Groupwise\\+Templates}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_groupwise_template.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_groupwise_template}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Groupwise\\+Template Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_groupwise_template}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Groupwise\\+Template@{Vsts\\+Demo\\+Builder.\\+Models.\\+Groupwise\\+Template}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_groupwise_template_a4c953711dc5fbad16f53dee452ede241}\\label{class_vsts_demo_builder_1_1_models_1_1_groupwise_template_a4c953711dc5fbad16f53dee452ede241}} \nstring {\\bfseries Groups}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_groupwise_template_a07113f35e3c16fe11906eacf091bbee2}\\label{class_vsts_demo_builder_1_1_models_1_1_groupwise_template_a07113f35e3c16fe11906eacf091bbee2}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_template}{Template}} $>$ {\\bfseries Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_location.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_location}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Location Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_location}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Location@{Vsts\\+Demo\\+Builder.\\+Models.\\+Location}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator}{I\\+P\\+Host\\+Generator}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Location.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Location.\\+I\\+P\\+Host\\+Generator Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Location.\\+I\\+P\\+Host\\+Generator@{Vsts\\+Demo\\+Builder.\\+Models.\\+Location.\\+I\\+P\\+Host\\+Generator}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator_a93b89fccc091c7b5785c2ccb4c57456f}\\label{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator_a93b89fccc091c7b5785c2ccb4c57456f}} \nstring {\\bfseries Get\\+Visitor\\+Details} ()\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator_a44af429710c012d700855d7c7694a9fe}\\label{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator_a44af429710c012d700855d7c7694a9fe}} \nstring {\\bfseries Get\\+Location} (string var\\+I\\+P\\+Address)\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Location.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_login_model.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_login_model}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Login\\+Model Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_login_model}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Login\\+Model@{Vsts\\+Demo\\+Builder.\\+Models.\\+Login\\+Model}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_login_model_a6f209339823fa33195a7def95a4d3b9d}\\label{class_vsts_demo_builder_1_1_models_1_1_login_model_a6f209339823fa33195a7def95a4d3b9d}} \nstring {\\bfseries Account\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_login_model_a122f945e352c68056de07da5d7210735}\\label{class_vsts_demo_builder_1_1_models_1_1_login_model_a122f945e352c68056de07da5d7210735}} \nstring {\\bfseries P\\+AT}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_login_model_af7d1a8a1ba5838923f177f2a2fb97077}\\label{class_vsts_demo_builder_1_1_models_1_1_login_model_af7d1a8a1ba5838923f177f2a2fb97077}} \nstring {\\bfseries Message}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_login_model_a62b348381f38b140681f5033d84a4c24}\\label{class_vsts_demo_builder_1_1_models_1_1_login_model_a62b348381f38b140681f5033d84a4c24}} \nstring {\\bfseries Event}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_login_model_a886e886d769c190d7dbce95c2ea910c4}\\label{class_vsts_demo_builder_1_1_models_1_1_login_model_a886e886d769c190d7dbce95c2ea910c4}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_login_model_ac9c49546450495d8133bb0b3ddd612e6}\\label{class_vsts_demo_builder_1_1_models_1_1_login_model_ac9c49546450495d8133bb0b3ddd612e6}} \nstring {\\bfseries templateid}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Login\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_profile_details.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Profile\\+Details Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Profile\\+Details@{Vsts\\+Demo\\+Builder.\\+Models.\\+Profile\\+Details}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details_a481185fb4c116a77d5f32f86a0967496}\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details_a481185fb4c116a77d5f32f86a0967496}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details_acd95115877450662df4cc1b5ecec8bd6}\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details_acd95115877450662df4cc1b5ecec8bd6}} \nstring {\\bfseries public\\+Alias}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details_af35ff9b7f1ad04f147321b9adc60cad0}\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details_af35ff9b7f1ad04f147321b9adc60cad0}} \nstring {\\bfseries email\\+Address}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details_a31ca994ce3fbb302d0754eed7e40a0d4}\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details_a31ca994ce3fbb302d0754eed7e40a0d4}} \nint {\\bfseries core\\+Revision}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details_a66296d3b10d96a433e9e47facebd1897}\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details_a66296d3b10d96a433e9e47facebd1897}} \nDate\\+Time {\\bfseries time\\+Stamp}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details_ad14d0dff00d36cafddf37c5cd2ff40f3}\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details_ad14d0dff00d36cafddf37c5cd2ff40f3}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details_a9e0a0256996b79722bdd8b40c66c0f3e}\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details_a9e0a0256996b79722bdd8b40c66c0f3e}} \nint {\\bfseries revision}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_profile_details_ae5ab4728c36b94b7ece9e073f630b54c}\\label{class_vsts_demo_builder_1_1_models_1_1_profile_details_ae5ab4728c36b94b7ece9e073f630b54c}} \nstring {\\bfseries Error\\+Message}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Profile\\+Details.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_project.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_project}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Project Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_project}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Project@{Vsts\\+Demo\\+Builder.\\+Models.\\+Project}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a0c0277935a8686381b5fb9efbbb87cec}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a0c0277935a8686381b5fb9efbbb87cec}} \nstring {\\bfseries Greeting}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a3a0f333f49c0c1a3156ff23dc0790a45}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a3a0f333f49c0c1a3156ff23dc0790a45}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_abc6e3061b14842b05afbd786031f4930}\\label{class_vsts_demo_builder_1_1_models_1_1_project_abc6e3061b14842b05afbd786031f4930}} \nstring {\\bfseries Member\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a8080a638e54e7cd84c855221cde0d9f1}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a8080a638e54e7cd84c855221cde0d9f1}} \nstring {\\bfseries Project\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a9fcfe1d053802068f14b42db25a15dbe}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a9fcfe1d053802068f14b42db25a15dbe}} \nstring {\\bfseries Selected\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a613c64cebf8d74852c4b887bba2a5c2e}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a613c64cebf8d74852c4b887bba2a5c2e}} \nstring {\\bfseries Template\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a97154e026bc8595161caecb85f1977f2}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a97154e026bc8595161caecb85f1977f2}} \nstring {\\bfseries Template\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a5dfff66d1cd47b56e6d6c476e4dfeab8}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a5dfff66d1cd47b56e6d6c476e4dfeab8}} \nbool {\\bfseries Is\\+Authenticated}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a9fb529501a68f05f81832c4fcedcf186}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a9fb529501a68f05f81832c4fcedcf186}} \nstring {\\bfseries Support\\+Email}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a5f955e3faba94e1f2a70d71373f9e4c6}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a5f955e3faba94e1f2a70d71373f9e4c6}} \nList$<$ string $>$ {\\bfseries Templates}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a24c214655e6054fea9912291b5e90784}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a24c214655e6054fea9912291b5e90784}} \nDictionary$<$ string, string $>$ {\\bfseries Parameters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a0a762bf66370d5ea965e4ddcb0188f26}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a0a762bf66370d5ea965e4ddcb0188f26}} \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_environment_values}{Environment\\+Values}} {\\bfseries Environment}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_abf6af4dbb443468a224a5bc141dddb93}\\label{class_vsts_demo_builder_1_1_models_1_1_project_abf6af4dbb443468a224a5bc141dddb93}} \nList$<$ \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_build_def}{Build\\+Def}} $>$ {\\bfseries Build\\+Definitions}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a374999e2e8573bcc276c5cc744148823}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a374999e2e8573bcc276c5cc744148823}} \nList$<$ \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_release_def}{Release\\+Def}} $>$ {\\bfseries Release\\+Definitions}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a11b610344214c332e10dfe99f2c7947c}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a11b610344214c332e10dfe99f2c7947c}} \nList$<$ \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping}{Build\\+Release\\+Mapping}} $>$ {\\bfseries Build\\+Release\\+Map}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a3cb7947f29055627c166d6618902d42e}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a3cb7947f29055627c166d6618902d42e}} \nstring {\\bfseries User\\+Method}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a95ed5779dfd552be873814e1bfffd96b}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a95ed5779dfd552be873814e1bfffd96b}} \nList$<$ Select\\+List\\+Item $>$ {\\bfseries account\\+Users\\+For\\+Ddl}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_ad7f7f4ecf13fae0f611a0861aea85dcc}\\label{class_vsts_demo_builder_1_1_models_1_1_project_ad7f7f4ecf13fae0f611a0861aea85dcc}} \nstring {\\bfseries selected\\+Users}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a6a1875c41f325dd321c43262286b2979}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a6a1875c41f325dd321c43262286b2979}} \nList$<$ string $>$ {\\bfseries account\\+Users\\+For\\+Wi}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_ab559c5b913753f14fc751cac4ac84221}\\label{class_vsts_demo_builder_1_1_models_1_1_project_ab559c5b913753f14fc751cac4ac84221}} \nstring {\\bfseries Sonar\\+Qube\\+D\\+NS}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a0648ea481a7e847cc302efd3c55a75a3}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a0648ea481a7e847cc302efd3c55a75a3}} \nbool {\\bfseries is\\+Extension\\+Needed}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_af0ae998c87bcdf22268891f82a1d8440}\\label{class_vsts_demo_builder_1_1_models_1_1_project_af0ae998c87bcdf22268891f82a1d8440}} \nbool {\\bfseries is\\+Agree\\+Terms}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a06f60791aa4dde9bc531f3a84f1d1939}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a06f60791aa4dde9bc531f3a84f1d1939}} \nstring {\\bfseries website\\+Url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_ace0a364b35f26d68aab4a90fe2c75b34}\\label{class_vsts_demo_builder_1_1_models_1_1_project_ace0a364b35f26d68aab4a90fe2c75b34}} \nstring {\\bfseries Region}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a267d05cf6abba285d7a022f19455c842}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a267d05cf6abba285d7a022f19455c842}} \nstring {\\bfseries access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_ac49b9798afa7390972695e84db803f8a}\\label{class_vsts_demo_builder_1_1_models_1_1_project_ac49b9798afa7390972695e84db803f8a}} \nstring {\\bfseries refresh\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a9cffa5b0282a6692aa022d25799337c6}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a9cffa5b0282a6692aa022d25799337c6}} \nstring {\\bfseries Email}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a405df8a6ec98ef5eb5d4a367da3816a3}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a405df8a6ec98ef5eb5d4a367da3816a3}} \nstring {\\bfseries Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_af663447ab93ef1567f9e2a0cc94479cc}\\label{class_vsts_demo_builder_1_1_models_1_1_project_af663447ab93ef1567f9e2a0cc94479cc}} \nList$<$ string $>$ {\\bfseries accounts\\+For\\+Dropdown}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a90ad284d1e3a22bd64b5fbcda755db72}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a90ad284d1e3a22bd64b5fbcda755db72}} \nstring {\\bfseries account\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_a326a1449d44e4c8c56d3b36bf6a61343}\\label{class_vsts_demo_builder_1_1_models_1_1_project_a326a1449d44e4c8c56d3b36bf6a61343}} \nbool {\\bfseries has\\+Account}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_project_list.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_project_list}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List@{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication}{Authentication}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count}{Project\\+Count}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project\\+List.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Authentication Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Authentication@{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Authentication}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_aaa03e81ba8d39cf82640a42b700c10be}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_aaa03e81ba8d39cf82640a42b700c10be}} \nstring {\\bfseries accname}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a010149b22480c055e08b96dd07d734e0}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a010149b22480c055e08b96dd07d734e0}} \nstring {\\bfseries pat}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_ae322b953630707537020cfdb09ce60b1}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_ae322b953630707537020cfdb09ce60b1}} \nstring {\\bfseries Message}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_ac52b39875c02f785d4824fd7ccaa4ce3}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_ac52b39875c02f785d4824fd7ccaa4ce3}} \nstring {\\bfseries Err\\+List}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a3cfe694d8fbab0856c0e3df730635701}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a3cfe694d8fbab0856c0e3df730635701}} \nstring {\\bfseries Success\\+Msg}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a530413b0ce6aab641d523ba202b2830a}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a530413b0ce6aab641d523ba202b2830a}} \nstring {\\bfseries errors}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a60dba0f9d005888ac332814acbbfaa97}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a60dba0f9d005888ac332814acbbfaa97}} \nstring {\\bfseries acc\\+U\\+RL}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a0f846cdcd43a89ff84fd3616c9d73de3}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication_a0f846cdcd43a89ff84fd3616c9d73de3}} \nstring {\\bfseries Selected\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project\\+List.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Project\\+Count Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Project\\+Count@{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Project\\+Count}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_af69ea396e01f98a6751799e78a5fd393}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_af69ea396e01f98a6751799e78a5fd393}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ae397d09bba16ff3e99d735e3bb49bc94}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ae397d09bba16ff3e99d735e3bb49bc94}} \nbool {\\bfseries successcode}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_aaeb01291b73626bd99c4e5653906cd8d}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_aaeb01291b73626bd99c4e5653906cd8d}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a6a54cb39fcfe8ac4a2f2d0f0125c9b8b}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a6a54cb39fcfe8ac4a2f2d0f0125c9b8b}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ad2c63a0af6c8cb6beceed423b783ac46}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ad2c63a0af6c8cb6beceed423b783ac46}} \nSelect\\+List {\\bfseries Project\\+List}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ab21a9482cfc10028e2190d4e48d5355b}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ab21a9482cfc10028e2190d4e48d5355b}} \nstring {\\bfseries Selected\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a7e5608ef4295907e94fb4bdea57fab28}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a7e5608ef4295907e94fb4bdea57fab28}} \nstring {\\bfseries Message}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a5867fa1a63aecda34ad93215ea343a5b}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a5867fa1a63aecda34ad93215ea343a5b}} \nstring {\\bfseries Project\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ab195b07b6970b69378a7fd47a87638e3}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ab195b07b6970b69378a7fd47a87638e3}} \nstring {\\bfseries Acc\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a6275496cc39b7dd4e4ac86383f89eda3}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a6275496cc39b7dd4e4ac86383f89eda3}} \nstring {\\bfseries P\\+AT}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a4230e7ad20a2e085c10ba938f48c14f9}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a4230e7ad20a2e085c10ba938f48c14f9}} \nstring {\\bfseries errmsg}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ac44a88bb704a8f73fee84b7fe9c4eb17}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_ac44a88bb704a8f73fee84b7fe9c4eb17}} \nstring {\\bfseries Success\\+Msg}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a3e8ae9c629b12366e5e1286c90ee2cc6}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count_a3e8ae9c629b12366e5e1286c90ee2cc6}} \nstring {\\bfseries acc\\+U\\+RL}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project\\+List.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Value Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Value@{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_a9a3fbc720df776930f76f1b5454e604b}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_a9a3fbc720df776930f76f1b5454e604b}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_a0f3aa52fb2af1d4062bc43002bbe268d}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_a0f3aa52fb2af1d4062bc43002bbe268d}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_ac600d128a9cb48f61de71b548d628159}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_ac600d128a9cb48f61de71b548d628159}} \nstring {\\bfseries description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_a8253d295e4aafa3c4896cf145bcbafa4}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_a8253d295e4aafa3c4896cf145bcbafa4}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_a33eac25f37d706af302e88d5a3a873b2}\\label{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value_a33eac25f37d706af302e88d5a3a873b2}} \nstring {\\bfseries state}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project\\+List.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_project_settings.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_settings}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Settings Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_project_settings}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Settings@{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Settings}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_settings_a999a942bda5892828a654da33c06ebd7}\\label{class_vsts_demo_builder_1_1_models_1_1_project_settings_a999a942bda5892828a654da33c06ebd7}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_settings_aec56e0cb72c447475a52b78c6bb71586}\\label{class_vsts_demo_builder_1_1_models_1_1_project_settings_aec56e0cb72c447475a52b78c6bb71586}} \nList$<$ string $>$ {\\bfseries users}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_settings_a416eb8213fd93fdc0ebf34b0bc1d7090}\\label{class_vsts_demo_builder_1_1_models_1_1_project_settings_a416eb8213fd93fdc0ebf34b0bc1d7090}} \nList$<$ string $>$ {\\bfseries tags}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_settings_a697265f3a72e96c3ec57840c428264fb}\\label{class_vsts_demo_builder_1_1_models_1_1_project_settings_a697265f3a72e96c3ec57840c428264fb}} \nList$<$ string $>$ {\\bfseries queues}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_settings_a65bb397817b7799fa88acd0f882ffc17}\\label{class_vsts_demo_builder_1_1_models_1_1_project_settings_a65bb397817b7799fa88acd0f882ffc17}} \nDictionary$<$ string, string $>$ {\\bfseries rename\\+Iterations}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_project_template.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Template Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_project_template}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Template@{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Template}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_aed53eb7d47aa4378d2f4ca8f56a9018e}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_aed53eb7d47aa4378d2f4ca8f56a9018e}} \nstring {\\bfseries Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a7050077555157d7ac6c3fba1d25fefcb}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a7050077555157d7ac6c3fba1d25fefcb}} \nstring {\\bfseries Description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_af3a7dff5c70f1cf3d3279e98666f4fd2}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_af3a7dff5c70f1cf3d3279e98666f4fd2}} \nstring {\\bfseries Teams}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a039d8579ab74e3ba91f59e30d52eaf8f}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a039d8579ab74e3ba91f59e30d52eaf8f}} \nstring {\\bfseries Source\\+Code}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a6f2971a6346acc9cd2ee2f3e6da0065c}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a6f2971a6346acc9cd2ee2f3e6da0065c}} \nstring {\\bfseries Create\\+Service}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a54e6f4d249a3c55ff0736059ac3a97b4}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a54e6f4d249a3c55ff0736059ac3a97b4}} \nstring {\\bfseries Board\\+Columns}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_ab192ddcbbe3728c9a7b6d5b41f1a6c3d}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_ab192ddcbbe3728c9a7b6d5b41f1a6c3d}} \nstring {\\bfseries Project\\+Settings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a1f2337e2c38e5bc07bafef0016deb7f9}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a1f2337e2c38e5bc07bafef0016deb7f9}} \nstring {\\bfseries Card\\+Style}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a0b1e47a8900dffca7cfb36cd6562ade0}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a0b1e47a8900dffca7cfb36cd6562ade0}} \nstring {\\bfseries Card\\+Field}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_ac1c0e3b3edc617835bc0e16afbc1150b}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_ac1c0e3b3edc617835bc0e16afbc1150b}} \nstring {\\bfseries P\\+B\\+Ifrom\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_af94cd6bcbc6dc573773cac0cc4e13a31}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_af94cd6bcbc6dc573773cac0cc4e13a31}} \nstring {\\bfseries Bugfrom\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a8740c2e68ac9c015129461b6ad038445}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a8740c2e68ac9c015129461b6ad038445}} \nstring {\\bfseries Epicfrom\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_aae215557e2875b894e5f18dc6731e1d7}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_aae215557e2875b894e5f18dc6731e1d7}} \nstring {\\bfseries Taskfrom\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_ad7d22ddf5493652ef5fb36f01328dea8}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_ad7d22ddf5493652ef5fb36f01328dea8}} \nstring {\\bfseries Test\\+Casefrom\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_af7062665ac65d21e8933d24684be3987}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_af7062665ac65d21e8933d24684be3987}} \nstring {\\bfseries Featurefrom\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a9c4f942e528508d3e640b2f1de68f38f}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a9c4f942e528508d3e640b2f1de68f38f}} \nstring {\\bfseries User\\+Stories\\+From\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_aec8d459c2bb1eca7e05f3b0cd439a683}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_aec8d459c2bb1eca7e05f3b0cd439a683}} \nstring {\\bfseries Set\\+Epic}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a3fd0aa2479055ecb94bab632c8c379c1}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a3fd0aa2479055ecb94bab632c8c379c1}} \nstring {\\bfseries Board\\+Rows}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a63ab7c3094a05cf51d2b241fe1775b97}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a63ab7c3094a05cf51d2b241fe1775b97}} \nstring {\\bfseries Widget}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_af377911831dddd06581d32d8d8761172}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_af377911831dddd06581d32d8d8761172}} \nstring {\\bfseries Chart}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_a93b64ac05fa6973f3bde031ec58e7058}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_a93b64ac05fa6973f3bde031ec58e7058}} \nstring {\\bfseries Team\\+Area}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_ab678d4520341927ca9a056f05bdbee57}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_ab678d4520341927ca9a056f05bdbee57}} \nstring {\\bfseries Test\\+Planfrom\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_project_template_aee470b9e03da4ef4511a69f836ae17ef}\\label{class_vsts_demo_builder_1_1_models_1_1_project_template_aee470b9e03da4ef4511a69f836ae17ef}} \nstring {\\bfseries Test\\+Suitefrom\\+Template}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_query.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_query}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Query Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_query}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Query@{Vsts\\+Demo\\+Builder.\\+Models.\\+Query}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_query_abd4490faed1729ff5da1c2ce44e687b2}\\label{class_vsts_demo_builder_1_1_models_1_1_query_abd4490faed1729ff5da1c2ce44e687b2}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_query_a29f040d61f1e22299d94f9ff3c67e1c4}\\label{class_vsts_demo_builder_1_1_models_1_1_query_a29f040d61f1e22299d94f9ff3c67e1c4}} \nstring {\\bfseries wiql}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Query.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_release_def.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_release_def}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Release\\+Def Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_release_def}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Release\\+Def@{Vsts\\+Demo\\+Builder.\\+Models.\\+Release\\+Def}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_release_def_aa497a0d5a40660db1de0ccd9066eef6e}\\label{class_vsts_demo_builder_1_1_models_1_1_release_def_aa497a0d5a40660db1de0ccd9066eef6e}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_release_def_a3572aaf01adf4934eb9d978979a4d1c7}\\label{class_vsts_demo_builder_1_1_models_1_1_release_def_a3572aaf01adf4934eb9d978979a4d1c7}} \nstring {\\bfseries File\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_release_def_ad3d60906e7d486d0ceff56b80b09c304}\\label{class_vsts_demo_builder_1_1_models_1_1_release_def_ad3d60906e7d486d0ceff56b80b09c304}} \nstring {\\bfseries Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_release_def_ae65fc069a7e7988469c17cbd548eebeb}\\label{class_vsts_demo_builder_1_1_models_1_1_release_def_ae65fc069a7e7988469c17cbd548eebeb}} \nstring {\\bfseries Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_required_extensions.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions@{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension}{Extension}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link}{Extension\\+With\\+Link}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension@{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_aed03e95fbcf10bd7d2753e5df7abf4ff}\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_aed03e95fbcf10bd7d2753e5df7abf4ff}} \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link}{Extension\\+With\\+Link}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries Extensions}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension\\+With\\+Link Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension\\+With\\+Link@{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension\\+With\\+Link}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_a5eea6a6e469849a4d053425f8bb3ee53}\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_a5eea6a6e469849a4d053425f8bb3ee53}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_aac6c1de60baa19d9cc849e708e305bb3}\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_aac6c1de60baa19d9cc849e708e305bb3}} \nstring {\\bfseries link}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_afb3e00a5308870392a3120f38a9eec26}\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_afb3e00a5308870392a3120f38a9eec26}} \nstring {\\bfseries Publisher\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_a220091ea339885776d50c3b826e977a2}\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_a220091ea339885776d50c3b826e977a2}} \nstring {\\bfseries Extension\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_a456ae1f71768c6c44c38b4c0b0250658}\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_a456ae1f71768c6c44c38b4c0b0250658}} \nstring {\\bfseries Publisher}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_a542e94f369ac908d86e85953e5ca61c6}\\label{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link_a542e94f369ac908d86e85953e5ca61c6}} \nstring {\\bfseries License}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_template.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_template}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Template Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_template}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Template@{Vsts\\+Demo\\+Builder.\\+Models.\\+Template}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_template_aa5f86b7b070608b30186e1e146f40ce2}\\label{class_vsts_demo_builder_1_1_models_1_1_template_aa5f86b7b070608b30186e1e146f40ce2}} \nstring {\\bfseries Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_template_a54c184f68304e7707884906003dfd8c0}\\label{class_vsts_demo_builder_1_1_models_1_1_template_a54c184f68304e7707884906003dfd8c0}} \nstring {\\bfseries Description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_template_setting.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_template_setting}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Template\\+Setting Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_template_setting}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Template\\+Setting@{Vsts\\+Demo\\+Builder.\\+Models.\\+Template\\+Setting}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_template_setting_ac57d426bce9483bd012c0715a65a3874}\\label{class_vsts_demo_builder_1_1_models_1_1_template_setting_ac57d426bce9483bd012c0715a65a3874}} \nList$<$ string $>$ {\\bfseries private\\+Templates}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_template_setting_a9b914ee363bfb1c227d03ad91ad90f0d}\\label{class_vsts_demo_builder_1_1_models_1_1_template_setting_a9b914ee363bfb1c227d03ad91ad90f0d}} \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1template_key_value}{template\\+Key\\+Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries private\\+Template\\+Keys}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_test_case.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_case}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Case Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_test_case}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Case@{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Case}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_case_a0ed63b167633e704c3a80350322a7021}\\label{class_vsts_demo_builder_1_1_models_1_1_test_case_a0ed63b167633e704c3a80350322a7021}} \nList$<$ string $>$ {\\bfseries Test\\+Cases}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_test_suite.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite@{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan}{Plan}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites}{Test\\+Suites}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Plan Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Plan@{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Plan}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan_a05461d82b84396d383d9932e1661d87c}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan_a05461d82b84396d383d9932e1661d87c}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan_a9c02984bb9d5deaa1d8376091729a155}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan_a9c02984bb9d5deaa1d8376091729a155}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Test\\+Suites Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Test\\+Suites@{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Test\\+Suites}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites_a41004d031eacc1bf43cad6aafabeec77}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites_a41004d031eacc1bf43cad6aafabeec77}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites_acb3e1c850a03b06c28a77a7f16191f68}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites_acb3e1c850a03b06c28a77a7f16191f68}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Value Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Value@{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_a615e954feefdd1cd48ab92d57126fd5c}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_a615e954feefdd1cd48ab92d57126fd5c}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_aecd100401ad7c33f54b6fa29d7b5f6e3}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_aecd100401ad7c33f54b6fa29d7b5f6e3}} \n\\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan}{Plan}} {\\bfseries plan}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_a2eda6ad92cf02bed3c9d636db9e6b2f2}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_a2eda6ad92cf02bed3c9d636db9e6b2f2}} \nstring {\\bfseries suite\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_ad8509fbd7248139548bc00437fd7f62e}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_ad8509fbd7248139548bc00437fd7f62e}} \nbool {\\bfseries inherit\\+Default\\+Configurations}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_a67893944ec810fc82b32177d62ca54fa}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_a67893944ec810fc82b32177d62ca54fa}} \nstring {\\bfseries state}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_ae29c9fd0947aaf90104ee0221474571c}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_ae29c9fd0947aaf90104ee0221474571c}} \nI\\+List$<$ string $>$ {\\bfseries Test\\+Cases}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_add503d78504fd8f9ddadbaed9546a50d}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_add503d78504fd8f9ddadbaed9546a50d}} \nI\\+List$<$ string $>$ {\\bfseries requirement\\+Ids}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_a1c1f9d36673f58235767f1cbc0bd55e8}\\label{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value_a1c1f9d36673f58235767f1cbc0bd55e8}} \nint {\\bfseries revision}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_models_1_1template_key_value.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_models_1_1template_key_value}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+template\\+Key\\+Value Class Reference}\n\\label{class_vsts_demo_builder_1_1_models_1_1template_key_value}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+template\\+Key\\+Value@{Vsts\\+Demo\\+Builder.\\+Models.\\+template\\+Key\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1template_key_value_abc6cf206fc1b5228c7cddc53f3dc88b6}\\label{class_vsts_demo_builder_1_1_models_1_1template_key_value_abc6cf206fc1b5228c7cddc53f3dc88b6}} \nstring {\\bfseries key}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_models_1_1template_key_value_a430c19afb3353a009dada59dfc7ee8d9}\\label{class_vsts_demo_builder_1_1_models_1_1template_key_value_a430c19afb3353a009dada59dfc7ee8d9}} \nstring {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/Project.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_mvc_application.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 192.307692\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 2.600000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsDemoBuilder.MvcApplication) cw\n(HttpApplication) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsDemoBuilder.MvcApplication) 0.000000 0.000000 box\n (HttpApplication) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_mvc_application.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_mvc_application}{}\\section{Vsts\\+Demo\\+Builder.\\+Mvc\\+Application Class Reference}\n\\label{class_vsts_demo_builder_1_1_mvc_application}\\index{Vsts\\+Demo\\+Builder.\\+Mvc\\+Application@{Vsts\\+Demo\\+Builder.\\+Mvc\\+Application}}\nInheritance diagram for Vsts\\+Demo\\+Builder.\\+Mvc\\+Application\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_demo_builder_1_1_mvc_application}\n\\end{center}\n\\end{figure}\n\\subsection*{Protected Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_mvc_application_a90a8975d11f57fb4aa8786689d98ff8f}\\label{class_vsts_demo_builder_1_1_mvc_application_a90a8975d11f57fb4aa8786689d98ff8f}} \nvoid {\\bfseries Application\\+\\_\\+\\+Start} ()\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/Global.\\+asax.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_demo_builder_1_1_route_config.tex",
    "content": "\\hypertarget{class_vsts_demo_builder_1_1_route_config}{}\\section{Vsts\\+Demo\\+Builder.\\+Route\\+Config Class Reference}\n\\label{class_vsts_demo_builder_1_1_route_config}\\index{Vsts\\+Demo\\+Builder.\\+Route\\+Config@{Vsts\\+Demo\\+Builder.\\+Route\\+Config}}\n\\subsection*{Static Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_demo_builder_1_1_route_config_a7ef2583f903b80260413a0d34a0c04fe}\\label{class_vsts_demo_builder_1_1_route_config_a7ef2583f903b80260413a0d34a0c04fe}} \nstatic void {\\bfseries Register\\+Routes} (Route\\+Collection routes)\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+App\\+\\_\\+\\+Start/Route\\+Config.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_build_1_1_build_definition.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Build.\\+Build\\+Definition Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Build.\\+Build\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I.\\+Build.\\+Build\\+Definition}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_acaf28338b85b2eb9b5c5f8b6ebe43c51}\\label{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_acaf28338b85b2eb9b5c5f8b6ebe43c51}} \n{\\bfseries Build\\+Definition} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nstring \\mbox{[}$\\,$\\mbox{]} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_a6b0baf93fe915e1eb9a9f028a9f0136a}{Create\\+Build\\+Definition}} (string json, string project, string Selected\\+Template)\n\\begin{DoxyCompactList}\\small\\item\\em Create \\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_build}{Build}} Definition \\end{DoxyCompactList}\\item \nint \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_a6f176c07809293c0b2efd1d3eb0cffcc}{Queue\\+Build}} (string json, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Queue a build after provisioning project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_a3a51743edc98c77291926915e35b76c0}\\label{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_a3a51743edc98c77291926915e35b76c0}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_a6b0baf93fe915e1eb9a9f028a9f0136a}\\label{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_a6b0baf93fe915e1eb9a9f028a9f0136a}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Build\\+::\\+Build\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Build\\+::\\+Build\\+Definition}!Create\\+Build\\+Definition@{Create\\+Build\\+Definition}}\n\\index{Create\\+Build\\+Definition@{Create\\+Build\\+Definition}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Build\\+::\\+Build\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Build\\+::\\+Build\\+Definition}}\n\\subsubsection{\\texorpdfstring{Create\\+Build\\+Definition()}{CreateBuildDefinition()}}\n{\\footnotesize\\ttfamily string \\mbox{[}$\\,$\\mbox{]} Vsts\\+Rest\\+A\\+P\\+I.\\+Build.\\+Build\\+Definition.\\+Create\\+Build\\+Definition (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{project,  }\\item[{string}]{Selected\\+Template }\\end{DoxyParamCaption})}\n\n\n\nCreate \\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_build}{Build}} Definition \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n{\\em Selected\\+Template} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_a6f176c07809293c0b2efd1d3eb0cffcc}\\label{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition_a6f176c07809293c0b2efd1d3eb0cffcc}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Build\\+::\\+Build\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Build\\+::\\+Build\\+Definition}!Queue\\+Build@{Queue\\+Build}}\n\\index{Queue\\+Build@{Queue\\+Build}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Build\\+::\\+Build\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Build\\+::\\+Build\\+Definition}}\n\\subsubsection{\\texorpdfstring{Queue\\+Build()}{QueueBuild()}}\n{\\footnotesize\\ttfamily int Vsts\\+Rest\\+A\\+P\\+I.\\+Build.\\+Build\\+Definition.\\+Queue\\+Build (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nQueue a build after provisioning project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Build/Build\\+Definition.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_configuration.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 233.918129\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 2.137500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Configuration) cw\n(VstsRestAPI.IConfiguration) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Configuration) 0.000000 0.000000 box\n (VstsRestAPI.IConfiguration) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_configuration.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_configuration}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Configuration Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_configuration}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Configuration@{Vsts\\+Rest\\+A\\+P\\+I.\\+Configuration}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Configuration\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_configuration}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_abd5e90510865a2799395ce6762fbbdcc}\\label{class_vsts_rest_a_p_i_1_1_configuration_abd5e90510865a2799395ce6762fbbdcc}} \nstring {\\bfseries Uri\\+String}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_a63a68c11c10bf1faf680ed0b46abf41d}\\label{class_vsts_rest_a_p_i_1_1_configuration_a63a68c11c10bf1faf680ed0b46abf41d}} \nstring {\\bfseries Personal\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_a0a2c84fdf0be261d3457155046dbe2db}\\label{class_vsts_rest_a_p_i_1_1_configuration_a0a2c84fdf0be261d3457155046dbe2db}} \nstring {\\bfseries Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_a066a03fd21ca3aa6bb975e122a800ef9}\\label{class_vsts_rest_a_p_i_1_1_configuration_a066a03fd21ca3aa6bb975e122a800ef9}} \nstring {\\bfseries Team}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_a02f955193381d72fc24fd2535f9b7320}\\label{class_vsts_rest_a_p_i_1_1_configuration_a02f955193381d72fc24fd2535f9b7320}} \nstring {\\bfseries Move\\+To\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_a0de95c2f6e851e816007d9daae110c6e}\\label{class_vsts_rest_a_p_i_1_1_configuration_a0de95c2f6e851e816007d9daae110c6e}} \nstring {\\bfseries Query}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_af981101615710e660dc3c954e8a8e00f}\\label{class_vsts_rest_a_p_i_1_1_configuration_af981101615710e660dc3c954e8a8e00f}} \nstring {\\bfseries Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_ae8227b87080c760e3b4d81ef746121d7}\\label{class_vsts_rest_a_p_i_1_1_configuration_ae8227b87080c760e3b4d81ef746121d7}} \nstring {\\bfseries Work\\+Item\\+Ids}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_a6a318c11c19bb1f57bc00c6cc0e12f4e}\\label{class_vsts_rest_a_p_i_1_1_configuration_a6a318c11c19bb1f57bc00c6cc0e12f4e}} \nstring {\\bfseries Work\\+Item\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_a53a7cac1a429b2aa4bfaa04a08840318}\\label{class_vsts_rest_a_p_i_1_1_configuration_a53a7cac1a429b2aa4bfaa04a08840318}} \nstring {\\bfseries Process\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_ad12123a7877f666299ea72e3f234a436}\\label{class_vsts_rest_a_p_i_1_1_configuration_ad12123a7877f666299ea72e3f234a436}} \nstring {\\bfseries Pick\\+List\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_aecc0b78e15cfb0f61fd3699bad83211a}\\label{class_vsts_rest_a_p_i_1_1_configuration_aecc0b78e15cfb0f61fd3699bad83211a}} \nstring {\\bfseries Query\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_afd73ff022d8969e254d375ced75db832}\\label{class_vsts_rest_a_p_i_1_1_configuration_afd73ff022d8969e254d375ced75db832}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_ae9e3abdb70d02de16b5cd44e25875452}\\label{class_vsts_rest_a_p_i_1_1_configuration_ae9e3abdb70d02de16b5cd44e25875452}} \nstring {\\bfseries Git\\+Repository\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_configuration_a21235089b15bff042218bd3bd143b705}\\label{class_vsts_rest_a_p_i_1_1_configuration_a21235089b15bff042218bd3bd143b705}} \nstring {\\bfseries Version\\+Number}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/Configuration.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans.\\+Plans Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans.\\+Plans@{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans.\\+Plans}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans_abb95b3f5c4e3bf5310ab6786a1a463bf}\\label{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans_abb95b3f5c4e3bf5310ab6786a1a463bf}} \n{\\bfseries Plans} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans_a8ed2253f78a26bc96e9717c84a881355}{Add\\+Delivery\\+Plan}} (string json, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Create Delivery plans \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans_a90d0e421c773cbe53c37ff93bfe1f216}\\label{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans_a90d0e421c773cbe53c37ff93bfe1f216}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans_a8ed2253f78a26bc96e9717c84a881355}\\label{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans_a8ed2253f78a26bc96e9717c84a881355}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Delivery\\+Plans\\+::\\+Plans@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Delivery\\+Plans\\+::\\+Plans}!Add\\+Delivery\\+Plan@{Add\\+Delivery\\+Plan}}\n\\index{Add\\+Delivery\\+Plan@{Add\\+Delivery\\+Plan}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Delivery\\+Plans\\+::\\+Plans@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Delivery\\+Plans\\+::\\+Plans}}\n\\subsubsection{\\texorpdfstring{Add\\+Delivery\\+Plan()}{AddDeliveryPlan()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans.\\+Plans.\\+Add\\+Delivery\\+Plan (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nCreate Delivery plans \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Delivery\\+Plans/Plans.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_git_1_1_repository.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a3eaf35b7d85a3b7a1d736eaf25e5338f}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a3eaf35b7d85a3b7a1d736eaf25e5338f}} \n{\\bfseries Repository} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a46daa5b9a35a6efb4267c6ee4494df31}{get\\+Source\\+Code\\+From\\+Git\\+Hub}} (string json, string Project, string Repository\\+ID)\n\\begin{DoxyCompactList}\\small\\item\\em Get Source Code from \\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_git}{Git}} Hub \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_adb713f76b948694752aff2d111a3ed85}{Get\\+Repository\\+To\\+Delete}} (string Project)\n\\begin{DoxyCompactList}\\small\\item\\em Delete the default repository \\end{DoxyCompactList}\\item \nstring \\mbox{[}$\\,$\\mbox{]} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a0188a1509a001dc7bafc7ca6829daa8e}{Get\\+Default\\+Repository}} (string Repo\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get Default repository to delete \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}{Get\\+All\\+Repositories\\+Response.\\+Repositories}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a6cf8983ffb2539bb9d3d5eb2a1657c28}{Get\\+All\\+Repositories}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Get list of Repositories \\end{DoxyCompactList}\\item \nstring \\mbox{[}$\\,$\\mbox{]} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a2623c37a03e528aa6e0dd4f7bcac3a04}{Create\\+Repositorie}} (string name, string project\\+Id)\n\\begin{DoxyCompactList}\\small\\item\\em Creates \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository}{Repository}} \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_ae9bdfeecb8846a51d3900752166d6d74}{Delete\\+Repository}} (string repository\\+Id)\n\\begin{DoxyCompactList}\\small\\item\\em Delete repository \\end{DoxyCompactList}\\item \nstring \\mbox{[}$\\,$\\mbox{]} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_af74451a9ec41478f8a16fdb498ea96a0}{Create\\+Pull\\+Request}} (string json, string repository\\+Id)\n\\begin{DoxyCompactList}\\small\\item\\em Create Pull Request \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a9284efc83831e33d74892b68ff58b276}{Create\\+Comment\\+Thread}} (string repositor\\+Id, string pull\\+Request\\+Id, string json)\n\\begin{DoxyCompactList}\\small\\item\\em Create Comment thread for pull request \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a5c50b0035797a2b59071162bff47135c}{Add\\+Comment\\+To\\+Thread}} (string repositor\\+Id, string pull\\+Request\\+Id, string thread\\+Id, string json)\n\\begin{DoxyCompactList}\\small\\item\\em Add Comment thread \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_ad6665ada35d88c15727b7b9b1c21e687}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_ad6665ada35d88c15727b7b9b1c21e687}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a5c50b0035797a2b59071162bff47135c}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a5c50b0035797a2b59071162bff47135c}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!Add\\+Comment\\+To\\+Thread@{Add\\+Comment\\+To\\+Thread}}\n\\index{Add\\+Comment\\+To\\+Thread@{Add\\+Comment\\+To\\+Thread}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{Add\\+Comment\\+To\\+Thread()}{AddCommentToThread()}}\n{\\footnotesize\\ttfamily void Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+Add\\+Comment\\+To\\+Thread (\\begin{DoxyParamCaption}\\item[{string}]{repositor\\+Id,  }\\item[{string}]{pull\\+Request\\+Id,  }\\item[{string}]{thread\\+Id,  }\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nAdd Comment thread \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em repositor\\+Id} & \\\\\n\\hline\n{\\em pull\\+Request\\+Id} & \\\\\n\\hline\n{\\em thread\\+Id} & \\\\\n\\hline\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a9284efc83831e33d74892b68ff58b276}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a9284efc83831e33d74892b68ff58b276}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!Create\\+Comment\\+Thread@{Create\\+Comment\\+Thread}}\n\\index{Create\\+Comment\\+Thread@{Create\\+Comment\\+Thread}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{Create\\+Comment\\+Thread()}{CreateCommentThread()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+Create\\+Comment\\+Thread (\\begin{DoxyParamCaption}\\item[{string}]{repositor\\+Id,  }\\item[{string}]{pull\\+Request\\+Id,  }\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nCreate Comment thread for pull request \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em repositor\\+Id} & \\\\\n\\hline\n{\\em pull\\+Request\\+Id} & \\\\\n\\hline\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_af74451a9ec41478f8a16fdb498ea96a0}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_af74451a9ec41478f8a16fdb498ea96a0}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!Create\\+Pull\\+Request@{Create\\+Pull\\+Request}}\n\\index{Create\\+Pull\\+Request@{Create\\+Pull\\+Request}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{Create\\+Pull\\+Request()}{CreatePullRequest()}}\n{\\footnotesize\\ttfamily string \\mbox{[}$\\,$\\mbox{]} Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+Create\\+Pull\\+Request (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{repository\\+Id }\\end{DoxyParamCaption})}\n\n\n\nCreate Pull Request \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em repository\\+Id} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a2623c37a03e528aa6e0dd4f7bcac3a04}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a2623c37a03e528aa6e0dd4f7bcac3a04}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!Create\\+Repositorie@{Create\\+Repositorie}}\n\\index{Create\\+Repositorie@{Create\\+Repositorie}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{Create\\+Repositorie()}{CreateRepositorie()}}\n{\\footnotesize\\ttfamily string \\mbox{[}$\\,$\\mbox{]} Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+Create\\+Repositorie (\\begin{DoxyParamCaption}\\item[{string}]{name,  }\\item[{string}]{project\\+Id }\\end{DoxyParamCaption})}\n\n\n\nCreates \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository}{Repository}} \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em name} & \\\\\n\\hline\n{\\em project\\+Id} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_ae9bdfeecb8846a51d3900752166d6d74}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_ae9bdfeecb8846a51d3900752166d6d74}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!Delete\\+Repository@{Delete\\+Repository}}\n\\index{Delete\\+Repository@{Delete\\+Repository}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{Delete\\+Repository()}{DeleteRepository()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+Delete\\+Repository (\\begin{DoxyParamCaption}\\item[{string}]{repository\\+Id }\\end{DoxyParamCaption})}\n\n\n\nDelete repository \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em repository\\+Id} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a6cf8983ffb2539bb9d3d5eb2a1657c28}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a6cf8983ffb2539bb9d3d5eb2a1657c28}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!Get\\+All\\+Repositories@{Get\\+All\\+Repositories}}\n\\index{Get\\+All\\+Repositories@{Get\\+All\\+Repositories}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{Get\\+All\\+Repositories()}{GetAllRepositories()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}{Get\\+All\\+Repositories\\+Response.\\+Repositories}} Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+Get\\+All\\+Repositories (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nGet list of Repositories \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a0188a1509a001dc7bafc7ca6829daa8e}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a0188a1509a001dc7bafc7ca6829daa8e}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!Get\\+Default\\+Repository@{Get\\+Default\\+Repository}}\n\\index{Get\\+Default\\+Repository@{Get\\+Default\\+Repository}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{Get\\+Default\\+Repository()}{GetDefaultRepository()}}\n{\\footnotesize\\ttfamily string \\mbox{[}$\\,$\\mbox{]} Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+Get\\+Default\\+Repository (\\begin{DoxyParamCaption}\\item[{string}]{Repo\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet Default repository to delete \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Repo\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_adb713f76b948694752aff2d111a3ed85}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_adb713f76b948694752aff2d111a3ed85}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!Get\\+Repository\\+To\\+Delete@{Get\\+Repository\\+To\\+Delete}}\n\\index{Get\\+Repository\\+To\\+Delete@{Get\\+Repository\\+To\\+Delete}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{Get\\+Repository\\+To\\+Delete()}{GetRepositoryToDelete()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+Get\\+Repository\\+To\\+Delete (\\begin{DoxyParamCaption}\\item[{string}]{Project }\\end{DoxyParamCaption})}\n\n\n\nDelete the default repository \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a46daa5b9a35a6efb4267c6ee4494df31}\\label{class_vsts_rest_a_p_i_1_1_git_1_1_repository_a46daa5b9a35a6efb4267c6ee4494df31}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}!get\\+Source\\+Code\\+From\\+Git\\+Hub@{get\\+Source\\+Code\\+From\\+Git\\+Hub}}\n\\index{get\\+Source\\+Code\\+From\\+Git\\+Hub@{get\\+Source\\+Code\\+From\\+Git\\+Hub}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Git\\+::\\+Repository}}\n\\subsubsection{\\texorpdfstring{get\\+Source\\+Code\\+From\\+Git\\+Hub()}{getSourceCodeFromGitHub()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository.\\+get\\+Source\\+Code\\+From\\+Git\\+Hub (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{Project,  }\\item[{string}]{Repository\\+ID }\\end{DoxyParamCaption})}\n\n\n\nGet Source Code from \\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_git}{Git}} Hub \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em Project} & \\\\\n\\hline\n{\\em Repository\\+ID} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Git/Repository.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Account Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Account@{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Account}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account_a3311df1b111ffd6c3fbcb7162f0fb400}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account_a3311df1b111ffd6c3fbcb7162f0fb400}} \n{\\bfseries Account} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}{Account\\+Members.\\+Account}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account_a0b98e88fa8e05a3d17b55a0932e1e8f6}{Get\\+Account\\+Members}} (string account\\+Name, string Access\\+Token)\n\\begin{DoxyCompactList}\\small\\item\\em Get \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}{Account}} members \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account_ab46ba987676d8cb72e787e4eefbb4055}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account_ab46ba987676d8cb72e787e4eefbb4055}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account_a0b98e88fa8e05a3d17b55a0932e1e8f6}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account_a0b98e88fa8e05a3d17b55a0932e1e8f6}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Account@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Account}!Get\\+Account\\+Members@{Get\\+Account\\+Members}}\n\\index{Get\\+Account\\+Members@{Get\\+Account\\+Members}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Account@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Account}}\n\\subsubsection{\\texorpdfstring{Get\\+Account\\+Members()}{GetAccountMembers()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}{Account\\+Members.\\+Account}} Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Account.\\+Get\\+Account\\+Members (\\begin{DoxyParamCaption}\\item[{string}]{account\\+Name,  }\\item[{string}]{Access\\+Token }\\end{DoxyParamCaption})}\n\n\n\nGet \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}{Account}} members \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em account\\+Name} & \\\\\n\\hline\n{\\em Access\\+Token} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Projects\\+And\\+Teams/Account.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_ab4361982eb517567e884317df447132f}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_ab4361982eb517567e884317df447132f}} \n{\\bfseries Projects} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a5972180d08f6a32c0a22c03f94622904}{Is\\+Account\\+Has\\+Projects}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Check for the existance of project \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}{Listof\\+Projects\\+Response.\\+Projects}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_afd4729308614a2d4f4124c7eedafecfc}{List\\+Of\\+Projects}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Get List of project \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a2dc9bc6f325831b4f86c91cdfbd2bcc9}{Create\\+Team\\+Project}} (string json)\n\\begin{DoxyCompactList}\\small\\item\\em Create team project \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a488712df438d066911a1065f15556cbc}{Get\\+Project\\+Id\\+By\\+Name}} (string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get Project id \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_abd2b8fa4ffdb672a1975b61964f9d72f}{Get\\+Project\\+State\\+By\\+Name}} (string project)\n\\begin{DoxyCompactList}\\small\\item\\em Get project to know the status of the project \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a498b140ca253c7976fb8129793c2650e}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a498b140ca253c7976fb8129793c2650e}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a2dc9bc6f325831b4f86c91cdfbd2bcc9}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a2dc9bc6f325831b4f86c91cdfbd2bcc9}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}!Create\\+Team\\+Project@{Create\\+Team\\+Project}}\n\\index{Create\\+Team\\+Project@{Create\\+Team\\+Project}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}}\n\\subsubsection{\\texorpdfstring{Create\\+Team\\+Project()}{CreateTeamProject()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects.\\+Create\\+Team\\+Project (\\begin{DoxyParamCaption}\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nCreate team project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a488712df438d066911a1065f15556cbc}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a488712df438d066911a1065f15556cbc}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}!Get\\+Project\\+Id\\+By\\+Name@{Get\\+Project\\+Id\\+By\\+Name}}\n\\index{Get\\+Project\\+Id\\+By\\+Name@{Get\\+Project\\+Id\\+By\\+Name}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}}\n\\subsubsection{\\texorpdfstring{Get\\+Project\\+Id\\+By\\+Name()}{GetProjectIdByName()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects.\\+Get\\+Project\\+Id\\+By\\+Name (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet Project id \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_abd2b8fa4ffdb672a1975b61964f9d72f}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_abd2b8fa4ffdb672a1975b61964f9d72f}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}!Get\\+Project\\+State\\+By\\+Name@{Get\\+Project\\+State\\+By\\+Name}}\n\\index{Get\\+Project\\+State\\+By\\+Name@{Get\\+Project\\+State\\+By\\+Name}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}}\n\\subsubsection{\\texorpdfstring{Get\\+Project\\+State\\+By\\+Name()}{GetProjectStateByName()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects.\\+Get\\+Project\\+State\\+By\\+Name (\\begin{DoxyParamCaption}\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nGet project to know the status of the project \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a5972180d08f6a32c0a22c03f94622904}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_a5972180d08f6a32c0a22c03f94622904}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}!Is\\+Account\\+Has\\+Projects@{Is\\+Account\\+Has\\+Projects}}\n\\index{Is\\+Account\\+Has\\+Projects@{Is\\+Account\\+Has\\+Projects}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}}\n\\subsubsection{\\texorpdfstring{Is\\+Account\\+Has\\+Projects()}{IsAccountHasProjects()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects.\\+Is\\+Account\\+Has\\+Projects (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nCheck for the existance of project \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_afd4729308614a2d4f4124c7eedafecfc}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects_afd4729308614a2d4f4124c7eedafecfc}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}!List\\+Of\\+Projects@{List\\+Of\\+Projects}}\n\\index{List\\+Of\\+Projects@{List\\+Of\\+Projects}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Projects}}\n\\subsubsection{\\texorpdfstring{List\\+Of\\+Projects()}{ListOfProjects()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}{Listof\\+Projects\\+Response.\\+Projects}} Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects.\\+List\\+Of\\+Projects (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nGet List of project \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Projects\\+And\\+Teams/Projects.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team@{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a9f31252f6d3ccf04bae84eb976c7bc00}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a9f31252f6d3ccf04bae84eb976c7bc00}} \n{\\bfseries Team} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}{Get\\+Team\\+Response.\\+Team}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab42d1bd636a827438a8151f795fedca0}{Create\\+New\\+Team}} (string json, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Create teams \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}{Team\\+Member\\+Response.\\+Team\\+Members}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a08de9d00456ae8e5407adfb6e3f1f135}{Get\\+Team\\+Members}} (string project\\+Name, string teama\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{Team}} members \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab57dd1be0d460862a1b4cd64a69b81b8}{Create\\+Area}} (string project\\+Name, string area\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Create Area \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab7ec4e48d49881e50a0a7aae20ede38a}{Set\\+Area\\+For\\+Teams}} (string project\\+Name, string team\\+Name, string json)\n\\begin{DoxyCompactList}\\small\\item\\em Assign areas for teams \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_af1ece216c9baa58c5e8b2a527318ba3c}{Get\\+Team\\+Setting}} (string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get team setting \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a9edc630def2d89f784812cf88f706a4c}{Set\\+Back\\+Log\\+Iteration\\+For\\+Team}} (string Iteration\\+Id, string project\\+Name, string team\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Set Iteration for team \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}{Team\\+Iterations\\+Response.\\+Iterations}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a719daa0225d480d779037baaa901c201}{Get\\+All\\+Iterations}} (string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get All Iterations \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a513442a4bc421f2b3f0fb980d1c6ed72}{Set\\+Iterations\\+For\\+Team}} (string Iteration\\+Id, string team\\+Name, string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Set Iteration for team \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}{Team\\+Response}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a252afe1d5826c3251ace46c5e36dcb39}{Get\\+Team\\+By\\+Name}} (string project\\+Name, string teama\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{Team}} details by \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{Team}} name \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a0dc4246efe1e364632516d878b9c17fb}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a0dc4246efe1e364632516d878b9c17fb}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab57dd1be0d460862a1b4cd64a69b81b8}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab57dd1be0d460862a1b4cd64a69b81b8}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Create\\+Area@{Create\\+Area}}\n\\index{Create\\+Area@{Create\\+Area}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Create\\+Area()}{CreateArea()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Create\\+Area (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{area\\+Name }\\end{DoxyParamCaption})}\n\n\n\nCreate Area \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em area\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab42d1bd636a827438a8151f795fedca0}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab42d1bd636a827438a8151f795fedca0}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Create\\+New\\+Team@{Create\\+New\\+Team}}\n\\index{Create\\+New\\+Team@{Create\\+New\\+Team}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Create\\+New\\+Team()}{CreateNewTeam()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}{Get\\+Team\\+Response.\\+Team}} Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Create\\+New\\+Team (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nCreate teams \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a719daa0225d480d779037baaa901c201}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a719daa0225d480d779037baaa901c201}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Get\\+All\\+Iterations@{Get\\+All\\+Iterations}}\n\\index{Get\\+All\\+Iterations@{Get\\+All\\+Iterations}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Get\\+All\\+Iterations()}{GetAllIterations()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}{Team\\+Iterations\\+Response.\\+Iterations}} Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Get\\+All\\+Iterations (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet All Iterations \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a252afe1d5826c3251ace46c5e36dcb39}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a252afe1d5826c3251ace46c5e36dcb39}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Get\\+Team\\+By\\+Name@{Get\\+Team\\+By\\+Name}}\n\\index{Get\\+Team\\+By\\+Name@{Get\\+Team\\+By\\+Name}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Get\\+Team\\+By\\+Name()}{GetTeamByName()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}{Team\\+Response}} Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Get\\+Team\\+By\\+Name (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{teama\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{Team}} details by \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{Team}} name \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em teama\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a08de9d00456ae8e5407adfb6e3f1f135}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a08de9d00456ae8e5407adfb6e3f1f135}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Get\\+Team\\+Members@{Get\\+Team\\+Members}}\n\\index{Get\\+Team\\+Members@{Get\\+Team\\+Members}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Get\\+Team\\+Members()}{GetTeamMembers()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}{Team\\+Member\\+Response.\\+Team\\+Members}} Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Get\\+Team\\+Members (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{teama\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{Team}} members \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em teama\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_af1ece216c9baa58c5e8b2a527318ba3c}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_af1ece216c9baa58c5e8b2a527318ba3c}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Get\\+Team\\+Setting@{Get\\+Team\\+Setting}}\n\\index{Get\\+Team\\+Setting@{Get\\+Team\\+Setting}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Get\\+Team\\+Setting()}{GetTeamSetting()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Get\\+Team\\+Setting (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet team setting \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab7ec4e48d49881e50a0a7aae20ede38a}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_ab7ec4e48d49881e50a0a7aae20ede38a}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Set\\+Area\\+For\\+Teams@{Set\\+Area\\+For\\+Teams}}\n\\index{Set\\+Area\\+For\\+Teams@{Set\\+Area\\+For\\+Teams}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Set\\+Area\\+For\\+Teams()}{SetAreaForTeams()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Set\\+Area\\+For\\+Teams (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{team\\+Name,  }\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nAssign areas for teams \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em team\\+Name} & \\\\\n\\hline\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a9edc630def2d89f784812cf88f706a4c}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a9edc630def2d89f784812cf88f706a4c}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Set\\+Back\\+Log\\+Iteration\\+For\\+Team@{Set\\+Back\\+Log\\+Iteration\\+For\\+Team}}\n\\index{Set\\+Back\\+Log\\+Iteration\\+For\\+Team@{Set\\+Back\\+Log\\+Iteration\\+For\\+Team}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Set\\+Back\\+Log\\+Iteration\\+For\\+Team()}{SetBackLogIterationForTeam()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Set\\+Back\\+Log\\+Iteration\\+For\\+Team (\\begin{DoxyParamCaption}\\item[{string}]{Iteration\\+Id,  }\\item[{string}]{project\\+Name,  }\\item[{string}]{team\\+Name }\\end{DoxyParamCaption})}\n\n\n\nSet Iteration for team \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Iteration\\+Id} & \\\\\n\\hline\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em team\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a513442a4bc421f2b3f0fb980d1c6ed72}\\label{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team_a513442a4bc421f2b3f0fb980d1c6ed72}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}!Set\\+Iterations\\+For\\+Team@{Set\\+Iterations\\+For\\+Team}}\n\\index{Set\\+Iterations\\+For\\+Team@{Set\\+Iterations\\+For\\+Team}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Projects\\+And\\+Teams\\+::\\+Team}}\n\\subsubsection{\\texorpdfstring{Set\\+Iterations\\+For\\+Team()}{SetIterationsForTeam()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team.\\+Set\\+Iterations\\+For\\+Team (\\begin{DoxyParamCaption}\\item[{string}]{Iteration\\+Id,  }\\item[{string}]{team\\+Name,  }\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nSet Iteration for team \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Iteration\\+Id} & \\\\\n\\hline\n{\\em team\\+Name} & \\\\\n\\hline\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Projects\\+And\\+Teams/Team.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a63c737d81f8ff1a145f88aee77345cae}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a63c737d81f8ff1a145f88aee77345cae}} \n{\\bfseries Querys} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_aef10c7b2cf6ce84aece4df4fc87a9fd6}{Get\\+Dash\\+Board\\+Id}} (string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get Dashboard by ID \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a367ee3271ff58e50273a73e2bb5da282}{Get\\+Dashboarde\\+Tag}} (string dashboard\\+Id, string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get Dashboard e\\+Tag \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}{Query\\+Response}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_aefe4b14dbc3475676cfcc8f3a007546e}{Create\\+Query}} (string project, string json)\n\\begin{DoxyCompactList}\\small\\item\\em Create Query \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_ad50ab1e6c58ac12bd8d39ee52a514e0d}{Update\\+Query}} (string query, string project, string json)\n\\begin{DoxyCompactList}\\small\\item\\em Update existing query \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a6e8876d7b58b992e3cde03d1c13e3d5a}{Create\\+Widget}} (string project, string dash\\+Board\\+Id, string json)\n\\begin{DoxyCompactList}\\small\\item\\em Create widget for dashboard \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}{Query\\+Response}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a8cf2beece89d16eb8b96e0c3c34142b2}{Get\\+Query\\+By\\+Path\\+And\\+Name}} (string project, string query\\+Name, string path)\n\\begin{DoxyCompactList}\\small\\item\\em Get Query by path \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_adc1b3bd0066fd1340db2fbf49b56934f}{Delete\\+Default\\+Dashboard}} (string project, string dash\\+Board\\+Id)\n\\begin{DoxyCompactList}\\small\\item\\em Delete default dashboard \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a819bd19bb1d6657c86418a3f3ef3c86b}{Create\\+New\\+Dash\\+Board}} (string project, string json)\n\\begin{DoxyCompactList}\\small\\item\\em Create new dashboard \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a2409c19fabbee091d0252ab43a9f20a7}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a2409c19fabbee091d0252ab43a9f20a7}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a819bd19bb1d6657c86418a3f3ef3c86b}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a819bd19bb1d6657c86418a3f3ef3c86b}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}!Create\\+New\\+Dash\\+Board@{Create\\+New\\+Dash\\+Board}}\n\\index{Create\\+New\\+Dash\\+Board@{Create\\+New\\+Dash\\+Board}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}}\n\\subsubsection{\\texorpdfstring{Create\\+New\\+Dash\\+Board()}{CreateNewDashBoard()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys.\\+Create\\+New\\+Dash\\+Board (\\begin{DoxyParamCaption}\\item[{string}]{project,  }\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nCreate new dashboard \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_aefe4b14dbc3475676cfcc8f3a007546e}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_aefe4b14dbc3475676cfcc8f3a007546e}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}!Create\\+Query@{Create\\+Query}}\n\\index{Create\\+Query@{Create\\+Query}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}}\n\\subsubsection{\\texorpdfstring{Create\\+Query()}{CreateQuery()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}{Query\\+Response}} Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys.\\+Create\\+Query (\\begin{DoxyParamCaption}\\item[{string}]{project,  }\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nCreate Query \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a6e8876d7b58b992e3cde03d1c13e3d5a}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a6e8876d7b58b992e3cde03d1c13e3d5a}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}!Create\\+Widget@{Create\\+Widget}}\n\\index{Create\\+Widget@{Create\\+Widget}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}}\n\\subsubsection{\\texorpdfstring{Create\\+Widget()}{CreateWidget()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys.\\+Create\\+Widget (\\begin{DoxyParamCaption}\\item[{string}]{project,  }\\item[{string}]{dash\\+Board\\+Id,  }\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nCreate widget for dashboard \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n{\\em dash\\+Board\\+Id} & \\\\\n\\hline\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_adc1b3bd0066fd1340db2fbf49b56934f}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_adc1b3bd0066fd1340db2fbf49b56934f}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}!Delete\\+Default\\+Dashboard@{Delete\\+Default\\+Dashboard}}\n\\index{Delete\\+Default\\+Dashboard@{Delete\\+Default\\+Dashboard}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}}\n\\subsubsection{\\texorpdfstring{Delete\\+Default\\+Dashboard()}{DeleteDefaultDashboard()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys.\\+Delete\\+Default\\+Dashboard (\\begin{DoxyParamCaption}\\item[{string}]{project,  }\\item[{string}]{dash\\+Board\\+Id }\\end{DoxyParamCaption})}\n\n\n\nDelete default dashboard \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n{\\em dash\\+Board\\+Id} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a367ee3271ff58e50273a73e2bb5da282}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a367ee3271ff58e50273a73e2bb5da282}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}!Get\\+Dashboarde\\+Tag@{Get\\+Dashboarde\\+Tag}}\n\\index{Get\\+Dashboarde\\+Tag@{Get\\+Dashboarde\\+Tag}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}}\n\\subsubsection{\\texorpdfstring{Get\\+Dashboarde\\+Tag()}{GetDashboardeTag()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys.\\+Get\\+Dashboarde\\+Tag (\\begin{DoxyParamCaption}\\item[{string}]{dashboard\\+Id,  }\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet Dashboard e\\+Tag \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em dashboard\\+Id} & \\\\\n\\hline\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_aef10c7b2cf6ce84aece4df4fc87a9fd6}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_aef10c7b2cf6ce84aece4df4fc87a9fd6}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}!Get\\+Dash\\+Board\\+Id@{Get\\+Dash\\+Board\\+Id}}\n\\index{Get\\+Dash\\+Board\\+Id@{Get\\+Dash\\+Board\\+Id}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}}\n\\subsubsection{\\texorpdfstring{Get\\+Dash\\+Board\\+Id()}{GetDashBoardId()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys.\\+Get\\+Dash\\+Board\\+Id (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet Dashboard by ID \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a8cf2beece89d16eb8b96e0c3c34142b2}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_a8cf2beece89d16eb8b96e0c3c34142b2}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}!Get\\+Query\\+By\\+Path\\+And\\+Name@{Get\\+Query\\+By\\+Path\\+And\\+Name}}\n\\index{Get\\+Query\\+By\\+Path\\+And\\+Name@{Get\\+Query\\+By\\+Path\\+And\\+Name}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}}\n\\subsubsection{\\texorpdfstring{Get\\+Query\\+By\\+Path\\+And\\+Name()}{GetQueryByPathAndName()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}{Query\\+Response}} Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys.\\+Get\\+Query\\+By\\+Path\\+And\\+Name (\\begin{DoxyParamCaption}\\item[{string}]{project,  }\\item[{string}]{query\\+Name,  }\\item[{string}]{path }\\end{DoxyParamCaption})}\n\n\n\nGet Query by path \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n{\\em query\\+Name} & \\\\\n\\hline\n{\\em path} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_ad50ab1e6c58ac12bd8d39ee52a514e0d}\\label{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys_ad50ab1e6c58ac12bd8d39ee52a514e0d}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}!Update\\+Query@{Update\\+Query}}\n\\index{Update\\+Query@{Update\\+Query}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Querys\\+And\\+Widgets\\+::\\+Querys}}\n\\subsubsection{\\texorpdfstring{Update\\+Query()}{UpdateQuery()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys.\\+Update\\+Query (\\begin{DoxyParamCaption}\\item[{string}]{query,  }\\item[{string}]{project,  }\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nUpdate existing query \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em query} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Querys\\+And\\+Widgets/Querys.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_queues_1_1_queue.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_queues_1_1_queue}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues.\\+Queue Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_queues_1_1_queue}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues.\\+Queue@{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues.\\+Queue}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_af4f41af0b2fcff3a7fce8e852d020fb8}\\label{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_af4f41af0b2fcff3a7fce8e852d020fb8}} \n{\\bfseries Queue} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nDictionary$<$ string, int $>$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_a25b076002dd514e7a069197b24e9de56}{Get\\+Queues}} ()\n\\begin{DoxyCompactList}\\small\\item\\em Get Agent queue \\end{DoxyCompactList}\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_a70ffbed55a315ec9077a6efd3ae1f1b0}\\label{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_a70ffbed55a315ec9077a6efd3ae1f1b0}} \nint {\\bfseries Create\\+Queue} (string name)\n\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_a5ec3420e27cf685d0d2fea8b4246fe3a}\\label{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_a5ec3420e27cf685d0d2fea8b4246fe3a}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_a25b076002dd514e7a069197b24e9de56}\\label{class_vsts_rest_a_p_i_1_1_queues_1_1_queue_a25b076002dd514e7a069197b24e9de56}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Queues\\+::\\+Queue@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Queues\\+::\\+Queue}!Get\\+Queues@{Get\\+Queues}}\n\\index{Get\\+Queues@{Get\\+Queues}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Queues\\+::\\+Queue@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Queues\\+::\\+Queue}}\n\\subsubsection{\\texorpdfstring{Get\\+Queues()}{GetQueues()}}\n{\\footnotesize\\ttfamily Dictionary$<$string, int$>$ Vsts\\+Rest\\+A\\+P\\+I.\\+Queues.\\+Queue.\\+Get\\+Queues (\\begin{DoxyParamCaption}{ }\\end{DoxyParamCaption})}\n\n\n\nGet Agent queue \n\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Queues/Queue.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_release_1_1_release_definition.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Release.\\+Release\\+Definition Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Release.\\+Release\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I.\\+Release.\\+Release\\+Definition}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a7e29d1c6493b62537d3bd70990fab5f7}\\label{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a7e29d1c6493b62537d3bd70990fab5f7}} \n{\\bfseries Release\\+Definition} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nstring \\mbox{[}$\\,$\\mbox{]} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a3e03bd4ea027dca1c1cda2e0fe8ca73d}{Create\\+Release\\+Definition}} (string json, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Create \\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_release}{Release}} Definition \\end{DoxyCompactList}\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a6b9d8b14e1417216140cf0493a55b013}\\label{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a6b9d8b14e1417216140cf0493a55b013}} \nbool {\\bfseries Create\\+Release} (string json, string project)\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_ad1c33d32a37963808c99742b82010bf8}\\label{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_ad1c33d32a37963808c99742b82010bf8}} \nint \\mbox{[}$\\,$\\mbox{]} {\\bfseries Get\\+Environment\\+Ids\\+By\\+Name} (string project, string definition\\+Name, string environment1, string environment2)\n\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a0e13c618a8d0efeabb6fd8751249387a}\\label{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a0e13c618a8d0efeabb6fd8751249387a}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a3e03bd4ea027dca1c1cda2e0fe8ca73d}\\label{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition_a3e03bd4ea027dca1c1cda2e0fe8ca73d}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Release\\+::\\+Release\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Release\\+::\\+Release\\+Definition}!Create\\+Release\\+Definition@{Create\\+Release\\+Definition}}\n\\index{Create\\+Release\\+Definition@{Create\\+Release\\+Definition}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Release\\+::\\+Release\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Release\\+::\\+Release\\+Definition}}\n\\subsubsection{\\texorpdfstring{Create\\+Release\\+Definition()}{CreateReleaseDefinition()}}\n{\\footnotesize\\ttfamily string \\mbox{[}$\\,$\\mbox{]} Vsts\\+Rest\\+A\\+P\\+I.\\+Release.\\+Release\\+Definition.\\+Create\\+Release\\+Definition (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nCreate \\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_release}{Release}} Definition \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Release/Release\\+Definition.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Service.\\+Service\\+End\\+Point Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Service.\\+Service\\+End\\+Point@{Vsts\\+Rest\\+A\\+P\\+I.\\+Service.\\+Service\\+End\\+Point}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point_adb7dd1bfe4949e2a7551809eeff98600}\\label{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point_adb7dd1bfe4949e2a7551809eeff98600}} \n{\\bfseries Service\\+End\\+Point} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}{Service\\+Endpoint\\+Model}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point_a6243f8d6d7cf88a7327d1f99acf974c5}{Create\\+Service\\+End\\+Point}} (string json, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Create service endpoints \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point_a02dbf9151844c000fd955917c4c59c35}\\label{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point_a02dbf9151844c000fd955917c4c59c35}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point_a6243f8d6d7cf88a7327d1f99acf974c5}\\label{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point_a6243f8d6d7cf88a7327d1f99acf974c5}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Service\\+::\\+Service\\+End\\+Point@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Service\\+::\\+Service\\+End\\+Point}!Create\\+Service\\+End\\+Point@{Create\\+Service\\+End\\+Point}}\n\\index{Create\\+Service\\+End\\+Point@{Create\\+Service\\+End\\+Point}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Service\\+::\\+Service\\+End\\+Point@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Service\\+::\\+Service\\+End\\+Point}}\n\\subsubsection{\\texorpdfstring{Create\\+Service\\+End\\+Point()}{CreateServiceEndPoint()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}{Service\\+Endpoint\\+Model}} Vsts\\+Rest\\+A\\+P\\+I.\\+Service.\\+Service\\+End\\+Point.\\+Create\\+Service\\+End\\+Point (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nCreate service endpoints \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Service/Service\\+End\\+Point.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management.\\+Test\\+Management Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management.\\+Test\\+Management@{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management.\\+Test\\+Management}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_aaa430e73de355d3670c0eee2af182389}\\label{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_aaa430e73de355d3670c0eee2af182389}} \n{\\bfseries Test\\+Management} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nstring \\mbox{[}$\\,$\\mbox{]} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a32fa8edefb9a51e435dc084a0a05c542}{Create\\+Test\\+Plan}} (string json, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Create test plans \\end{DoxyCompactList}\\item \nstring \\mbox{[}$\\,$\\mbox{]} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a5327dfbebb20e530b39cfa6a95ddaa4a}{Creat\\+Test\\+Suite}} (string json, string test\\+Plan, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Create test suites \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a0c52041b2fed39904f0452d7ea26f51c}{Add\\+Test\\+Cases\\+To\\+Suite}} (string test\\+Cases, string test\\+Plan, string test\\+Suite, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Add test cases to test suites \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a59641e836cfa3e8872233db4f8d64da4}\\label{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a59641e836cfa3e8872233db4f8d64da4}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a0c52041b2fed39904f0452d7ea26f51c}\\label{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a0c52041b2fed39904f0452d7ea26f51c}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management}!Add\\+Test\\+Cases\\+To\\+Suite@{Add\\+Test\\+Cases\\+To\\+Suite}}\n\\index{Add\\+Test\\+Cases\\+To\\+Suite@{Add\\+Test\\+Cases\\+To\\+Suite}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management}}\n\\subsubsection{\\texorpdfstring{Add\\+Test\\+Cases\\+To\\+Suite()}{AddTestCasesToSuite()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management.\\+Test\\+Management.\\+Add\\+Test\\+Cases\\+To\\+Suite (\\begin{DoxyParamCaption}\\item[{string}]{test\\+Cases,  }\\item[{string}]{test\\+Plan,  }\\item[{string}]{test\\+Suite,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nAdd test cases to test suites \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em test\\+Cases} & \\\\\n\\hline\n{\\em test\\+Plan} & \\\\\n\\hline\n{\\em test\\+Suite} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a32fa8edefb9a51e435dc084a0a05c542}\\label{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a32fa8edefb9a51e435dc084a0a05c542}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management}!Create\\+Test\\+Plan@{Create\\+Test\\+Plan}}\n\\index{Create\\+Test\\+Plan@{Create\\+Test\\+Plan}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management}}\n\\subsubsection{\\texorpdfstring{Create\\+Test\\+Plan()}{CreateTestPlan()}}\n{\\footnotesize\\ttfamily string \\mbox{[}$\\,$\\mbox{]} Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management.\\+Test\\+Management.\\+Create\\+Test\\+Plan (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nCreate test plans \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a5327dfbebb20e530b39cfa6a95ddaa4a}\\label{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management_a5327dfbebb20e530b39cfa6a95ddaa4a}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management}!Creat\\+Test\\+Suite@{Creat\\+Test\\+Suite}}\n\\index{Creat\\+Test\\+Suite@{Creat\\+Test\\+Suite}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Test\\+Management\\+::\\+Test\\+Management}}\n\\subsubsection{\\texorpdfstring{Creat\\+Test\\+Suite()}{CreatTestSuite()}}\n{\\footnotesize\\ttfamily string \\mbox{[}$\\,$\\mbox{]} Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management.\\+Test\\+Management.\\+Creat\\+Test\\+Suite (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{test\\+Plan,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nCreate test suites \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em test\\+Plan} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Test\\+Management/Test\\+Management.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_utility.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_utility}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Utility Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_utility}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Utility@{Vsts\\+Rest\\+A\\+P\\+I.\\+Utility}}\n\\subsection*{Static Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_utility_ac76d3eef465a4c5708878000c2160394}\\label{class_vsts_rest_a_p_i_1_1_utility_ac76d3eef465a4c5708878000c2160394}} \nstatic string {\\bfseries Geterro\\+Message} (string Exception)\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/Utility.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 382.165605\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 1.308333 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 18 def\n/cols 2 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n(VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions) cw\n(VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team) cw\n(VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects) cw\n(VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard) cw\n(VstsRestAPI.Viewmodel.Queue.QueueModel) cw\n(VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories) cw\n(VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules) cw\n(VstsRestAPI.Viewmodel.WorkItem.ColumnPost) cw\n(VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node) cw\n(VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse) cw\n(VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards) cw\n(VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node) cw\n(VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes) cw\n(VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results) cw\n(VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems) cw\n(VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities) cw\n(VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 17.000000 box\n (VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions) 1.000000 16.000000 box\n (VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team) 1.000000 15.000000 box\n (VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects) 1.000000 14.000000 box\n (VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard) 1.000000 13.000000 box\n (VstsRestAPI.Viewmodel.Queue.QueueModel) 1.000000 12.000000 box\n (VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories) 1.000000 11.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules) 1.000000 10.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.ColumnPost) 1.000000 9.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node) 1.000000 8.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse) 1.000000 7.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards) 1.000000 6.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node) 1.000000 5.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes) 1.000000 4.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results) 1.000000 3.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems) 1.000000 2.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities) 1.000000 1.000000 box\n (VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem) 1.000000 0.000000 box\n\n% ----- relations -----\n\nsolid\n1 0.000000 16.250000 out\nsolid\n0 0.000000 16.500000 hedge\nsolid\n0 0.000000 15.500000 hedge\nsolid\n0 0.000000 14.500000 hedge\nsolid\n0 0.000000 13.500000 hedge\nsolid\n0 0.000000 12.500000 hedge\nsolid\n0 0.000000 11.500000 hedge\nsolid\n0 0.000000 10.500000 hedge\nsolid\n0 0.000000 9.500000 hedge\nsolid\n0 0.000000 8.500000 hedge\nsolid\n0 0.000000 7.500000 hedge\nsolid\n0 0.000000 6.500000 hedge\nsolid\n0 0.000000 5.500000 hedge\nsolid\n0 0.000000 4.500000 hedge\nsolid\n0 0.000000 3.500000 hedge\nsolid\n0 0.000000 2.500000 hedge\nsolid\n0 0.000000 1.500000 hedge\nsolid\n0 0.000000 0.500000 hedge\nsolid\n0.000000 17.000000 0.500000 vedge\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Base\\+View\\+Model Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Base\\+View\\+Model@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Base\\+View\\+Model}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Base\\+View\\+Model\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=10.700637cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model_ac836c52d1e4aa236141f001c78cdc418}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model_ac836c52d1e4aa236141f001c78cdc418}} \nHttp\\+Status\\+Code {\\bfseries Http\\+Status\\+Code}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model_a398b7712f9fa75337a9e46d26406de8d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model_a398b7712f9fa75337a9e46d26406de8d}} \nstring {\\bfseries Message}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/Base\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby}{Authoredby}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions}{Definitions}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool}{Pool}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project}{Project}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue}{Queue}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Build/Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Authoredby Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Authoredby@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Authoredby}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_afa7b12df5581506f53f57604a95cec9d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_afa7b12df5581506f53f57604a95cec9d}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_a6f0a2cc67020d84e355177333e5db1b4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_a6f0a2cc67020d84e355177333e5db1b4}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_a321f55b50ee50661813b6a8223ca602a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_a321f55b50ee50661813b6a8223ca602a}} \nstring {\\bfseries unique\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_a234fd3132c3a95e6d96d0b0b08420ba6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_a234fd3132c3a95e6d96d0b0b08420ba6}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_adb8215e3c26c55b8a53fab110693a053}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby_adb8215e3c26c55b8a53fab110693a053}} \nstring {\\bfseries image\\+Url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Build/Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 84.925690\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.887500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.Build.BuildGetListofBuildDefinitionsResponse.Definitions) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Definitions Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Definitions@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Definitions}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Definitions\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions_ab80c2ddbb80ec387c275c67aed68b15c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions_ab80c2ddbb80ec387c275c67aed68b15c}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions_aa9315e4be59c2b63dd0db4cbe3fdda5f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions_aa9315e4be59c2b63dd0db4cbe3fdda5f}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Build/Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Pool Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Pool@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Pool}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool_a987515e5795e7e6b1d7556907cf5c964}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool_a987515e5795e7e6b1d7556907cf5c964}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool_ab61cd4b03d139ddd224f36b363e34e6b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool_ab61cd4b03d139ddd224f36b363e34e6b}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Build/Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Project Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Project@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Project}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a6677a252672515c3d7fb9b860757df64}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a6677a252672515c3d7fb9b860757df64}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a91282ace08f724a9534ff84e9fb0ecfa}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a91282ace08f724a9534ff84e9fb0ecfa}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a5c8a53f8b0e60d4954d81feb3fe6f1ac}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a5c8a53f8b0e60d4954d81feb3fe6f1ac}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a49cff0b1c4490f2a7e16095ca8a2f30c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a49cff0b1c4490f2a7e16095ca8a2f30c}} \nstring {\\bfseries state}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a44fe87571c65dd4461e017bd642ef90d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project_a44fe87571c65dd4461e017bd642ef90d}} \nint {\\bfseries revision}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Build/Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Queue Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Queue@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Queue}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue_a2dc082008a07ca9574e15c12c4cc253f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue_a2dc082008a07ca9574e15c12c4cc253f}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool}{Pool}} {\\bfseries pool}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue_a60263c65260d552ae98f1af0c2d7786c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue_a60263c65260d552ae98f1af0c2d7786c}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue_aaa3f1bb55d4b4e80d625d401ba755a1d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue_aaa3f1bb55d4b4e80d625d401ba755a1d}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Build/Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_af440cec3a191a35ca439e72516b9e875}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_af440cec3a191a35ca439e72516b9e875}} \nstring {\\bfseries quality}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a84f979fef2ff852010a35eeb5af9e79e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a84f979fef2ff852010a35eeb5af9e79e}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby}{Authoredby}} {\\bfseries authored\\+By}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a18667c0eb0b64790c70fa719ec2cfb39}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a18667c0eb0b64790c70fa719ec2cfb39}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue}{Queue}} {\\bfseries queue}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_aceb820cb9324d66ba11358bf863f4e08}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_aceb820cb9324d66ba11358bf863f4e08}} \nstring {\\bfseries uri}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a626aaa08956450c44f844b595324e9ad}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a626aaa08956450c44f844b595324e9ad}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a2bb81221575164f9c07068a4f5fa725e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a2bb81221575164f9c07068a4f5fa725e}} \nint {\\bfseries revision}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_ade5d699e00ff840bc92104bd6272b04a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_ade5d699e00ff840bc92104bd6272b04a}} \nDate\\+Time {\\bfseries created\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a3c074fa1d36d7a6c518d6f76ec575355}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a3c074fa1d36d7a6c518d6f76ec575355}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a62817abe4b71fd36666fe15875e8e064}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a62817abe4b71fd36666fe15875e8e064}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a112b95a7eae22f6f65cbe99992cfb65c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_a112b95a7eae22f6f65cbe99992cfb65c}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_ab29fc9c7f73e377bf4744ccacc17ca52}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value_ab29fc9c7f73e377bf4744ccacc17ca52}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project}{Project}} {\\bfseries project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Build/Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level}{Access\\+Level}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}{Account}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links}{Links}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member}{Member}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships}{Memberships}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self}{Self}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Account\\+Members.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Access\\+Level Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Access\\+Level@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Access\\+Level}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_ad2670b6be0a8c5c57bc6c03d305715ab}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_ad2670b6be0a8c5c57bc6c03d305715ab}} \nstring {\\bfseries licensing\\+Source}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_a734b5bc139b7ff2853abebd2324efd94}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_a734b5bc139b7ff2853abebd2324efd94}} \nstring {\\bfseries account\\+License\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_ac84352bdf1bd74892f48c45e08043345}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_ac84352bdf1bd74892f48c45e08043345}} \nstring {\\bfseries license\\+Display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_a6b6973963c804ed16ad0f1c62e77bbed}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_a6b6973963c804ed16ad0f1c62e77bbed}} \nstring {\\bfseries status}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_ae1cdf85b202e1e83d3caba81f1b2d97e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level_ae1cdf85b202e1e83d3caba81f1b2d97e}} \nstring {\\bfseries status\\+Message}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Account\\+Members.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Account Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Account@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Account}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account_a4d7117986f891ea51391e42b5f76216d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account_a4d7117986f891ea51391e42b5f76216d}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account_ad21109183f9784899def1e6d88991f77}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account_ad21109183f9784899def1e6d88991f77}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Account\\+Members.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Links Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Links@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Links}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links_a780b4699eadd82ff0c3110045f40a770}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links_a780b4699eadd82ff0c3110045f40a770}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self}{Self}} {\\bfseries self}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links_abc1c126555dbb8c135baf083e97ec19d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links_abc1c126555dbb8c135baf083e97ec19d}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships}{Memberships}} {\\bfseries memberships}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Account\\+Members.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Member Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Member@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Member}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_ae76e6dfacc3509d9c8653377aea861af}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_ae76e6dfacc3509d9c8653377aea861af}} \nstring {\\bfseries subject\\+Kind}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a4b482a850be57ec5b3b13b0ea1cb8e3e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a4b482a850be57ec5b3b13b0ea1cb8e3e}} \nstring {\\bfseries domain}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_aba6d9ef18e4fcfb5fcafd63f345214e7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_aba6d9ef18e4fcfb5fcafd63f345214e7}} \nstring {\\bfseries principal\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_ab0e96f12cb4c03107bf137e87cec0bf2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_ab0e96f12cb4c03107bf137e87cec0bf2}} \nstring {\\bfseries mail\\+Address}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_aae69588aa8859890d91d3d879aa4383a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_aae69588aa8859890d91d3d879aa4383a}} \nint {\\bfseries meta\\+Type\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a8bcaa025e5516d6e4e82f8f020c056ac}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a8bcaa025e5516d6e4e82f8f020c056ac}} \nstring {\\bfseries origin}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_aea4e9eddeee1ff39b9146037cda65f34}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_aea4e9eddeee1ff39b9146037cda65f34}} \nstring {\\bfseries origin\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_add2539ca93cfa38e91fdf20a64841fa9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_add2539ca93cfa38e91fdf20a64841fa9}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a040f706d5c11f9b3c5b390b5f8037e64}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a040f706d5c11f9b3c5b390b5f8037e64}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a6619fb57d1889ec6d1b9cb96b859a2d3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a6619fb57d1889ec6d1b9cb96b859a2d3}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links}{Links}} {\\bfseries \\+\\_\\+links}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a679643cbd1becf678381e2510633b01f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a679643cbd1becf678381e2510633b01f}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a420d2c653ba15c9f7b9f97e7a42b10de}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member_a420d2c653ba15c9f7b9f97e7a42b10de}} \nstring {\\bfseries descriptor}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Account\\+Members.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Memberships Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Memberships@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Memberships}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships_a1f58f3047c337c46d5008d24eb6a5b6a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships_a1f58f3047c337c46d5008d24eb6a5b6a}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Account\\+Members.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Self Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Self@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Self}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self_a7878a81e3fa8477336c85dd2c9af9047}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self_a7878a81e3fa8477336c85dd2c9af9047}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Account\\+Members.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_a911ad756779568c5e9be66a5237c8672}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_a911ad756779568c5e9be66a5237c8672}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_aa626210ffea01ca2863fccddd411e789}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_aa626210ffea01ca2863fccddd411e789}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member}{Member}} {\\bfseries member}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_a3411e097dddb65c626ef454bbb2a29d5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_a3411e097dddb65c626ef454bbb2a29d5}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level}{Access\\+Level}} {\\bfseries access\\+Level}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_ad438d502c7f30336aaf266d6e5ae4bcf}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_ad438d502c7f30336aaf266d6e5ae4bcf}} \nDate\\+Time {\\bfseries last\\+Accessed\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_a47618fc1fe3e1be8438a4ffbe216d589}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_a47618fc1fe3e1be8438a4ffbe216d589}} \nobject {\\bfseries project\\+Entitlements}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_aca66fd1518971dd92f632efe911a97fb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value_aca66fd1518971dd92f632efe911a97fb}} \nobject {\\bfseries extensions}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Account\\+Members.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}{Team}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Get\\+Team\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 100.502513\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 4.975000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.ProjectAndTeams.GetTeamResponse.Team) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response.\\+Team Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response.\\+Team@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response.\\+Team}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response.\\+Team\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_a59cfd92d37217a0566520b85dc5783bc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_a59cfd92d37217a0566520b85dc5783bc}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_aa109c97281b2caf5641627cff42115f6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_aa109c97281b2caf5641627cff42115f6}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_a3b256bbd1b9a36052e78607949502f71}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_a3b256bbd1b9a36052e78607949502f71}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_a18107ae513aa399eb8f10414a08ec327}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_a18107ae513aa399eb8f10414a08ec327}} \nstring {\\bfseries description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_a3cbd8c2ef7a550d34a05f5b0017fc585}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team_a3cbd8c2ef7a550d34a05f5b0017fc585}} \nstring {\\bfseries identity\\+Url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Get\\+Team\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}{Projects}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Listof\\+Projects\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 90.702948\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.512500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.ProjectAndTeams.ListofProjectsResponse.Projects) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Projects Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Projects@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Projects}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Projects\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects_a8638df4a5290bea231a3be01c79e85de}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects_a8638df4a5290bea231a3be01c79e85de}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects_a36c9f352d4f57dc5259b4ebee169b389}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects_a36c9f352d4f57dc5259b4ebee169b389}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Listof\\+Projects\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_a7db91f69af44f72f327ec2ae6c8529ba}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_a7db91f69af44f72f327ec2ae6c8529ba}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_a183ad4f36e41446744538fbd52336c17}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_a183ad4f36e41446744538fbd52336c17}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_a686d6fe50e5c5ac604eb47f55f120f4a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_a686d6fe50e5c5ac604eb47f55f120f4a}} \nstring {\\bfseries description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_aaa15b8fef7feb0ccae36ba5afb47b735}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_aaa15b8fef7feb0ccae36ba5afb47b735}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_ab209f4ddc0a1718c5901312fb5b1a8aa}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value_ab209f4ddc0a1718c5901312fb5b1a8aa}} \nstring {\\bfseries state}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Listof\\+Projects\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}{Iterations}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Iterations\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Iterations Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Iterations@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Iterations}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations_a54db76fe063397795c904a2c0436454f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations_a54db76fe063397795c904a2c0436454f}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations_afab0780afc84be7c46ca7bb8965452b7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations_afab0780afc84be7c46ca7bb8965452b7}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Iterations\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value_a4f201b177a24d28a3d4b8c7010af3aaf}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value_a4f201b177a24d28a3d4b8c7010af3aaf}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value_afcb825dddcf28d63d9c9bcad4a87c4ff}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value_afcb825dddcf28d63d9c9bcad4a87c4ff}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Iterations\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}{Team\\+Members}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value}{value}}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_ac8fa9b94da46315d6e811a46524da3bf}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_ac8fa9b94da46315d6e811a46524da3bf}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Member\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+Team\\+Members Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+Team\\+Members@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+Team\\+Members}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members_ae22a38ce7738099aa3bfd61de9de6e87}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members_ae22a38ce7738099aa3bfd61de9de6e87}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members_a8600625a39141b6ce5ee38176d7eb1d7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members_a8600625a39141b6ce5ee38176d7eb1d7}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value}{value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Member\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_aae4c285f57075decbf785b8401767e94}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_aae4c285f57075decbf785b8401767e94}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_a9cc1b8cc03d8f9e7e14319a5936f1792}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_a9cc1b8cc03d8f9e7e14319a5936f1792}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_a3bff363ed90a0d556ffc51386756d07f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_a3bff363ed90a0d556ffc51386756d07f}} \nstring {\\bfseries unique\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_adc0b57b12662ecfe25b288d67dff9433}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_adc0b57b12662ecfe25b288d67dff9433}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_ae6ecd8cdc92da4df5f47d7f208414f2e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value_ae6ecd8cdc92da4df5f47d7f208414f2e}} \nstring {\\bfseries image\\+Url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Member\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Response}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response_a7b00fa436c03e268191cc5bce752843f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response_a7b00fa436c03e268191cc5bce752843f}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response_a3f626b4adacc157852d885b399cfa667}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response_a3f626b4adacc157852d885b399cfa667}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration}{Backlog\\+Iteration}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration}{Default\\+Iteration}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project}{Project}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting}{Team\\+Setting}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Setting\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Backlog\\+Iteration Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Backlog\\+Iteration@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Backlog\\+Iteration}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration_a400170499c4c32cc8cc695a2f9daf4d7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration_a400170499c4c32cc8cc695a2f9daf4d7}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration_a0fbee32ba8600b0325f2f183a4c00d4a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration_a0fbee32ba8600b0325f2f183a4c00d4a}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration_ae59ff3ce86f2331d64cae2edbaacea2f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration_ae59ff3ce86f2331d64cae2edbaacea2f}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration_aa67513791bdc29d1826fd6838f0ba281}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration_aa67513791bdc29d1826fd6838f0ba281}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Setting\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Default\\+Iteration Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Default\\+Iteration@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Default\\+Iteration}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration_a3e7c1306aed82e9353d91c0496f6dac2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration_a3e7c1306aed82e9353d91c0496f6dac2}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration_a0755ad31b0d1a96b694e0b72e4269d43}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration_a0755ad31b0d1a96b694e0b72e4269d43}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration_a8227a2e1bf8e062a6edeaf270cedcc18}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration_a8227a2e1bf8e062a6edeaf270cedcc18}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration_a8b7a799a6121732ac6135301074857cd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration_a8b7a799a6121732ac6135301074857cd}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Setting\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Project Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Project@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Project}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project_a55e065680341841c4a6e3b21e69b2d9d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project_a55e065680341841c4a6e3b21e69b2d9d}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Setting\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Team\\+Setting Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Team\\+Setting@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Team\\+Setting}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting_a6acc011bee96d0dafceb4754c24d8710}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting_a6acc011bee96d0dafceb4754c24d8710}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration}{Backlog\\+Iteration}} {\\bfseries backlog\\+Iteration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting_a7b5f7c6453580e5553e2efc9dcef36b3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting_a7b5f7c6453580e5553e2efc9dcef36b3}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration}{Default\\+Iteration}} {\\bfseries default\\+Iteration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Project\\+And\\+Teams/Team\\+Setting\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard}{Dashboard}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Querys\\+And\\+Widgets/Dash\\+Boarde\\+Tag\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response.\\+Dashboard Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response.\\+Dashboard@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response.\\+Dashboard}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard_af88d55e822bd728da88a8ae9cc312ec7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard_af88d55e822bd728da88a8ae9cc312ec7}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard_a0a3c816fde6a02f5ba000a593c089833}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard_a0a3c816fde6a02f5ba000a593c089833}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard_af3f903c668469de3677eec779bc56faa}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard_af3f903c668469de3677eec779bc56faa}} \nint {\\bfseries position}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard_ac2ea0442a11125cf4a57081573e4a514}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard_ac2ea0442a11125cf4a57081573e4a514}} \nstring {\\bfseries e\\+Tag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Querys\\+And\\+Widgets/Dash\\+Boarde\\+Tag\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard}{Dashboard}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Querys\\+And\\+Widgets/Dashboard\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 88.300221\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.662500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.QuerysAndWidgets.DashboardResponse.Dashboard) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Dashboard Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Dashboard@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Dashboard}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Dashboard\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard_ae51b380c89a04e8a479a1e52b2ace90f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard_ae51b380c89a04e8a479a1e52b2ace90f}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries dashboard\\+Entries}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Querys\\+And\\+Widgets/Dashboard\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value_ad336af95505e3ec4d0f21354dca93f50}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value_ad336af95505e3ec4d0f21354dca93f50}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value_a9e47849119251c5a5744481c978080c6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value_a9e47849119251c5a5744481c978080c6}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Querys\\+And\\+Widgets/Dashboard\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Query\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Query\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Query\\+Response}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response_ae3ded70cb703583f41a46ec9904a49de}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response_ae3ded70cb703583f41a46ec9904a49de}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response_a549a257b3bd977f12af645953d87aa3d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response_a549a257b3bd977f12af645953d87aa3d}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Querys\\+And\\+Widgets/Query\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Agent\\+Queue\\+Model Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Agent\\+Queue\\+Model@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Agent\\+Queue\\+Model}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_a33eeed21eb919d4db697fb669f034a0f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_a33eeed21eb919d4db697fb669f034a0f}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_a68f7bf83165f893e8cb1e44b14757026}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_a68f7bf83165f893e8cb1e44b14757026}} \nstring {\\bfseries project\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_a30542813a3d1a92b671e1f2f6fcabd4e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_a30542813a3d1a92b671e1f2f6fcabd4e}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_ae9ebf579b404b485fd3428182f6d9a52}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_ae9ebf579b404b485fd3428182f6d9a52}} \nstring {\\bfseries group\\+Scope\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_a1e5df5ab4a8f1255871afe23dcd9600e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model_a1e5df5ab4a8f1255871afe23dcd9600e}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool}{Pool}} {\\bfseries pool}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Queue/Queue\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Pool Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Pool@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Pool}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool_ad75826bbfd4290efbbf23daaa0c8759b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool_ad75826bbfd4290efbbf23daaa0c8759b}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool_ae1e50c35efe45110a7d6fad19fc2103b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool_ae1e50c35efe45110a7d6fad19fc2103b}} \nstring {\\bfseries pool\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Queue/Queue\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 147.058824\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.400000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.Queue.QueueModel) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.Queue.QueueModel) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Queue\\+Model Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Queue\\+Model@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Queue\\+Model}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Queue\\+Model\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model_a4f8d502dfe624167b4ba40c922c1296c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model_a4f8d502dfe624167b4ba40c922c1296c}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model_af3ef37f6850474d688bf96afa9db231b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model_af3ef37f6850474d688bf96afa9db231b}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model}{Agent\\+Queue\\+Model}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Queue/Queue\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value_a17e35cd3f104c34ed32e81d044b0086f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value_a17e35cd3f104c34ed32e81d044b0086f}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value_a549176f8b14f23448ee05baec3e5cef5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value_a549176f8b14f23448ee05baec3e5cef5}} \nstring {\\bfseries project\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value_a6cd4d3a7617dd2d25ed49125661ab730}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value_a6cd4d3a7617dd2d25ed49125661ab730}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Queue/Queue\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}{Approval}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver}{Approver}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact}{Artifact}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition}{Condition}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition}{Definition}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference}{Definition\\+Reference}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input}{Deployment\\+Input}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas}{Deploy\\+Phas}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step}{Deploy\\+Step}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment}{Environment}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options}{Environment\\+Options}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy}{Execution\\+Policy}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs}{Inputs}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner}{Owner}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution}{Parallel\\+Execution}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals}{Post\\+Deploy\\+Approvals}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals}{Pre\\+Deploy\\+Approvals}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project}{Project}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition}{Release\\+Definition}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy}{Retention\\+Policy}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task}{Task}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger}{Trigger}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}{Variables}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approval Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approval@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approval}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval_a738f28ccdd552ca533e0a08f3668f935}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval_a738f28ccdd552ca533e0a08f3668f935}} \nint {\\bfseries rank}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval_a95c3867f012b34bf522b32927c041990}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval_a95c3867f012b34bf522b32927c041990}} \nbool {\\bfseries is\\+Automated}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval_a8c4101d10d4d2a503161a672e1d09843}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval_a8c4101d10d4d2a503161a672e1d09843}} \nbool {\\bfseries is\\+Notification\\+On}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval_aa008882e47635065f657f6bebbb419ca}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval_aa008882e47635065f657f6bebbb419ca}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver}{Approver}} {\\bfseries approver}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approver Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approver@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approver}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver_aef9118bf25b236ff48252f2001a7bcbc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver_aef9118bf25b236ff48252f2001a7bcbc}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver_a818ec1a441895767253d08fab1bd4702}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver_a818ec1a441895767253d08fab1bd4702}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver_a0014d4aa6c662a1ed9a7b19ca0fbe9bd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver_a0014d4aa6c662a1ed9a7b19ca0fbe9bd}} \nstring {\\bfseries unique\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Artifact Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Artifact@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Artifact}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_aaa31f78ea05ecb462350b9ef4f8fdc42}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_aaa31f78ea05ecb462350b9ef4f8fdc42}} \nstring {\\bfseries source\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_ac62beb38a0e8dc63c95560a973c15b10}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_ac62beb38a0e8dc63c95560a973c15b10}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_ac4d248a0f9d6154546cbb1a5aa80ee2f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_ac4d248a0f9d6154546cbb1a5aa80ee2f}} \nstring {\\bfseries alias}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_ae376bb1b225afff0dbaf2009167953bb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_ae376bb1b225afff0dbaf2009167953bb}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference}{Definition\\+Reference}} {\\bfseries definition\\+Reference}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_a538e6ded1965d3cf0c5cc4248dfe389c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact_a538e6ded1965d3cf0c5cc4248dfe389c}} \nbool {\\bfseries is\\+Primary}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Condition Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Condition@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Condition}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition_a2dc0f2c5d95b9dbe29885220c5739399}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition_a2dc0f2c5d95b9dbe29885220c5739399}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition_ac0c7e1e76bf837d0e50458944f6ac589}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition_ac0c7e1e76bf837d0e50458944f6ac589}} \nstring {\\bfseries condition\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition_a7aa80352f078a7f5a9f420e8fbaa2917}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition_a7aa80352f078a7f5a9f420e8fbaa2917}} \nstring {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_ad24a7de4cdd8e34d7255287dd7c6817f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_ad24a7de4cdd8e34d7255287dd7c6817f}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_afd5e834b5f9d117ffe2bd4063eecfa66}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_afd5e834b5f9d117ffe2bd4063eecfa66}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition\\+Reference Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition\\+Reference@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition\\+Reference}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference_a645d9321e9c5957ebdd68dc1fe9c330d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference_a645d9321e9c5957ebdd68dc1fe9c330d}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition}{Definition}} {\\bfseries definition}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference_a64759e5bfa519f6b2acde2f620d4c88f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference_a64759e5bfa519f6b2acde2f620d4c88f}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project}{Project}} {\\bfseries project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Phas Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Phas@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Phas}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_add8ab9271cbdc5cbf69bdfe264c03bd0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_add8ab9271cbdc5cbf69bdfe264c03bd0}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input}{Deployment\\+Input}} {\\bfseries deployment\\+Input}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_aa49e4d4097f602a928aa53d2e642aa98}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_aa49e4d4097f602a928aa53d2e642aa98}} \nint {\\bfseries rank}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_a66dc849eb1219bb4e8ee7aa2032d6eed}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_a66dc849eb1219bb4e8ee7aa2032d6eed}} \nstring {\\bfseries phase\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_ad22fbe991def025e5251f8d782d45c4e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_ad22fbe991def025e5251f8d782d45c4e}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_a949c21f6f53a23b783ee52e0a03e507f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas_a949c21f6f53a23b783ee52e0a03e507f}} \nI\\+List$<$ object $>$ {\\bfseries workflow\\+Tasks}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Step Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Step@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Step}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step_a53b540e1ceb3aa500ed2db1f84d2137c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step_a53b540e1ceb3aa500ed2db1f84d2137c}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task}{Task}} $>$ {\\bfseries tasks}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deployment\\+Input Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deployment\\+Input@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deployment\\+Input}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a3d58b86157f2819f21b79a2514eb5e48}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a3d58b86157f2819f21b79a2514eb5e48}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution}{Parallel\\+Execution}} {\\bfseries parallel\\+Execution}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a4d7b502c119e2a7096e1e6817f8db7ec}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a4d7b502c119e2a7096e1e6817f8db7ec}} \nbool {\\bfseries skip\\+Artifacts\\+Download}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a84c09ec253c1af79ca59e4e78157f7ef}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a84c09ec253c1af79ca59e4e78157f7ef}} \nint {\\bfseries timeout\\+In\\+Minutes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a9e3da15147e68c74e820958dfd7d9839}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a9e3da15147e68c74e820958dfd7d9839}} \nstring {\\bfseries queue\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_ab06c939f61d36d9298cc186c2329cbcf}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_ab06c939f61d36d9298cc186c2329cbcf}} \nI\\+List$<$ object $>$ {\\bfseries demands}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_abb2c85247f0b6df51db8d23f6954a629}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_abb2c85247f0b6df51db8d23f6954a629}} \nbool {\\bfseries enable\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a69664154235b5cca6627459fbe6b8301}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a69664154235b5cca6627459fbe6b8301}} \nbool {\\bfseries clean}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a2024cac2e40ae3086044aaedf7d0a76e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input_a2024cac2e40ae3086044aaedf7d0a76e}} \nstring {\\bfseries clean\\+Options}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a3c73147599c057efbde02a1386eda03e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a3c73147599c057efbde02a1386eda03e}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a9ca83c26fc3397939065d1d04b27acc3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a9ca83c26fc3397939065d1d04b27acc3}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_aad85c51184d84637303431779a53d58d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_aad85c51184d84637303431779a53d58d}} \nint {\\bfseries rank}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a320180c5e1020291f662f742d4195e18}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a320180c5e1020291f662f742d4195e18}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner}{Owner}} {\\bfseries owner}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_aaa7830d03a579c9f1279c6341b8a9854}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_aaa7830d03a579c9f1279c6341b8a9854}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}{Variables}} {\\bfseries variables}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_adbe259c5fef4b532e7893fdbfe6eb0ad}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_adbe259c5fef4b532e7893fdbfe6eb0ad}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals}{Pre\\+Deploy\\+Approvals}} {\\bfseries pre\\+Deploy\\+Approvals}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a93133eea85a827bc0f40b752d9159f34}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a93133eea85a827bc0f40b752d9159f34}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step}{Deploy\\+Step}} {\\bfseries deploy\\+Step}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_afb61cd9afcad35e46f21e805b364ccd9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_afb61cd9afcad35e46f21e805b364ccd9}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals}{Post\\+Deploy\\+Approvals}} {\\bfseries post\\+Deploy\\+Approvals}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a720af3d4d2e40ef2e16823aee81a4346}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a720af3d4d2e40ef2e16823aee81a4346}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas}{Deploy\\+Phas}} $>$ {\\bfseries deploy\\+Phases}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a06a732567eed0435fb2f8a8ce62df299}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a06a732567eed0435fb2f8a8ce62df299}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options}{Environment\\+Options}} {\\bfseries environment\\+Options}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_ad5ce964d90041c221144fc21182dc1b4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_ad5ce964d90041c221144fc21182dc1b4}} \nI\\+List$<$ object $>$ {\\bfseries demands}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a186a7ebacb950451589c43604a4ff35e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a186a7ebacb950451589c43604a4ff35e}} \nstring {\\bfseries queue\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a1bfe51c643c9d47fc07d88c17d01ee29}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a1bfe51c643c9d47fc07d88c17d01ee29}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition}{Condition}} $>$ {\\bfseries conditions}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a095a8c5a98bcaa06c37c3bf157015d60}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a095a8c5a98bcaa06c37c3bf157015d60}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy}{Execution\\+Policy}} {\\bfseries execution\\+Policy}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a2530ca2b2a8d5fb0f765fdbd08a0b93a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_a2530ca2b2a8d5fb0f765fdbd08a0b93a}} \nI\\+List$<$ object $>$ {\\bfseries schedules}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_aa663455adc46f106e23854ce08341f69}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_aa663455adc46f106e23854ce08341f69}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy}{Retention\\+Policy}} {\\bfseries retention\\+Policy}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment\\+Options Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment\\+Options@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment\\+Options}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_a9e0f47f36324a349ee4bdcb5c647dfb7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_a9e0f47f36324a349ee4bdcb5c647dfb7}} \nstring {\\bfseries email\\+Notification\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_af19b886d3ffae54ce2cd2a00059231d7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_af19b886d3ffae54ce2cd2a00059231d7}} \nstring {\\bfseries email\\+Recipients}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_a33f39159b65af3def9ddf6c98498166e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_a33f39159b65af3def9ddf6c98498166e}} \nbool {\\bfseries skip\\+Artifacts\\+Download}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_aad921923c20389b597a5eeda6f7aa57f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_aad921923c20389b597a5eeda6f7aa57f}} \nint {\\bfseries timeout\\+In\\+Minutes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_a9b956cd5ea1caeb8e02b0d709aa633a6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options_a9b956cd5ea1caeb8e02b0d709aa633a6}} \nbool {\\bfseries enable\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Execution\\+Policy Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Execution\\+Policy@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Execution\\+Policy}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy_ac548ec685a7a82c0fe18b6b43de13e71}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy_ac548ec685a7a82c0fe18b6b43de13e71}} \nint {\\bfseries concurrency\\+Count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy_a4f9cbe02ddb0d2ac9b6b06f77f1131ce}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy_a4f9cbe02ddb0d2ac9b6b06f77f1131ce}} \nint {\\bfseries queue\\+Depth\\+Count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Inputs Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Inputs@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Inputs}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_add5e6c793e74115c070647cf5dfa18a5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_add5e6c793e74115c070647cf5dfa18a5}} \nstring {\\bfseries Connected\\+Service\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aff3b929b95fffa3eb5e084edd401d0c3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aff3b929b95fffa3eb5e084edd401d0c3}} \nstring {\\bfseries Web\\+App\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_abed34a5092f9ca3c8379ad6a18b94e90}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_abed34a5092f9ca3c8379ad6a18b94e90}} \nstring {\\bfseries Deploy\\+To\\+Slot\\+Flag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1676b5b52947be81d66b7ac3a0d72eb7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1676b5b52947be81d66b7ac3a0d72eb7}} \nstring {\\bfseries Resource\\+Group\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9702e26dc003ba9971ce339828b4f533}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9702e26dc003ba9971ce339828b4f533}} \nstring {\\bfseries Slot\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9faea8656bef7bea2832d2a95345ac87}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9faea8656bef7bea2832d2a95345ac87}} \nstring {\\bfseries Package}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4dfdc3081d3c34068264dcb58540ce72}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4dfdc3081d3c34068264dcb58540ce72}} \nstring {\\bfseries Set\\+Parameters\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a951c3fe47edbf9970763b4c7c3655751}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a951c3fe47edbf9970763b4c7c3655751}} \nstring {\\bfseries Use\\+Web\\+Deploy}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a10c39c3b80b4670c50c2110cc53cb33b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a10c39c3b80b4670c50c2110cc53cb33b}} \nstring {\\bfseries Remove\\+Additional\\+Files\\+Flag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a6e71779ed54282aa4827c4932e540790}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a6e71779ed54282aa4827c4932e540790}} \nstring {\\bfseries Exclude\\+Files\\+From\\+App\\+Data\\+Flag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad71522f603c0218b5d13dadaf07056b6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad71522f603c0218b5d13dadaf07056b6}} \nstring {\\bfseries Take\\+App\\+Offline\\+Flag}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a68afbb37aca144d93cf4ccfe8c15b6e4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a68afbb37aca144d93cf4ccfe8c15b6e4}} \nstring {\\bfseries Virtual\\+Application}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1f0ffc867ab5306b2b03c4a7756c0de4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1f0ffc867ab5306b2b03c4a7756c0de4}} \nstring {\\bfseries Additional\\+Arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a779174e11e4f0c665f5ee738487ef8c0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a779174e11e4f0c665f5ee738487ef8c0}} \nstring {\\bfseries Web\\+App\\+Uri}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ade5bdc252006b250f8bb0750ca2499be}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ade5bdc252006b250f8bb0750ca2499be}} \nstring {\\bfseries Connected\\+Service\\+Name\\+Selector}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_af4e157ca16b9039499e5217e6417d3d9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_af4e157ca16b9039499e5217e6417d3d9}} \nstring {\\bfseries Connected\\+Service\\+Name\\+A\\+RM}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a5e4a0fa4b3153bac6fc08f3745134b72}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a5e4a0fa4b3153bac6fc08f3745134b72}} \nstring {\\bfseries Server\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4b09b30a5f10f2decf7dac662b6c4123}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4b09b30a5f10f2decf7dac662b6c4123}} \nstring {\\bfseries Database\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_af0eaabd7995c0c0e6e1ad59d11d49c02}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_af0eaabd7995c0c0e6e1ad59d11d49c02}} \nstring {\\bfseries Sql\\+Username}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a91fb55192f49a10c427d2d7cbdc66e92}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a91fb55192f49a10c427d2d7cbdc66e92}} \nstring {\\bfseries Sql\\+Password}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a6a9996a754176042ccb0b30292816a70}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a6a9996a754176042ccb0b30292816a70}} \nstring {\\bfseries Task\\+Name\\+Selector}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a5f0beec83d492303d8955d074625e113}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a5f0beec83d492303d8955d074625e113}} \nstring {\\bfseries Dacpac\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad79267133cd85f7f31b81bfc1622096d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad79267133cd85f7f31b81bfc1622096d}} \nstring {\\bfseries Sql\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aad0731f3b8aa0ebcb96bd2fadbeb0285}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aad0731f3b8aa0ebcb96bd2fadbeb0285}} \nstring {\\bfseries Sql\\+Inline}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9f10a6b3d88f96246c5c52588a0b8629}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9f10a6b3d88f96246c5c52588a0b8629}} \nstring {\\bfseries Publish\\+Profile}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7cd7baf9ad2bbce054e9d8c3cac16847}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7cd7baf9ad2bbce054e9d8c3cac16847}} \nstring {\\bfseries Sql\\+Additional\\+Arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aa57bc15abb74b4085f88c31b49e567d6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aa57bc15abb74b4085f88c31b49e567d6}} \nstring {\\bfseries Inline\\+Additional\\+Arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a62b1d715816bd95544a1d500d5ef4cbe}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a62b1d715816bd95544a1d500d5ef4cbe}} \nstring {\\bfseries Ip\\+Detection\\+Method}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_add375d0f6dbfb109821338b2c5b035b5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_add375d0f6dbfb109821338b2c5b035b5}} \nstring {\\bfseries Start\\+Ip\\+Address}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_afb5cc348534683d22fc5c716b395969d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_afb5cc348534683d22fc5c716b395969d}} \nstring {\\bfseries End\\+Ip\\+Address}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0ff28e3ca5d1d0fcefc5801940e09640}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0ff28e3ca5d1d0fcefc5801940e09640}} \nstring {\\bfseries Delete\\+Firewall\\+Rule}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad56ab1c6c3d6960a6136299bf07f3b89}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad56ab1c6c3d6960a6136299bf07f3b89}} \nstring {\\bfseries app\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7b5805d267c6ac6ac41bc75fac73b590}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7b5805d267c6ac6ac41bc75fac73b590}} \nstring {\\bfseries binary\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ae74a12349b479ecd6ccc480687205597}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ae74a12349b479ecd6ccc480687205597}} \nstring {\\bfseries symbols\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1be010d9cd5cee7704ccfbae027a473f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1be010d9cd5cee7704ccfbae027a473f}} \nstring {\\bfseries native\\+Library\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1ed3a0879c5b50af20eedc21d4d1e6dc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1ed3a0879c5b50af20eedc21d4d1e6dc}} \nstring {\\bfseries notes\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4ed93d10f916663c38796519986a36a3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4ed93d10f916663c38796519986a36a3}} \nstring {\\bfseries notes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_addd399b27950adabb7562a305353238b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_addd399b27950adabb7562a305353238b}} \nstring {\\bfseries publish}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a06d19fc81b8e83ad948034d2c797145c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a06d19fc81b8e83ad948034d2c797145c}} \nstring {\\bfseries mandatory}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ae9aa6768f21abf6f029e1d10c6eccd56}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ae9aa6768f21abf6f029e1d10c6eccd56}} \nstring {\\bfseries notify}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a919678d55825726c052d12b36515aaed}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a919678d55825726c052d12b36515aaed}} \nstring {\\bfseries tags}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a65681e7d8154e27d428ecc67624b9195}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a65681e7d8154e27d428ecc67624b9195}} \nstring {\\bfseries teams}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a21ebb3eaf5d760864948ca48a33642f5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a21ebb3eaf5d760864948ca48a33642f5}} \nstring {\\bfseries users}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ae81a87b05b73b481aa2c88a9f9ccc56a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ae81a87b05b73b481aa2c88a9f9ccc56a}} \nstring {\\bfseries auth\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3e966c242829f0fa62f0643ede3452c0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3e966c242829f0fa62f0643ede3452c0}} \nstring {\\bfseries service\\+Endpoint}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_adb91e3029d25418dd1e7dc5a648fe9ad}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_adb91e3029d25418dd1e7dc5a648fe9ad}} \nstring {\\bfseries service\\+Account\\+Key}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a82bb2e3b802e75660c2028df764973fa}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a82bb2e3b802e75660c2028df764973fa}} \nstring {\\bfseries apk\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_abb685f2402c055e6eb541ff8fecd7acc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_abb685f2402c055e6eb541ff8fecd7acc}} \nstring {\\bfseries track}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_af82d5f2a269dc59fce1cdbc565e9687d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_af82d5f2a269dc59fce1cdbc565e9687d}} \nstring {\\bfseries user\\+Fraction}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad5b60ab0470ebc3176cafd3310ab6e73}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad5b60ab0470ebc3176cafd3310ab6e73}} \nstring {\\bfseries change\\+Log\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad3770f487ad03326009b6cc813536dd8}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad3770f487ad03326009b6cc813536dd8}} \nstring {\\bfseries should\\+Attach\\+Metadata}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8e2b375b1d55ab4f922a69a99750d660}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8e2b375b1d55ab4f922a69a99750d660}} \nstring {\\bfseries metadata\\+Root\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ada631ac4e86e69c1bb6ae839bf515ef3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ada631ac4e86e69c1bb6ae839bf515ef3}} \nstring {\\bfseries additional\\+Apks}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a48e2d646281703b1829b62a2e49c53b9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a48e2d646281703b1829b62a2e49c53b9}} \nstring {\\bfseries min\\+Delta}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ac29139e7b55eaa43364ac52b684f6742}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ac29139e7b55eaa43364ac52b684f6742}} \nstring {\\bfseries Operator}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a86c3bd93e11c4bb72bc01123c877bdcb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a86c3bd93e11c4bb72bc01123c877bdcb}} \nstring {\\bfseries username}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_af1efdebc084fc3b79060b307fc37d1a5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_af1efdebc084fc3b79060b307fc37d1a5}} \nstring {\\bfseries password}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aca9a0dabdfc5ac5c3b1fe508875ab930}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aca9a0dabdfc5ac5c3b1fe508875ab930}} \nstring {\\bfseries filename}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1f5a84cf412c8fa879cc11d31edc8a3f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1f5a84cf412c8fa879cc11d31edc8a3f}} \nstring {\\bfseries arguments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3eee09699c8bd83669349c3319c09281}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3eee09699c8bd83669349c3319c09281}} \nstring {\\bfseries modify\\+Environment}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0d7520b9cab1e7996da880b4b3c25b9c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0d7520b9cab1e7996da880b4b3c25b9c}} \nstring {\\bfseries working\\+Folder}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9b41e2e89cf83e1769aaf18f4ef0ddda}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9b41e2e89cf83e1769aaf18f4ef0ddda}} \nstring {\\bfseries fail\\+On\\+Standard\\+Error}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4472d8696f1a4df8d8ec91c7bc5bb986}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4472d8696f1a4df8d8ec91c7bc5bb986}} \nstring {\\bfseries test\\+Machine\\+Group}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad3eebe5ed599012342194df52e528285}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ad3eebe5ed599012342194df52e528285}} \nstring {\\bfseries drop\\+Location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a2d22bffe61e2069956146768ffe5d0ea}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a2d22bffe61e2069956146768ffe5d0ea}} \nstring {\\bfseries test\\+Selection}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aaefd5825d92c8baa1d2225c537cb0a53}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_aaefd5825d92c8baa1d2225c537cb0a53}} \nstring {\\bfseries test\\+Plan}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a175714f465d5fe42fc8e5e2d793af614}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a175714f465d5fe42fc8e5e2d793af614}} \nstring {\\bfseries test\\+Suite}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a6483e96bbabfc2170b51e00fc63b8924}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a6483e96bbabfc2170b51e00fc63b8924}} \nstring {\\bfseries test\\+Configuration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0cbee8b4c9e7e2a424c4a967053ba8ad}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0cbee8b4c9e7e2a424c4a967053ba8ad}} \nstring {\\bfseries sourcefilters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a834ac58b92abe97b567dcb9718e3e968}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a834ac58b92abe97b567dcb9718e3e968}} \nstring {\\bfseries test\\+Filter\\+Criteria}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a53775c99bdc624bb660b82cab475f8c2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a53775c99bdc624bb660b82cab475f8c2}} \nstring {\\bfseries run\\+Settings\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a5c628a6e1443f2757d98242f038b2417}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a5c628a6e1443f2757d98242f038b2417}} \nstring {\\bfseries override\\+Run\\+Params}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3ba3170e33d4937a298a13233a63d0a4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3ba3170e33d4937a298a13233a63d0a4}} \nstring {\\bfseries code\\+Coverage\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a08895f7fb7c00434be9cd45bce851164}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a08895f7fb7c00434be9cd45bce851164}} \nstring {\\bfseries custom\\+Slicing\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0c9945c83e645d06722d84e00b1ebe15}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0c9945c83e645d06722d84e00b1ebe15}} \nstring {\\bfseries test\\+Run\\+Title}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7f9aeb965882928daa9952941b18d484}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7f9aeb965882928daa9952941b18d484}} \nstring {\\bfseries platform}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_add5c902cd312ab7b3e0d4abbfd06ed36}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_add5c902cd312ab7b3e0d4abbfd06ed36}} \nstring {\\bfseries configuration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a6e16ef1b50456239770114659e1cdac7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a6e16ef1b50456239770114659e1cdac7}} \nstring {\\bfseries test\\+Configurations}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_acca3442228717e2ca164364de0baa731}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_acca3442228717e2ca164364de0baa731}} \nstring {\\bfseries aut\\+Machine\\+Group}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0fa5efb2a0ff423b5117d46c592a6281}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0fa5efb2a0ff423b5117d46c592a6281}} \nstring {\\bfseries connected\\+Service\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_afab43d38e5451cb162de4e85166f8cda}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_afab43d38e5451cb162de4e85166f8cda}} \nstring {\\bfseries website\\+Url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1d3463ffb69df032062e548f4064fad9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a1d3463ffb69df032062e548f4064fad9}} \nstring {\\bfseries test\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a2e19f56d39477271d1274ff6effff678}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a2e19f56d39477271d1274ff6effff678}} \nstring {\\bfseries vu\\+Load}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a91be30010fe332d18597d562e5805680}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a91be30010fe332d18597d562e5805680}} \nstring {\\bfseries run\\+Duration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9955283b60d17df2642c245c5c70ce4a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a9955283b60d17df2642c245c5c70ce4a}} \nstring {\\bfseries geo\\+Location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a43d3ed39b8819d7134868448b0e4d97f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a43d3ed39b8819d7134868448b0e4d97f}} \nstring {\\bfseries machine\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4bb09406f2c0529b1d914e450e442837}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a4bb09406f2c0529b1d914e450e442837}} \nstring {\\bfseries avg\\+Response\\+Time\\+Threshold}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0f4ca24a03d191d08dbb929b7c78d620}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0f4ca24a03d191d08dbb929b7c78d620}} \nstring {\\bfseries Connected\\+Service\\+Name\\+Classic}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_afd2d2d0c1e3a77ecf9c47e9cb1e285ed}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_afd2d2d0c1e3a77ecf9c47e9cb1e285ed}} \nstring {\\bfseries action}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8ba1bdd9f18211a167d37f59f90c0d4a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8ba1bdd9f18211a167d37f59f90c0d4a}} \nstring {\\bfseries action\\+Classic}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a2b15e0c0572679191d72673d2a99df0a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a2b15e0c0572679191d72673d2a99df0a}} \nstring {\\bfseries resource\\+Group\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7b01660cd47c993294bada32db340f82}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7b01660cd47c993294bada32db340f82}} \nstring {\\bfseries cloud\\+Service}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_abe548af9732cad3e97fce1698c7af876}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_abe548af9732cad3e97fce1698c7af876}} \nstring {\\bfseries location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ab1c24f8946196c88a43a7bc5ea955d54}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ab1c24f8946196c88a43a7bc5ea955d54}} \nstring {\\bfseries csm\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3be7b2af91d7b75fc260431f9fe9dc1f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3be7b2af91d7b75fc260431f9fe9dc1f}} \nstring {\\bfseries csm\\+Parameters\\+File}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a463650cc6a1dfd4e9e8648e0a6715292}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a463650cc6a1dfd4e9e8648e0a6715292}} \nstring {\\bfseries override\\+Parameters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_afb6126b9ffc15809c7da1032f8369abd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_afb6126b9ffc15809c7da1032f8369abd}} \nstring {\\bfseries deployment\\+Mode}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ade3c18b70d36aa32bd2971c14ec2b438}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ade3c18b70d36aa32bd2971c14ec2b438}} \nstring {\\bfseries enable\\+Deployment\\+Prerequisites\\+For\\+Create}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a46f4038d4b704d2f7904cc5b4dd997ab}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a46f4038d4b704d2f7904cc5b4dd997ab}} \nstring {\\bfseries enable\\+Deployment\\+Prerequisites\\+For\\+Select}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a2f8ccf9c3931e2e0540d453aa40c68bf}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a2f8ccf9c3931e2e0540d453aa40c68bf}} \nstring {\\bfseries output\\+Variable}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_acb1d4e8c737ffa5840bae982d973e479}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_acb1d4e8c737ffa5840bae982d973e479}} \nstring {\\bfseries Web\\+Site\\+Location}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7d53dd62d17b37fb8902ae8eba20556b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a7d53dd62d17b37fb8902ae8eba20556b}} \nstring {\\bfseries Web\\+Site\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a343438f93db2be27058716802246a557}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a343438f93db2be27058716802246a557}} \nstring {\\bfseries Slot}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8ba1523211ba6f803dfe2b1450468bf4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8ba1523211ba6f803dfe2b1450468bf4}} \nstring {\\bfseries do\\+Not\\+Delete}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a13abe960371e70dd328199c5a1eec001}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a13abe960371e70dd328199c5a1eec001}} \nstring {\\bfseries app\\+Identifier}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a34a1916c33338a7c090193cf6f3cb575}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a34a1916c33338a7c090193cf6f3cb575}} \nstring {\\bfseries ipa\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8b3129211b784d002fcbcabe1f863e4c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8b3129211b784d002fcbcabe1f863e4c}} \nstring {\\bfseries release\\+Track}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3e3342d5b3bd578159cc7e511d6891fe}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a3e3342d5b3bd578159cc7e511d6891fe}} \nstring {\\bfseries skip\\+Binary\\+Upload}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a723b12735ab43644cf1d25778c9cf334}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a723b12735ab43644cf1d25778c9cf334}} \nstring {\\bfseries upload\\+Metadata}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a5ebc48b9624bf1188969b6572e48505f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a5ebc48b9624bf1188969b6572e48505f}} \nstring {\\bfseries metadata\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0545b219bea92168cd92dcc322e595c3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a0545b219bea92168cd92dcc322e595c3}} \nstring {\\bfseries upload\\+Screenshots}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a35bf78bdbc89a894a2a460d74a247e12}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a35bf78bdbc89a894a2a460d74a247e12}} \nstring {\\bfseries screenshots\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ae81ff7b28f5273fae572909384b71b7a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_ae81ff7b28f5273fae572909384b71b7a}} \nstring {\\bfseries should\\+Submit\\+For\\+Review}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a879482b425a6e70ef6939407a66741d4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a879482b425a6e70ef6939407a66741d4}} \nstring {\\bfseries should\\+Auto\\+Release}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_adef37bf189584e20dd2515f7395e8465}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_adef37bf189584e20dd2515f7395e8465}} \nstring {\\bfseries release\\+Notes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8f0cf3014e0d6f14d53156929d4a4f8f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a8f0cf3014e0d6f14d53156929d4a4f8f}} \nstring {\\bfseries should\\+Skip\\+Waiting\\+For\\+Processing}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a62897b70effb1f94ca293911f76b4b67}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a62897b70effb1f94ca293911f76b4b67}} \nstring {\\bfseries should\\+Skip\\+Submission}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a01b2ec4b24e3061aabb7e5c0c64701c8}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a01b2ec4b24e3061aabb7e5c0c64701c8}} \nstring {\\bfseries team\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a81ed22338ef711d245b4df9033802ae8}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs_a81ed22338ef711d245b4df9033802ae8}} \nstring {\\bfseries team\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Owner Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Owner@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Owner}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner_adb87c8564f7e28c615567a06cb2a6773}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner_adb87c8564f7e28c615567a06cb2a6773}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner_aff4ad58c3569fb320272671f8272a95c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner_aff4ad58c3569fb320272671f8272a95c}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner_a26fdc92d085b67be4fc75a20f13d52b4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner_a26fdc92d085b67be4fc75a20f13d52b4}} \nstring {\\bfseries unique\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Parallel\\+Execution Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Parallel\\+Execution@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Parallel\\+Execution}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution_ad2b2b8347bb9f612ac2fd20b45e0bff9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution_ad2b2b8347bb9f612ac2fd20b45e0bff9}} \nstring {\\bfseries parallel\\+Execution\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals_a7ec2db184858d4fd95d3e967c5d10f68}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals_a7ec2db184858d4fd95d3e967c5d10f68}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}{Approval}} $>$ {\\bfseries approvals}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals_a7d37eb3ab626d01a8805ab3170fc6a74}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals_a7d37eb3ab626d01a8805ab3170fc6a74}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}{Approval}} $>$ {\\bfseries approvals}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Project Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Project@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Project}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project_a0111e0d37cc6af442ab63fab6b688cba}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project_a0111e0d37cc6af442ab63fab6b688cba}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project_aef25f2d9fbe17963c52f438e8dcd65ce}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project_aef25f2d9fbe17963c52f438e8dcd65ce}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Release\\+Definition Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Release\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Release\\+Definition}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_a4179d182792f47a09341846aa687ea22}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_a4179d182792f47a09341846aa687ea22}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_adf29e4447c81bf71bd0fd4d5409e2279}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_adf29e4447c81bf71bd0fd4d5409e2279}} \nobject {\\bfseries last\\+Release}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_aee23401eef1c648734ab7dbb18860932}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_aee23401eef1c648734ab7dbb18860932}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_a184c2a39e0b0da9fa8dbc5998eef2614}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_a184c2a39e0b0da9fa8dbc5998eef2614}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}{Variables}} {\\bfseries variables}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_af3eecb2c30a1e69561800aadcedd3602}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_af3eecb2c30a1e69561800aadcedd3602}} \nI\\+List$<$ object $>$ {\\bfseries variable\\+Groups}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_af0d5a51c64d23f535eed4e6ed710c29a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_af0d5a51c64d23f535eed4e6ed710c29a}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment}{Environment}} $>$ {\\bfseries environments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_aad87e117b9824e33d3b47f0716a12279}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_aad87e117b9824e33d3b47f0716a12279}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact}{Artifact}} $>$ {\\bfseries artifacts}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_a6cffa102464f4ea60c08401c4199a659}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_a6cffa102464f4ea60c08401c4199a659}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger}{Trigger}} $>$ {\\bfseries triggers}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_a721f12b3c1d4b6fd20586b9e4f7606c7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition_a721f12b3c1d4b6fd20586b9e4f7606c7}} \nstring {\\bfseries release\\+Name\\+Format}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Retention\\+Policy Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Retention\\+Policy@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Retention\\+Policy}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy_a8c085c8b875e35b97474acdad27cf7ad}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy_a8c085c8b875e35b97474acdad27cf7ad}} \nint {\\bfseries days\\+To\\+Keep}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy_aab6fc1ef4c3ef032a4c563df4243a787}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy_aab6fc1ef4c3ef032a4c563df4243a787}} \nint {\\bfseries releases\\+To\\+Keep}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy_a74fd0bb978ac1ae5d4564736abde762a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy_a74fd0bb978ac1ae5d4564736abde762a}} \nbool {\\bfseries retain\\+Build}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Task Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Task@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Task}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a80b16ae19503cc52c5fe1e6de7356044}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a80b16ae19503cc52c5fe1e6de7356044}} \nstring {\\bfseries task\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_aac36e9f6bcada61c927ba45a9c79ff6b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_aac36e9f6bcada61c927ba45a9c79ff6b}} \nstring {\\bfseries version}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a4fa81fa2fa43c0ff70a171dbf1f895e0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a4fa81fa2fa43c0ff70a171dbf1f895e0}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a24db1ee9c8eb32d7d0e0af329bae0f00}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a24db1ee9c8eb32d7d0e0af329bae0f00}} \nbool {\\bfseries enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a42b2fdd7b5ac3ce9632e408aeb445e2b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a42b2fdd7b5ac3ce9632e408aeb445e2b}} \nbool {\\bfseries always\\+Run}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a660539378c18abbf2335c3e66033d065}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a660539378c18abbf2335c3e66033d065}} \nbool {\\bfseries continue\\+On\\+Error}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a8724ad6a7be01b0a647d09c74f1802a6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a8724ad6a7be01b0a647d09c74f1802a6}} \nint {\\bfseries timeout\\+In\\+Minutes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a9943e1af8b117949183f88b744395b7b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a9943e1af8b117949183f88b744395b7b}} \nstring {\\bfseries definition\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a579b0b151c6bb96e6134ed3a42b5cfe2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task_a579b0b151c6bb96e6134ed3a42b5cfe2}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs}{Inputs}} {\\bfseries inputs}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Trigger Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Trigger@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Trigger}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger_ab480ceb4bb66161466afb019885cc62d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger_ab480ceb4bb66161466afb019885cc62d}} \nstring {\\bfseries artifact\\+Alias}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger_a5aaf3640c2334fbed82b4987a0e3ab22}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger_a5aaf3640c2334fbed82b4987a0e3ab22}} \nstring {\\bfseries trigger\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Variables Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Variables@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Variables}}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release}{Release}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Release Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Release@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Release}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release_a6a03860789d22df76b4b28a27e452b43}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release_a6a03860789d22df76b4b28a27e452b43}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release_a2f0e444f07e70dce9c93c197667b7203}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release_a2f0e444f07e70dce9c93c197667b7203}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value_aa5d190fdf97f6c3d0097678b69206293}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value_aa5d190fdf97f6c3d0097678b69206293}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value_af5e5b045406e8876aafc91a81d0f2393}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value_af5e5b045406e8876aafc91a81d0f2393}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Release\\+Definition/Release\\+Definitions\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project}{Project}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}{Repositories}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Get\\+All\\+Repositories\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Project Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Project@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Project}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_aa93e4a4072d552bdea5a912d2d8b43f8}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_aa93e4a4072d552bdea5a912d2d8b43f8}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_a6f41ccbf88e8fb4ff33bc6472b95cae9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_a6f41ccbf88e8fb4ff33bc6472b95cae9}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_a47f4d3463a6b78bf9a33c2718df1b66c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_a47f4d3463a6b78bf9a33c2718df1b66c}} \nstring {\\bfseries description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_ac4682274e4cd61f0adc35f245d61ac2c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_ac4682274e4cd61f0adc35f245d61ac2c}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_adad64a69083aa5dcf63f27f3d3b66123}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_adad64a69083aa5dcf63f27f3d3b66123}} \nstring {\\bfseries state}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_aefccc2024ddb73177425f544053ab1d2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project_aefccc2024ddb73177425f544053ab1d2}} \nint {\\bfseries revision}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Get\\+All\\+Repositories\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 88.495575\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.650000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.Repository.GetAllRepositoriesResponse.Repositories) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Repositories Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Repositories@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Repositories}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Repositories\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories_abf5161f2d81fe7fb5d944c52f3be2463}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories_abf5161f2d81fe7fb5d944c52f3be2463}} \nList$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories_a63e9e77dd4b94359e306fe90d091d883}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories_a63e9e77dd4b94359e306fe90d091d883}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Get\\+All\\+Repositories\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_abd02bd4021b28e40f8d4e18bee6731da}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_abd02bd4021b28e40f8d4e18bee6731da}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_a4e3bc3d3e3870795b801557ad750acc7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_a4e3bc3d3e3870795b801557ad750acc7}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_a45dd67413433e60c2762ac54a928ae4b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_a45dd67413433e60c2762ac54a928ae4b}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_a73f0fd683d617bd50902293f26269011}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_a73f0fd683d617bd50902293f26269011}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project}{Project}} {\\bfseries project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_ae1eaf73f86bec8112106e3c84ccd5b0b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_ae1eaf73f86bec8112106e3c84ccd5b0b}} \nstring {\\bfseries default\\+Branch}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_a26df2d3b1a13f5128565f186b13bf7cd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value_a26df2d3b1a13f5128565f186b13bf7cd}} \nstring {\\bfseries remote\\+Url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Get\\+All\\+Repositories\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment}{Comment}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments}{Comments}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context}{Iteration\\+Context}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e}{Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties}{Properties}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context}{Pull\\+Request\\+Thread\\+Context}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply}{reply}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end}{Right\\+File\\+End}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start}{Right\\+File\\+Start}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context}{Thread\\+Context}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comment Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comment@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comment}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment_a1ecb8332bff68cf7bfd794dfe8ae5cdf}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment_a1ecb8332bff68cf7bfd794dfe8ae5cdf}} \nint {\\bfseries parent\\+Comment\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment_a3e96b8b9bceaceaffe1f6a40a6e8c017}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment_a3e96b8b9bceaceaffe1f6a40a6e8c017}} \nstring {\\bfseries content}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment_a09fdacac6c3fe79c70bc89842fd1fe6d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment_a09fdacac6c3fe79c70bc89842fd1fe6d}} \nint {\\bfseries comment\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comments Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comments@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comments}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments_a3c4050e31769bb719eca764e5766c166}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments_a3c4050e31769bb719eca764e5766c166}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments_a8a44951f4e8e461b7afefece151f67a3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments_a8a44951f4e8e461b7afefece151f67a3}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value}{Value}} $>$ {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Iteration\\+Context Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Iteration\\+Context@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Iteration\\+Context}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context_add36da611f6eaafc7c1b921f2cb1a20f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context_add36da611f6eaafc7c1b921f2cb1a20f}} \nint {\\bfseries first\\+Comparing\\+Iteration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context_afa0e2a243d4bc0424938af97ce9589d0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context_afa0e2a243d4bc0424938af97ce9589d0}} \nint {\\bfseries second\\+Comparing\\+Iteration}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e_a3113af4d25ebe888d1960826d38532cb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e_a3113af4d25ebe888d1960826d38532cb}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e_a37f4f8fd1bb3e4968cfcd6dcf3d9674b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e_a37f4f8fd1bb3e4968cfcd6dcf3d9674b}} \nint {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Properties Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Properties@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Properties}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties_a37d6460fa9070227bd5ea96442f944a6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties_a37d6460fa9070227bd5ea96442f944a6}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e}{Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}} {\\bfseries Microsoft\\+\\_\\+\\+Team\\+Foundation\\+\\_\\+\\+Discussion\\+\\_\\+\\+Supports\\+Markdown}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Pull\\+Request\\+Thread\\+Context Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Pull\\+Request\\+Thread\\+Context@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Pull\\+Request\\+Thread\\+Context}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context_a2a5d1d2516816c8aacabc095d969b6fc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context_a2a5d1d2516816c8aacabc095d969b6fc}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context}{Iteration\\+Context}} {\\bfseries iteration\\+Context}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context_a62cec21d9ae37e2cbf75c32069521f73}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context_a62cec21d9ae37e2cbf75c32069521f73}} \nint {\\bfseries change\\+Tracking\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+End Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+End@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+End}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end_a1060faca717be9b5a8f9982c160cb928}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end_a1060faca717be9b5a8f9982c160cb928}} \nint {\\bfseries line}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end_ad0ecbc0cb986a1d10f0f3c868a26fca7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end_ad0ecbc0cb986a1d10f0f3c868a26fca7}} \nint {\\bfseries offset}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+Start Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+Start@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+Start}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start_a67b9a761d660b93cfed7a9fb4bffccf4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start_a67b9a761d660b93cfed7a9fb4bffccf4}} \nint {\\bfseries line}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start_a40b8b7578b9f4d45808f45152b81755c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start_a40b8b7578b9f4d45808f45152b81755c}} \nint {\\bfseries offset}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Thread\\+Context Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Thread\\+Context@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Thread\\+Context}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context_a36628f65bcfc7d4a9ef93f9f8791b060}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context_a36628f65bcfc7d4a9ef93f9f8791b060}} \nstring {\\bfseries file\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context_ab18cbbd1bb8572f15576a3c8120b3a0c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context_ab18cbbd1bb8572f15576a3c8120b3a0c}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start}{Right\\+File\\+Start}} {\\bfseries right\\+File\\+Start}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context_aaa85c8dad0ced6015325f3244d0997c1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context_aaa85c8dad0ced6015325f3244d0997c1}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end}{Right\\+File\\+End}} {\\bfseries right\\+File\\+End}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_ab41492ddbe1d82d0293325968280ad42}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_ab41492ddbe1d82d0293325968280ad42}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment}{Comment}} $>$ {\\bfseries comments}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_ab2642190cabd7911d350d8a9258597cd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_ab2642190cabd7911d350d8a9258597cd}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties}{Properties}} {\\bfseries properties}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_a7ee24a6bdfb38994d6d6894724fd249a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_a7ee24a6bdfb38994d6d6894724fd249a}} \nint {\\bfseries status}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_a830443609b9a16fdc0407cc20fb01154}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_a830443609b9a16fdc0407cc20fb01154}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context}{Pull\\+Request\\+Thread\\+Context}} {\\bfseries pull\\+Request\\+Thread\\+Context}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_afbab8e16de0af5199c0d0c9581a65080}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_afbab8e16de0af5199c0d0c9581a65080}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context}{Thread\\+Context}} {\\bfseries thread\\+Context}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_a5522652389a138760b522fca2e814b95}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value_a5522652389a138760b522fca2e814b95}} \nI\\+List$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply}{reply}} $>$ {\\bfseries Replies}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+reply Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+reply@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+reply}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply_ab71585c9da0bbe4ebb31deb6f3584bdb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply_ab71585c9da0bbe4ebb31deb6f3584bdb}} \nstring {\\bfseries content}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply_a8af082f32397abdfbc3348ff43429b59}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply_a8af082f32397abdfbc3348ff43429b59}} \nstring {\\bfseries parent\\+Comment\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply_a6257c7888300ae25fae38ef6f782d5fc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply_a6257c7888300ae25fae38ef6f782d5fc}} \nstring {\\bfseries comment\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Repository/Pull\\+Request\\+Comments.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Authorization Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Authorization@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Authorization}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization_a95ffbc7b2477e40057768b43a8803662}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization_a95ffbc7b2477e40057768b43a8803662}} \nstring {\\bfseries scheme}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Service/Service\\+Endpoint\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Created\\+By Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Created\\+By@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Created\\+By}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by_af08b09d975f3f929c55fad5b2ab24286}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by_af08b09d975f3f929c55fad5b2ab24286}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by_a3f588beb70f49c0a090e7745072a88ef}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by_a3f588beb70f49c0a090e7745072a88ef}} \nstring {\\bfseries display\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by_a14eaf9841de447efb614c7aadbc99d38}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by_a14eaf9841de447efb614c7aadbc99d38}} \nstring {\\bfseries unique\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Service/Service\\+Endpoint\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Data Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Data@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Data}}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Service/Service\\+Endpoint\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Service\\+Endpoint\\+Model Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Service\\+Endpoint\\+Model@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Service\\+Endpoint\\+Model}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_adcc13fd199d022549df787a3762ceacc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_adcc13fd199d022549df787a3762ceacc}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data}{Data}} {\\bfseries data}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_ab99fecf2317bedbee35d4521ee2a4d83}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_ab99fecf2317bedbee35d4521ee2a4d83}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_aa78143d876fead2e4f6d6cf3121e0518}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_aa78143d876fead2e4f6d6cf3121e0518}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_a115f21d8fd99b78328276b945e4f9ef2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_a115f21d8fd99b78328276b945e4f9ef2}} \nstring {\\bfseries type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_a13c9534e11114bef9d7fa6ebda8cbad4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_a13c9534e11114bef9d7fa6ebda8cbad4}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_a481b493702ac12dee9ac451f6ba35051}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_a481b493702ac12dee9ac451f6ba35051}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by}{Created\\+By}} {\\bfseries created\\+By}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_a9d3ee5ddc1bbc6c917adfa55c4ef4973}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_a9d3ee5ddc1bbc6c917adfa55c4ef4973}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization}{Authorization}} {\\bfseries authorization}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_acdce8d0c7a68e2ca078e40639e058ca1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model_acdce8d0c7a68e2ca078e40639e058ca1}} \nbool {\\bfseries is\\+Ready}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Service/Service\\+Endpoint\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes}{Attributes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_a941c29142e8a78650b7ab3a4d544b9da}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_a941c29142e8a78650b7ab3a4d544b9da}} \nstring {\\bfseries method}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_aa4def25e1e525eb3792bfeb84eeb732c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_aa4def25e1e525eb3792bfeb84eeb732c}} \nDictionary$<$ string, string $>$ {\\bfseries headers}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_a5abde03bf474916d95c1c240615f38a2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_a5abde03bf474916d95c1c240615f38a2}} \nobject \\mbox{[}$\\,$\\mbox{]} {\\bfseries body}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_add855464778b210044708bc4623a0a4a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_add855464778b210044708bc4623a0a4a}} \nstring {\\bfseries uri}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Batch\\+Request.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Attributes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Attributes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Attributes}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes_af90ffdd2adac5647655e4ab4e1131ea7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes_af90ffdd2adac5647655e4ab4e1131ea7}} \nstring {\\bfseries comment}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Batch\\+Request.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value_a0bffacb011159656521f687b4387ae49}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value_a0bffacb011159656521f687b4387ae49}} \nstring {\\bfseries rel}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value_a3ca12befdbb22c37ba04295921741b76}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value_a3ca12befdbb22c37ba04295921741b76}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value_a59005c2f94e25a98dfba7e4e815284f4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value_a59005c2f94e25a98dfba7e4e815284f4}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes}{Attributes}} {\\bfseries attributes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Batch\\+Request.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill}{Fill}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles}{Listof\\+Card\\+Styles}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}{Rules}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style}{Tag\\+Style}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Card\\+Styles\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Fill Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Fill@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Fill}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill_a65cccd165e5e026535f0375754c8f49c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill_a65cccd165e5e026535f0375754c8f49c}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill_adc32fb451d7601735fbf2fc43a48d7be}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill_adc32fb451d7601735fbf2fc43a48d7be}} \nstring {\\bfseries is\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill_a4688fc0b36d338c86235a12379515826}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill_a4688fc0b36d338c86235a12379515826}} \nstring {\\bfseries filter}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill_ac9190c5e0fe094c4f1dcd8bd31f7affb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill_ac9190c5e0fe094c4f1dcd8bd31f7affb}} \nDictionary$<$ string, string $>$ {\\bfseries settings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Card\\+Styles\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Listof\\+Card\\+Styles Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Listof\\+Card\\+Styles@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Listof\\+Card\\+Styles}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles_a4ec646e962581c487c4859fdee154e37}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles_a4ec646e962581c487c4859fdee154e37}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}{Rules}} {\\bfseries rules}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Card\\+Styles\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 117.302053\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 4.262500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.CardStylesPatch.Rules) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Rules Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Rules@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Rules}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Rules\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules_a2f8f2febc87bf7919be781f603cafd74}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules_a2f8f2febc87bf7919be781f603cafd74}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill}{Fill}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries fill}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules_afc7900c8b7007cc1d340cf65645e91d0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules_afc7900c8b7007cc1d340cf65645e91d0}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style}{Tag\\+Style}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries tagstyle}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Card\\+Styles\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Tag\\+Style Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Tag\\+Style@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Tag\\+Style}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style_aa22291d9115cbcc380d184a94e7e2674}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style_aa22291d9115cbcc380d184a94e7e2674}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style_a2186abffb373a28f30620c166a76a2af}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style_a2186abffb373a28f30620c166a76a2af}} \nstring {\\bfseries is\\+Enabled}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style_a7bb091f585958ad5dd5dc67959543727}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style_a7bb091f585958ad5dd5dc67959543727}} \nDictionary$<$ string, string $>$ {\\bfseries settings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Card\\+Styles\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 143.884892\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.475000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.ColumnPost) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.ColumnPost) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Column\\+Post Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Column\\+Post@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Column\\+Post}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Column\\+Post\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_a2a3851567272f18669086141c11c3172}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_a2a3851567272f18669086141c11c3172}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_aa022ffbeabf0a1eb2878a0eafb7f3a2b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_aa022ffbeabf0a1eb2878a0eafb7f3a2b}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_afe27cad2954eb9f89d7ce36563756fd5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_afe27cad2954eb9f89d7ce36563756fd5}} \nstring {\\bfseries item\\+Limit}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_ac28734984da3475d7e3bee6e4921d200}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_ac28734984da3475d7e3bee6e4921d200}} \nstring {\\bfseries is\\+Split}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_a5ca1c1147bb56c508dc89181d37d8a99}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_a5ca1c1147bb56c508dc89181d37d8a99}} \nstring {\\bfseries description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_af2a5aa290684d42398cd836593fb974b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_af2a5aa290684d42398cd836593fb974b}} \nstring {\\bfseries column\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_abefd7fea4e7eb7b1013ab972ed67d21c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post_abefd7fea4e7eb7b1013ab972ed67d21c}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings}{State\\+Mappings}} {\\bfseries state\\+Mappings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Column\\+Post.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes}{Attributes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node}{Node}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Create\\+Update\\+Node\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Attributes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Attributes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Attributes}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes_a566c22ea34bb8728474727260ac4e8d0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes_a566c22ea34bb8728474727260ac4e8d0}} \nDate\\+Time {\\bfseries start\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes_aaf82c7b004efa8872f2eea6a4a204618}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes_aaf82c7b004efa8872f2eea6a4a204618}} \nDate\\+Time {\\bfseries finish\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Create\\+Update\\+Node\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 96.153846\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.200000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.CreateUpdateNodeViewModel.Node) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Node Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Node@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Node}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Node\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node_a0925513df29c064d38b264758547578c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node_a0925513df29c064d38b264758547578c}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node_a970f0727dddc9d4e47654a54d2445117}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node_a970f0727dddc9d4e47654a54d2445117}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node_a030c993e6c05f1b67d6a52d7a2d1e9e6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node_a030c993e6c05f1b67d6a52d7a2d1e9e6}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes}{Attributes}} {\\bfseries attributes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Create\\+Update\\+Node\\+View\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}{Column\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}{Field}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields}{Fields}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings}{State\\+Mappings}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Board\\+Column\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 86.393089\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.787500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.GetBoardColumnResponse.ColumnResponse) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Column\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Column\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Column\\+Response}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Column\\+Response\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response_a643b06eae953cc06269cc05ad678273e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response_a643b06eae953cc06269cc05ad678273e}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response_a6d5e35ed4c85bc3071c2c010e262cc5c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response_a6d5e35ed4c85bc3071c2c010e262cc5c}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries columns}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response_a5364062711e0c5bc8e7554d60d5f048f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response_a5364062711e0c5bc8e7554d60d5f048f}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields}{Fields}} {\\bfseries fields}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Board\\+Column\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Field Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Field@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Field}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field_ad1f39e5825d8c585e28639de786b29ab}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field_ad1f39e5825d8c585e28639de786b29ab}} \nstring {\\bfseries reference\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field_ac44319a9f92f784e3b6e0aa1f63ceff7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field_ac44319a9f92f784e3b6e0aa1f63ceff7}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Board\\+Column\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Fields Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Fields@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Fields}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields_af6e72a1a12b00cd6c88947edad665778}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields_af6e72a1a12b00cd6c88947edad665778}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}{Field}} {\\bfseries column\\+Field}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields_ad05ee1cb6a18b64b86871a73205985d6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields_ad05ee1cb6a18b64b86871a73205985d6}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}{Field}} {\\bfseries row\\+Field}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields_ab9ddcd96dbe4eadb5b0d06d9ffa9a665}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields_ab9ddcd96dbe4eadb5b0d06d9ffa9a665}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}{Field}} {\\bfseries done\\+Field}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Board\\+Column\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+State\\+Mappings Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+State\\+Mappings@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+State\\+Mappings}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings_ad63a3440ac5c2962722f72f0cb150aed}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings_ad63a3440ac5c2962722f72f0cb150aed}} \nstring {\\bfseries P\\+BI}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings_ab96c2cc0d1407b8063b9c75c23d2e64a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings_ab96c2cc0d1407b8063b9c75c23d2e64a}} \nstring {\\bfseries bug}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Board\\+Column\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_aa3c70674c1ba00f4d105c9592629cbfb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_aa3c70674c1ba00f4d105c9592629cbfb}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a82956117de332238aff0637925947b8d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a82956117de332238aff0637925947b8d}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a1343a864191dd132e3973c0b32940f11}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a1343a864191dd132e3973c0b32940f11}} \nstring {\\bfseries item\\+Limit}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_ab3386898c2a78947b7b7ba99b8dcfc48}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_ab3386898c2a78947b7b7ba99b8dcfc48}} \nstring {\\bfseries is\\+Split}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a8d75062eb2d2dd4a5b7fe8fcb79acae1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a8d75062eb2d2dd4a5b7fe8fcb79acae1}} \nstring {\\bfseries description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a50181a91ed336cd9a1e118842fd2546d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a50181a91ed336cd9a1e118842fd2546d}} \nstring {\\bfseries column\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a2381bc2a31031d7121a291a00adde602}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value_a2381bc2a31031d7121a291a00adde602}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings}{State\\+Mappings}} {\\bfseries state\\+Mappings}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Board\\+Column\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}{Cards}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards}{Listof\\+Cards}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Card\\+Field\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 105.263158\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 4.750000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.GetCardFieldResponse.Cards) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Cards Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Cards}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Cards\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards_afc24699866a9541f3317538b12bc4ccc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards_afc24699866a9541f3317538b12bc4ccc}} \nDictionary$<$ string, string $>$ \\mbox{[}$\\,$\\mbox{]} {\\bfseries bugs}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards_ae0829a5e583c4c779d26bfaa846df14c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards_ae0829a5e583c4c779d26bfaa846df14c}} \nDictionary$<$ string, string $>$ \\mbox{[}$\\,$\\mbox{]} {\\bfseries pbis}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Card\\+Field\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Listof\\+Cards Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Listof\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Listof\\+Cards}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards_a9a757939b4aef47eb51a15d0edcf6d8b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards_a9a757939b4aef47eb51a15d0edcf6d8b}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}{Cards}} {\\bfseries cards}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Card\\+Field\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links}{\\+\\_\\+\\+Links}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes}{Attributes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{Node}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent}{Parent}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self}{Self}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Node\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+\\_\\+\\+Links Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+\\_\\+\\+Links@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+\\_\\+\\+Links}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links_afb22b1d590f7a8a1d70e9af9d6b21be6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links_afb22b1d590f7a8a1d70e9af9d6b21be6}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self}{Self}} {\\bfseries self}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links_a425b7de55dbfe6684aaf67cccd5ce04f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links_a425b7de55dbfe6684aaf67cccd5ce04f}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent}{Parent}} {\\bfseries parent}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Node\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Attributes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Attributes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Attributes}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes_ab0f5f7ad16ca175fb94d8820ae9617ca}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes_ab0f5f7ad16ca175fb94d8820ae9617ca}} \nDate\\+Time {\\bfseries start\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes_a8c5d54b66442d513882f6a164221b489}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes_a8c5d54b66442d513882f6a164221b489}} \nDate\\+Time {\\bfseries finish\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Node\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 114.285714\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 4.375000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.GetNodeResponse.Node) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Node Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Node@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Node}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Node\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_ac11f772ac6047ee95147de9bc6aa34a5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_ac11f772ac6047ee95147de9bc6aa34a5}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_ad785fac547041b1d875189d59db73da9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_ad785fac547041b1d875189d59db73da9}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_a3a3803f1ca104b775a699e9b7ce1e57c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_a3a3803f1ca104b775a699e9b7ce1e57c}} \nstring {\\bfseries structure\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_aeef732e42587b1d0bec597af4ee2e559}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_aeef732e42587b1d0bec597af4ee2e559}} \nbool {\\bfseries has\\+Children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_a20028568f99e2f9d98d6ff5eee556fb5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_a20028568f99e2f9d98d6ff5eee556fb5}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes}{Attributes}} {\\bfseries attributes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_ae739e209dba9b8082f251b43a4e789d9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_ae739e209dba9b8082f251b43a4e789d9}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links}{\\+\\_\\+\\+Links}} {\\bfseries \\+\\_\\+links}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_ac120f23a4f8c6ae28a732ebbf2d6e008}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node_ac120f23a4f8c6ae28a732ebbf2d6e008}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Node\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Parent Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Parent@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Parent}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent_a6bc834fb37470016bb61b09b632e477f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent_a6bc834fb37470016bb61b09b632e477f}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Node\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Self Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Self@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Self}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self_a62c9e0727248025b45031fb4c7bab4ac}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self_a62c9e0727248025b45031fb4c7bab4ac}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Node\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links}{\\+\\_\\+\\+Links}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes}{Attributes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}{Child}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1}{Child1}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}{Nodes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self}{Self}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Nodes\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+\\_\\+\\+Links Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+\\_\\+\\+Links@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+\\_\\+\\+Links}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links_a1ab9e264fd0e5331d719d1f21d498926}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links_a1ab9e264fd0e5331d719d1f21d498926}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self}{Self}} {\\bfseries self}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Nodes\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Attributes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Attributes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Attributes}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes_ac3bd426c7299a390731c5c6cb45a75b6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes_ac3bd426c7299a390731c5c6cb45a75b6}} \nDate\\+Time {\\bfseries start\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes_ae607562b150f531e2eacf7a7fe71c339}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes_ae607562b150f531e2eacf7a7fe71c339}} \nDate\\+Time {\\bfseries finish\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Nodes\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_a496751316cbcd5754f4fa0b4bad5d27b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_a496751316cbcd5754f4fa0b4bad5d27b}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_aecf82d9cece71f663998d983b51fd3b2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_aecf82d9cece71f663998d983b51fd3b2}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_af38ec0c4fefff7796c4d6b9bef5138cd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_af38ec0c4fefff7796c4d6b9bef5138cd}} \nstring {\\bfseries structure\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_ad30387cc0fe1d16e4bebf951872481cf}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_ad30387cc0fe1d16e4bebf951872481cf}} \nbool {\\bfseries has\\+Children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_a9c70dc5c0ca6c7827d24a3a36650399a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_a9c70dc5c0ca6c7827d24a3a36650399a}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_aab5a0a0693a289ed7d1976db710cd25b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child_aab5a0a0693a289ed7d1976db710cd25b}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}{Child}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Nodes\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child1 Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child1@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child1}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_abef269538b44293abf147a19e43a8399}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_abef269538b44293abf147a19e43a8399}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_a0db9b2cac4d048f905b28b0daabca045}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_a0db9b2cac4d048f905b28b0daabca045}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_a5ab2bd90ad484f47b9b489564d4356ed}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_a5ab2bd90ad484f47b9b489564d4356ed}} \nstring {\\bfseries structure\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_ab04fbd79e94f67ab4af5ab1da1396bb9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_ab04fbd79e94f67ab4af5ab1da1396bb9}} \nbool {\\bfseries has\\+Children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_a024f795fe2cb0f63d7f05ed119ada517}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_a024f795fe2cb0f63d7f05ed119ada517}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_a8d9508721f8e0c5e703f05f9e9b627d3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1_a8d9508721f8e0c5e703f05f9e9b627d3}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes}{Attributes}} {\\bfseries attributes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Nodes\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 110.497238\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 4.525000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.GetNodesResponse.Nodes) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Nodes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Nodes}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Nodes\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a562353f1584435c995eff6665ee5718d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a562353f1584435c995eff6665ee5718d}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a1405df5e2b34142d2ce9bc4dae9e16e4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a1405df5e2b34142d2ce9bc4dae9e16e4}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a0ab6a563bd98c3e2af3a0fa47f10065d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a0ab6a563bd98c3e2af3a0fa47f10065d}} \nstring {\\bfseries structure\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a985437989a89573c78eb350536864d7e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a985437989a89573c78eb350536864d7e}} \nbool {\\bfseries has\\+Children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_adc7c9315e6b36efcb5a86e4685db6913}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_adc7c9315e6b36efcb5a86e4685db6913}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}{Child}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries children}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_ab87e7d5e03e18c0e197ee1b85c8c8fae}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_ab87e7d5e03e18c0e197ee1b85c8c8fae}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links}{\\+\\_\\+\\+Links}} {\\bfseries \\+\\_\\+links}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a83d552cec045b67b247bbb744843d8d8}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes_a83d552cec045b67b247bbb744843d8d8}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Nodes\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Self Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Self@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Self}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self_a70c146e805a9ef37f4a4364410a1ed77}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self_a70c146e805a9ef37f4a4364410a1ed77}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Nodes\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column}{Column}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}{Results}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem}{Workitem}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Work\\+Items\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Column Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Column@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Column}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column_a5c47788ad3702fbc94f931e59c2c00fc}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column_a5c47788ad3702fbc94f931e59c2c00fc}} \nstring {\\bfseries reference\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column_a25c31255f4bd63e6f73c33c7748f90a8}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column_a25c31255f4bd63e6f73c33c7748f90a8}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column_a966ad06af96a847b93d38036fc00939d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column_a966ad06af96a847b93d38036fc00939d}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Work\\+Items\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 103.359173\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 4.837500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.GetWorkItemsResponse.Results) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Results Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Results@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Results}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Results\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_a4e60d4ceb5b0b5cee6ba2a1a3b819aa8}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_a4e60d4ceb5b0b5cee6ba2a1a3b819aa8}} \nstring {\\bfseries query\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_a3fad88481a7cd78c973803c290568784}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_a3fad88481a7cd78c973803c290568784}} \nstring {\\bfseries query\\+Result\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_ab211d9a35f8657ed061afc21ed638cfe}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_ab211d9a35f8657ed061afc21ed638cfe}} \nDate\\+Time {\\bfseries as\\+Of}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_a94d45e36b688ac13be0872be31132869}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_a94d45e36b688ac13be0872be31132869}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column}{Column}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries columns}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_ac9b660c5081d01e40cc2492f6b4cc445}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results_ac9b660c5081d01e40cc2492f6b4cc445}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem}{Workitem}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries work\\+Items}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Work\\+Items\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Workitem Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Workitem@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Workitem}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem_a26a63738fe325d954fbe89329e7cfc33}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem_a26a63738fe325d954fbe89329e7cfc33}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem_a2f3619f75bf6bb55c4e15c9b6d6d54b5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem_a2f3619f75bf6bb55c4e15c9b6d6d54b5}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Get\\+Work\\+Items\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes}{Attributes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields}{Fields}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations}{Relations}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value}{Value}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items}{Work\\+Items}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Import\\+Work\\+Item\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Attributes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Attributes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Attributes}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes_a5db4afe0583decdab21bd8f47a05720c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes_a5db4afe0583decdab21bd8f47a05720c}} \nstring {\\bfseries is\\+Locked}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes_abef54917cbfe8ed78a745e0cc02913bf}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes_abef54917cbfe8ed78a745e0cc02913bf}} \nstring {\\bfseries comment}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Import\\+Work\\+Item\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Fields Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Fields@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Fields}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a09432a150c5c2f3b5fc6dd7216fee2f5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a09432a150c5c2f3b5fc6dd7216fee2f5}} \nstring {\\bfseries System\\+Area\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_acea4c9dc3fbfa1b10949e2b71f0ae587}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_acea4c9dc3fbfa1b10949e2b71f0ae587}} \nstring {\\bfseries System\\+Team\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a2fab0c90785b30d9be2cbf7b3b182b95}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a2fab0c90785b30d9be2cbf7b3b182b95}} \nstring {\\bfseries System\\+Iteration\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_ac52b20d6204ce2459d7f457381913da9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_ac52b20d6204ce2459d7f457381913da9}} \nstring {\\bfseries System\\+Work\\+Item\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a164563fc200d793fde101f11209e1654}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a164563fc200d793fde101f11209e1654}} \nstring {\\bfseries System\\+State}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a1d70a6f28fbdd1f460046b7827b146cd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a1d70a6f28fbdd1f460046b7827b146cd}} \nstring {\\bfseries System\\+Reason}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a76f3cff0fa0d524fa6c2be9c4083c7d1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a76f3cff0fa0d524fa6c2be9c4083c7d1}} \nDate\\+Time {\\bfseries System\\+Created\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a322ea8250514dd82991cd8fce794c6fb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a322ea8250514dd82991cd8fce794c6fb}} \nstring {\\bfseries System\\+Created\\+By}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_ab8faf606d9224d4fa384c1f69c415a13}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_ab8faf606d9224d4fa384c1f69c415a13}} \nDate\\+Time {\\bfseries System\\+Changed\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_affd6fe766988b8b54443d16c6d145c46}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_affd6fe766988b8b54443d16c6d145c46}} \nstring {\\bfseries System\\+Changed\\+By}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_ad806a546dcdad3a79fcf9a6f92a7004f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_ad806a546dcdad3a79fcf9a6f92a7004f}} \nstring {\\bfseries System\\+Title}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a003e4ce6a3c5eff817d0cd5877dd4b7c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a003e4ce6a3c5eff817d0cd5877dd4b7c}} \nfloat {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Scheduling\\+Effort}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a035d7fe526a125e593f94e4a7388bae3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a035d7fe526a125e593f94e4a7388bae3}} \nstring {\\bfseries System\\+Description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_aca20c4cd284de6a61124e6410931f937}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_aca20c4cd284de6a61124e6410931f937}} \nstring {\\bfseries System\\+Assigned\\+To}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_afde07687e67102e24c9ed876c4ba566a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_afde07687e67102e24c9ed876c4ba566a}} \nstring {\\bfseries System\\+Board\\+Lane}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a4966845fdb8811f63675b8200e3001a9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a4966845fdb8811f63675b8200e3001a9}} \nfloat {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Scheduling\\+Remaining\\+Work}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a03c6becdfa223e0d209c010e67997773}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a03c6becdfa223e0d209c010e67997773}} \nfloat {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Common\\+Priority}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a8623f08ea6d709a2b7d2d6508797c51a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a8623f08ea6d709a2b7d2d6508797c51a}} \nstring {\\bfseries System\\+Tags}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_acd11024da97102d6c174b785d0234a93}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_acd11024da97102d6c174b785d0234a93}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+T\\+C\\+M\\+Steps}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a708e5f00d7b21865317bd63ecde46223}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a708e5f00d7b21865317bd63ecde46223}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+T\\+C\\+M\\+Parameters}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a6b282e82dcfc7319d1f156c962cce2b1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a6b282e82dcfc7319d1f156c962cce2b1}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+T\\+C\\+M\\+Local\\+Data\\+Source}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a116bbcb6788fd4ce687540364fa531d9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a116bbcb6788fd4ce687540364fa531d9}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+T\\+C\\+M\\+Automation\\+Status}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a5bddb96d7a6da1b5e98f3914cecc4650}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields_a5bddb96d7a6da1b5e98f3914cecc4650}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Common\\+Acceptance\\+Criteria}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Import\\+Work\\+Item\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Relations Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Relations@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Relations}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations_ad905d200d8a9c75d1582271de144b5ad}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations_ad905d200d8a9c75d1582271de144b5ad}} \nstring {\\bfseries rel}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations_ad94e58e3836f42d3e612ac32759b21d4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations_ad94e58e3836f42d3e612ac32759b21d4}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations_a2e51839fbf3bd8b56aebac80060070e6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations_a2e51839fbf3bd8b56aebac80060070e6}} \nDictionary$<$ string, string $>$ {\\bfseries attributes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Import\\+Work\\+Item\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_aac0da0a306ab1c3712c61b8bca7597cd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_aac0da0a306ab1c3712c61b8bca7597cd}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_af8316b53120f94ba8b404360c7702ddd}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_af8316b53120f94ba8b404360c7702ddd}} \nint {\\bfseries rev}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_ae774423a23c965b7b06b1337245102ab}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_ae774423a23c965b7b06b1337245102ab}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields}{Fields}} {\\bfseries fields}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_add03237e31255cbf6a45cc17b81124ac}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_add03237e31255cbf6a45cc17b81124ac}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations}{Relations}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries relations}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_aa0e385ffcfb4a57a36c11e1822cbc5a9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value_aa0e385ffcfb4a57a36c11e1822cbc5a9}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Import\\+Work\\+Item\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 101.781170\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 4.912500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.ImportWorkItemModel.WorkItems) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Work\\+Items Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Work\\+Items}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Work\\+Items\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items_a423cd7d0de2b9d41c5a340eb1a38bd90}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items_a423cd7d0de2b9d41c5a340eb1a38bd90}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items_aac7408f377464af62f3901ac083ed801}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items_aac7408f377464af62f3901ac083ed801}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value}{Value}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Import\\+Work\\+Item\\+Model.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Return\\+Exception Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Return\\+Exception@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Return\\+Exception}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a51989d31d0d16a238c26618b6665ea57}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a51989d31d0d16a238c26618b6665ea57}} \nstring {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a00b0af108d6945ae2b8596f69d415df1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a00b0af108d6945ae2b8596f69d415df1}} \nstring {\\bfseries inner\\+Exception}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a17922f8541bdbe246f297b2acc23a93b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a17922f8541bdbe246f297b2acc23a93b}} \nstring {\\bfseries message}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_aaa7297bec34f6fcd5c58a81959158c01}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_aaa7297bec34f6fcd5c58a81959158c01}} \nstring {\\bfseries type\\+Name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_aa06536d9bb6bce613845e07bb05fc2c3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_aa06536d9bb6bce613845e07bb05fc2c3}} \nstring {\\bfseries type\\+Key}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a7139a7dd321ede09a260d9cb04280422}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a7139a7dd321ede09a260d9cb04280422}} \nstring {\\bfseries error\\+Code}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a4184b4d921685c2c96e15a34d51bb6de}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception_a4184b4d921685c2c96e15a34d51bb6de}} \nstring {\\bfseries event\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Return\\+Exception.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}{Backlog\\+Visibilities}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist}{Epiclist}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Set\\+Epic\\+Settings.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 99.009901\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.050000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.SetEpicSettings.BacklogVisibilities) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Backlog\\+Visibilities Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Backlog\\+Visibilities@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Backlog\\+Visibilities}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Backlog\\+Visibilities\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities_a07c1edc7094917bee5ede0f972bef4a3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities_a07c1edc7094917bee5ede0f972bef4a3}} \nstring {\\bfseries epi}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities_af8487683a549f2bf1edd0eb490dbae71}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities_af8487683a549f2bf1edd0eb490dbae71}} \nstring {\\bfseries pbi}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities_a52d3ee01620d7d425764844a249ce375}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities_a52d3ee01620d7d425764844a249ce375}} \nstring {\\bfseries Req}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Set\\+Epic\\+Settings.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Epiclist Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Epiclist@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Epiclist}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist_a3645bd8639271372fe3c003c98cf46f4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist_a3645bd8639271372fe3c003c98cf46f4}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}{Backlog\\+Visibilities}} {\\bfseries backlog\\+Visibilities}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Set\\+Epic\\+Settings.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+State\\+Mappings Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+State\\+Mappings@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+State\\+Mappings}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings_aabcbcf068fd0dda0fc7fc920d64d3a0c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings_aabcbcf068fd0dda0fc7fc920d64d3a0c}} \nstring {\\bfseries P\\+BI}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings_ac5ec66dbf9bd4ed8c50d638ae8930ffb}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings_ac5ec66dbf9bd4ed8c50d638ae8930ffb}} \nstring {\\bfseries bug}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Column\\+Post.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_a7ed365459c1813f21d1295356b4ca023}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_a7ed365459c1813f21d1295356b4ca023}} \nint {\\bfseries count}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_a245364d6705ad42a815ccf7ecae1bb82}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_a245364d6705ad42a815ccf7ecae1bb82}} \nList$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value}{Value}} $>$ {\\bfseries values}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Batch\\+Post\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value_a3600b35f9593daf9e9fd51a8ab26f193}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value_a3600b35f9593daf9e9fd51a8ab26f193}} \nint {\\bfseries code}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value_a578ca8c2d2441e5f4e80ae9f797833a2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value_a578ca8c2d2441e5f4e80ae9f797833a2}} \nDictionary$<$ string, string $>$ {\\bfseries headers}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value_a9d74cf34e34c90c803cbc36875bca04b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value_a9d74cf34e34c90c803cbc36875bca04b}} \nstring {\\bfseries body}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Batch\\+Post\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes}{Attributes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field}{Field}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Attributes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Attributes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Attributes}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes_afb2c8090955bd7e91f69e09ee4a953f5}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes_afb2c8090955bd7e91f69e09ee4a953f5}} \nstring {\\bfseries comment}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes_a86b398c16d9513a15e70ccef16e400d3}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes_a86b398c16d9513a15e70ccef16e400d3}} \nstring {\\bfseries name}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Field Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Field@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Field}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field_a47484809be9e029acf2c0a9025cfc973}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field_a47484809be9e029acf2c0a9025cfc973}} \nstring {\\bfseries op}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field_a16dff5a6958e684bd3cf9794a46f7641}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field_a16dff5a6958e684bd3cf9794a46f7641}} \nstring {\\bfseries path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field_abb949b7e7d4a2a1bc6b05d0e5f2370b2}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field_abb949b7e7d4a2a1bc6b05d0e5f2370b2}} \nobject {\\bfseries value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Value Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Value@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Value}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value_a60193a1ddcce4e012fc8065062996af4}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value_a60193a1ddcce4e012fc8065062996af4}} \nstring {\\bfseries rel}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value_acb0e41224a9c01cc2ddbf327cab8ad18}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value_acb0e41224a9c01cc2ddbf327cab8ad18}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value_a6a7c2edadb18597e58b66fef476dfba6}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value_a6a7c2edadb18597e58b66fef476dfba6}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes}{Attributes}} {\\bfseries attributes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links}{\\+\\_\\+\\+Links}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes}{Attributes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields}{Fields}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1}{Fields1}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html}{Html}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation}{Relation}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self}{Self}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}{Work\\+Item}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory}{Workitemhistory}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions}{Workitemrevisions}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype}{Workitemtype}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates}{Workitemupdates}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+\\_\\+\\+Links Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+\\_\\+\\+Links@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+\\_\\+\\+Links}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_aa993e17cfb2c362e7ef0f78895d6de1d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_aa993e17cfb2c362e7ef0f78895d6de1d}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self}{Self}} {\\bfseries self}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_ac04306e846f461282053d664e0849e7c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_ac04306e846f461282053d664e0849e7c}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates}{Workitemupdates}} {\\bfseries work\\+Item\\+Updates}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_aac79ea3367d4da870fbac1f7cac5cf3f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_aac79ea3367d4da870fbac1f7cac5cf3f}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions}{Workitemrevisions}} {\\bfseries work\\+Item\\+Revisions}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_a628707bdbf8a4b3d5d5adc8da4107b4e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_a628707bdbf8a4b3d5d5adc8da4107b4e}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory}{Workitemhistory}} {\\bfseries work\\+Item\\+History}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_a611f044cd7c00afb7e93f8bba29d3c07}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_a611f044cd7c00afb7e93f8bba29d3c07}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html}{Html}} {\\bfseries html}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_a6d538d613eb43f7b992a63da1ecc3207}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_a6d538d613eb43f7b992a63da1ecc3207}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype}{Workitemtype}} {\\bfseries work\\+Item\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_a2a683bdbb46271ecb2a653e5cd0d804d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links_a2a683bdbb46271ecb2a653e5cd0d804d}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1}{Fields1}} {\\bfseries fields}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Attributes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Attributes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Attributes}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes_a962d30b02b3b0695da6123a9bba59631}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes_a962d30b02b3b0695da6123a9bba59631}} \nbool {\\bfseries is\\+Locked}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ad4fad9482221d9d5c337a39172d7b7c1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ad4fad9482221d9d5c337a39172d7b7c1}} \nstring {\\bfseries System\\+Area\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a6a5b31e7ffe497441ad8cfba8a3818b0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a6a5b31e7ffe497441ad8cfba8a3818b0}} \nstring {\\bfseries System\\+Team\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a19660db0d9b8e5255f8b62801f77bf19}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a19660db0d9b8e5255f8b62801f77bf19}} \nstring {\\bfseries System\\+Iteration\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a24fc4358ea7f83361ceda80b7587faea}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a24fc4358ea7f83361ceda80b7587faea}} \nstring {\\bfseries System\\+Work\\+Item\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ae258055360a73f778538c4a10e5446d0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ae258055360a73f778538c4a10e5446d0}} \nstring {\\bfseries System\\+State}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a7c6aa17dcded25cb38921e98368bcd7d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a7c6aa17dcded25cb38921e98368bcd7d}} \nstring {\\bfseries System\\+Reason}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a0b9ac584a27836c1bf19461e02356f0b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a0b9ac584a27836c1bf19461e02356f0b}} \nDate\\+Time {\\bfseries System\\+Created\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ac50fd6c3cce0a74a98f90421b1b755be}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ac50fd6c3cce0a74a98f90421b1b755be}} \nstring {\\bfseries System\\+Created\\+By}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a2bc6a4993e61db8d15521849dda88355}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a2bc6a4993e61db8d15521849dda88355}} \nDate\\+Time {\\bfseries System\\+Changed\\+Date}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_abc4215bc977d48e040b61ce24f9216c1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_abc4215bc977d48e040b61ce24f9216c1}} \nstring {\\bfseries System\\+Changed\\+By}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a453a872311bda0cf9bc5d02d502a5195}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a453a872311bda0cf9bc5d02d502a5195}} \nstring {\\bfseries System\\+Title}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a1638474550567286db044b30643ea28f}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a1638474550567286db044b30643ea28f}} \nstring {\\bfseries System\\+Board\\+Column}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ad1a0b3f356b32dc993e7b526569cf6ab}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ad1a0b3f356b32dc993e7b526569cf6ab}} \nbool {\\bfseries System\\+Board\\+Column\\+Done}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a482d17caaad9fa932e375869186112d1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a482d17caaad9fa932e375869186112d1}} \nint {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Common\\+Priority}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a37a19843ca741dda048d72dc4c1f851e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a37a19843ca741dda048d72dc4c1f851e}} \nint {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Common\\+Business\\+Value}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ac6f79c6fe16fc6a6c211f5ccbbb004a0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_ac6f79c6fe16fc6a6c211f5ccbbb004a0}} \nstring {\\bfseries Microsoft\\+V\\+S\\+T\\+S\\+Common\\+Value\\+Area}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a42ae60434cd1825bcc03671151834de7}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a42ae60434cd1825bcc03671151834de7}} \nstring {\\bfseries System\\+Description}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a7bffc4fb7a7d8b3b7c287559b1fafcc0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields_a7bffc4fb7a7d8b3b7c287559b1fafcc0}} \nstring {\\bfseries System\\+History}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields1 Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields1@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields1}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1_ac2e34f6d54fc718a6063e858c73adee0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1_ac2e34f6d54fc718a6063e858c73adee0}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Html Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Html@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Html}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html_a6067d030830321b15bef015e8bdd223d}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html_a6067d030830321b15bef015e8bdd223d}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Relation Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Relation@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Relation}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation_a57cddec88b507196493c0e347136d2e9}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation_a57cddec88b507196493c0e347136d2e9}} \nstring {\\bfseries rel}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation_a7f263bebda80e0f171b12e0b0c3eb26a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation_a7f263bebda80e0f171b12e0b0c3eb26a}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation_a4276c3702491dd865ec2a175043cca73}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation_a4276c3702491dd865ec2a175043cca73}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes}{Attributes}} {\\bfseries attributes}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Self Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Self@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Self}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self_a63a134ea5cd73294e9ad4c4572491fe1}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self_a63a134ea5cd73294e9ad4c4572491fe1}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 98.765432\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 5.062500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem) cw\n(VstsRestAPI.Viewmodel.BaseViewModel) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.Viewmodel.WorkItem.WorkItemPatchResponse.WorkItem) 0.000000 0.000000 box\n (VstsRestAPI.Viewmodel.BaseViewModel) 0.000000 1.000000 box\n\n% ----- relations -----\n\nsolid\n0 0.000000 0.000000 out\nsolid\n1 0.000000 1.000000 in\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Work\\+Item Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Work\\+Item@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Work\\+Item}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Work\\+Item\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a068ac9922589ccc48ea539046201131b}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a068ac9922589ccc48ea539046201131b}} \nint {\\bfseries id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a62c2255d5138b246a3a355f9df857651}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a62c2255d5138b246a3a355f9df857651}} \nint {\\bfseries rev}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_aa082c296a382019beeae5f6cd49e3a9e}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_aa082c296a382019beeae5f6cd49e3a9e}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields}{Fields}} {\\bfseries fields}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a81fd7be2a3821fa49713324e21b73ab0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a81fd7be2a3821fa49713324e21b73ab0}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation}{Relation}} \\mbox{[}$\\,$\\mbox{]} {\\bfseries relations}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a79c00338c2f0c1892adda0bf262fa9d8}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a79c00338c2f0c1892adda0bf262fa9d8}} \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links}{\\+\\_\\+\\+Links}} {\\bfseries \\+\\_\\+links}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a63dc7b03976b6160f085de0485d69007}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item_a63dc7b03976b6160f085de0485d69007}} \nstring {\\bfseries url}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemhistory Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemhistory@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemhistory}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory_a403e4b2d1aaa161299222893bedc949c}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory_a403e4b2d1aaa161299222893bedc949c}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemrevisions Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemrevisions@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemrevisions}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions_aad77bb209735e66e82345ec045f74a4a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions_aad77bb209735e66e82345ec045f74a4a}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemtype Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemtype@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemtype}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype_ac3f2657043e8ada951c3787f892ab6e0}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype_ac3f2657043e8ada951c3787f892ab6e0}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemupdates Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemupdates@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemupdates}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates_a366e011e5aefe86b97ef996b0a85835a}\\label{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates_a366e011e5aefe86b97ef996b0a85835a}} \nstring {\\bfseries href}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Viewmodel/\\+Work\\+Item/Work\\+Item\\+Patch\\+Response.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Board\\+Column Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Board\\+Column@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Board\\+Column}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_af8a3fb2feb827f05262695f8bced2cc1}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_af8a3fb2feb827f05262695f8bced2cc1}} \n{\\bfseries Board\\+Column} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_a5e492fd7d8cc70eae58565322bd7fcda}{Update\\+Board}} (string project\\+Name, string file\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Update kanban board colums styles \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}{Get\\+Board\\+Column\\+Response.\\+Column\\+Response}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_ab37fe206629cd139eeb2e6c634e56859}{get\\+Board\\+Columns}} (string project\\+Name, string team\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get kanban board columns \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_a6ad605cdf943060efe528fa34b38b225}{Refresh\\+Board}} (string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Refresh kanban board \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_a3cfcdf88f7e8575e5fe3d3b651fc9ad2}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_a3cfcdf88f7e8575e5fe3d3b651fc9ad2}} \nstring {\\bfseries row\\+Field\\+Name}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_ab1d9f3b47971e0dcdca9145c450a72d9}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_ab1d9f3b47971e0dcdca9145c450a72d9}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_ab37fe206629cd139eeb2e6c634e56859}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_ab37fe206629cd139eeb2e6c634e56859}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column}!get\\+Board\\+Columns@{get\\+Board\\+Columns}}\n\\index{get\\+Board\\+Columns@{get\\+Board\\+Columns}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column}}\n\\subsubsection{\\texorpdfstring{get\\+Board\\+Columns()}{getBoardColumns()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}{Get\\+Board\\+Column\\+Response.\\+Column\\+Response}} Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Board\\+Column.\\+get\\+Board\\+Columns (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{team\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet kanban board columns \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em team\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_a6ad605cdf943060efe528fa34b38b225}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_a6ad605cdf943060efe528fa34b38b225}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column}!Refresh\\+Board@{Refresh\\+Board}}\n\\index{Refresh\\+Board@{Refresh\\+Board}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column}}\n\\subsubsection{\\texorpdfstring{Refresh\\+Board()}{RefreshBoard()}}\n{\\footnotesize\\ttfamily void Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Board\\+Column.\\+Refresh\\+Board (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nRefresh kanban board \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_a5e492fd7d8cc70eae58565322bd7fcda}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column_a5e492fd7d8cc70eae58565322bd7fcda}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column}!Update\\+Board@{Update\\+Board}}\n\\index{Update\\+Board@{Update\\+Board}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Board\\+Column}}\n\\subsubsection{\\texorpdfstring{Update\\+Board()}{UpdateBoard()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Board\\+Column.\\+Update\\+Board (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{file\\+Name }\\end{DoxyParamCaption})}\n\n\n\nUpdate kanban board colums styles \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em file\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Board\\+Column.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Cards Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Cards}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_af4078fdba1a2c2b138e1302b31794f4d}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_af4078fdba1a2c2b138e1302b31794f4d}} \n{\\bfseries Cards} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nvoid \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_aef506846ff57c971ab48a51a39f8cea4}{Update\\+Card\\+Field}} (string project\\+Name, string Json)\n\\begin{DoxyCompactList}\\small\\item\\em Update Card fields \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_a01a9ffa779ba2cdcd5750cc188dc42f1}{Apply\\+Rules}} (string project\\+Name, string Json)\n\\begin{DoxyCompactList}\\small\\item\\em Apply rules to cards \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_a307fb639df853926ff09dadadfd8aa12}{Enabling\\+Epic}} (string project\\+Name, string Json, string project)\n\\begin{DoxyCompactList}\\small\\item\\em Enable Epic \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_ab9717c8763516e21eb0f5623e748394c}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_ab9717c8763516e21eb0f5623e748394c}} \nstring {\\bfseries Last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_a01a9ffa779ba2cdcd5750cc188dc42f1}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_a01a9ffa779ba2cdcd5750cc188dc42f1}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards}!Apply\\+Rules@{Apply\\+Rules}}\n\\index{Apply\\+Rules@{Apply\\+Rules}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards}}\n\\subsubsection{\\texorpdfstring{Apply\\+Rules()}{ApplyRules()}}\n{\\footnotesize\\ttfamily void Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Cards.\\+Apply\\+Rules (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{Json }\\end{DoxyParamCaption})}\n\n\n\nApply rules to cards \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em Json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_a307fb639df853926ff09dadadfd8aa12}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_a307fb639df853926ff09dadadfd8aa12}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards}!Enabling\\+Epic@{Enabling\\+Epic}}\n\\index{Enabling\\+Epic@{Enabling\\+Epic}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards}}\n\\subsubsection{\\texorpdfstring{Enabling\\+Epic()}{EnablingEpic()}}\n{\\footnotesize\\ttfamily void Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Cards.\\+Enabling\\+Epic (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{Json,  }\\item[{string}]{project }\\end{DoxyParamCaption})}\n\n\n\nEnable Epic \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em Json} & \\\\\n\\hline\n{\\em project} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_aef506846ff57c971ab48a51a39f8cea4}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards_aef506846ff57c971ab48a51a39f8cea4}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards}!Update\\+Card\\+Field@{Update\\+Card\\+Field}}\n\\index{Update\\+Card\\+Field@{Update\\+Card\\+Field}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Cards}}\n\\subsubsection{\\texorpdfstring{Update\\+Card\\+Field()}{UpdateCardField()}}\n{\\footnotesize\\ttfamily void Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Cards.\\+Update\\+Card\\+Field (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{Json }\\end{DoxyParamCaption})}\n\n\n\nUpdate Card fields \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em Json} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Cards.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a56901e63fcddff8c3b672404bcd45bfe}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a56901e63fcddff8c3b672404bcd45bfe}} \n{\\bfseries Classification\\+Nodes} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}{Get\\+Nodes\\+Response.\\+Nodes}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a9b9f298f8ae6cf16fcc809c69f99533a}{Get\\+Iterations}} (string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Get Iteration \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{Get\\+Node\\+Response.\\+Node}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_ae8b553aaddd3dbd6d03d9ed7400b0667}{Create\\+Iteration}} (string project\\+Name, string path)\n\\begin{DoxyCompactList}\\small\\item\\em Create Iterations \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{Get\\+Node\\+Response.\\+Node}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a34362d25882c3145b7134f08bf8aae86}{Move\\+Iteration}} (string project\\+Name, string target\\+Iteration, int source\\+Iteration\\+Id)\n\\begin{DoxyCompactList}\\small\\item\\em movie Iteration to parent \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_aff3aa00e48c8f5419e7ca2a0d35946ef}{Update\\+Iteration\\+Dates}} (string Project\\+Name, string template\\+Type)\n\\begin{DoxyCompactList}\\small\\item\\em Update Iteration Dates-\\/ calculating from previous 22 days \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{Get\\+Node\\+Response.\\+Node}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a06d5cff8ab9703f58ffa2575abb2cdde}{Update\\+Iteration\\+Dates}} (string project, string path, Date\\+Time start\\+Date, Date\\+Time finish\\+Date)\n\\begin{DoxyCompactList}\\small\\item\\em Update Iteration Dates \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_aa9ec619ecc43346a57e84ec3206c78e3}{Rename\\+Iteration}} (string project\\+Name, Dictionary$<$ string, string $>$ Iteration\\+To\\+Update)\n\\begin{DoxyCompactList}\\small\\item\\em Rename Iteration \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a4c0a8a273de79ad69806b8e0bfd4d0d4}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a4c0a8a273de79ad69806b8e0bfd4d0d4}} \nstring {\\bfseries Last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_ae8b553aaddd3dbd6d03d9ed7400b0667}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_ae8b553aaddd3dbd6d03d9ed7400b0667}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}!Create\\+Iteration@{Create\\+Iteration}}\n\\index{Create\\+Iteration@{Create\\+Iteration}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}}\n\\subsubsection{\\texorpdfstring{Create\\+Iteration()}{CreateIteration()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{Get\\+Node\\+Response.\\+Node}} Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes.\\+Create\\+Iteration (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{path }\\end{DoxyParamCaption})}\n\n\n\nCreate Iterations \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em path} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a9b9f298f8ae6cf16fcc809c69f99533a}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a9b9f298f8ae6cf16fcc809c69f99533a}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}!Get\\+Iterations@{Get\\+Iterations}}\n\\index{Get\\+Iterations@{Get\\+Iterations}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}}\n\\subsubsection{\\texorpdfstring{Get\\+Iterations()}{GetIterations()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}{Get\\+Nodes\\+Response.\\+Nodes}} Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes.\\+Get\\+Iterations (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nGet Iteration \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a34362d25882c3145b7134f08bf8aae86}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a34362d25882c3145b7134f08bf8aae86}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}!Move\\+Iteration@{Move\\+Iteration}}\n\\index{Move\\+Iteration@{Move\\+Iteration}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}}\n\\subsubsection{\\texorpdfstring{Move\\+Iteration()}{MoveIteration()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{Get\\+Node\\+Response.\\+Node}} Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes.\\+Move\\+Iteration (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{target\\+Iteration,  }\\item[{int}]{source\\+Iteration\\+Id }\\end{DoxyParamCaption})}\n\n\n\nmovie Iteration to parent \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em target\\+Iteration} & \\\\\n\\hline\n{\\em source\\+Iteration\\+Id} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_aa9ec619ecc43346a57e84ec3206c78e3}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_aa9ec619ecc43346a57e84ec3206c78e3}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}!Rename\\+Iteration@{Rename\\+Iteration}}\n\\index{Rename\\+Iteration@{Rename\\+Iteration}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}}\n\\subsubsection{\\texorpdfstring{Rename\\+Iteration()}{RenameIteration()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes.\\+Rename\\+Iteration (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{Dictionary$<$ string, string $>$}]{Iteration\\+To\\+Update }\\end{DoxyParamCaption})}\n\n\n\nRename Iteration \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em Iteration\\+To\\+Update} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_aff3aa00e48c8f5419e7ca2a0d35946ef}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_aff3aa00e48c8f5419e7ca2a0d35946ef}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}!Update\\+Iteration\\+Dates@{Update\\+Iteration\\+Dates}}\n\\index{Update\\+Iteration\\+Dates@{Update\\+Iteration\\+Dates}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}}\n\\subsubsection{\\texorpdfstring{Update\\+Iteration\\+Dates()}{UpdateIterationDates()}\\hspace{0.1cm}{\\footnotesize\\ttfamily [1/2]}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes.\\+Update\\+Iteration\\+Dates (\\begin{DoxyParamCaption}\\item[{string}]{Project\\+Name,  }\\item[{string}]{template\\+Type }\\end{DoxyParamCaption})}\n\n\n\nUpdate Iteration Dates-\\/ calculating from previous 22 days \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Project\\+Name} & \\\\\n\\hline\n{\\em template\\+Type} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a06d5cff8ab9703f58ffa2575abb2cdde}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes_a06d5cff8ab9703f58ffa2575abb2cdde}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}!Update\\+Iteration\\+Dates@{Update\\+Iteration\\+Dates}}\n\\index{Update\\+Iteration\\+Dates@{Update\\+Iteration\\+Dates}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Classification\\+Nodes}}\n\\subsubsection{\\texorpdfstring{Update\\+Iteration\\+Dates()}{UpdateIterationDates()}\\hspace{0.1cm}{\\footnotesize\\ttfamily [2/2]}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}{Get\\+Node\\+Response.\\+Node}} Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes.\\+Update\\+Iteration\\+Dates (\\begin{DoxyParamCaption}\\item[{string}]{project,  }\\item[{string}]{path,  }\\item[{Date\\+Time}]{start\\+Date,  }\\item[{Date\\+Time}]{finish\\+Date }\\end{DoxyParamCaption})}\n\n\n\nUpdate Iteration Dates \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n{\\em path} & \\\\\n\\hline\n{\\em start\\+Date} & \\\\\n\\hline\n{\\em finish\\+Date} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Classification\\+Nodes.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a2ee1fe393b4ce2879cf0ad53feef7be2}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a2ee1fe393b4ce2879cf0ad53feef7be2}} \n{\\bfseries Import\\+Work\\+Items} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration, string row\\+Field\\+Name)\n\\item \nList$<$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}{W\\+I\\+Map\\+Data}} $>$ \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a314f15de4c9b09b3911af9d079abe306}{Import\\+Workitems}} (Dictionary$<$ string, string $>$ dic\\+W\\+I\\+Types, string project\\+Name, string unique\\+User, string project\\+Settings\\+Json, string attachment\\+Folder\\+Path, string repository\\+ID, string project\\+ID, Dictionary$<$ string, string $>$ dict\\+Pull\\+Requests, string user\\+Method, List$<$ string $>$ account\\+Users)\n\\begin{DoxyCompactList}\\small\\item\\em Import Work items form the files \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a4e9b291e9e8e0c84200d2fa06f0bc068}{Prepare\\+And\\+Update\\+Target}} (string work\\+Item\\+Type, string work\\+Import, string Project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Update the work items in Target with all required field values \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a0287a32144b543656c69fd06131ee7f3}{Update\\+Work\\+Itemin\\+Target}} (string work\\+Item\\+Type, string old\\+\\_\\+wi\\+\\_\\+\\+ID, string Project\\+Name, Dictionary$<$ string, object $>$ dic\\+W\\+I\\+Fields)\n\\begin{DoxyCompactList}\\small\\item\\em Update work ietm with all required field values \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_ad85453d724d643b50b25b2d7f39ba95d}{Update\\+Work\\+Item\\+Links}} (string work\\+Item\\+Template\\+Json)\n\\begin{DoxyCompactList}\\small\\item\\em Update work items links -\\/ parent child-\\/ Hyperlinks-\\/artifact links-\\/attachments \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a70dc11cc49f3584702b7269d3ed821b2}{Update\\+Link}} (string work\\+Item\\+Type, string W\\+Ito\\+Update, object\\mbox{[}$\\,$\\mbox{]} patch\\+Work\\+Item)\n\\begin{DoxyCompactList}\\small\\item\\em Udpate Links to work items \\end{DoxyCompactList}\\item \nstring \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a5845172621eec8d4991f3633077dc498}{Upload\\+Attchment}} (string file\\+Path, string file\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Upload attachments to V\\+S\\+TS server \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a3c49805a2d5db76c5e891bb58d55b7ff}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a3c49805a2d5db76c5e891bb58d55b7ff}} \nstring {\\bfseries board\\+Row\\+Field\\+Name}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a69a6c66655b4eacd36b981b3a140540a}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a69a6c66655b4eacd36b981b3a140540a}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a314f15de4c9b09b3911af9d079abe306}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a314f15de4c9b09b3911af9d079abe306}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}!Import\\+Workitems@{Import\\+Workitems}}\n\\index{Import\\+Workitems@{Import\\+Workitems}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}}\n\\subsubsection{\\texorpdfstring{Import\\+Workitems()}{ImportWorkitems()}}\n{\\footnotesize\\ttfamily List$<$\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}{W\\+I\\+Map\\+Data}}$>$ Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items.\\+Import\\+Workitems (\\begin{DoxyParamCaption}\\item[{Dictionary$<$ string, string $>$}]{dic\\+W\\+I\\+Types,  }\\item[{string}]{project\\+Name,  }\\item[{string}]{unique\\+User,  }\\item[{string}]{project\\+Settings\\+Json,  }\\item[{string}]{attachment\\+Folder\\+Path,  }\\item[{string}]{repository\\+ID,  }\\item[{string}]{project\\+ID,  }\\item[{Dictionary$<$ string, string $>$}]{dict\\+Pull\\+Requests,  }\\item[{string}]{user\\+Method,  }\\item[{List$<$ string $>$}]{account\\+Users }\\end{DoxyParamCaption})}\n\n\n\nImport Work items form the files \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em dic\\+W\\+I\\+Types} & \\\\\n\\hline\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em unique\\+User} & \\\\\n\\hline\n{\\em project\\+Settings\\+Json} & \\\\\n\\hline\n{\\em attachment\\+Folder\\+Path} & \\\\\n\\hline\n{\\em repository\\+ID} & \\\\\n\\hline\n{\\em project\\+ID} & \\\\\n\\hline\n{\\em dict\\+Pull\\+Requests} & \\\\\n\\hline\n{\\em user\\+Method} & \\\\\n\\hline\n{\\em account\\+Users} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a4e9b291e9e8e0c84200d2fa06f0bc068}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a4e9b291e9e8e0c84200d2fa06f0bc068}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}!Prepare\\+And\\+Update\\+Target@{Prepare\\+And\\+Update\\+Target}}\n\\index{Prepare\\+And\\+Update\\+Target@{Prepare\\+And\\+Update\\+Target}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}}\n\\subsubsection{\\texorpdfstring{Prepare\\+And\\+Update\\+Target()}{PrepareAndUpdateTarget()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items.\\+Prepare\\+And\\+Update\\+Target (\\begin{DoxyParamCaption}\\item[{string}]{work\\+Item\\+Type,  }\\item[{string}]{work\\+Import,  }\\item[{string}]{Project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nUpdate the work items in Target with all required field values \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em work\\+Item\\+Type} & \\\\\n\\hline\n{\\em work\\+Import} & \\\\\n\\hline\n{\\em Project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a70dc11cc49f3584702b7269d3ed821b2}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a70dc11cc49f3584702b7269d3ed821b2}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}!Update\\+Link@{Update\\+Link}}\n\\index{Update\\+Link@{Update\\+Link}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}}\n\\subsubsection{\\texorpdfstring{Update\\+Link()}{UpdateLink()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items.\\+Update\\+Link (\\begin{DoxyParamCaption}\\item[{string}]{work\\+Item\\+Type,  }\\item[{string}]{W\\+Ito\\+Update,  }\\item[{object \\mbox{[}$\\,$\\mbox{]}}]{patch\\+Work\\+Item }\\end{DoxyParamCaption})}\n\n\n\nUdpate Links to work items \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em work\\+Item\\+Type} & \\\\\n\\hline\n{\\em W\\+Ito\\+Update} & \\\\\n\\hline\n{\\em patch\\+Work\\+Item} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a0287a32144b543656c69fd06131ee7f3}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a0287a32144b543656c69fd06131ee7f3}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}!Update\\+Work\\+Itemin\\+Target@{Update\\+Work\\+Itemin\\+Target}}\n\\index{Update\\+Work\\+Itemin\\+Target@{Update\\+Work\\+Itemin\\+Target}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}}\n\\subsubsection{\\texorpdfstring{Update\\+Work\\+Itemin\\+Target()}{UpdateWorkIteminTarget()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items.\\+Update\\+Work\\+Itemin\\+Target (\\begin{DoxyParamCaption}\\item[{string}]{work\\+Item\\+Type,  }\\item[{string}]{old\\+\\_\\+wi\\+\\_\\+\\+ID,  }\\item[{string}]{Project\\+Name,  }\\item[{Dictionary$<$ string, object $>$}]{dic\\+W\\+I\\+Fields }\\end{DoxyParamCaption})}\n\n\n\nUpdate work ietm with all required field values \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em work\\+Item\\+Type} & \\\\\n\\hline\n{\\em old\\+\\_\\+wi\\+\\_\\+\\+ID} & \\\\\n\\hline\n{\\em Project\\+Name} & \\\\\n\\hline\n{\\em dic\\+W\\+I\\+Fields} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_ad85453d724d643b50b25b2d7f39ba95d}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_ad85453d724d643b50b25b2d7f39ba95d}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}!Update\\+Work\\+Item\\+Links@{Update\\+Work\\+Item\\+Links}}\n\\index{Update\\+Work\\+Item\\+Links@{Update\\+Work\\+Item\\+Links}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}}\n\\subsubsection{\\texorpdfstring{Update\\+Work\\+Item\\+Links()}{UpdateWorkItemLinks()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items.\\+Update\\+Work\\+Item\\+Links (\\begin{DoxyParamCaption}\\item[{string}]{work\\+Item\\+Template\\+Json }\\end{DoxyParamCaption})}\n\n\n\nUpdate work items links -\\/ parent child-\\/ Hyperlinks-\\/artifact links-\\/attachments \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em work\\+Item\\+Template\\+Json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a5845172621eec8d4991f3633077dc498}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items_a5845172621eec8d4991f3633077dc498}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}!Upload\\+Attchment@{Upload\\+Attchment}}\n\\index{Upload\\+Attchment@{Upload\\+Attchment}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Import\\+Work\\+Items}}\n\\subsubsection{\\texorpdfstring{Upload\\+Attchment()}{UploadAttchment()}}\n{\\footnotesize\\ttfamily string Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items.\\+Upload\\+Attchment (\\begin{DoxyParamCaption}\\item[{string}]{file\\+Path,  }\\item[{string}]{file\\+Name }\\end{DoxyParamCaption})}\n\n\n\nUpload attachments to V\\+S\\+TS server \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em file\\+Path} & \\\\\n\\hline\n{\\em file\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Import\\+Work\\+Items.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Issue\\+WI Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Issue\\+WI@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Issue\\+WI}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \nvoid \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i_a58345bc764da664648c1fe6530405555}{Create\\+Issue\\+WI}} (string Credential, string version, string U\\+RL, string issuen\\+Name, string description, string project\\+Id)\n\\begin{DoxyCompactList}\\small\\item\\em Create Issue Work Items \\end{DoxyCompactList}\\item \nvoid \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i_a9e73160c28746c3b6090cfdc8d51b79f}{Create\\+Report\\+WI}} (string Credential, string version, string U\\+RL, string website\\+Url, string Report\\+Name, string Account\\+Name, string Template\\+Name, string project\\+Id, string Region)\n\\begin{DoxyCompactList}\\small\\item\\em Create Report work items \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i_a58345bc764da664648c1fe6530405555}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i_a58345bc764da664648c1fe6530405555}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Issue\\+WI@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Issue\\+WI}!Create\\+Issue\\+WI@{Create\\+Issue\\+WI}}\n\\index{Create\\+Issue\\+WI@{Create\\+Issue\\+WI}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Issue\\+WI@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Issue\\+WI}}\n\\subsubsection{\\texorpdfstring{Create\\+Issue\\+W\\+I()}{CreateIssueWI()}}\n{\\footnotesize\\ttfamily void Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Issue\\+W\\+I.\\+Create\\+Issue\\+WI (\\begin{DoxyParamCaption}\\item[{string}]{Credential,  }\\item[{string}]{version,  }\\item[{string}]{U\\+RL,  }\\item[{string}]{issuen\\+Name,  }\\item[{string}]{description,  }\\item[{string}]{project\\+Id }\\end{DoxyParamCaption})}\n\n\n\nCreate Issue Work Items \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Credential} & \\\\\n\\hline\n{\\em version} & \\\\\n\\hline\n{\\em U\\+RL} & \\\\\n\\hline\n{\\em issuen\\+Name} & \\\\\n\\hline\n{\\em description} & \\\\\n\\hline\n{\\em project\\+Id} & \\\\\n\\hline\n\\end{DoxyParams}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i_a9e73160c28746c3b6090cfdc8d51b79f}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i_a9e73160c28746c3b6090cfdc8d51b79f}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Issue\\+WI@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Issue\\+WI}!Create\\+Report\\+WI@{Create\\+Report\\+WI}}\n\\index{Create\\+Report\\+WI@{Create\\+Report\\+WI}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Issue\\+WI@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Issue\\+WI}}\n\\subsubsection{\\texorpdfstring{Create\\+Report\\+W\\+I()}{CreateReportWI()}}\n{\\footnotesize\\ttfamily void Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Issue\\+W\\+I.\\+Create\\+Report\\+WI (\\begin{DoxyParamCaption}\\item[{string}]{Credential,  }\\item[{string}]{version,  }\\item[{string}]{U\\+RL,  }\\item[{string}]{website\\+Url,  }\\item[{string}]{Report\\+Name,  }\\item[{string}]{Account\\+Name,  }\\item[{string}]{Template\\+Name,  }\\item[{string}]{project\\+Id,  }\\item[{string}]{Region }\\end{DoxyParamCaption})}\n\n\n\nCreate Report work items \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em Credential} & \\\\\n\\hline\n{\\em version} & \\\\\n\\hline\n{\\em U\\+RL} & \\\\\n\\hline\n{\\em website\\+Url} & \\\\\n\\hline\n{\\em Report\\+Name} & \\\\\n\\hline\n{\\em Account\\+Name} & \\\\\n\\hline\n{\\em Template\\+Name} & \\\\\n\\hline\n{\\em project\\+Id} & \\\\\n\\hline\n{\\em Region} & \\\\\n\\hline\n\\end{DoxyParams}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Issue\\+W\\+I.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Swim\\+Lanes Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Swim\\+Lanes@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Swim\\+Lanes}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes_a75431daa5e0e566f25ead06f6841b85b}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes_a75431daa5e0e566f25ead06f6841b85b}} \n{\\bfseries Swim\\+Lanes} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes_a4af603283af32f87e7f0de500a5cd578}{Update\\+Swim\\+Lanes}} (string json, string project\\+Name)\n\\begin{DoxyCompactList}\\small\\item\\em Update swim lanes \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes_a79c57d0435c047cea9a3affbdf0c1368}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes_a79c57d0435c047cea9a3affbdf0c1368}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes_a4af603283af32f87e7f0de500a5cd578}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes_a4af603283af32f87e7f0de500a5cd578}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Swim\\+Lanes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Swim\\+Lanes}!Update\\+Swim\\+Lanes@{Update\\+Swim\\+Lanes}}\n\\index{Update\\+Swim\\+Lanes@{Update\\+Swim\\+Lanes}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Swim\\+Lanes@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Swim\\+Lanes}}\n\\subsubsection{\\texorpdfstring{Update\\+Swim\\+Lanes()}{UpdateSwimLanes()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Swim\\+Lanes.\\+Update\\+Swim\\+Lanes (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{project\\+Name }\\end{DoxyParamCaption})}\n\n\n\nUpdate swim lanes \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Swim\\+Lanes.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+W\\+I\\+Map\\+Data Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+W\\+I\\+Map\\+Data@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+W\\+I\\+Map\\+Data}}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data_a1cb9e281fa7c55a2c729ca94c2294672}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data_a1cb9e281fa7c55a2c729ca94c2294672}} \nstring {\\bfseries Old\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data_adb9bfede4dd6bceae8bf9beb0d568910}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data_adb9bfede4dd6bceae8bf9beb0d568910}} \nstring {\\bfseries New\\+ID}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data_a5b2161c2d51a4f9e18492397d52dff3a}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data_a5b2161c2d51a4f9e18492397d52dff3a}} \nstring {\\bfseries W\\+I\\+Type}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Import\\+Work\\+Items.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Item\\+New Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Item\\+New@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Item\\+New}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_a07548faca1ec5d274d10f242f8b71513}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_a07548faca1ec5d274d10f242f8b71513}} \n{\\bfseries Work\\+Item\\+New} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_a1643c3e8181a916c62d329085f07995b}{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}} (string project\\+Name, string json)\n\\begin{DoxyCompactList}\\small\\item\\em Method to create the work\\+Items \\end{DoxyCompactList}\\item \nbool \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_ae0eb3a3a473c7a1b117199a77466ab72}{Update\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}} (string json, string Project\\+Name, string current\\+User, string json\\+Settings)\n\\begin{DoxyCompactList}\\small\\item\\em Method to update \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}{Work\\+Items}} based on id and work\\+Item Type \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}{Get\\+Work\\+Items\\+Response.\\+Results}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_ab6104d3b32004b835a05393a7220a7fc}{Get\\+List\\+Of\\+Work\\+Items\\+\\_\\+\\+By\\+Wiql}} (string project, string Work\\+Item\\+Type)\n\\begin{DoxyCompactList}\\small\\item\\em Method to Get the list of all work\\+Items \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_ade78bf7b0ab60c4535fdefba0f17001e}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_ade78bf7b0ab60c4535fdefba0f17001e}} \nstring {\\bfseries last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_a1643c3e8181a916c62d329085f07995b}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_a1643c3e8181a916c62d329085f07995b}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New}!Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules@{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}}\n\\index{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules@{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New}}\n\\subsubsection{\\texorpdfstring{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules()}{CreateWorkItemUsingByPassRules()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Item\\+New.\\+Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules (\\begin{DoxyParamCaption}\\item[{string}]{project\\+Name,  }\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nMethod to create the work\\+Items \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project\\+Name} & \\\\\n\\hline\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_ab6104d3b32004b835a05393a7220a7fc}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_ab6104d3b32004b835a05393a7220a7fc}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New}!Get\\+List\\+Of\\+Work\\+Items\\+\\_\\+\\+By\\+Wiql@{Get\\+List\\+Of\\+Work\\+Items\\+\\_\\+\\+By\\+Wiql}}\n\\index{Get\\+List\\+Of\\+Work\\+Items\\+\\_\\+\\+By\\+Wiql@{Get\\+List\\+Of\\+Work\\+Items\\+\\_\\+\\+By\\+Wiql}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New}}\n\\subsubsection{\\texorpdfstring{Get\\+List\\+Of\\+Work\\+Items\\+\\_\\+\\+By\\+Wiql()}{GetListOfWorkItems\\_ByWiql()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}{Get\\+Work\\+Items\\+Response.\\+Results}} Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Item\\+New.\\+Get\\+List\\+Of\\+Work\\+Items\\+\\_\\+\\+By\\+Wiql (\\begin{DoxyParamCaption}\\item[{string}]{project,  }\\item[{string}]{Work\\+Item\\+Type }\\end{DoxyParamCaption})}\n\n\n\nMethod to Get the list of all work\\+Items \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em project} & \\\\\n\\hline\n{\\em Work\\+Item\\+Type} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_ae0eb3a3a473c7a1b117199a77466ab72}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new_ae0eb3a3a473c7a1b117199a77466ab72}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New}!Update\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules@{Update\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}}\n\\index{Update\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules@{Update\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Item\\+New}}\n\\subsubsection{\\texorpdfstring{Update\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules()}{UpdateWorkItemUsingByPassRules()}}\n{\\footnotesize\\ttfamily bool Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Item\\+New.\\+Update\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules (\\begin{DoxyParamCaption}\\item[{string}]{json,  }\\item[{string}]{Project\\+Name,  }\\item[{string}]{current\\+User,  }\\item[{string}]{json\\+Settings }\\end{DoxyParamCaption})}\n\n\n\nMethod to update \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}{Work\\+Items}} based on id and work\\+Item Type \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n{\\em Project\\+Name} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Work\\+Item\\+New.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items.tex",
    "content": "\\hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Items Class Reference}\n\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Items}}\n\\subsection*{Public Member Functions}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_ad2e130548f5c015c9c81d3582f58ba00}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_ad2e130548f5c015c9c81d3582f58ba00}} \n{\\bfseries Work\\+Items} (\\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}} configuration)\n\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}{Work\\+Item\\+Patch\\+Response.\\+Work\\+Item}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_a7ff12afa440b5f590d051bc0c6c74e04}{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}} (string json)\n\\begin{DoxyCompactList}\\small\\item\\em Create Work items bypassing all rules \\end{DoxyCompactList}\\item \n\\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}{Work\\+Item\\+Patch\\+Response.\\+Work\\+Item}} \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_ac843d9b1bc4583e7952584dd89a63279}{Add\\+Link}} (string json)\n\\begin{DoxyCompactList}\\small\\item\\em Add work items links \\end{DoxyCompactList}\\end{DoxyCompactItemize}\n\\subsection*{Public Attributes}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_a545dd0c1f3ecb8c72fa6e098e4f15219}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_a545dd0c1f3ecb8c72fa6e098e4f15219}} \nstring {\\bfseries Last\\+Failure\\+Message}\n\\end{DoxyCompactItemize}\n\n\n\\subsection{Member Function Documentation}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_ac843d9b1bc4583e7952584dd89a63279}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_ac843d9b1bc4583e7952584dd89a63279}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Items}!Add\\+Link@{Add\\+Link}}\n\\index{Add\\+Link@{Add\\+Link}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Items}}\n\\subsubsection{\\texorpdfstring{Add\\+Link()}{AddLink()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}{Work\\+Item\\+Patch\\+Response.\\+Work\\+Item}} Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Items.\\+Add\\+Link (\\begin{DoxyParamCaption}\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nAdd work items links \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\\mbox{\\Hypertarget{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_a7ff12afa440b5f590d051bc0c6c74e04}\\label{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items_a7ff12afa440b5f590d051bc0c6c74e04}} \n\\index{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Items}!Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules@{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}}\n\\index{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules@{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules}!Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Items@{Vsts\\+Rest\\+A\\+P\\+I\\+::\\+Work\\+Item\\+And\\+Tracking\\+::\\+Work\\+Items}}\n\\subsubsection{\\texorpdfstring{Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules()}{CreateWorkItemUsingByPassRules()}}\n{\\footnotesize\\ttfamily \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}{Work\\+Item\\+Patch\\+Response.\\+Work\\+Item}} Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Items.\\+Create\\+Work\\+Item\\+Using\\+By\\+Pass\\+Rules (\\begin{DoxyParamCaption}\\item[{string}]{json }\\end{DoxyParamCaption})}\n\n\n\nCreate Work items bypassing all rules \n\n\n\\begin{DoxyParams}{Parameters}\n{\\em json} & \\\\\n\\hline\n\\end{DoxyParams}\n\\begin{DoxyReturn}{Returns}\n\n\\end{DoxyReturn}\n\n\nThe documentation for this class was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/\\+Work\\+Item\\+And\\+Tracking/Work\\+Items.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/doxygen.sty",
    "content": "\\NeedsTeXFormat{LaTeX2e}\n\\ProvidesPackage{doxygen}\n\n% Packages used by this style file\n\\RequirePackage{alltt}\n\\RequirePackage{array}\n\\RequirePackage{calc}\n\\RequirePackage{float}\n\\RequirePackage{ifthen}\n\\RequirePackage{verbatim}\n\\RequirePackage[table]{xcolor}\n\\RequirePackage{longtable}\n\\RequirePackage{tabu}\n\\RequirePackage{tabularx}\n\\RequirePackage{multirow}\n\n%---------- Internal commands used in this style file ----------------\n\n\\newcommand{\\ensurespace}[1]{%\n  \\begingroup%\n    \\setlength{\\dimen@}{#1}%\n    \\vskip\\z@\\@plus\\dimen@%\n    \\penalty -100\\vskip\\z@\\@plus -\\dimen@%\n    \\vskip\\dimen@%\n    \\penalty 9999%\n    \\vskip -\\dimen@%\n    \\vskip\\z@skip% hide the previous |\\vskip| from |\\addvspace|\n  \\endgroup%\n}\n\n\\newcommand{\\DoxyLabelFont}{}\n\\newcommand{\\entrylabel}[1]{%\n  {%\n    \\parbox[b]{\\labelwidth-4pt}{%\n      \\makebox[0pt][l]{\\DoxyLabelFont#1}%\n      \\vspace{1.5\\baselineskip}%\n    }%\n  }%\n}\n\n\\newenvironment{DoxyDesc}[1]{%\n  \\ensurespace{4\\baselineskip}%\n  \\begin{list}{}{%\n    \\settowidth{\\labelwidth}{20pt}%\n    \\setlength{\\parsep}{0pt}%\n    \\setlength{\\itemsep}{0pt}%\n    \\setlength{\\leftmargin}{\\labelwidth+\\labelsep}%\n    \\renewcommand{\\makelabel}{\\entrylabel}%\n  }%\n  \\item[#1]%\n}{%\n  \\end{list}%\n}\n\n\\newsavebox{\\xrefbox}\n\\newlength{\\xreflength}\n\\newcommand{\\xreflabel}[1]{%\n  \\sbox{\\xrefbox}{#1}%\n  \\setlength{\\xreflength}{\\wd\\xrefbox}%\n  \\ifthenelse{\\xreflength>\\labelwidth}{%\n    \\begin{minipage}{\\textwidth}%\n      \\setlength{\\parindent}{0pt}%\n      \\hangindent=15pt\\bfseries #1\\vspace{1.2\\itemsep}%\n    \\end{minipage}%\n  }{%\n   \\parbox[b]{\\labelwidth}{\\makebox[0pt][l]{\\textbf{#1}}}%\n  }%\n}\n\n%---------- Commands used by doxygen LaTeX output generator ----------\n\n% Used by <pre> ... </pre>\n\\newenvironment{DoxyPre}{%\n  \\small%\n  \\begin{alltt}%\n}{%\n  \\end{alltt}%\n  \\normalsize%\n}\n\n% Used by @code ... @endcode\n\\newenvironment{DoxyCode}{%\n  \\par%\n  \\scriptsize%\n  \\begin{alltt}%\n}{%\n  \\end{alltt}%\n  \\normalsize%\n}\n\n% Used by @example, @include, @includelineno and @dontinclude\n\\newenvironment{DoxyCodeInclude}{%\n  \\DoxyCode%\n}{%\n  \\endDoxyCode%\n}\n\n% Used by @verbatim ... @endverbatim\n\\newenvironment{DoxyVerb}{%\n  \\footnotesize%\n  \\verbatim%\n}{%\n  \\endverbatim%\n  \\normalsize%\n}\n\n% Used by @verbinclude\n\\newenvironment{DoxyVerbInclude}{%\n  \\DoxyVerb%\n}{%\n  \\endDoxyVerb%\n}\n\n% Used by numbered lists (using '-#' or <ol> ... </ol>)\n\\newenvironment{DoxyEnumerate}{%\n  \\enumerate%\n}{%\n  \\endenumerate%\n}\n\n% Used by bullet lists (using '-', @li, @arg, or <ul> ... </ul>)\n\\newenvironment{DoxyItemize}{%\n  \\itemize%\n}{%\n  \\enditemize%\n}\n\n% Used by description lists (using <dl> ... </dl>)\n\\newenvironment{DoxyDescription}{%\n  \\description%\n}{%\n  \\enddescription%\n}\n\n% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc\n% (only if caption is specified)\n\\newenvironment{DoxyImage}{%\n  \\begin{figure}[H]%\n    \\begin{center}%\n}{%\n    \\end{center}%\n  \\end{figure}%\n}\n\n% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc\n% (only if no caption is specified)\n\\newenvironment{DoxyImageNoCaption}{%\n  \\begin{center}%\n}{%\n  \\end{center}%\n}\n\n% Used by @attention\n\\newenvironment{DoxyAttention}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @author and @authors\n\\newenvironment{DoxyAuthor}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @date\n\\newenvironment{DoxyDate}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @invariant\n\\newenvironment{DoxyInvariant}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @note\n\\newenvironment{DoxyNote}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @post\n\\newenvironment{DoxyPostcond}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @pre\n\\newenvironment{DoxyPrecond}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @copyright\n\\newenvironment{DoxyCopyright}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @remark\n\\newenvironment{DoxyRemark}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @return and @returns\n\\newenvironment{DoxyReturn}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @since\n\\newenvironment{DoxySince}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @see\n\\newenvironment{DoxySeeAlso}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @version\n\\newenvironment{DoxyVersion}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @warning\n\\newenvironment{DoxyWarning}[1]{%\n  \\begin{DoxyDesc}{#1}%\n}{%\n  \\end{DoxyDesc}%\n}\n\n% Used by @internal\n\\newenvironment{DoxyInternal}[1]{%\n  \\paragraph*{#1}%\n}{%\n}\n\n% Used by @par and @paragraph\n\\newenvironment{DoxyParagraph}[1]{%\n  \\begin{list}{}{%\n    \\settowidth{\\labelwidth}{40pt}%\n    \\setlength{\\leftmargin}{\\labelwidth}%\n    \\setlength{\\parsep}{0pt}%\n    \\setlength{\\itemsep}{-4pt}%\n    \\renewcommand{\\makelabel}{\\entrylabel}%\n  }%\n  \\item[#1]%\n}{%\n  \\end{list}%\n}\n\n% Used by parameter lists\n\\newenvironment{DoxyParams}[2][]{%\n    \\tabulinesep=1mm%\n    \\par%\n    \\ifthenelse{\\equal{#1}{}}%\n      {\\begin{longtabu} spread 0pt [l]{|X[-1,l]|X[-1,l]|}}% name + description\n    {\\ifthenelse{\\equal{#1}{1}}%\n      {\\begin{longtabu} spread 0pt [l]{|X[-1,l]|X[-1,l]|X[-1,l]|}}% in/out + name + desc\n      {\\begin{longtabu} spread 0pt [l]{|X[-1,l]|X[-1,l]|X[-1,l]|X[-1,l]|}}% in/out + type + name + desc\n    }\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #2}\\\\[1ex]%\n    \\hline%\n    \\endfirsthead%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #2}\\\\[1ex]%\n    \\hline%\n    \\endhead%\n}{%\n    \\end{longtabu}%\n    \\vspace{6pt}%\n}\n\n% Used for fields of simple structs\n\\newenvironment{DoxyFields}[1]{%\n    \\tabulinesep=1mm%\n    \\par%\n    \\begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|X[-1,l]|}%\n    \\multicolumn{3}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endfirsthead%\n    \\multicolumn{3}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endhead%\n}{%\n    \\end{longtabu}%\n    \\vspace{6pt}%\n}\n\n% Used for fields simple class style enums\n\\newenvironment{DoxyEnumFields}[1]{%\n    \\tabulinesep=1mm%\n    \\par%\n    \\begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|}%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endfirsthead%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endhead%\n}{%\n    \\end{longtabu}%\n    \\vspace{6pt}%\n}\n\n% Used for parameters within a detailed function description\n\\newenvironment{DoxyParamCaption}{%\n  \\renewcommand{\\item}[2][]{\\\\ \\hspace*{2.0cm} ##1 {\\em ##2}}% \n}{%\n}\n\n% Used by return value lists\n\\newenvironment{DoxyRetVals}[1]{%\n    \\tabulinesep=1mm%\n    \\par%\n    \\begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|}%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endfirsthead%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endhead%\n}{%\n    \\end{longtabu}%\n    \\vspace{6pt}%\n}\n\n% Used by exception lists\n\\newenvironment{DoxyExceptions}[1]{%\n    \\tabulinesep=1mm%\n    \\par%\n    \\begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|}%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endfirsthead%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endhead%\n}{%\n    \\end{longtabu}%\n    \\vspace{6pt}%\n}\n\n% Used by template parameter lists\n\\newenvironment{DoxyTemplParams}[1]{%\n    \\tabulinesep=1mm%\n    \\par%\n    \\begin{longtabu} spread 0pt [l]{|X[-1,r]|X[-1,l]|}%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endfirsthead%\n    \\multicolumn{2}{l}{\\hspace{-6pt}\\bfseries\\fontseries{bc}\\selectfont\\color{darkgray} #1}\\\\[1ex]%\n    \\hline%\n    \\endhead%\n}{%\n    \\end{longtabu}%\n    \\vspace{6pt}%\n}\n\n% Used for member lists\n\\newenvironment{DoxyCompactItemize}{%\n  \\begin{itemize}%\n    \\setlength{\\itemsep}{-3pt}%\n    \\setlength{\\parsep}{0pt}%\n    \\setlength{\\topsep}{0pt}%\n    \\setlength{\\partopsep}{0pt}%\n}{%\n  \\end{itemize}%\n}\n\n% Used for member descriptions\n\\newenvironment{DoxyCompactList}{%\n  \\begin{list}{}{%\n    \\setlength{\\leftmargin}{0.5cm}%\n    \\setlength{\\itemsep}{0pt}%\n    \\setlength{\\parsep}{0pt}%\n    \\setlength{\\topsep}{0pt}%\n    \\renewcommand{\\makelabel}{\\hfill}%\n  }%\n}{%\n  \\end{list}%\n}\n\n% Used for reference lists (@bug, @deprecated, @todo, etc.)\n\\newenvironment{DoxyRefList}{%\n  \\begin{list}{}{%\n    \\setlength{\\labelwidth}{10pt}%\n    \\setlength{\\leftmargin}{\\labelwidth}%\n    \\addtolength{\\leftmargin}{\\labelsep}%\n    \\renewcommand{\\makelabel}{\\xreflabel}%\n  }%\n}{%\n  \\end{list}%\n}\n\n% Used by @bug, @deprecated, @todo, etc.\n\\newenvironment{DoxyRefDesc}[1]{%\n  \\begin{list}{}{%\n    \\renewcommand\\makelabel[1]{\\textbf{##1}}%\n    \\settowidth\\labelwidth{\\makelabel{#1}}%\n    \\setlength\\leftmargin{\\labelwidth+\\labelsep}%\n  }%\n}{%\n  \\end{list}%\n}\n\n% Used by parameter lists and simple sections\n\\newenvironment{Desc}\n{\\begin{list}{}{%\n    \\settowidth{\\labelwidth}{20pt}%\n    \\setlength{\\parsep}{0pt}%\n    \\setlength{\\itemsep}{0pt}%\n    \\setlength{\\leftmargin}{\\labelwidth+\\labelsep}%\n    \\renewcommand{\\makelabel}{\\entrylabel}%\n  }\n}{%\n  \\end{list}%\n}\n\n% Used by tables\n\\newcommand{\\PBS}[1]{\\let\\temp=\\\\#1\\let\\\\=\\temp}%\n\\newenvironment{TabularC}[1]%\n{\\tabulinesep=1mm\n\\begin{longtabu} spread 0pt [c]{*#1{|X[-1]}|}}%\n{\\end{longtabu}\\par}%\n\n\\newenvironment{TabularNC}[1]%\n{\\begin{tabu} spread 0pt [l]{*#1{|X[-1]}|}}%\n{\\end{tabu}\\par}%\n\n% Used for member group headers\n\\newenvironment{Indent}{%\n  \\begin{list}{}{%\n    \\setlength{\\leftmargin}{0.5cm}%\n  }%\n  \\item[]\\ignorespaces%\n}{%\n  \\unskip%\n  \\end{list}%\n}\n\n% Used when hyperlinks are turned off\n\\newcommand{\\doxyref}[3]{%\n  \\textbf{#1} (\\textnormal{#2}\\,\\pageref{#3})%\n}\n\n% Used to link to a table when hyperlinks are turned on\n\\newcommand{\\doxytablelink}[2]{%\n  \\ref{#1}%\n}\n\n% Used to link to a table when hyperlinks are turned off\n\\newcommand{\\doxytableref}[3]{%\n  \\ref{#3}%\n}\n\n% Used by @addindex\n\\newcommand{\\lcurly}{\\{}\n\\newcommand{\\rcurly}{\\}}\n\n% Colors used for syntax highlighting\n\\definecolor{comment}{rgb}{0.5,0.0,0.0}\n\\definecolor{keyword}{rgb}{0.0,0.5,0.0}\n\\definecolor{keywordtype}{rgb}{0.38,0.25,0.125}\n\\definecolor{keywordflow}{rgb}{0.88,0.5,0.0}\n\\definecolor{preprocessor}{rgb}{0.5,0.38,0.125}\n\\definecolor{stringliteral}{rgb}{0.0,0.125,0.25}\n\\definecolor{charliteral}{rgb}{0.0,0.5,0.5}\n\\definecolor{vhdldigit}{rgb}{1.0,0.0,1.0}\n\\definecolor{vhdlkeyword}{rgb}{0.43,0.0,0.43}\n\\definecolor{vhdllogic}{rgb}{1.0,0.0,0.0}\n\\definecolor{vhdlchar}{rgb}{0.0,0.0,0.0}\n\n% Color used for table heading\n\\newcommand{\\tableheadbgcolor}{lightgray}%\n\n% Version of hypertarget with correct landing location\n\\newcommand{\\Hypertarget}[1]{\\Hy@raisedlink{\\hypertarget{#1}{}}}\n\n% Define caption that is also suitable in a table\n\\makeatletter\n\\def\\doxyfigcaption{%\n\\refstepcounter{figure}%\n\\@dblarg{\\@caption{figure}}}\n\\makeatother\n"
  },
  {
    "path": "Report/latex/hierarchy.tex",
    "content": "\\section{Class Hierarchy}\nThis inheritance list is sorted roughly, but not completely, alphabetically\\+:\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+\\_\\+\\+Links}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+\\_\\+\\+Links}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+\\_\\+\\+Links}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Access\\+Details}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_access_details}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Access\\+Level}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Account}{\\pageref{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Account}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Account\\+List}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_accounts}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Agent\\+Queue\\+Model}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+All\\+Plans}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approval}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approval}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Approver}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Approver}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Artifact}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Artifact}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Attributes}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Attributes}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Attributes}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Attributes}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Attributes}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Attributes}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Attributes}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Attributes}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Authentication}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Authoredby}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Authorization}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Authorization}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Backlog\\+Iteration}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Base\\+View\\+Model}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_base_view_model}}{}\n\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Dashboard}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Result}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Results}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Work\\+Items}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}}{}\n\\end{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Base\\+View\\+Model}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model}}{}\n\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Definitions}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response.\\+Team}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Projects}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Dashboard}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Queue\\+Model}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Repositories}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Rules}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Column\\+Post}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model.\\+Node}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Column\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Cards}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Node}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Nodes}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Results}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Work\\+Items}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Backlog\\+Visibilities}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Work\\+Item}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}}{}\n\\end{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Board\\+Column}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Board\\+Columns}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_board_columns}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Bug}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Build}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Configuration}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Def}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_build_def}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Definition}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Build.\\+Build\\+Definition}{\\pageref{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Build\\+Definitions}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_build_definitions}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Build\\+Platform}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Build\\+Release\\+Mapping}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Bundle\\+Config}{\\pageref{class_vsts_demo_builder_1_1_bundle_config}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Card\\+Fields}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Card\\+Fields\\+And\\+Card\\+Styles}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Cards}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Cards}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Card\\+Settings}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Card\\+Styles}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Child}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Child}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Child1}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Classification\\+Nodes}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Code}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+Column}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Column}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Column}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comment}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comment}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Comments}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Comments}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Condition}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Condition}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition}}{}\n\\item Controller\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Account\\+Controller}{\\pageref{class_vsts_demo_builder_1_1_controllers_1_1_account_controller}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Environment\\+Controller}{\\pageref{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Controllers.\\+Home\\+Controller}{\\pageref{class_vsts_demo_builder_1_1_controllers_1_1_home_controller}}{}\n\\end{DoxyCompactList}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Core\\+Field}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Created\\+By}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Create\\+Update\\+Node\\+View\\+Model}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Criterion}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Dashboard}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Dashboard}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_dashboard}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response.\\+Dashboard}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dash\\+Boarde\\+Tag\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Data}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Default}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_default}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Default\\+Iteration}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Definition}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Definition\\+Reference}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Definition\\+Reference}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Delivery\\+Plan}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deployment\\+Input}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deployment\\+Input}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Phas}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Phas}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Deploy\\+Step}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Deploy\\+Step}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Email}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_email}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Environment\\+Options}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Environment\\+Options}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Environment\\+Values}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_environment_values}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings.\\+Epiclist}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Execution\\+Policy}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Execution\\+Policy}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Dashboards}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_export_dashboards}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Export\\+Queries}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_export_queries}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions.\\+Extension\\+With\\+Link}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Field}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Field}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Fields}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Fields}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Fields}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Fields}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Fields1}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Fill}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Fill}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Filter\\+Config}{\\pageref{class_vsts_demo_builder_1_1_filter_config}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Get\\+Team\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Git\\+Source}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Group\\+Details}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_group_details}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Groupwise\\+Template}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_groupwise_template}}{}\n\\item Handle\\+Error\\+Attribute\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Error\\+Handler.\\+Ai\\+Handle\\+Error\\+Attribute}{\\pageref{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute}}{}\n\\end{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Html}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html}}{}\n\\item Http\\+Application\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Mvc\\+Application}{\\pageref{class_vsts_demo_builder_1_1_mvc_application}}{}\n\\end{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+I\\+Configuration}{\\pageref{interface_vsts_demo_builder_1_1_models_1_1_i_configuration}}{}\n\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Configuration}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_configuration}}{}\n\\end{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}{\\pageref{interface_vsts_rest_a_p_i_1_1_i_configuration}}{}\n\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Configuration}{\\pageref{class_vsts_rest_a_p_i_1_1_configuration}}{}\n\\end{DoxyCompactList}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+I\\+Configuration}{\\pageref{interface_templates_generator_tool_1_1_i_configuration}}{}\n\\begin{DoxyCompactList}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Configuration}{\\pageref{class_templates_generator_tool_1_1_configuration}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Source\\+Configuration}{\\pageref{class_templates_generator_tool_1_1_source_configuration}}{}\n\\end{DoxyCompactList}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Import\\+Work\\+Items}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Inputs}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Inputs}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Inputs1}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Location.\\+I\\+P\\+Host\\+Generator}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Issue\\+WI}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Iteration\\+Context}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Iteration\\+Context}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Iterations}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Links}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Links}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Card\\+Field\\+Response.\\+Listof\\+Cards}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Listof\\+Card\\+Styles}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Location}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_location}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Login\\+Model}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_login_model}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Member}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Memberships}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Microsoft\\+Team\\+Foundation\\+Discussion\\+Supports\\+Markdown}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Option}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Owner}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Owner}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Parallel\\+Execution}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Parallel\\+Execution}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+parameter}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Parameters}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Parent}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Plan}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans.\\+Plans}{\\pageref{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Pool}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Pool}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Pool}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Position}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Post\\+Deploy\\+Approvals}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Pre\\+Deploy\\+Approvals}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Field\\+Response.\\+Product\\+Backlog\\+Item}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Profile\\+Details}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_profile_details}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Program}{\\pageref{class_templates_generator_tool_1_1_program}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Project}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Project}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Project}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Project}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Project}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Project\\+Count}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_list}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Projects}{\\pageref{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Settings}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_settings}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+Template}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_template}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Properties}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Properties}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Properties}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Properties}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Properties}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Pull\\+Request}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Pull\\+Requests}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_pull_requests}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Pull\\+Request\\+Thread\\+Context}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Pull\\+Request\\+Thread\\+Context}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Query}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Query}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_query}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+query}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Query\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets.\\+Querys}{\\pageref{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+By\\+Path\\+Response.\\+Query\\+With\\+Wiql}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Queue}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues.\\+Queue}{\\pageref{class_vsts_rest_a_p_i_1_1_queues_1_1_queue}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Queue}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Relation}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Relations}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Relations}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Release}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Release}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Release\\+Def}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_release_def}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Release\\+Definition}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Release\\+Definition}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Release.\\+Release\\+Definition}{\\pageref{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Release\\+Definitions}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_release_definitions}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+reply}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Repository}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Git.\\+Repository}{\\pageref{class_vsts_rest_a_p_i_1_1_git_1_1_repository}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Repository}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_repository_response}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Required\\+Extensions}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_required_extensions}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Retention\\+Policy}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Retention\\+Policy}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Retention\\+Rule}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Return\\+Exception}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Reviewer}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+End}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+End}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Right\\+File\\+Start}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Right\\+File\\+Start}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Route\\+Config}{\\pageref{class_vsts_demo_builder_1_1_route_config}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Rules}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Self}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Node\\+Response.\\+Self}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Nodes\\+Response.\\+Self}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Self}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Service}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Service.\\+Service\\+End\\+Point}{\\pageref{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service.\\+Service\\+Endpoint\\+Model}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Set\\+Epic\\+Settings}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Settings}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Settings\\+Version}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Size}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Source\\+Code}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_source_code}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+State\\+Mappings}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Board\\+Columns\\+Response.\\+State\\+Mappings}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+State\\+Mappings}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Swim\\+Lanes}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+System\\+Debug}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Card\\+Styles\\+Patch.\\+Tag\\+Style}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Card\\+Style\\+Response.\\+Tag\\+Style}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Task}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Task}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Task}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Team}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams.\\+Team}{\\pageref{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Team\\+Backlog\\+Mapping}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+Team\\+Members}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Teams}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_teams}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response.\\+Team\\+Setting}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Setting\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_teams_response}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Template}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_template}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+template\\+Key\\+Value}{\\pageref{class_vsts_demo_builder_1_1_models_1_1template_key_value}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Template\\+Setting}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_template_setting}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Case}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_case}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management.\\+Test\\+Management}{\\pageref{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_suite}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Test\\+Suites}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Thread\\+Context}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Thread\\+Context}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Trigger}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Trigger}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Utility}{\\pageref{class_vsts_rest_a_p_i_1_1_utility}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Validate\\+Login}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_validate_login}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Project\\+List.\\+Value}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Get\\+All\\+Repositories\\+Response.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Listof\\+Projects\\+Response.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Member\\+Response.\\+value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Accounts.\\+Value}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Source\\+Code\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Repository\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Demo\\+Builder.\\+Models.\\+Test\\+Suite.\\+Value}{\\pageref{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Account\\+Members.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Service\\+End\\+Points\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build.\\+Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Teams\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Board\\+Column\\+Response.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Import\\+Work\\+Item\\+Model.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Dash\\+Board\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Plan\\+View\\+Model.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Batch\\+Request.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definition\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Board\\+Rows\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository.\\+Pull\\+Request\\+Comments.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams.\\+Team\\+Iterations\\+Response.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets.\\+Dashboard\\+Response.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Pull\\+Request\\+Comment\\+Response.\\+Value}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions\\+Response.\\+Value}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Build\\+Definitions.\\+Variables}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Release\\+Definitions.\\+Variables}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition.\\+Release\\+Definitions.\\+Variables}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response.\\+Widget}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Widget\\+And\\+Chart\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+Generators.\\+Generate\\+W\\+I\\+From\\+Source.\\+W\\+I\\+Map\\+Data}{\\pageref{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+W\\+I\\+Map\\+Data}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Query\\+Response.\\+Wiql}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Get\\+Work\\+Items\\+Response.\\+Workitem}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Get\\+Work\\+Items\\+Response.\\+Workitem}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Batch\\+Post\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response}}{}\n\\item \\contentsline{section}{Templates\\+Generator\\+Tool.\\+View\\+Model.\\+Work\\+Item\\+Fetch\\+Response}{\\pageref{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemhistory}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Item\\+New}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemrevisions}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking.\\+Work\\+Items}{\\pageref{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemtype}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype}}{}\n\\item \\contentsline{section}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item.\\+Work\\+Item\\+Patch\\+Response.\\+Workitemupdates}{\\pageref{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates}}{}\n\\end{DoxyCompactList}\n"
  },
  {
    "path": "Report/latex/interface_templates_generator_tool_1_1_i_configuration.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 71.942446\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 6.950000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 2 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(TemplatesGeneratorTool.IConfiguration) cw\n(TemplatesGeneratorTool.Configuration) cw\n(TemplatesGeneratorTool.SourceConfiguration) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (TemplatesGeneratorTool.IConfiguration) 0.500000 1.000000 box\n (TemplatesGeneratorTool.Configuration) 0.000000 0.000000 box\n (TemplatesGeneratorTool.SourceConfiguration) 1.000000 0.000000 box\n\n% ----- relations -----\n\nsolid\n1 0.500000 0.250000 out\nsolid\n0.000000 1.000000 1.000000 conn\nsolid\n0 0.000000 0.750000 in\nsolid\n0 1.000000 0.750000 in\n"
  },
  {
    "path": "Report/latex/interface_templates_generator_tool_1_1_i_configuration.tex",
    "content": "\\hypertarget{interface_templates_generator_tool_1_1_i_configuration}{}\\section{Templates\\+Generator\\+Tool.\\+I\\+Configuration Interface Reference}\n\\label{interface_templates_generator_tool_1_1_i_configuration}\\index{Templates\\+Generator\\+Tool.\\+I\\+Configuration@{Templates\\+Generator\\+Tool.\\+I\\+Configuration}}\nInheritance diagram for Templates\\+Generator\\+Tool.\\+I\\+Configuration\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{interface_templates_generator_tool_1_1_i_configuration}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_ae124de5476e5809f10341ae8fff33291}\\label{interface_templates_generator_tool_1_1_i_configuration_ae124de5476e5809f10341ae8fff33291}} \nstring {\\bfseries Personal\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_a411fdd7c310b24d84b999758cd3dbead}\\label{interface_templates_generator_tool_1_1_i_configuration_a411fdd7c310b24d84b999758cd3dbead}} \nstring {\\bfseries Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_a555e694c00e04f58c4fd6f87c8fcd608}\\label{interface_templates_generator_tool_1_1_i_configuration_a555e694c00e04f58c4fd6f87c8fcd608}} \nstring {\\bfseries Team}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_acf217d2f0f2d56e9ade9bfcfb9b1b9c5}\\label{interface_templates_generator_tool_1_1_i_configuration_acf217d2f0f2d56e9ade9bfcfb9b1b9c5}} \nstring {\\bfseries Move\\+To\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_a267cdea956ab89ffbd0ef1356106fac5}\\label{interface_templates_generator_tool_1_1_i_configuration_a267cdea956ab89ffbd0ef1356106fac5}} \nstring {\\bfseries Uri\\+String}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_a7e1a4b7e26f4c9182fc953e9bcd144c7}\\label{interface_templates_generator_tool_1_1_i_configuration_a7e1a4b7e26f4c9182fc953e9bcd144c7}} \nstring {\\bfseries Query}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_abccdcc9f266ff3b2ba22af3eb6e72d75}\\label{interface_templates_generator_tool_1_1_i_configuration_abccdcc9f266ff3b2ba22af3eb6e72d75}} \nstring {\\bfseries Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_a79fd3ac49032caa02a9a0895c8ee34c6}\\label{interface_templates_generator_tool_1_1_i_configuration_a79fd3ac49032caa02a9a0895c8ee34c6}} \nstring {\\bfseries Work\\+Item\\+Ids}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_afa686bcb50d8ea923a4381f12c75142e}\\label{interface_templates_generator_tool_1_1_i_configuration_afa686bcb50d8ea923a4381f12c75142e}} \nstring {\\bfseries Work\\+Item\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_af17260e0422f922ec02e357203a6fc25}\\label{interface_templates_generator_tool_1_1_i_configuration_af17260e0422f922ec02e357203a6fc25}} \nstring {\\bfseries Process\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_a9de86c96af44ef9df21aa16a84f6cfa1}\\label{interface_templates_generator_tool_1_1_i_configuration_a9de86c96af44ef9df21aa16a84f6cfa1}} \nstring {\\bfseries Pick\\+List\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_a89cb953a87d44a00e019290ca8e6c7c6}\\label{interface_templates_generator_tool_1_1_i_configuration_a89cb953a87d44a00e019290ca8e6c7c6}} \nstring {\\bfseries Query\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_ad04fd3e0455db5e3733014dd399d0a20}\\label{interface_templates_generator_tool_1_1_i_configuration_ad04fd3e0455db5e3733014dd399d0a20}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_templates_generator_tool_1_1_i_configuration_af7f4e736f61aa4ead2dbfd6fc4ba9ba6}\\label{interface_templates_generator_tool_1_1_i_configuration_af7f4e736f61aa4ead2dbfd6fc4ba9ba6}} \nstring {\\bfseries Git\\+Repository\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this interface was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Export\\+Workitems\\+Tool/i\\+Configuration.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/interface_vsts_demo_builder_1_1_models_1_1_i_configuration.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 163.934426\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 3.050000 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsDemoBuilder.Models.IConfiguration) cw\n(VstsDemoBuilder.Models.Configuration) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsDemoBuilder.Models.IConfiguration) 0.000000 1.000000 box\n (VstsDemoBuilder.Models.Configuration) 0.000000 0.000000 box\n\n% ----- relations -----\n\nsolid\n1 0.000000 0.250000 out\nsolid\n0 0.000000 0.750000 in\n"
  },
  {
    "path": "Report/latex/interface_vsts_demo_builder_1_1_models_1_1_i_configuration.tex",
    "content": "\\hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration}{}\\section{Vsts\\+Demo\\+Builder.\\+Models.\\+I\\+Configuration Interface Reference}\n\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration}\\index{Vsts\\+Demo\\+Builder.\\+Models.\\+I\\+Configuration@{Vsts\\+Demo\\+Builder.\\+Models.\\+I\\+Configuration}}\nInheritance diagram for Vsts\\+Demo\\+Builder.\\+Models.\\+I\\+Configuration\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{interface_vsts_demo_builder_1_1_models_1_1_i_configuration}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a89ee71042990665905fbf2213963fc4f}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a89ee71042990665905fbf2213963fc4f}} \nstring {\\bfseries Personal\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a1449400a879343330ea98cba0598a83d}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a1449400a879343330ea98cba0598a83d}} \nstring {\\bfseries Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a5f0c8c64f8cf50cc4a5f2412b71a75c0}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a5f0c8c64f8cf50cc4a5f2412b71a75c0}} \nstring {\\bfseries Team}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a269cb80f7418ecf4c172e45a00f06f28}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a269cb80f7418ecf4c172e45a00f06f28}} \nstring {\\bfseries Move\\+To\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a9f489f687fa444323ddeceb22e5a11d9}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a9f489f687fa444323ddeceb22e5a11d9}} \nstring {\\bfseries Uri\\+String}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a7749ca3465bb17e7fc2417f7211e0715}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a7749ca3465bb17e7fc2417f7211e0715}} \nstring {\\bfseries Query}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_ace8abf7dd9b043defbd2a54f0e0f3f22}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_ace8abf7dd9b043defbd2a54f0e0f3f22}} \nstring {\\bfseries Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a11d38bf8e1537bda5bc8f09a9cb9ed54}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a11d38bf8e1537bda5bc8f09a9cb9ed54}} \nstring {\\bfseries Work\\+Item\\+Ids}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a15c943c58b8136080dac36039fd1fb4d}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a15c943c58b8136080dac36039fd1fb4d}} \nstring {\\bfseries Work\\+Item\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a23acfb4a7652b43337df401da10e49a5}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a23acfb4a7652b43337df401da10e49a5}} \nstring {\\bfseries Process\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_ac5390f18f0b97ff00d0ea96d380da39a}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_ac5390f18f0b97ff00d0ea96d380da39a}} \nstring {\\bfseries Pick\\+List\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a129b27cd04dbbae4d176fa4ce97ef2b6}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a129b27cd04dbbae4d176fa4ce97ef2b6}} \nstring {\\bfseries Query\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_aedb08f3de9e8cc57587feb6edea899fe}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_aedb08f3de9e8cc57587feb6edea899fe}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a7339cd106daaa6d93e722ffc0ebe8286}\\label{interface_vsts_demo_builder_1_1_models_1_1_i_configuration_a7339cd106daaa6d93e722ffc0ebe8286}} \nstring {\\bfseries Git\\+Repository\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this interface was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Demo\\+Builder/\\+Models/I\\+Configuration.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/interface_vsts_rest_a_p_i_1_1_i_configuration.eps",
    "content": "%!PS-Adobe-2.0 EPSF-2.0\n%%Title: ClassName\n%%Creator: Doxygen\n%%CreationDate: Time\n%%For: \n%Magnification: 1.00\n%%Orientation: Portrait\n%%BoundingBox: 0 0 500 233.918129\n%%Pages: 0\n%%BeginSetup\n%%EndSetup\n%%EndComments\n\n% ----- variables -----\n\n/boxwidth 0 def\n/boxheight 40 def\n/fontheight 24 def\n/marginwidth 10 def\n/distx 20 def\n/disty 40 def\n/boundaspect 2.137500 def  % aspect ratio of the BoundingBox (width/height)\n/boundx 500 def\n/boundy boundx boundaspect div def\n/xspacing 0 def\n/yspacing 0 def\n/rows 2 def\n/cols 1 def\n/scalefactor 0 def\n/boxfont /Times-Roman findfont fontheight scalefont def\n\n% ----- procedures -----\n\n/dotted { [1 4] 0 setdash } def\n/dashed { [5] 0 setdash } def\n/solid  { [] 0 setdash } def\n\n/max % result = MAX(arg1,arg2)\n{\n  /a exch def\n  /b exch def\n  a b gt {a} {b} ifelse\n} def\n\n/xoffset % result = MAX(0,(scalefactor-(boxwidth*cols+distx*(cols-1)))/2)\n{\n  0 scalefactor boxwidth cols mul distx cols 1 sub mul add sub 2 div max\n} def\n\n/cw % boxwidth = MAX(boxwidth, stringwidth(arg1))\n{\n  /str exch def\n  /boxwidth boxwidth str stringwidth pop max def\n} def\n\n/box % draws a box with text `arg1' at grid pos (arg2,arg3)\n{ gsave\n  2 setlinewidth\n  newpath\n  exch xspacing mul xoffset add\n  exch yspacing mul\n  moveto\n  boxwidth 0 rlineto \n  0 boxheight rlineto \n  boxwidth neg 0 rlineto \n  0 boxheight neg rlineto \n  closepath\n  dup stringwidth pop neg boxwidth add 2 div\n  boxheight fontheight 2 div sub 2 div\n  rmoveto show stroke\n  grestore\n} def  \n\n/mark\n{ newpath\n  exch xspacing mul xoffset add boxwidth add\n  exch yspacing mul\n  moveto\n  0 boxheight 4 div rlineto\n  boxheight neg 4 div boxheight neg 4 div rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/arrow\n{ newpath\n  moveto\n  3 -8 rlineto\n  -6 0 rlineto\n  3 8 rlineto\n  closepath\n  eofill\n  stroke\n} def\n\n/out % draws an output connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight add\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto \n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/in % draws an input connector for the block at (arg1,arg2)\n{\n  newpath\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul disty 2 div sub\n  /y exch def\n  /x exch def\n  x y moveto\n  0 disty 2 div rlineto\n  stroke\n  1 eq { x y disty 2 div add arrow } if\n} def\n\n/hedge\n{\n  exch xspacing mul xoffset add boxwidth 2 div add\n  exch yspacing mul boxheight 2 div sub\n  /y exch def\n  /x exch def\n  newpath\n  x y moveto\n  boxwidth 2 div distx add 0 rlineto\n  stroke\n  1 eq\n  { newpath x boxwidth 2 div distx add add y moveto\n    -8 3 rlineto\n    0 -6 rlineto\n    8 3 rlineto\n    closepath\n    eofill\n    stroke\n  } if\n} def\n\n/vedge\n{\n  /ye exch def\n  /ys exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add dup\n  ys yspacing mul boxheight 2 div sub\n  moveto\n  ye yspacing mul boxheight 2 div sub\n  lineto\n  stroke\n} def\n\n/conn % connections the blocks from col `arg1' to `arg2' of row `arg3'\n{\n  /ys exch def\n  /xe exch def\n  /xs exch def\n  newpath\n  xs xspacing mul xoffset add boxwidth 2 div add\n  ys yspacing mul disty 2 div sub\n  moveto\n  xspacing xe xs sub mul 0\n  rlineto\n  stroke\n} def\n\n% ----- main ------\n\nboxfont setfont\n1 boundaspect scale\n(VstsRestAPI.IConfiguration) cw\n(VstsRestAPI.Configuration) cw\n/boxwidth boxwidth marginwidth 2 mul add def\n/xspacing boxwidth distx add def\n/yspacing boxheight disty add def\n/scalefactor \n  boxwidth cols mul distx cols 1 sub mul add\n  boxheight rows mul disty rows 1 sub mul add boundaspect mul \n  max def\nboundx scalefactor div boundy scalefactor div scale\n\n% ----- classes -----\n\n (VstsRestAPI.IConfiguration) 0.000000 1.000000 box\n (VstsRestAPI.Configuration) 0.000000 0.000000 box\n\n% ----- relations -----\n\nsolid\n1 0.000000 0.250000 out\nsolid\n0 0.000000 0.750000 in\n"
  },
  {
    "path": "Report/latex/interface_vsts_rest_a_p_i_1_1_i_configuration.tex",
    "content": "\\hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration Interface Reference}\n\\label{interface_vsts_rest_a_p_i_1_1_i_configuration}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration@{Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration}}\nInheritance diagram for Vsts\\+Rest\\+A\\+P\\+I.\\+I\\+Configuration\\+:\\begin{figure}[H]\n\\begin{center}\n\\leavevmode\n\\includegraphics[height=2.000000cm]{interface_vsts_rest_a_p_i_1_1_i_configuration}\n\\end{center}\n\\end{figure}\n\\subsection*{Properties}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_a813691cf9d17074e51e686d2a5cf985c}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_a813691cf9d17074e51e686d2a5cf985c}} \nstring {\\bfseries Personal\\+Access\\+Token}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_ad66b04853ab66c25d6731cd4383e88dd}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_ad66b04853ab66c25d6731cd4383e88dd}} \nstring {\\bfseries Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_a9dd2efb330ae6a1d7c76717ae0139f94}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_a9dd2efb330ae6a1d7c76717ae0139f94}} \nstring {\\bfseries Team}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_ad27fccf7e4eead048623466bacc9b048}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_ad27fccf7e4eead048623466bacc9b048}} \nstring {\\bfseries Move\\+To\\+Project}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_a1d926b3b5ab5b5a9a06eab549800731b}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_a1d926b3b5ab5b5a9a06eab549800731b}} \nstring {\\bfseries Uri\\+String}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_aa08db220ec11bd517af3461990ddce69}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_aa08db220ec11bd517af3461990ddce69}} \nstring {\\bfseries Query}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_a144a3fc93020217a0be6cf40c2a2ee4b}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_a144a3fc93020217a0be6cf40c2a2ee4b}} \nstring {\\bfseries Identity}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_a815952327d0b6e0b36ce010c796291ef}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_a815952327d0b6e0b36ce010c796291ef}} \nstring {\\bfseries Work\\+Item\\+Ids}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_af9784ef28fff8504eed017e13e73d004}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_af9784ef28fff8504eed017e13e73d004}} \nstring {\\bfseries Work\\+Item\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_ad52b4d6075b65fbe76d78e364a2eea91}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_ad52b4d6075b65fbe76d78e364a2eea91}} \nstring {\\bfseries Process\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_a89f0800499d73104d3873334063bc3a0}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_a89f0800499d73104d3873334063bc3a0}} \nstring {\\bfseries Pick\\+List\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_aec7a1ed105d4f03c76e7b45baf12b741}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_aec7a1ed105d4f03c76e7b45baf12b741}} \nstring {\\bfseries Query\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_aa273021f5daa05ba5d3e76043ec8e8ce}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_aa273021f5daa05ba5d3e76043ec8e8ce}} \nstring {\\bfseries File\\+Path}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_a78f3ee27299039ca4c7fa8d51b998421}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_a78f3ee27299039ca4c7fa8d51b998421}} \nstring {\\bfseries Git\\+Repository\\+Id}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\item \n\\mbox{\\Hypertarget{interface_vsts_rest_a_p_i_1_1_i_configuration_a0c8e680fdd299351251205e7648a5279}\\label{interface_vsts_rest_a_p_i_1_1_i_configuration_a0c8e680fdd299351251205e7648a5279}} \nstring {\\bfseries Version\\+Number}\\hspace{0.3cm}{\\ttfamily  \\mbox{[}get, set\\mbox{]}}\n\\end{DoxyCompactItemize}\n\n\nThe documentation for this interface was generated from the following file\\+:\\begin{DoxyCompactItemize}\n\\item \nD\\+:/\\+Canarys/\\+Projects/\\+Demo\\+Generator\\+Oauth/\\+Vsts\\+Rest\\+A\\+P\\+I/I\\+Configuration.\\+cs\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/make.bat",
    "content": "set Dir_Old=%cd%\ncd /D %~dp0\n\ndel /s /f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf\n\npdflatex refman\necho ----\nmakeindex refman.idx\necho ----\npdflatex refman\n\nsetlocal enabledelayedexpansion\nset count=8\n:repeat\nset content=X\nfor /F \"tokens=*\" %%T in ( 'findstr /C:\"Rerun LaTeX\" refman.log' ) do set content=\"%%~T\"\nif !content! == X for /F \"tokens=*\" %%T in ( 'findstr /C:\"Rerun to get cross-references right\" refman.log' ) do set content=\"%%~T\"\nif !content! == X goto :skip\nset /a count-=1\nif !count! EQU 0 goto :skip\n\necho ----\npdflatex refman\ngoto :repeat\n:skip\nendlocal\nmakeindex refman.idx\npdflatex refman\ncd /D %Dir_Old%\nset Dir_Old=\n"
  },
  {
    "path": "Report/latex/namespace_templates_generator_tool.tex",
    "content": "\\hypertarget{namespace_templates_generator_tool}{}\\section{Templates\\+Generator\\+Tool Namespace Reference}\n\\label{namespace_templates_generator_tool}\\index{Templates\\+Generator\\+Tool@{Templates\\+Generator\\+Tool}}\n\\subsection*{Namespaces}\n\\begin{DoxyCompactItemize}\n\\end{DoxyCompactItemize}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_configuration}{Configuration}}\n\\item \ninterface \\mbox{\\hyperlink{interface_templates_generator_tool_1_1_i_configuration}{I\\+Configuration}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_program}{Program}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_source_configuration}{Source\\+Configuration}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_templates_generator_tool_1_1_generators.tex",
    "content": "\\hypertarget{namespace_templates_generator_tool_1_1_generators}{}\\section{Templates\\+Generator\\+Tool.\\+Generators Namespace Reference}\n\\label{namespace_templates_generator_tool_1_1_generators}\\index{Templates\\+Generator\\+Tool.\\+Generators@{Templates\\+Generator\\+Tool.\\+Generators}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_board_columns}{Board\\+Columns}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_build_definitions}{Build\\+Definitions}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles}{Card\\+Fields\\+And\\+Card\\+Styles}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_export_dashboards}{Export\\+Dashboards}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_export_queries}{Export\\+Queries}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source}{Generate\\+W\\+I\\+From\\+Source}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_pull_requests}{Pull\\+Requests}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_release_definitions}{Release\\+Definitions}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_source_code}{Source\\+Code}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_teams}{Teams}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_generators_1_1_validate_login}{Validate\\+Login}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_templates_generator_tool_1_1_view_model.tex",
    "content": "\\hypertarget{namespace_templates_generator_tool_1_1_view_model}{}\\section{Templates\\+Generator\\+Tool.\\+View\\+Model Namespace Reference}\n\\label{namespace_templates_generator_tool_1_1_view_model}\\index{Templates\\+Generator\\+Tool.\\+View\\+Model@{Templates\\+Generator\\+Tool.\\+View\\+Model}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_base_view_model}{Base\\+View\\+Model}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response}{Board\\+Columns\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response}{Build\\+Definition\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_build_definitions}{Build\\+Definitions}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_field_response}{Card\\+Field\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_card_style_response}{Card\\+Style\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response}{Dash\\+Board\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response}{Get\\+Board\\+Rows\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response}{Get\\+Work\\+Items\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model}{Plan\\+View\\+Model}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response}{Pull\\+Request\\+Comment\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response}{Pull\\+Request\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response}{Query\\+By\\+Path\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_query_response}{Query\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions}{Release\\+Definitions}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response}{Release\\+Definitions\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_repository_response}{Repository\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response}{Service\\+End\\+Points\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_source_code_response}{Source\\+Code\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_teams_response}{Teams\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response}{Widget\\+And\\+Chart\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response}{Work\\+Item\\+Fetch\\+Response}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_demo_builder.tex",
    "content": "\\hypertarget{namespace_vsts_demo_builder}{}\\section{Vsts\\+Demo\\+Builder Namespace Reference}\n\\label{namespace_vsts_demo_builder}\\index{Vsts\\+Demo\\+Builder@{Vsts\\+Demo\\+Builder}}\n\\subsection*{Namespaces}\n\\begin{DoxyCompactItemize}\n\\end{DoxyCompactItemize}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_bundle_config}{Bundle\\+Config}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_filter_config}{Filter\\+Config}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_mvc_application}{Mvc\\+Application}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_route_config}{Route\\+Config}}\n\\item \nclass {\\bfseries Web\\+Api\\+Config}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_demo_builder_1_1_controllers.tex",
    "content": "\\hypertarget{namespace_vsts_demo_builder_1_1_controllers}{}\\section{Vsts\\+Demo\\+Builder.\\+Controllers Namespace Reference}\n\\label{namespace_vsts_demo_builder_1_1_controllers}\\index{Vsts\\+Demo\\+Builder.\\+Controllers@{Vsts\\+Demo\\+Builder.\\+Controllers}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_account_controller}{Account\\+Controller}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller}{Environment\\+Controller}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_controllers_1_1_home_controller}{Home\\+Controller}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_demo_builder_1_1_error_handler.tex",
    "content": "\\hypertarget{namespace_vsts_demo_builder_1_1_error_handler}{}\\section{Vsts\\+Demo\\+Builder.\\+Error\\+Handler Namespace Reference}\n\\label{namespace_vsts_demo_builder_1_1_error_handler}\\index{Vsts\\+Demo\\+Builder.\\+Error\\+Handler@{Vsts\\+Demo\\+Builder.\\+Error\\+Handler}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute}{Ai\\+Handle\\+Error\\+Attribute}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_demo_builder_1_1_extensions.tex",
    "content": "\\hypertarget{namespace_vsts_demo_builder_1_1_extensions}{}\\section{Vsts\\+Demo\\+Builder.\\+Extensions Namespace Reference}\n\\label{namespace_vsts_demo_builder_1_1_extensions}\\index{Vsts\\+Demo\\+Builder.\\+Extensions@{Vsts\\+Demo\\+Builder.\\+Extensions}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass {\\bfseries Extension}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_demo_builder_1_1_models.tex",
    "content": "\\hypertarget{namespace_vsts_demo_builder_1_1_models}{}\\section{Vsts\\+Demo\\+Builder.\\+Models Namespace Reference}\n\\label{namespace_vsts_demo_builder_1_1_models}\\index{Vsts\\+Demo\\+Builder.\\+Models@{Vsts\\+Demo\\+Builder.\\+Models}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_access_details}{Access\\+Details}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_accounts}{Accounts}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_build_def}{Build\\+Def}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping}{Build\\+Release\\+Mapping}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_configuration}{Configuration}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_dashboard}{Dashboard}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_default}{Default}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_email}{Email}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_environment_values}{Environment\\+Values}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_group_details}{Group\\+Details}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_groupwise_template}{Groupwise\\+Template}}\n\\item \ninterface \\mbox{\\hyperlink{interface_vsts_demo_builder_1_1_models_1_1_i_configuration}{I\\+Configuration}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_location}{Location}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_login_model}{Login\\+Model}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_profile_details}{Profile\\+Details}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project}{Project}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_list}{Project\\+List}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_settings}{Project\\+Settings}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_project_template}{Project\\+Template}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_query}{Query}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_release_def}{Release\\+Def}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_required_extensions}{Required\\+Extensions}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_template}{Template}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1template_key_value}{template\\+Key\\+Value}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_template_setting}{Template\\+Setting}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_case}{Test\\+Case}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_demo_builder_1_1_models_1_1_test_suite}{Test\\+Suite}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i}{}\\section{Vsts\\+Rest\\+A\\+PI Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i}\\index{Vsts\\+Rest\\+A\\+PI@{Vsts\\+Rest\\+A\\+PI}}\n\\subsection*{Namespaces}\n\\begin{DoxyCompactItemize}\n\\end{DoxyCompactItemize}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_configuration}{Configuration}}\n\\item \ninterface \\mbox{\\hyperlink{interface_vsts_rest_a_p_i_1_1_i_configuration}{I\\+Configuration}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_utility}{Utility}}\n\\end{DoxyCompactItemize}\n\\subsection*{Enumerations}\n\\begin{DoxyCompactItemize}\n\\item \n\\mbox{\\Hypertarget{namespace_vsts_rest_a_p_i_a74bd20c1966666e9f933d3495f4908ec}\\label{namespace_vsts_rest_a_p_i_a74bd20c1966666e9f933d3495f4908ec}} \nenum {\\bfseries Template\\+Type} \\{ {\\bfseries Agile}, \n{\\bfseries Scrum}, \n{\\bfseries C\\+M\\+MI}\n \\}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_build.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_build}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Build Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_build}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Build@{Vsts\\+Rest\\+A\\+P\\+I.\\+Build}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition}{Build\\+Definition}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_delivery_plans.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_delivery_plans}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_delivery_plans}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans@{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans}{Plans}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_git.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_git}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Git Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_git}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Git@{Vsts\\+Rest\\+A\\+P\\+I.\\+Git}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_git_1_1_repository}{Repository}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_projects_and_teams.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_projects_and_teams}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_projects_and_teams}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams@{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}{Account}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects}{Projects}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}{Team}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_querys_and_widgets.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_querys_and_widgets}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_querys_and_widgets}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets@{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys}{Querys}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_queues.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_queues}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_queues}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues@{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_queues_1_1_queue}{Queue}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_release.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_release}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Release Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_release}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Release@{Vsts\\+Rest\\+A\\+P\\+I.\\+Release}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition}{Release\\+Definition}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_service.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_service}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Service Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_service}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Service@{Vsts\\+Rest\\+A\\+P\\+I.\\+Service}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point}{Service\\+End\\+Point}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_test_management.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_test_management}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_test_management}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management@{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management}{Test\\+Management}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel}}\n\\subsection*{Namespaces}\n\\begin{DoxyCompactItemize}\n\\end{DoxyCompactItemize}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model}{Base\\+View\\+Model}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response}{Build\\+Get\\+Listof\\+Build\\+Definitions\\+Response}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members}{Account\\+Members}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response}{Get\\+Team\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response}{Listof\\+Projects\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response}{Team\\+Iterations\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response}{Team\\+Member\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}{Team\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response}{Team\\+Setting\\+Response}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response}{Dash\\+Boarde\\+Tag\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response}{Dashboard\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}{Query\\+Response}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model}{Agent\\+Queue\\+Model}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool}{Pool}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model}{Queue\\+Model}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value}{Value}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions}{Release\\+Definitions}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response}{Release\\+Definitions\\+Response}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response}{Get\\+All\\+Repositories\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments}{Pull\\+Request\\+Comments}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization}{Authorization}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by}{Created\\+By}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data}{Data}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}{Service\\+Endpoint\\+Model}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item@{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request}{Batch\\+Request}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch}{Card\\+Styles\\+Patch}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post}{Column\\+Post}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model}{Create\\+Update\\+Node\\+View\\+Model}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response}{Get\\+Board\\+Column\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response}{Get\\+Card\\+Field\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response}{Get\\+Node\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response}{Get\\+Nodes\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response}{Get\\+Work\\+Items\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model}{Import\\+Work\\+Item\\+Model}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception}{Return\\+Exception}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings}{Set\\+Epic\\+Settings}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings}{State\\+Mappings}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response}{Work\\+Item\\+Batch\\+Post\\+Response}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch}{Work\\+Item\\+Patch}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response}{Work\\+Item\\+Patch\\+Response}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking.tex",
    "content": "\\hypertarget{namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking}{}\\section{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking Namespace Reference}\n\\label{namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking}\\index{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking@{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking}}\n\\subsection*{Classes}\n\\begin{DoxyCompactItemize}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column}{Board\\+Column}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards}{Cards}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes}{Classification\\+Nodes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items}{Import\\+Work\\+Items}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i}{Issue\\+WI}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes}{Swim\\+Lanes}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}{W\\+I\\+Map\\+Data}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new}{Work\\+Item\\+New}}\n\\item \nclass \\mbox{\\hyperlink{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}{Work\\+Items}}\n\\end{DoxyCompactItemize}\n"
  },
  {
    "path": "Report/latex/namespaces.tex",
    "content": "\\section{Packages}\nHere are the packages with brief descriptions (if available)\\+:\\begin{DoxyCompactList}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_templates_generator_tool}{Templates\\+Generator\\+Tool}} }{\\pageref{namespace_templates_generator_tool}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_templates_generator_tool_1_1_generators}{Templates\\+Generator\\+Tool.\\+Generators}} }{\\pageref{namespace_templates_generator_tool_1_1_generators}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_templates_generator_tool_1_1_view_model}{Templates\\+Generator\\+Tool.\\+View\\+Model}} }{\\pageref{namespace_templates_generator_tool_1_1_view_model}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_demo_builder}{Vsts\\+Demo\\+Builder}} }{\\pageref{namespace_vsts_demo_builder}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_demo_builder_1_1_controllers}{Vsts\\+Demo\\+Builder.\\+Controllers}} }{\\pageref{namespace_vsts_demo_builder_1_1_controllers}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_demo_builder_1_1_error_handler}{Vsts\\+Demo\\+Builder.\\+Error\\+Handler}} }{\\pageref{namespace_vsts_demo_builder_1_1_error_handler}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_demo_builder_1_1_extensions}{Vsts\\+Demo\\+Builder.\\+Extensions}} }{\\pageref{namespace_vsts_demo_builder_1_1_extensions}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_demo_builder_1_1_models}{Vsts\\+Demo\\+Builder.\\+Models}} }{\\pageref{namespace_vsts_demo_builder_1_1_models}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i}{Vsts\\+Rest\\+A\\+PI}} }{\\pageref{namespace_vsts_rest_a_p_i}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_build}{Vsts\\+Rest\\+A\\+P\\+I.\\+Build}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_build}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_delivery_plans}{Vsts\\+Rest\\+A\\+P\\+I.\\+Delivery\\+Plans}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_delivery_plans}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_git}{Vsts\\+Rest\\+A\\+P\\+I.\\+Git}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_git}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_projects_and_teams}{Vsts\\+Rest\\+A\\+P\\+I.\\+Projects\\+And\\+Teams}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_projects_and_teams}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_querys_and_widgets}{Vsts\\+Rest\\+A\\+P\\+I.\\+Querys\\+And\\+Widgets}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_querys_and_widgets}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_queues}{Vsts\\+Rest\\+A\\+P\\+I.\\+Queues}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_queues}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_release}{Vsts\\+Rest\\+A\\+P\\+I.\\+Release}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_release}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_service}{Vsts\\+Rest\\+A\\+P\\+I.\\+Service}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_service}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_test_management}{Vsts\\+Rest\\+A\\+P\\+I.\\+Test\\+Management}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_test_management}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Build}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Project\\+And\\+Teams}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Querys\\+And\\+Widgets}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Queue}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Release\\+Definition}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Repository}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Service}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item}{Vsts\\+Rest\\+A\\+P\\+I.\\+Viewmodel.\\+Work\\+Item}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item}}{}\n\\item\\contentsline{section}{\\mbox{\\hyperlink{namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking}{Vsts\\+Rest\\+A\\+P\\+I.\\+Work\\+Item\\+And\\+Tracking}} }{\\pageref{namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking}}{}\n\\end{DoxyCompactList}\n"
  },
  {
    "path": "Report/latex/refman.tex",
    "content": "\\documentclass[twoside]{book}\n\n% Packages required by doxygen\n\\usepackage{fixltx2e}\n\\usepackage{calc}\n\\usepackage{doxygen}\n\\usepackage[export]{adjustbox} % also loads graphicx\n\\usepackage{graphicx}\n\\usepackage[utf8]{inputenc}\n\\usepackage{makeidx}\n\\usepackage{multicol}\n\\usepackage{multirow}\n\\PassOptionsToPackage{warn}{textcomp}\n\\usepackage{textcomp}\n\\usepackage[nointegrals]{wasysym}\n\\usepackage[table]{xcolor}\n\n% Font selection\n\\usepackage[T1]{fontenc}\n\\usepackage[scaled=.90]{helvet}\n\\usepackage{courier}\n\\usepackage{amssymb}\n\\usepackage{sectsty}\n\\renewcommand{\\familydefault}{\\sfdefault}\n\\allsectionsfont{%\n  \\fontseries{bc}\\selectfont%\n  \\color{darkgray}%\n}\n\\renewcommand{\\DoxyLabelFont}{%\n  \\fontseries{bc}\\selectfont%\n  \\color{darkgray}%\n}\n\\newcommand{\\+}{\\discretionary{\\mbox{\\scriptsize$\\hookleftarrow$}}{}{}}\n\n% Page & text layout\n\\usepackage{geometry}\n\\geometry{%\n  a4paper,%\n  top=2.5cm,%\n  bottom=2.5cm,%\n  left=2.5cm,%\n  right=2.5cm%\n}\n\\tolerance=750\n\\hfuzz=15pt\n\\hbadness=750\n\\setlength{\\emergencystretch}{15pt}\n\\setlength{\\parindent}{0cm}\n\\setlength{\\parskip}{3ex plus 2ex minus 2ex}\n\\makeatletter\n\\renewcommand{\\paragraph}{%\n  \\@startsection{paragraph}{4}{0ex}{-1.0ex}{1.0ex}{%\n    \\normalfont\\normalsize\\bfseries\\SS@parafont%\n  }%\n}\n\\renewcommand{\\subparagraph}{%\n  \\@startsection{subparagraph}{5}{0ex}{-1.0ex}{1.0ex}{%\n    \\normalfont\\normalsize\\bfseries\\SS@subparafont%\n  }%\n}\n\\makeatother\n\n% Headers & footers\n\\usepackage{fancyhdr}\n\\pagestyle{fancyplain}\n\\fancyhead[LE]{\\fancyplain{}{\\bfseries\\thepage}}\n\\fancyhead[CE]{\\fancyplain{}{}}\n\\fancyhead[RE]{\\fancyplain{}{\\bfseries\\leftmark}}\n\\fancyhead[LO]{\\fancyplain{}{\\bfseries\\rightmark}}\n\\fancyhead[CO]{\\fancyplain{}{}}\n\\fancyhead[RO]{\\fancyplain{}{\\bfseries\\thepage}}\n\\fancyfoot[LE]{\\fancyplain{}{}}\n\\fancyfoot[CE]{\\fancyplain{}{}}\n\\fancyfoot[RE]{\\fancyplain{}{\\bfseries\\scriptsize Generated by Doxygen }}\n\\fancyfoot[LO]{\\fancyplain{}{\\bfseries\\scriptsize Generated by Doxygen }}\n\\fancyfoot[CO]{\\fancyplain{}{}}\n\\fancyfoot[RO]{\\fancyplain{}{}}\n\\renewcommand{\\footrulewidth}{0.4pt}\n\\renewcommand{\\chaptermark}[1]{%\n  \\markboth{#1}{}%\n}\n\\renewcommand{\\sectionmark}[1]{%\n  \\markright{\\thesection\\ #1}%\n}\n\n% Indices & bibliography\n\\usepackage{natbib}\n\\usepackage[titles]{tocloft}\n\\setcounter{tocdepth}{3}\n\\setcounter{secnumdepth}{5}\n\\makeindex\n\n% Hyperlinks (required, but should be loaded last)\n\\usepackage{ifpdf}\n\\ifpdf\n  \\usepackage[pdftex,pagebackref=true]{hyperref}\n\\else\n  \\usepackage[ps2pdf,pagebackref=true]{hyperref}\n\\fi\n\\hypersetup{%\n  colorlinks=true,%\n  linkcolor=blue,%\n  citecolor=blue,%\n  unicode%\n}\n\n% Custom commands\n\\newcommand{\\clearemptydoublepage}{%\n  \\newpage{\\pagestyle{empty}\\cleardoublepage}%\n}\n\n\\usepackage{caption}\n\\captionsetup{labelsep=space,justification=centering,font={bf},singlelinecheck=off,skip=4pt,position=top}\n\n%===== C O N T E N T S =====\n\n\\begin{document}\n\n% Titlepage & ToC\n\\hypersetup{pageanchor=false,\n             bookmarksnumbered=true,\n             pdfencoding=unicode\n            }\n\\pagenumbering{alph}\n\\begin{titlepage}\n\\vspace*{7cm}\n\\begin{center}%\n{\\Large V\\+S\\+TS Demo\\+Generator }\\\\\n\\vspace*{1cm}\n{\\large Generated by Doxygen 1.8.14}\\\\\n\\end{center}\n\\end{titlepage}\n\\clearemptydoublepage\n\\pagenumbering{roman}\n\\tableofcontents\n\\clearemptydoublepage\n\\pagenumbering{arabic}\n\\hypersetup{pageanchor=true}\n\n%--- Begin generated contents ---\n\\chapter{Namespace Index}\n\\input{namespaces}\n\\chapter{Hierarchical Index}\n\\input{hierarchy}\n\\chapter{Class Index}\n\\input{annotated}\n\\chapter{Namespace Documentation}\n\\input{namespace_templates_generator_tool}\n\\input{namespace_templates_generator_tool_1_1_generators}\n\\input{namespace_templates_generator_tool_1_1_view_model}\n\\input{namespace_vsts_demo_builder}\n\\input{namespace_vsts_demo_builder_1_1_controllers}\n\\input{namespace_vsts_demo_builder_1_1_error_handler}\n\\input{namespace_vsts_demo_builder_1_1_extensions}\n\\input{namespace_vsts_demo_builder_1_1_models}\n\\input{namespace_vsts_rest_a_p_i}\n\\input{namespace_vsts_rest_a_p_i_1_1_build}\n\\input{namespace_vsts_rest_a_p_i_1_1_delivery_plans}\n\\input{namespace_vsts_rest_a_p_i_1_1_git}\n\\input{namespace_vsts_rest_a_p_i_1_1_projects_and_teams}\n\\input{namespace_vsts_rest_a_p_i_1_1_querys_and_widgets}\n\\input{namespace_vsts_rest_a_p_i_1_1_queues}\n\\input{namespace_vsts_rest_a_p_i_1_1_release}\n\\input{namespace_vsts_rest_a_p_i_1_1_service}\n\\input{namespace_vsts_rest_a_p_i_1_1_test_management}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_build}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_service}\n\\input{namespace_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item}\n\\input{namespace_vsts_rest_a_p_i_1_1_work_item_and_tracking}\n\\chapter{Class Documentation}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1___links}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1___links}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1___links}\n\\input{class_vsts_demo_builder_1_1_models_1_1_access_details}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_access_level}\n\\input{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_account}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_account}\n\\input{class_vsts_demo_builder_1_1_controllers_1_1_account_controller}\n\\input{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_account_list}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members}\n\\input{class_vsts_demo_builder_1_1_models_1_1_accounts}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_agent_queue_model}\n\\input{class_vsts_demo_builder_1_1_error_handler_1_1_ai_handle_error_attribute}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_all_plans}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approval}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approval}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_approver}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_approver}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_artifact}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_artifact}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_attributes}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_attributes}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_attributes}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_attributes}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_attributes}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_attributes}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_attributes}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_attributes}\n\\input{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_authentication}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_authoredby}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_authorization}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_authorization}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_backlog_iteration}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_backlog_visibilities}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_base_view_model}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_base_view_model}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_board_column}\n\\input{class_templates_generator_tool_1_1_generators_1_1_board_columns}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_bug}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_build}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_configuration}\n\\input{class_vsts_demo_builder_1_1_models_1_1_build_def}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_definition}\n\\input{class_vsts_rest_a_p_i_1_1_build_1_1_build_definition}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions}\n\\input{class_templates_generator_tool_1_1_generators_1_1_build_definitions}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_build_platform}\n\\input{class_vsts_demo_builder_1_1_models_1_1_build_release_mapping}\n\\input{class_vsts_demo_builder_1_1_bundle_config}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_field_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_card_fields}\n\\input{class_templates_generator_tool_1_1_generators_1_1_card_fields_and_card_styles}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_cards}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_cards}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_cards}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_card_settings}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_style_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_card_styles}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_child}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_child}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_child1}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_classification_nodes}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_code}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_column}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_column}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_column}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_column_post}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_column_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comment}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comment}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_comments}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_comments}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_condition}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_condition}\n\\input{class_templates_generator_tool_1_1_configuration}\n\\input{class_vsts_demo_builder_1_1_models_1_1_configuration}\n\\input{class_vsts_rest_a_p_i_1_1_configuration}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_core_field}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_created_by}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_criterion}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_dashboard}\n\\input{class_vsts_demo_builder_1_1_models_1_1_dashboard}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_dashboard}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response_1_1_dashboard}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_dashboard}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dash_boarde_tag_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_data}\n\\input{class_vsts_demo_builder_1_1_models_1_1_default}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_default_iteration}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_definition}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_definition_reference}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_definition_reference}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_definitions}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_delivery_plan}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deployment_input}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deployment_input}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_phas}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_phas}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_deploy_step}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_deploy_step}\n\\input{class_vsts_demo_builder_1_1_models_1_1_email}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment}\n\\input{class_vsts_demo_builder_1_1_controllers_1_1_environment_controller}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_environment_options}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_environment_options}\n\\input{class_vsts_demo_builder_1_1_models_1_1_environment_values}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings_1_1_epiclist}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_execution_policy}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_execution_policy}\n\\input{class_templates_generator_tool_1_1_generators_1_1_export_dashboards}\n\\input{class_templates_generator_tool_1_1_generators_1_1_export_queries}\n\\input{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension}\n\\input{class_vsts_demo_builder_1_1_models_1_1_required_extensions_1_1_extension_with_link}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_field}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_field}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_fields}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_fields}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_fields}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_fields}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_fields1}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_fill}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_fill}\n\\input{class_vsts_demo_builder_1_1_filter_config}\n\\input{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_git_source}\n\\input{class_vsts_demo_builder_1_1_models_1_1_group_details}\n\\input{class_vsts_demo_builder_1_1_models_1_1_groupwise_template}\n\\input{class_vsts_demo_builder_1_1_controllers_1_1_home_controller}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_html}\n\\input{interface_vsts_demo_builder_1_1_models_1_1_i_configuration}\n\\input{interface_vsts_rest_a_p_i_1_1_i_configuration}\n\\input{interface_templates_generator_tool_1_1_i_configuration}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_import_work_items}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_inputs}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_inputs}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_inputs1}\n\\input{class_vsts_demo_builder_1_1_models_1_1_location_1_1_i_p_host_generator}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_issue_w_i}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_iteration_context}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_iteration_context}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_iterations}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_links}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_links}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_card_field_response_1_1_listof_cards}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_listof_card_styles}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response}\n\\input{class_vsts_demo_builder_1_1_models_1_1_location}\n\\input{class_vsts_demo_builder_1_1_models_1_1_login_model}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_member}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_memberships}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_microsoft_team_cdef9adbd80bdee012c89b0dd9ec0a8e}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_microsoft_te033d878f4bc391c4991265602b9d9ecf}\n\\input{class_vsts_demo_builder_1_1_mvc_application}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_create_update_node_view_model_1_1_node}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_node}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_nodes}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_option}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_owner}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_owner}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_parallel_execution}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_parallel_execution}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1parameter}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_parameters}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_parent}\n\\input{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_plan}\n\\input{class_vsts_rest_a_p_i_1_1_delivery_plans_1_1_plans}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_pool}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_pool}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_pool}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_position}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_post_deploy_approvals}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_post_deploy_approvals}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_pre_deploy_approvals}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_pre_deploy_approvals}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_field_response_1_1_product_backlog_item}\n\\input{class_vsts_demo_builder_1_1_models_1_1_profile_details}\n\\input{class_templates_generator_tool_1_1_program}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_project}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_project}\n\\input{class_vsts_demo_builder_1_1_models_1_1_project}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_project}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_project}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_project}\n\\input{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_project_count}\n\\input{class_vsts_demo_builder_1_1_models_1_1_project_list}\n\\input{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_projects}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_projects}\n\\input{class_vsts_demo_builder_1_1_models_1_1_project_settings}\n\\input{class_vsts_demo_builder_1_1_models_1_1_project_template}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_properties}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_properties}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_properties}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_properties}\n\\input{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_properties}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_pull_request}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response}\n\\input{class_templates_generator_tool_1_1_generators_1_1_pull_requests}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_pull_request_thread_context}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_pull_request_thread_context}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_query}\n\\input{class_vsts_demo_builder_1_1_models_1_1_query}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1query}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_query_response}\n\\input{class_vsts_rest_a_p_i_1_1_querys_and_widgets_1_1_querys}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_by_path_response_1_1_query_with_wiql}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_queue}\n\\input{class_vsts_rest_a_p_i_1_1_queues_1_1_queue}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_queue}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_queue_model}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_relation}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_relations}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_relations}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_release}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_release}\n\\input{class_vsts_demo_builder_1_1_models_1_1_release_def}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_release_definition}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_release_definition}\n\\input{class_vsts_rest_a_p_i_1_1_release_1_1_release_definition}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions}\n\\input{class_templates_generator_tool_1_1_generators_1_1_release_definitions}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1reply}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_repositories}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_repository}\n\\input{class_vsts_rest_a_p_i_1_1_git_1_1_repository}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_repository}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_repository_response}\n\\input{class_vsts_demo_builder_1_1_models_1_1_required_extensions}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_result}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_results}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_results}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_retention_policy}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_retention_policy}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_retention_rule}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_return_exception}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_reviewer}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_end}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_end}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_right_file_start}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_right_file_start}\n\\input{class_vsts_demo_builder_1_1_route_config}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_rules}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_rules}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_self}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_node_response_1_1_self}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_nodes_response_1_1_self}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_self}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_service}\n\\input{class_vsts_rest_a_p_i_1_1_service_1_1_service_end_point}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_service_1_1_service_endpoint_model}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_set_epic_settings}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_settings}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_settings_version}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_size}\n\\input{class_templates_generator_tool_1_1_generators_1_1_source_code}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_source_code_response}\n\\input{class_templates_generator_tool_1_1_source_configuration}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_state_mappings}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_board_columns_response_1_1_state_mappings}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_state_mappings}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_swim_lanes}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_system_debug}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_card_styles_patch_1_1_tag_style}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_card_style_response_1_1_tag_style}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_task}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_task}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_task}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_team}\n\\input{class_vsts_rest_a_p_i_1_1_projects_and_teams_1_1_team}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_get_team_response_1_1_team}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_team_backlog_mapping}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1_team_members}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_response}\n\\input{class_templates_generator_tool_1_1_generators_1_1_teams}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response_1_1_team_setting}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_setting_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_teams_response}\n\\input{class_vsts_demo_builder_1_1_models_1_1_template}\n\\input{class_vsts_demo_builder_1_1_models_1_1template_key_value}\n\\input{class_vsts_demo_builder_1_1_models_1_1_template_setting}\n\\input{class_vsts_demo_builder_1_1_models_1_1_test_case}\n\\input{class_vsts_rest_a_p_i_1_1_test_management_1_1_test_management}\n\\input{class_vsts_demo_builder_1_1_models_1_1_test_suite}\n\\input{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_test_suites}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_thread_context}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_thread_context}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_trigger}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_trigger}\n\\input{class_vsts_rest_a_p_i_1_1_utility}\n\\input{class_templates_generator_tool_1_1_generators_1_1_validate_login}\n\\input{class_vsts_demo_builder_1_1_models_1_1_project_list_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_get_all_repositories_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_listof_projects_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_member_response_1_1value}\n\\input{class_vsts_demo_builder_1_1_models_1_1_accounts_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_source_code_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_repository_response_1_1_value}\n\\input{class_vsts_demo_builder_1_1_models_1_1_test_suite_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_queue_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_account_members_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_service_end_points_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_build_1_1_build_get_listof_build_definitions_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_teams_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_board_column_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_dash_board_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_plan_view_model_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_batch_request_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definition_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_get_board_rows_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_repository_1_1_pull_request_comments_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_project_and_teams_1_1_team_iterations_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_querys_and_widgets_1_1_dashboard_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_pull_request_comment_response_1_1_value}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_response_1_1_value}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_build_definitions_1_1_variables}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_release_definitions_1_1_variables}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_release_definition_1_1_release_definitions_1_1_variables}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response_1_1_widget}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_widget_and_chart_response}\n\\input{class_templates_generator_tool_1_1_generators_1_1_generate_w_i_from_source_1_1_w_i_map_data}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_w_i_map_data}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_query_response_1_1_wiql}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_get_work_items_response_1_1_workitem}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_work_item}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_get_work_items_response_1_1_workitem}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_batch_post_response}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemhistory}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_item_new}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemrevisions}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_import_work_item_model_1_1_work_items}\n\\input{class_vsts_rest_a_p_i_1_1_work_item_and_tracking_1_1_work_items}\n\\input{class_templates_generator_tool_1_1_view_model_1_1_work_item_fetch_response_1_1_work_items}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemtype}\n\\input{class_vsts_rest_a_p_i_1_1_viewmodel_1_1_work_item_1_1_work_item_patch_response_1_1_workitemupdates}\n%--- End generated contents ---\n\n% Index\n\\backmatter\n\\newpage\n\\phantomsection\n\\clearemptydoublepage\n\\addcontentsline{toc}{chapter}{Index}\n\\printindex\n\n\\end{document}\n"
  },
  {
    "path": "SECURITY.md",
    "content": "<!-- BEGIN MICROSOFT SECURITY.MD V0.0.7 BLOCK -->\n\n## Security\n\nMicrosoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).\n\nIf you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below.\n\n## Reporting Security Issues\n\n**Please do not report security vulnerabilities through public GitHub issues.**\n\nInstead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report).\n\nIf you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com).  If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey).\n\nYou should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). \n\nPlease include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:\n\n  * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)\n  * Full paths of source file(s) related to the manifestation of the issue\n  * The location of the affected source code (tag/branch/commit or direct URL)\n  * Any special configuration required to reproduce the issue\n  * Step-by-step instructions to reproduce the issue\n  * Proof-of-concept or exploit code (if possible)\n  * Impact of the issue, including how an attacker might exploit the issue\n\nThis information will help us triage your report more quickly.\n\nIf you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs.\n\n## Preferred Languages\n\nWe prefer all communications to be in English.\n\n## Policy\n\nMicrosoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd).\n\n<!-- END MICROSOFT SECURITY.MD BLOCK -->\n"
  },
  {
    "path": "_includes/analytics.html",
    "content": "{% if site.google_analytics %}\n\t<!-- Google Analytics -->\n\t<script>\n\t\t(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n\t\t(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n\t\tm=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n\t\t})(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n\n\t\tga('create', '{{ site.google_analytics }}', 'auto');\n\t\tga('send', 'pageview', {\n\t\t  'page': '{{ site.baseurl }}{{ page.url }}',\n\t\t  'title': '{{ page.title | replace: \"'\", \"\\\\'\" }}'\n\t\t});\n\t</script>\n\t<!-- End Google Analytics -->\n{% endif %}\n"
  },
  {
    "path": "_includes/disqus.html",
    "content": "{% if site.disqus %}\n<div class=\"comments\">\n\t<div id=\"disqus_thread\"></div>\n\t<script type=\"text/javascript\">\n\n\t    var disqus_shortname = '{{ site.disqus }}';\n\n\t    (function() {\n\t        var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;\n\t        dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';\n\t        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);\n\t    })();\n\n\t</script>\n\t<noscript>Please enable JavaScript to view the <a href=\"http://disqus.com/?ref_noscript\">comments powered by Disqus.</a></noscript>\n</div>\n{% endif %}"
  },
  {
    "path": "_includes/meta.html",
    "content": "    <meta charset=\"utf-8\" />\n    <meta content='text/html; charset=utf-8' http-equiv='Content-Type'>\n    <meta http-equiv='X-UA-Compatible' content='IE=edge'>\n    <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>\n\n    {% if page.excerpt %}\n    <meta name=\"description\" content=\"{{ page.excerpt| strip_html }}\" />\n    <meta property=\"og:description\" content=\"{{ page.excerpt| strip_html }}\" />\n    {% else %}\n    <meta name=\"description\" content=\"{{ site.description }}\">\n    <meta property=\"og:description\" content=\"{{ site.description }}\" />\n    {% endif %}\n    <meta name=\"author\" content=\"{{ site.name }}\" />\n\n    {% if page.title %}\n    <meta property=\"og:title\" content=\"{{ page.title }}\" />\n    <meta property=\"twitter:title\" content=\"{{ page.title }}\" />\n    {% endif %}"
  },
  {
    "path": "_includes/svg-icons.html",
    "content": "{% if site.footer-links.dribbble %}<a href=\"https://dribbble.com/{{ site.footer-links.dribbble }}\"><i class=\"svg-icon dribbble\"></i></a>{% endif %}\n{% if site.footer-links.email %}<a href=\"mailto:{{ site.footer-links.email }}\"><i class=\"svg-icon email\"></i></a>{% endif %}\n{% if site.footer-links.facebook %}<a href=\"https://www.facebook.com/{{ site.footer-links.facebook }}\"><i class=\"svg-icon facebook\"></i></a>{% endif %}\n{% if site.footer-links.flickr %}<a href=\"https://www.flickr.com/{{ site.footer-links.flickr }}\"><i class=\"svg-icon flickr\"></i></a>{% endif %}\n{% if site.footer-links.github %}<a href=\"https://github.com/{{ site.footer-links.github }}\"><i class=\"svg-icon github\"></i></a>{% endif %}\n{% if site.footer-links.instagram %}<a href=\"https://instagram.com/{{ site.footer-links.instagram }}\"><i class=\"svg-icon instagram\"></i></a>{% endif %}\n{% if site.footer-links.linkedin %}<a href=\"https://www.linkedin.com/in/{{ site.footer-links.linkedin }}\"><i class=\"svg-icon linkedin\"></i></a>{% endif %}\n{% if site.footer-links.pinterest %}<a href=\"https://www.pinterest.com/{{ site.footer-links.pinterest }}\"><i class=\"svg-icon pinterest\"></i></a>{% endif %}\n{% if site.footer-links.rss %}<a href=\"{{ site.baseurl }}/feed.xml\"><i class=\"svg-icon rss\"></i></a>{% endif %}\n{% if site.footer-links.twitter %}<a href=\"https://www.twitter.com/{{ site.footer-links.twitter }}\"><i class=\"svg-icon twitter\"></i></a>{% endif %}\n{% if site.footer-links.stackoverflow %}<a href=\"http://stackoverflow.com/{{ site.footer-links.stackoverflow }}\"><i class=\"svg-icon stackoverflow\"></i></a>{% endif %}\n{% if site.footer-links.youtube %}<a href=\"https://youtube.com/{{ site.footer-links.youtube }}\"><i class=\"svg-icon youtube\"></i></a>{% endif %}\n{% if site.footer-links.googleplus %}<a href=\"https://plus.google.com/{{ site.footer-links.googleplus }}\"><i class=\"svg-icon googleplus\"></i></a>{% endif %}"
  },
  {
    "path": "_layouts/default.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>\n\n    {% include meta.html %}\n\n    <!--[if lt IE 9]>\n      <script src=\"http://html5shiv.googlecode.com/svn/trunk/html5.js\"></script>\n    <![endif]-->\n\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"{{ site.baseurl }}/style.css\" />\n    <link rel=\"alternate\" type=\"application/rss+xml\" title=\"{{ site.name }} - {{ site.description }}\" href=\"{{ site.baseurl }}/feed.xml\" />\n\n    <!-- Created with Jekyll Now - http://github.com/barryclark/jekyll-now -->\n  </head>\n\n  <body>\n    <div class=\"wrapper-masthead\">\n      <div class=\"container\">\n        <header class=\"masthead clearfix\">\n          <a href=\"{{ site.baseurl }}/\" class=\"site-avatar\"><img src=\"{{ site.avatar }}\" /></a>\n\n          <div class=\"site-info\">\n            <h1 class=\"site-name\"><a href=\"{{ site.baseurl }}/\">{{ site.name }}</a></h1>\n            <p class=\"site-description\">{{ site.description }}</p>\n          </div>\n\n          <nav>\n            <a href=\"{{ site.baseurl }}/\">Blog</a>\n            <a href=\"{{ site.baseurl }}/about\">About</a>\n          </nav>\n        </header>\n      </div>\n    </div>\n\n    <div id=\"main\" role=\"main\" class=\"container\">\n      {{ content }}\n    </div>\n\n    <div class=\"wrapper-footer\">\n      <div class=\"container\">\n        <footer class=\"footer\">\n          {% include svg-icons.html %}\n        </footer>\n      </div>\n    </div>\n\n    {% include analytics.html %}\n  </body>\n</html>\n"
  },
  {
    "path": "_layouts/page.html",
    "content": "---\nlayout: default\n---\n\n<article class=\"page\">\n\n  <h1>{{ page.title }}</h1>\n\n  <div class=\"entry\">\n    {{ content }}\n  </div>\n</article>\n"
  },
  {
    "path": "_layouts/post.html",
    "content": "---\nlayout: default\n---\n\n<article class=\"post\">\n  <h1>{{ page.title }}</h1>\n\n  <div class=\"entry\">\n    {{ content }}\n  </div>\n\n  <div class=\"date\">\n    Written on {{ page.date | date: \"%B %e, %Y\" }}\n  </div>\n\n  {% include disqus.html %}\n</article>\n"
  },
  {
    "path": "_posts/2014-3-3-Hello-World.md",
    "content": "---\nlayout: post\ntitle: You're up and running!\n---\n\nNext you can update your site name, avatar and other options using the _config.yml file in the root of your repository (shown below).\n\n![_config.yml]({{ site.baseurl }}/images/config.png)\n\nThe easiest way to make your first post is to edit this one. Go into /_posts/ and update the Hello World markdown file. For more instructions head over to the [Jekyll Now repository](https://github.com/barryclark/jekyll-now) on GitHub."
  },
  {
    "path": "_sass/_highlights.scss",
    "content": "\n.highlight {\n  background-color: #efefef;\n  padding: 7px 7px 7px 10px;\n  border: 1px solid #ddd;\n  -moz-box-shadow: 3px 3px rgba(0,0,0,0.1);\n  -webkit-box-shadow: 3px 3px rgba(0,0,0,0.1);\n  box-shadow: 3px 3px rgba(0,0,0,0.1);\n  margin: 20px 0 20px 0;\n  overflow: scroll;\n}\n\ncode {\n  font-family:'Bitstream Vera Sans Mono','Courier', monospace;\n}\n\n.highlight .c { color: #586E75 } /* Comment */\n.highlight .err { color: #93A1A1 } /* Error */\n.highlight .g { color: #93A1A1 } /* Generic */\n.highlight .k { color: #859900 } /* Keyword */\n.highlight .l { color: #93A1A1 } /* Literal */\n.highlight .n { color: #93A1A1 } /* Name */\n.highlight .o { color: #859900 } /* Operator */\n.highlight .x { color: #CB4B16 } /* Other */\n.highlight .p { color: #93A1A1 } /* Punctuation */\n.highlight .cm { color: #586E75 } /* Comment.Multiline */\n.highlight .cp { color: #859900 } /* Comment.Preproc */\n.highlight .c1 { color: #586E75 } /* Comment.Single */\n.highlight .cs { color: #859900 } /* Comment.Special */\n.highlight .gd { color: #2AA198 } /* Generic.Deleted */\n.highlight .ge { color: #93A1A1; font-style: italic } /* Generic.Emph */\n.highlight .gr { color: #DC322F } /* Generic.Error */\n.highlight .gh { color: #CB4B16 } /* Generic.Heading */\n.highlight .gi { color: #859900 } /* Generic.Inserted */\n.highlight .go { color: #93A1A1 } /* Generic.Output */\n.highlight .gp { color: #93A1A1 } /* Generic.Prompt */\n.highlight .gs { color: #93A1A1; font-weight: bold } /* Generic.Strong */\n.highlight .gu { color: #CB4B16 } /* Generic.Subheading */\n.highlight .gt { color: #93A1A1 } /* Generic.Traceback */\n.highlight .kc { color: #CB4B16 } /* Keyword.Constant */\n.highlight .kd { color: #268BD2 } /* Keyword.Declaration */\n.highlight .kn { color: #859900 } /* Keyword.Namespace */\n.highlight .kp { color: #859900 } /* Keyword.Pseudo */\n.highlight .kr { color: #268BD2 } /* Keyword.Reserved */\n.highlight .kt { color: #DC322F } /* Keyword.Type */\n.highlight .ld { color: #93A1A1 } /* Literal.Date */\n.highlight .m { color: #2AA198 } /* Literal.Number */\n.highlight .s { color: #2AA198 } /* Literal.String */\n.highlight .na { color: #93A1A1 } /* Name.Attribute */\n.highlight .nb { color: #B58900 } /* Name.Builtin */\n.highlight .nc { color: #268BD2 } /* Name.Class */\n.highlight .no { color: #CB4B16 } /* Name.Constant */\n.highlight .nd { color: #268BD2 } /* Name.Decorator */\n.highlight .ni { color: #CB4B16 } /* Name.Entity */\n.highlight .ne { color: #CB4B16 } /* Name.Exception */\n.highlight .nf { color: #268BD2 } /* Name.Function */\n.highlight .nl { color: #93A1A1 } /* Name.Label */\n.highlight .nn { color: #93A1A1 } /* Name.Namespace */\n.highlight .nx { color: #555 } /* Name.Other */\n.highlight .py { color: #93A1A1 } /* Name.Property */\n.highlight .nt { color: #268BD2 } /* Name.Tag */\n.highlight .nv { color: #268BD2 } /* Name.Variable */\n.highlight .ow { color: #859900 } /* Operator.Word */\n.highlight .w { color: #93A1A1 } /* Text.Whitespace */\n.highlight .mf { color: #2AA198 } /* Literal.Number.Float */\n.highlight .mh { color: #2AA198 } /* Literal.Number.Hex */\n.highlight .mi { color: #2AA198 } /* Literal.Number.Integer */\n.highlight .mo { color: #2AA198 } /* Literal.Number.Oct */\n.highlight .sb { color: #586E75 } /* Literal.String.Backtick */\n.highlight .sc { color: #2AA198 } /* Literal.String.Char */\n.highlight .sd { color: #93A1A1 } /* Literal.String.Doc */\n.highlight .s2 { color: #2AA198 } /* Literal.String.Double */\n.highlight .se { color: #CB4B16 } /* Literal.String.Escape */\n.highlight .sh { color: #93A1A1 } /* Literal.String.Heredoc */\n.highlight .si { color: #2AA198 } /* Literal.String.Interpol */\n.highlight .sx { color: #2AA198 } /* Literal.String.Other */\n.highlight .sr { color: #DC322F } /* Literal.String.Regex */\n.highlight .s1 { color: #2AA198 } /* Literal.String.Single */\n.highlight .ss { color: #2AA198 } /* Literal.String.Symbol */\n.highlight .bp { color: #268BD2 } /* Name.Builtin.Pseudo */\n.highlight .vc { color: #268BD2 } /* Name.Variable.Class */\n.highlight .vg { color: #268BD2 } /* Name.Variable.Global */\n.highlight .vi { color: #268BD2 } /* Name.Variable.Instance */\n.highlight .il { color: #2AA198 } /* Literal.Number.Integer.Long */"
  },
  {
    "path": "_sass/_reset.scss",
    "content": "\n/***************/\n/* MEYER RESET */\n/***************/\n\nhtml, body, div, span, applet, object, iframe,\nh1, h2, h3, h4, h5, h6, p, blockquote, pre,\na, abbr, acronym, address, big, cite, code,\ndel, dfn, em, img, ins, kbd, q, s, samp,\nsmall, strike, strong, sub, sup, tt, var,\nb, u, i, center,\ndl, dt, dd, ol, ul, li,\nfieldset, form, label, legend,\ntable, caption, tbody, tfoot, thead, tr, th, td,\narticle, aside, canvas, details, embed,\nfigure, figcaption, footer, header, hgroup,\nmenu, nav, output, ruby, section, summary,\ntime, mark, audio, video {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\tfont-size: 100%;\n\tfont: inherit;\n\tvertical-align: baseline;\n}\n// HTML5 display-role reset for older browsers\narticle, aside, details, figcaption, figure,\nfooter, header, hgroup, menu, nav, section {\n\tdisplay: block;\n}\nbody {\n\tline-height: 1;\n}\nol, ul {\n\tlist-style: none;\n}\nblockquote, q {\n\tquotes: none;\n}\nblockquote:before, blockquote:after,\nq:before, q:after {\n\tcontent: '';\n\tcontent: none;\n}\ntable {\n\tborder-collapse: collapse;\n\tborder-spacing: 0;\n}\n// Apply a natural box layout model to all elements\n// from: http://www.paulirish.com/2012/box-sizing-border-box-ftw/\n*, *:before, *:after {\n  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;\n}\n"
  },
  {
    "path": "_sass/_svg-icons.scss",
    "content": ".svg-icon {\n  width: 40px;\n  height: 40px;\n  display: inline-block;\n\n  &.dribbble      { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPjxwYXRoIGQ9Ik0wLjIyNDU4MDY4OCwzMCBDMC4yMjQ1ODA2ODgsMTMuNDMxNDU2NyAxMy40NTQ5NDEsMCAyOS43NzU0MTkzLDAgQzQ2LjA5NTg5NzYsMCA1OS4zMjYyNTc5LDEzLjQzMTQ1NjcgNTkuMzI2MjU3OSwzMCBDNTkuMzI2MjU3OSw0Ni41Njg1NDMzIDQ2LjA5NTg5NzYsNjAgMjkuNzc1NDE5Myw2MCBDMTMuNDU0OTQxLDYwIDAuMjI0NTgwNjg4LDQ2LjU2ODU0MzMgMC4yMjQ1ODA2ODgsMzAgWiBNMC4yMjQ1ODA2ODgsMzAiIGZpbGw9IiNFQTRDODkiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD48cGF0aCBkPSJNNDYuODIwMTQwMiwyOS44MzA2MzA3IEM0Ni44MjAxNDAyLDMwLjk5MTA2NjIgNDYuNzAzOTM4MSwzMi4xNDk4OTIgNDYuNDc1Njk1OCwzMy4yNzk0NzczIEM0Ni4yNTMxMzQ4LDM0LjM4MjIzNjMgNDUuOTIzNDg4MSwzNS40NjQ4NzU3IDQ1LjQ5MTY0NDQsMzYuNDk5ODMxNCBDNDUuMDY5NzA5OSwzNy41MTY0NzgzIDQ0LjU0NjM3MSwzOC40OTYxNzIgNDMuOTM0ODQwMiwzOS40MDk4MDYyIEM0My4zMzI0MjU4LDQwLjMxNzY3MjcgNDIuNjM4NDUwMiw0MS4xNjk0MDUzIDQxLjg3NjEwMSw0MS45NDU4MjM0IEM0MS4xMTIxMDAzLDQyLjcxODg4ODEgNDAuMjcxNDY4Myw0My40MjI0NzI5IDM5LjM3ODkxMiw0NC4wMzc1MzEyIEMzOC40NzczMDUzLDQ0LjY1NDkzNjcgMzcuNTEyMjc5Niw0NS4xODYyMzAxIDM2LjUxMTcxMjgsNDUuNjE3MTkzNCBDMzUuNDkyMjUyNSw0Ni4wNTM5MjQ0IDM0LjQyNDg5NzUsNDYuMzg4NTgxNSAzMy4zNDExNTk0LDQ2LjYxNDQ1ODMgQzMyLjIyODYxODUsNDYuODQ3MTA4OCAzMS4wODQ2MzIzLDQ2Ljk2NTg4MTkgMjkuOTQxNTcwOSw0Ni45NjU4ODE5IEMyOC43OTc2NTA4LDQ2Ljk2NTg4MTkgMjcuNjUzNzMwNyw0Ni44NDcxMDg4IDI2LjU0Mjc3NTIsNDYuNjE0NDU4MyBDMjUuNDU3Mzg1NSw0Ni4zODg1ODE1IDI0LjM5MDA5NjcsNDYuMDUzOTI0NCAyMy4zNzE0MjkxLDQ1LjYxNzE5MzQgQzIyLjM3MDkyODQsNDUuMTg2MjMwMSAyMS40MDQ5Nzc4LDQ0LjY1NDkzNjcgMjAuNTAzMzcxMSw0NC4wMzc1MzEyIEMxOS42MTA4MTQ4LDQzLjQyMjU0IDE4Ljc3MDE4MjgsNDIuNzE4ODg4MSAxOC4wMDc4MzM2LDQxLjk0NTgyMzQgQzE3LjI0NDY5MTcsNDEuMTY5NDA1MyAxNi41NTA3MTYxLDQwLjMxNzY3MjcgMTUuOTQ3NDQyOSwzOS40MDk4MDYyIEMxNS4zMzkyMTUxLDM4LjQ5NjE3MiAxNC44MTUwMTc1LDM3LjUxNjQxMTIgMTQuMzkxNDMxNCwzNi40OTk4MzE0IEMxMy45NTk1MjE2LDM1LjQ2NDg3NTcgMTMuNjI5MDgyMywzNC4zODIxNjkyIDEzLjQwNTcyODUsMzMuMjc5NDc3MyBDMTMuMTc5OTMwNCwzMi4xNDk4OTIgMTMuMDY0NTIxMSwzMC45OTEwNjYyIDEzLjA2NDUyMTEsMjkuODMwNjMwNyBDMTMuMDY0NTIxMSwyOC42NjkzMjM1IDEzLjE3OTg2NDQsMjcuNTA4MDE2MiAxMy40MDU3OTQ1LDI2LjM4MDkxMjMgQzEzLjYyOTE0ODMsMjUuMjc4MTUzMyAxMy45NTk1ODc3LDI0LjE5MzgzNzMgMTQuMzkxNDk3NSwyMy4xNjA1NTgyIEMxNC44MTUwODM1LDIyLjE0MzE3MzYgMTUuMzM5MjgxMiwyMS4xNjI2MDggMTUuOTQ3NTA5LDIwLjI0ODkwNjggQzE2LjU1MDc4MjIsMTkuMzQwMzAyNSAxNy4yNDQ3NTc3LDE4LjQ5MDE3OTUgMTguMDA3ODk5NiwxNy43MTI4ODk2IEMxOC43NzAyNDg4LDE2LjkzOTc1NzggMTkuNjEwODgwOCwxNi4yMzc4NDk2IDIwLjUwMzQzNzEsMTUuNjIzNzMwMyBDMjEuNDA1MDQzOCwxNS4wMDM3MDkyIDIyLjM3MDk5NDQsMTQuNDcyNDgyOCAyMy4zNzE0OTUxLDE0LjA0MDcxNDcgQzI0LjM5MDE2MjcsMTMuNjAzMDQ0OSAyNS40NTczODU1LDEzLjI2NzU4MjkgMjYuNTQyODQxMywxMy4wNDMzODI4IEMyNy42NTM3OTY3LDEyLjgxMjQ3NiAyOC43OTc3MTY5LDEyLjY5NTMxMjUgMjkuOTQxNjM3LDEyLjY5NTMxMjUgQzMxLjA4NDY5ODMsMTIuNjk1MzEyNSAzMi4yMjg2MTg1LDEyLjgxMjQ3NiAzMy4zNDEyMjU1LDEzLjA0MzM4MjggQzM0LjQyNDk2MzYsMTMuMjY3NjUgMzUuNDkyMjUyNSwxMy42MDMxMTIgMzYuNTExNzc4OSwxNC4wNDA3MTQ3IEMzNy41MTIyNzk2LDE0LjQ3MjQxNTggMzguNDc3MzcxNCwxNS4wMDM3MDkyIDM5LjM3ODk3ODEsMTUuNjIzNzMwMyBDNDAuMjcxNTM0NCwxNi4yMzc4NDk2IDQxLjExMjIzMjQsMTYuOTM5NzU3OCA0MS44NzYxNjcxLDE3LjcxMjg4OTYgQzQyLjYzODUxNjMsMTguNDkwMTc5NSA0My4zMzI0OTE4LDE5LjM0MDMwMjUgNDMuOTM0OTA2MiwyMC4yNDg5MDY4IEM0NC41NDYzNzEsMjEuMTYyNjA4IDQ1LjA2OTcwOTksMjIuMTQzMjQwNyA0NS40OTE2NDQ0LDIzLjE2MDU1ODIgQzQ1LjkyMzQ4ODEsMjQuMTkzODM3MyA0Ni4yNTMxMzQ4LDI1LjI3ODE1MzMgNDYuNDc1Njk1OCwyNi4zODA5MTIzIEM0Ni43MDM5MzgxLDI3LjUwODAxNjIgNDYuODIwMTQwMiwyOC42NjkzMjM1IDQ2LjgyMDE0MDIsMjkuODMwNjMwNyBaIE0yMy43OTE3MTIsMTYuNTk1MTA3OSBDMTkuNzcyMjY5LDE4LjUyMjAzNTYgMTYuNzcyMzUyMywyMi4yODIwNjY0IDE1LjgzNjkyMjEsMjYuODEzNTUyMyBDMTYuMjE2OTA3NiwyNi44MTY5MDU2IDIyLjIyMzM0NzEsMjYuODkzODk2OCAyOS4xNDM3NDY4LDI1LjAyNzE5NCBDMjYuNjQ5MDY4MSwyMC41Mjc0OTcxIDIzLjk4Mzc1MjcsMTYuODU1Mzg5MyAyMy43OTE3MTIsMTYuNTk1MTA3OSBaIE0zMC4zMzc5Mzk3LDI3LjI4MDQ2MjcgQzIyLjkxNjQ2MzgsMjkuNTM2MDc4OCAxNS43OTQ5MDcsMjkuMzczNzgwMSAxNS41Mzk0NDc0LDI5LjM2Mzc4NzMgQzE1LjUzNTI4NTUsMjkuNTIxMDU2MSAxNS41Mjc4ODY2LDI5LjY3MzI5NDkgMTUuNTI3ODg2NiwyOS44MzA2MzA3IEMxNS41Mjc4ODY2LDMzLjU4OTc4OTYgMTYuOTI0ODIyMSwzNy4wMTY4Mzk5IDE5LjIyMDkyMDEsMzkuNjA4MTE5MSBDMTkuMjE1OTY1NCwzOS42MDA1NDA2IDIzLjE2MDQyODgsMzIuNDk2Mjg1NiAzMC45Mzg3Njg2LDI5Ljk0Mjc2NDMgQzMxLjEyNjY0NzQsMjkuODc5MTg2MiAzMS4zMTc4OTUzLDI5LjgyMjI0NzUgMzEuNTA3NDI1NiwyOS43NjcwNTI2IEMzMS4xNDU2NzMsMjguOTM1NDM5NiAzMC43NTA4MjM3LDI4LjEwMjA4MjkgMzAuMzM3OTM5NywyNy4yODA0NjI3IFogTTM5LjQ2MDU2NCwxOC44NDgzMDk2IEMzNi45MjI5NDU0LDE2LjU3NjY2NDkgMzMuNTkwOTM3OCwxNS4xOTg3MzU4IDI5Ljk0MTU3MDksMTUuMTk4NzM1OCBDMjguNzcwNDMzNSwxNS4xOTg3MzU4IDI3LjYzMzkxMjIsMTUuMzQyNjU4NSAyNi41NDUyMTk1LDE1LjYwODcwNzYgQzI2Ljc2MTEwODMsMTUuOTAzMjU5NSAyOS40Njg1MDQ5LDE5LjU0OTQ4IDMxLjkzMzUyMTksMjQuMTQ0NDc3IEMzNy4zNzIxNjMyLDIyLjA3NDU2NTUgMzkuNDI1MDg5LDE4LjkwMTgyNzkgMzkuNDYwNTY0LDE4Ljg0ODMwOTYgWiBNMzIuNDg5ODI1NCwzMi4xOTE3NDA5IEMzMi40NTc3MTk2LDMyLjIwMjUzODUgMzIuNDI1NjEzNywzMi4yMTE4NjA2IDMyLjM5NDIzNDUsMzIuMjIzNTMgQzIzLjg4OTkyNDgsMzUuMjMzMzIxNiAyMS4xMTI3MjcyLDQxLjI5ODkxNTEgMjEuMDgyNjc5Myw0MS4zNjUxMjg2IEMyMy41Mjk2NDYyLDQzLjI5Njk5MzIgMjYuNTk4Nzk1Myw0NC40NjI1MjU2IDI5Ljk0MTU3MDksNDQuNDYyNTI1NiBDMzEuOTM3NjE3OCw0NC40NjI1MjU2IDMzLjgzODkzMjUsNDQuMDQ5OTM4MyAzNS41Njg4MTc3LDQzLjMwMjg5NSBDMzUuMzU1MzczMSw0Mi4wMjQ0MjQyIDM0LjUxODA0NDIsMzcuNTQzMTcwNCAzMi40ODk4MjU0LDMyLjE5MTc0MDkgWiBNMzcuOTk2MDQ3Niw0MS45NjU4NzYgQzQxLjIzMjQ2NDMsMzkuNzQ4Njg4NSA0My41MzEwMDY1LDM2LjIyNzk0NzYgNDQuMTcyMTk5LDMyLjE0OTgyNDkgQzQzLjg3NTUxNywzMi4wNTI3ODExIDM5Ljg0MjkyNzcsMzAuNzU2NzM5MSAzNS4xOTA1NDk4LDMxLjUxMzk3NjMgQzM3LjA4MTE2MjUsMzYuNzg4NDgxNiAzNy44NDkzMjUxLDQxLjA4NDAzMDkgMzcuOTk2MDQ3Niw0MS45NjU4NzYgWiBNMzMuMDQyODkxOSwyNi4zMjQ5MTI2IEMzMy4zNzc0MjcxLDI3LjAyMjcyOTggMzMuNzAxMzkyNSwyNy43MzI5NTQxIDM0LjAwMDUxODgsMjguNDQ2NzMyOSBDMzQuMTA2ODc3NywyOC43MDI3ODkyIDM0LjIxMDcyNjMsMjguOTUzODE1NiAzNC4zMTIwNjQ2LDI5LjIwNDc3NDkgQzM5LjI2MzU2ODcsMjguNTcyMjEyNSA0NC4xNDE3NDQ2LDI5LjYzNjQ3NTkgNDQuMzUwMzAwNiwyOS42Nzk5MzQ0IEM0NC4zMTczMzYsMjYuMjExMTAyMyA0My4wOTUwNjcsMjMuMDI3NTAwMSA0MS4wNzI2NjE2LDIwLjUzNTA3NTUgQzQxLjA0NTQ0NDMsMjAuNTc0MzA4OSAzOC43MzM2ODk4LDIzLjk2NTQxMiAzMy4wNDI4OTE5LDI2LjMyNDkxMjYgWiBNMzMuMDQyODkxOSwyNi4zMjQ5MTI2IiBpZD0iUGF0aCIgZmlsbD0iI0ZGRkZGRiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPjxwYXRoIGQ9Ik01OS4zMjYyNTc5LDMwIEM1OS4zMjYyNTc5LDQ2LjU2ODU0MzMgNDYuMDk1ODk3Niw2MCAyOS43NzU0MTkzLDYwIEMyMy43MjI1NDA1LDYwIDE4LjA5NDcwNTEsNTguMTUyNTEzNCAxMy40MDkzMjQ0LDU0Ljk4Mjc3NTQgTDQ3LjI2OTU0NTgsNS44MTk0MTEwMyBDNTQuNTgxNDQzOCwxMS4yODA2NTAzIDU5LjMyNjI1NzksMjAuMDc3Nzk3MyA1OS4zMjYyNTc5LDMwIFogTTU5LjMyNjI1NzksMzAiIGlkPSJyZWZsZWMiIGZpbGwtb3BhY2l0eT0iMC4wOCIgZmlsbD0iIzAwMDAwMCIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPjwvc3ZnPgo=); }\n  &.email         { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPg0KICAgIDxwYXRoIGQ9Ik0wLjIyNDU4MDY4OCwzMCBDMC4yMjQ1ODA2ODgsMTMuNDMxNDU2NyAxMy40NTQ5NDEsMCAyOS43NzU0MTkzLDAgQzQ2LjA5NTg5NzYsMCA1OS4zMjYyNTc5LDEzLjQzMTQ1NjcgNTkuMzI2MjU3OSwzMCBDNTkuMzI2MjU3OSw0Ni41Njg1NDMzIDQ2LjA5NTg5NzYsNjAgMjkuNzc1NDE5Myw2MCBDMTMuNDU0OTQxLDYwIDAuMjI0NTgwNjg4LDQ2LjU2ODU0MzMgMC4yMjQ1ODA2ODgsMzAgWiBNMC4yMjQ1ODA2ODgsMzAiIGZpbGw9IiNGRkZGRkYiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCiAgICA8cGF0aCBkPSJNMzUuMDM4NDMyNCwzMS42Mzg0MDA2IEw0Ny4yMTMxMTQ4LDQwLjU3NjQyNjQgTDQ3LjIxMzExNDgsMjAgTDM1LjAzODQzMjQsMzEuNjM4NDAwNiBaIE0xMy43NzA0OTE4LDIwIEwxMy43NzA0OTE4LDQwLjU3NjQyNjQgTDI1Ljk0NDkxMjksMzEuNjM3MTQ5MSBMMTMuNzcwNDkxOCwyMCBaIE0zMC40OTE4MDMzLDM1Ljk4NDQ4OTEgTDI3LjU4NTEwMzcsMzMuMjA2NTIxNyBMMTMuNzcwNDkxOCw0MiBMNDcuMjEzMTE0OCw0MiBMMzMuMzk4MTc2MiwzMy4yMDY1MjE3IEwzMC40OTE4MDMzLDM1Ljk4NDQ4OTEgWiBNNDYuMjA5ODM2MSwyMCBMMTQuNzczNzcwNSwyMCBMMzAuNDkxODAzMywzMi40NTQ5MzA0IEw0Ni4yMDk4MzYxLDIwIFogTTQ2LjIwOTgzNjEsMjAiIGlkPSJTaGFwZSIgZmlsbD0iIzMzMzMzMyIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik01OS4zMjYyNTc5LDMwIEM1OS4zMjYyNTc5LDQ2LjU2ODU0MzMgNDYuMDk1ODk3Niw2MCAyOS43NzU0MTkzLDYwIEMyMy43MjI1NDA1LDYwIDE4LjA5NDcwNTEsNTguMTUyNTEzNCAxMy40MDkzMjQ0LDU0Ljk4Mjc3NTQgTDQ3LjI2OTU0NTgsNS44MTk0MTEwMyBDNTQuNTgxNDQzOCwxMS4yODA2NTAzIDU5LjMyNjI1NzksMjAuMDc3Nzk3MyA1OS4zMjYyNTc5LDMwIFogTTU5LjMyNjI1NzksMzAiIGlkPSJyZWZsZWMiIGZpbGwtb3BhY2l0eT0iMC4wOCIgZmlsbD0iIzAwMDAwMCIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KPC9zdmc+); }\n  &.facebook      { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPg0KICAgIDxwYXRoIGQ9Ik0wLjExMjI5MDM0NCwzMCBDMC4xMTIyOTAzNDQsMTMuNDMxNDU2NyAxMy4zNDI2NTA2LDAgMjkuNjYzMTI5LDAgQzQ1Ljk4MzYwNzMsMCA1OS4yMTM5Njc2LDEzLjQzMTQ1NjcgNTkuMjEzOTY3NiwzMCBDNTkuMjEzOTY3Niw0Ni41Njg1NDMzIDQ1Ljk4MzYwNzMsNjAgMjkuNjYzMTI5LDYwIEMxMy4zNDI2NTA2LDYwIDAuMTEyMjkwMzQ0LDQ2LjU2ODU0MzMgMC4xMTIyOTAzNDQsMzAgWiBNMC4xMTIyOTAzNDQsMzAiIGZpbGw9IiMzQjU5OTgiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCgk8cGF0aCBkPSJNMzIuMTM0MTQ1Nyw0Ni4zMTk2NzI5IEwzMi4xMzQxNDU3LDI5Ljk5ODA4OTEgTDM2LjU2NTc1NjUsMjkuOTk4MDg5MSBMMzcuMTUzMDQwNiwyNC4zNzM1ODA5IEwzMi4xMzQxNDU3LDI0LjM3MzU4MDkgTDMyLjE0MTY3NSwyMS41NTg0NjA0IEMzMi4xNDE2NzUsMjAuMDkxNTAyIDMyLjI3ODc3MDcsMTkuMzA1NDcyMiAzNC4zNTEyMDYsMTkuMzA1NDcyMiBMMzcuMTIxNjY4NiwxOS4zMDU0NzIyIEwzNy4xMjE2Njg2LDEzLjY4MDMyNzEgTDMyLjY4OTQzMDQsMTMuNjgwMzI3MSBDMjcuMzY1NTk5NSwxMy42ODAzMjcxIDI1LjQ5MTc0OSwxNi40MDg4MTg3IDI1LjQ5MTc0OSwyMC45OTcyODM1IEwyNS40OTE3NDksMjQuMzc0MjE3OSBMMjIuMTczMjE3MywyNC4zNzQyMTc5IEwyMi4xNzMyMTczLDI5Ljk5ODcyNiBMMjUuNDkxNzQ5LDI5Ljk5ODcyNiBMMjUuNDkxNzQ5LDQ2LjMxOTY3MjkgTDMyLjEzNDE0NTcsNDYuMzE5NjcyOSBaIE0zMi4xMzQxNDU3LDQ2LjMxOTY3MjkiIGlkPSJQYXRoIiBmaWxsPSIjRkZGRkZGIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+DQoJPHBhdGggZD0iTTU5LjIxMzk2NzYsMzAgQzU5LjIxMzk2NzYsNDYuNTY4NTQzMyA0NS45ODM2MDczLDYwIDI5LjY2MzEyOSw2MCBDMjMuNjEwMjUwMiw2MCAxNy45ODI0MTQ3LDU4LjE1MjUxMzQgMTMuMjk3MDM0MSw1NC45ODI3NzU0IEw0Ny4xNTcyNTU0LDUuODE5NDExMDMgQzU0LjQ2OTE1MzQsMTEuMjgwNjUwMyA1OS4yMTM5Njc2LDIwLjA3Nzc5NzMgNTkuMjEzOTY3NiwzMCBaIE01OS4yMTM5Njc2LDMwIiBpZD0icmVmbGVjIiBmaWxsLW9wYWNpdHk9IjAuMDgiIGZpbGw9IiMwMDAwMDAiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCjwvc3ZnPg==); }\n  &.flickr        { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPg0KICAgIDxwYXRoIGQ9Ik0wLjMzNjg3MTAzMiwyOS41MDgxOTY3IEMwLjMzNjg3MTAzMiwxMy4yMTEyNjg5IDEzLjU2NzIzMTMsMCAyOS44ODc3MDk3LDAgQzQ2LjIwODE4OCwwIDU5LjQzODU0ODMsMTMuMjExMjY4OSA1OS40Mzg1NDgzLDI5LjUwODE5NjcgQzU5LjQzODU0ODMsNDUuODA1MTI0NiA0Ni4yMDgxODgsNTkuMDE2MzkzNCAyOS44ODc3MDk3LDU5LjAxNjM5MzQgQzEzLjU2NzIzMTMsNTkuMDE2MzkzNCAwLjMzNjg3MTAzMiw0NS44MDUxMjQ2IDAuMzM2ODcxMDMyLDI5LjUwODE5NjcgWiBNMC4zMzY4NzEwMzIsMjkuNTA4MTk2NyIgZmlsbD0iI0ZGMDA4NCIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik0yMi40OTk5NzM1LDIzLjYwNjU1NzQgQzE4Ljk2Mzc2MzUsMjMuNjA2NTU3NCAxNi4wOTczMTgzLDI2LjQ2ODgwMTcgMTYuMDk3MzE4MywyOS45OTk5NDcyIEMxNi4wOTczMTgzLDMzLjUzMTE0NTUgMTguOTYzNzYzNSwzNi4zOTMzODk4IDIyLjQ5OTk3MzUsMzYuMzkzNDQyNiBDMjYuMDM2MjM2NSwzNi4zOTM0NDI2IDI4LjkwMjY4MTcsMzMuNTMxMTQ1NSAyOC45MDI2ODE3LDI5Ljk5OTk0NzIgQzI4LjkwMjY4MTcsMjYuNDY4ODAxNyAyNi4wMzYyODk0LDIzLjYwNjUwNDUgMjIuNDk5OTczNSwyMy42MDY1NTc0IFogTTIyLjQ5OTk3MzUsMjMuNjA2NTU3NCIgaWQ9IlBhdGgiIGZpbGw9IiNGRkZGRkYiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCiAgICA8cGF0aCBkPSJNMzEuODU3NzY1NiwyOS45OTk5NDcyIEMzMS44NTc3NjU2LDMzLjUzMTE0NTUgMzQuNzI0MjEwOCwzNi4zOTM0NDI2IDM4LjI2MDQyMDgsMzYuMzkzNDQyNiBDNDEuNzk2NzM2NiwzNi4zOTM0NDI2IDQ0LjY2MzEyOSwzMy41MzExNDU1IDQ0LjY2MzEyOSwyOS45OTk5NDcyIEM0NC42NjMxMjksMjYuNDY4ODU0NSA0MS43OTY2ODM3LDIzLjYwNjU1NzQgMzguMjYwNDIwOCwyMy42MDY1NTc0IEMzNC43MjQxNTc5LDIzLjYwNjU1NzQgMzEuODU3NzY1NiwyNi40Njg4NTQ1IDMxLjg1Nzc2NTYsMjkuOTk5OTQ3MiBaIE0zMy44MjY0MDAxLDMwIEMzMy44MjY0MDAxLDI3LjU1NTQ2MDggMzUuODA4MDkwNCwyNS41NzM3NzA1IDM4LjI1MjYyOTYsMjUuNTczNzcwNSBDNDAuNjk3MTY4OCwyNS41NzM3NzA1IDQyLjY3ODg1OTEsMjcuNTU1NDYwOCA0Mi42Nzg4NTkxLDMwIEM0Mi42Nzg4NTkxLDMyLjQ0NDUzOTIgNDAuNjk3MTY4OCwzNC40MjYyMjk1IDM4LjI1MjYyOTYsMzQuNDI2MjI5NSBDMzUuODA4MDkwNCwzNC40MjYyMjk1IDMzLjgyNjQwMDEsMzIuNDQ0NTM5MiAzMy44MjY0MDAxLDMwIFogTTMzLjgyNjQwMDEsMzAiIGlkPSJQYXRoIiBmaWxsPSIjRkZGRkZGIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+DQogICAgPHBhdGggZD0iTTU5LjIxMzk2NzYsMjkuNjg1ODI1MiBDNTkuMjEzOTY3Niw0NS45ODI3NTMxIDQ1Ljk4MzYwNzMsNTkuMTk0MDIxOSAyOS42NjMxMjksNTkuMTk0MDIxOSBDMjMuNjEwMjUwMiw1OS4xOTQwMjE5IDE3Ljk4MjQxNDcsNTcuMzc2ODIyIDEzLjI5NzAzNDEsNTQuMjU5MDQ2OSBMNDcuMTU3MjU1NCw1LjkwMTYzOTM0IEM1NC40NjkxNTM0LDExLjI3MzM1MDEgNTkuMjEzOTY3NiwxOS45MjYyODE2IDU5LjIxMzk2NzYsMjkuNjg1ODI1MiBaIE01OS4yMTM5Njc2LDI5LjY4NTgyNTIiIGlkPSJyZWZsZWMiIGZpbGwtb3BhY2l0eT0iMC4wOCIgZmlsbD0iIzAwMDAwMCIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KPC9zdmc+); }\n  &.github        { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPg0KICAgIDxwYXRoIGQ9Ik0wLjMzNjg3MTAzMiwzMCBDMC4zMzY4NzEwMzIsMTMuNDMxNDU2NyAxMy41NjcyMzEzLDAgMjkuODg3NzA5NywwIEM0Ni4yMDgxODgsMCA1OS40Mzg1NDgzLDEzLjQzMTQ1NjcgNTkuNDM4NTQ4MywzMCBDNTkuNDM4NTQ4Myw0Ni41Njg1NDMzIDQ2LjIwODE4OCw2MCAyOS44ODc3MDk3LDYwIEMxMy41NjcyMzEzLDYwIDAuMzM2ODcxMDMyLDQ2LjU2ODU0MzMgMC4zMzY4NzEwMzIsMzAgWiBNMC4zMzY4NzEwMzIsMzAiIGlkPSJHaXRodWIiIGZpbGw9IiMzMzMzMzMiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCiAgICA8cGF0aCBkPSJNMTguMjE4NDI0NSwzMS45MzU1NTY2IEMxOS42MDY4NTA2LDM0LjQ1MDc5MDIgMjIuMjg0NTI5NSwzNi4wMTU2NzY0IDI2LjgwMDcyODcsMzYuNDQ4NTE3MyBDMjYuMTU2MTAyMywzNi45MzY1MzM1IDI1LjM4MTc4NzcsMzcuODYzMDk4NCAyNS4yNzQ5ODU3LDM4LjkzNDI2MDcgQzI0LjQ2NDQzNDgsMzkuNDU3NDc0OSAyMi44MzQ3NTA2LDM5LjYyOTY2IDIxLjU2NzQzMDMsMzkuMjMxMDY1OSBDMTkuNzkxODQ2OSwzOC42NzE3MDIzIDE5LjExMTkzNzcsMzUuMTY0MjY0MiAxNi40NTMzMzA2LDM1LjY2MzY5NTkgQzE1Ljg3NzM2MjYsMzUuNzcyMTQ0IDE1Ljk5MTc5MzMsMzYuMTUwNzYwOSAxNi40ODk1NjcsMzYuNDcyMjk5OCBDMTcuMzAwMTE3OSwzNi45OTU1MTQxIDE4LjA2Mjk4OTQsMzcuNjUwMDA3NSAxOC42NTEzNTQxLDM5LjA0MzY2IEMxOS4xMDMzNTU0LDQwLjExMzg3MSAyMC4wNTMxMzA0LDQyLjAyNTk4MTMgMjMuMDU2OTM2OSw0Mi4wMjU5ODEzIEMyNC4yNDg5MjM2LDQyLjAyNTk4MTMgMjUuMDg0MjY3OSw0MS44ODMyODY1IDI1LjA4NDI2NzksNDEuODgzMjg2NSBDMjUuMDg0MjY3OSw0MS44ODMyODY1IDI1LjEwNzE1NCw0NC42MTQ0NjQ5IDI1LjEwNzE1NCw0NS42NzYxMTQyIEMyNS4xMDcxNTQsNDYuOTAwNDM1NSAyMy40NTA3NjkzLDQ3LjI0NTc1NjkgMjMuNDUwNzY5Myw0Ny44MzQ2MTA4IEMyMy40NTA3NjkzLDQ4LjA2NzY3OSAyMy45OTkwODMyLDQ4LjA4OTU1ODggMjQuNDM5NjQxNSw0OC4wODk1NTg4IEMyNS4zMTAyNjg1LDQ4LjA4OTU1ODggMjcuMTIyMDg4Myw0Ny4zNjQ2NjkzIDI3LjEyMjA4ODMsNDYuMDkxODMxNyBDMjcuMTIyMDg4Myw0NS4wODA2MDEyIDI3LjEzODI5OTMsNDEuNjgwNjU5OSAyNy4xMzgyOTkzLDQxLjA4NjA5ODIgQzI3LjEzODI5OTMsMzkuNzg1NjczIDI3LjgzNzI4MDMsMzkuMzczNzYwNyAyNy44MzcyODAzLDM5LjM3Mzc2MDcgQzI3LjgzNzI4MDMsMzkuMzczNzYwNyAyNy45MjQwNTcsNDYuMzE1Mzg2OSAyNy42NzA0MDIyLDQ3LjI0NTc1NjkgQzI3LjM3Mjg4MjMsNDguMzM5NzUwNCAyNi44MzYwMTE1LDQ4LjE4NDY4ODcgMjYuODM2MDExNSw0OC42NzI3MDQ5IEMyNi44MzYwMTE1LDQ5LjM5ODU0NTggMjkuMDE2ODcwNCw0OC44NTA1OTc4IDI5LjczOTY5MTEsNDcuMjU3MTcyNSBDMzAuMjk4NDk0NSw0Ni4wMTY2NzkxIDMwLjA1NDM3NTYsMzkuMjA3MjgzNCAzMC4wNTQzNzU2LDM5LjIwNzI4MzQgTDMwLjY1MDM2OSwzOS4xOTQ5MTY1IEMzMC42NTAzNjksMzkuMTk0OTE2NSAzMC42ODM3NDQ2LDQyLjMxMjMyMjIgMzAuNjYzNzE5Miw0My43MzczNjc1IEMzMC42NDI3NDAyLDQ1LjIxMjgzMTcgMzAuNTQyNjEzNCw0Ny4wNzkyNzk3IDMxLjQyMDg2OTIsNDcuOTU5MjMwOSBDMzEuOTk3NzkwNyw0OC41Mzc2MjA1IDMzLjg2ODczMyw0OS41NTI2NTYyIDMzLjg2ODczMyw0OC42MjUxNCBDMzMuODY4NzMzLDQ4LjA4NTc1MzYgMzIuODQzNjI0NSw0Ny42NDI0NDg1IDMyLjg0MzYyNDUsNDYuMTgzMTU2NCBMMzIuODQzNjI0NSwzOS40Njg4OTA1IEMzMy42NjE4MDQyLDM5LjQ2ODg5MDUgMzMuNTM4NzkxMSw0MS42NzY4NTQ3IDMzLjUzODc5MTEsNDEuNjc2ODU0NyBMMzMuNTk4ODY3Myw0NS43Nzg4NTQ0IEMzMy41OTg4NjczLDQ1Ljc3ODg1NDQgMzMuNDE4NjM4OSw0Ny4yNzMzNDQ2IDM1LjIxOTAxNTYsNDcuODk5Mjk5MSBDMzUuODU0MTA2MSw0OC4xMjA5NTE3IDM3LjIxMzkyNDUsNDguMTgwODgzNSAzNy4yNzc4MTUsNDcuODA4OTI1NyBDMzcuMzQxNzA1NSw0Ny40MzYwMTY3IDM1LjY0MDUwMjEsNDYuODgxNDA5NiAzNS42MjUyNDQ2LDQ1LjcyMzY3OTEgQzM1LjYxNTcwODgsNDUuMDE3ODE1NSAzNS42NTY3MTMxLDQ0LjYwNTkwMzIgMzUuNjU2NzEzMSw0MS41Mzc5NjUxIEMzNS42NTY3MTMxLDM4LjQ3MDAyNyAzNS4yNDM4MDg5LDM3LjMzNjA3OSAzMy44MDQ4NDI2LDM2LjQzMjM0NTMgQzM4LjI0NTcwODIsMzUuOTc2NjczMiA0MC45OTM5NTI3LDM0Ljg4MDY4MiA0Mi4zMzM3NDU4LDMxLjk0NTA2OTUgQzQyLjQzODM2MTksMzEuOTQ4NDk2NiA0Mi44NzkxNDkxLDMwLjU3Mzc3NDIgNDIuODIxOTgzNSwzMC41NzQyNDgyIEM0My4xMjIzNjQyLDI5LjQ2NTk4NTMgNDMuMjg0NDc0NCwyOC4xNTUwOTU3IDQzLjMxNjg5NjQsMjYuNjAyNTc2NCBDNDMuMzA5MjY3NywyMi4zOTMwNzk5IDQxLjI4OTU2NTQsMjAuOTA0Mjk3NSA0MC45MDE0NTQ2LDIwLjIwNTA5MyBDNDEuNDczNjA4MiwxNy4wMTgyNDI1IDQwLjgwNjA5NTYsMTUuNTY3NTEyMSA0MC40OTYxNzkxLDE1LjA2OTk4MjkgQzM5LjM1MTg3MTksMTQuNjYzNzc4NCAzNi41MTQ5NDM1LDE2LjExNDUwODggMzQuOTY1MzYwOCwxNy4xMzcxNTQ4IEMzMi40MzgzNDksMTYuMzk5ODk4NCAyNy4wOTgyNDg2LDE2LjQ3MTI0NTggMjUuMDk1NzEwOSwxNy4zMjc0MTQ2IEMyMS40MDA1NTIyLDE0LjY4NzU2MDggMTkuNDQ1Njk0LDE1LjA5MTg2MjggMTkuNDQ1Njk0LDE1LjA5MTg2MjggQzE5LjQ0NTY5NCwxNS4wOTE4NjI4IDE4LjE4MjE4ODEsMTcuMzUxMTk3IDE5LjExMTkzNzcsMjAuNjU2OTU5OCBDMTcuODk2MTExMywyMi4yMDI4MjAxIDE2Ljk5MDIwMTQsMjMuMjk2ODEzNiAxNi45OTAyMDE0LDI2LjE5NjM3MTggQzE2Ljk5MDIwMTQsMjcuODI5NzUxNiAxNy4xODI4MjY0LDI5LjI5MTg5NzYgMTcuNjE3NjYzMiwzMC41Njg1NDA0IEMxNy41NjQzNTc3LDMwLjU2ODQwOTMgMTguMjAwODQ5MywzMS45MzU5Nzc3IDE4LjIxODQyNDUsMzEuOTM1NTU2NiBaIE0xOC4yMTg0MjQ1LDMxLjkzNTU1NjYiIGlkPSJQYXRoIiBmaWxsPSIjRkZGRkZGIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+DQogICAgPHBhdGggZD0iTTU5LjQzODU0ODMsMzAgQzU5LjQzODU0ODMsNDYuNTY4NTQzMyA0Ni4yMDgxODgsNjAgMjkuODg3NzA5Nyw2MCBDMjMuODM0ODMwOCw2MCAxOC4yMDY5OTU0LDU4LjE1MjUxMzQgMTMuNTIxNjE0OCw1NC45ODI3NzU0IEw0Ny4zODE4MzYxLDUuODE5NDExMDMgQzU0LjY5MzczNDEsMTEuMjgwNjUwMyA1OS40Mzg1NDgzLDIwLjA3Nzc5NzMgNTkuNDM4NTQ4MywzMCBaIE01OS40Mzg1NDgzLDMwIiBpZD0icmVmbGVjIiBmaWxsLW9wYWNpdHk9IjAuMDgiIGZpbGw9IiMwMDAwMDAiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCjwvc3ZnPg==); }\n  &.instagram     { background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjQwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAwIDYwIDYwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj4KICAgIDx0aXRsZT5JbnN0YWdyYW08L3RpdGxlPgogICAgPGRlc2NyaXB0aW9uPkNyZWF0ZWQgd2l0aCBTa2V0Y2ggKGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCk8L2Rlc2NyaXB0aW9uPgogICAgPGRlZnM+PC9kZWZzPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc2tldGNoOnR5cGU9Ik1TUGFnZSI+CiAgICAgICAgPGcgaWQ9Ikluc3RhZ3JhbSIgc2tldGNoOnR5cGU9Ik1TQXJ0Ym9hcmRHcm91cCI+CiAgICAgICAgICAgIDxnIHNrZXRjaDp0eXBlPSJNU0xheWVyR3JvdXAiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTAuNzg2MDMyNDA4LDMwIEMwLjc4NjAzMjQwOCwxMy40MzE0NTY3IDE0LjAxNjM5MjcsMCAzMC4zMzY4NzEsMCBDNDYuNjU3MzQ5NCwwIDU5Ljg4NzcwOTcsMTMuNDMxNDU2NyA1OS44ODc3MDk3LDMwIEM1OS44ODc3MDk3LDQ2LjU2ODU0MzMgNDYuNjU3MzQ5NCw2MCAzMC4zMzY4NzEsNjAgQzE0LjAxNjM5MjcsNjAgMC43ODYwMzI0MDgsNDYuNTY4NTQzMyAwLjc4NjAzMjQwOCwzMCBaIE0wLjc4NjAzMjQwOCwzMCIgZmlsbD0iIzUxN0ZBNCIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTQyLjgyNjkyMzEsNDUuMTcxNzkxNyBDNDQuMDU0MTA5Myw0NC45MDczNzc3IDQ1LjA1Njg4MzQsNDMuODY4MDE2OSA0NS4yOTY3NDI2LDQyLjYxNDc3MjcgQzQ1LjMyMjQ4NzcsNDIuNDc5Mjk4NiA0NS4zNDEzNjc1LDQyLjM0MTY0NjQgNDUuMzYzMjUwOSw0Mi4yMDU3MzY3IEw0NS4zNjMyNTA5LDE3Ljc5NDI2MzMgQzQ1LjM0MjIyNTcsMTcuNjYwNTMxNiA0NS4zMjQyMDQxLDE3LjUyNjM2NDMgNDUuMjk4NDU4OSwxNy4zOTMwNjgzIEM0NS4wMzU0MjkxLDE2LjAyNTY5NDcgNDMuOTI0NTI1MywxNC45NjQ1NTM2IDQyLjU2MDQ2MDYsMTQuNzc1MDY0MSBDNDIuNTAzODIxMywxNC43Njc2NTg4IDQyLjQ0ODQ2OTIsMTQuNzU1MDI2MSA0Mi4zOTI2ODgsMTQuNzQ1MDA3MSBMMTguMjgxMDU0MSwxNC43NDUwMDcxIEMxOC4xMzU1OTM5LDE0Ljc3MTU3OTIgMTcuOTg5Mjc1NSwxNC43OTE2MTcyIDE3Ljg0NTk2MDgsMTQuODI0NzIzNCBDMTYuNTE0NTA2NywxNS4xMzI2OTgzIDE1LjUyOTMyNTEsMTYuMjIxMjgyNyAxNS4zMzk2NjksMTcuNTkwODM0MyBDMTUuMzMxOTQ1NSwxNy42NDc4OTkgMTUuMzIwMzYwMSwxNy43MDQ1MjggMTUuMzEwNDkxMiwxNy43NjE1OTI3IEwxNS4zMTA0OTEyLDQyLjIzOTcxNDEgQzE1LjMzNzk1MjcsNDIuMzk0NzkwNiAxNS4zNTk4MzYxLDQyLjU1MTE3MzkgMTUuMzk0MTYzLDQyLjcwNTM3OTEgQzE1LjY4ODUxNiw0NC4wMjcwMTM5IDE2Ljc5OTg0ODksNDUuMDUxNTYzOSAxOC4xMjE4NjMxLDQ1LjIyNDA2NDcgQzE4LjE4NTc5Nyw0NS4yMzE5MDU2IDE4LjI1MDE1OTksNDUuMjQ0NTM4MyAxOC4zMTQwOTM3LDQ1LjI1NDk5MjkgTDQyLjM1OTY0ODQsNDUuMjU0OTkyOSBDNDIuNTE1ODM1Nyw0NS4yMjc5ODUyIDQyLjY3MjQ1MjEsNDUuMjA1NzY5MiA0Mi44MjY5MjMxLDQ1LjE3MTc5MTcgWiBNMTguNTYxNjc2NCwyNy4xOTgxNjkyIEMxOC41NjE2NzY0LDMxLjcxMzI0NjMgMTguNTYxMjQ3MywzNi4yMjgzMjM1IDE4LjU2MjEwNTUsNDAuNzQzNDAwNiBDMTguNTYyMTA1NSw0MS4zOTI4OTIyIDE5LjExNjA1NTYsNDEuOTUxMzQxNiAxOS43NTU4MjI5LDQxLjk1MTM0MTYgQzI2LjgwODI4MTcsNDEuOTUxNzc3MiAzMy44NjAzMTE0LDQxLjk1MTc3NzIgNDAuOTEyNzcwMSw0MS45NTEzNDE2IEM0MS41NTg1NDQ3LDQxLjk1MTM0MTYgNDIuMTA5NDkxMiw0MS4zOTM3NjM0IDQyLjEwOTQ5MTIsNDAuNzM5NDgwMSBDNDIuMTA5OTIwMywzNi4yMjk2MzAzIDQyLjEwOTQ5MTIsMzEuNzIwMjE2MSA0Mi4xMDk0OTEyLDI3LjIxMDgwMTggTDQyLjEwOTQ5MTIsMjcuMTE3MTQ2MSBMMzkuMjQwNjIxNywyNy4xMTcxNDYxIEMzOS42NDU2Nzg5LDI4LjQzMTM3NTUgMzkuNzcwMTEzOSwyOS43NjgyNTY1IDM5LjYxMTM1MiwzMS4xMzA4Mzg0IEMzOS40NTE3MzIsMzIuNDkzODU1OSAzOS4wMTkyMTMzLDMzLjc2MjM0NjUgMzguMzE0NjUzOSwzNC45MzM2OTY0IEMzNy42MDk2NjU1LDM2LjEwNjM1MzIgMzYuNjk1NzEyMSwzNy4wNzc3NTkxIDM1LjU3NjY1NTcsMzcuODUwOTYzMyBDMzIuNjc2MDMzOCwzOS44NTY1MDI3IDI4Ljg1NzE2NzcsNDAuMDMyOTIzOSAyNS43NzkzMzMzLDM4LjI3OTE2NiBDMjQuMjIzNDY3MiwzNy4zOTM1NzQ5IDIzLjAwMTg1OTEsMzYuMTU4NjI2MiAyMi4xNTAxMjMyLDM0LjU2NzM1MDEgQzIwLjg3OTU5OTQsMzIuMTkyODUwOCAyMC42NzY2NDE2LDI5LjcwMDczNzMgMjEuNDIxOTY0MiwyNy4xMTQ5NjgxIEMyMC40NzAyNTEyLDI3LjExNTgzOTMgMTkuNTIyNDAwMSwyNy4xMTU4MzkzIDE4LjU2MTY3NjQsMjcuMTE1ODM5MyBMMTguNTYxNjc2NCwyNy4xOTgxNjkyIFogTTI0LjI0NzQ5NiwyOS45MDYzNDQzIEMyNC4xOTk0MzgzLDMzLjM2NTUwNzYgMjYuOTI3MTM4NSwzNi4xMDc2NiAzMC4xOTcyMDM1LDM2LjE3OTA5OTggQzMzLjU5OTg1NjEsMzYuMjUzMTUzMSAzNi4zNTIwMTQyLDMzLjQ5MzE0MDcgMzYuNDIzNjcxNiwzMC4xMzYzNDUzIEMzNi40OTcwNDUzLDI2LjY3NDU2ODQgMzMuNzQ2NjAzNSwyMy44MTUyMzczIDMwLjMzNzA4NTYsMjMuODE3NDE1NCBDMjcuMDAzOTQ0OSwyMy44MTUyMzczIDI0LjI5NDI2NjQsMjYuNTM3Nzg3NSAyNC4yNDc0OTYsMjkuOTA2MzQ0MyBaIE00MC45NTQzOTE1LDIyLjU2OTgzNCBDNDEuNTkwNzI2MSwyMi41NTM3MTY1IDQyLjEwOTA2MjEsMjIuMDAwMDU4NyA0Mi4xMDkwNjIxLDIxLjM1MzE4MDggQzQyLjEwOTQ5MTIsMjAuMzkwMDUxNSA0Mi4xMDk0OTEyLDE5LjQyNjQ4NjUgNDIuMTA5MDYyMSwxOC40NjMzNTcyIEM0Mi4xMDkwNjIxLDE3Ljc3MjQ4MjkgNDEuNTcwNTU5MSwxNy4yMjI3NDU2IDQwLjg5MDg4NjcsMTcuMjIyMzA5OSBDMzkuOTQ0NzUxOSwxNy4yMjE4NzQzIDM4Ljk5ODYxNzEsMTcuMjIxNDM4NyAzOC4wNTIwNTMyLDE3LjIyMjMwOTkgQzM3LjM3NDA5NzIsMTcuMjIzMTgxMiAzNi44MzM4Nzc5LDE3Ljc3NDIyNTMgMzYuODMzNDQ4OCwxOC40NjUwOTk2IEMzNi44MzMwMTk3LDE5LjQxOTk1MjQgMzYuODMwNDQ1MiwyMC4zNzQ4MDUyIDM2LjgzNjg4MTUsMjEuMzMwMDkzNiBDMzYuODM3NzM5NiwyMS40NzI1Mzc0IDM2Ljg2NDM0MywyMS42MjA2NDQxIDM2LjkwODk2NzksMjEuNzU1NjgyNiBDMzcuMDc4ODg2LDIyLjI2NDAzNzIgMzcuNTM3NTc5LDIyLjU3NTkzMjUgMzguMDk5MjUyNywyMi41Nzg1NDYyIEMzOC41NTU4MDAzLDIyLjU3OTQxNzQgMzkuMDEyMzQ3OSwyMi41NzgxMTA2IDM5LjQ2OTMyNDUsMjIuNTc4MTEwNiBDMzkuOTYzNjMxNywyMi41NzI0NDc3IDQwLjQ1OTY1NTIsMjIuNTgyMDMxIDQwLjk1NDM5MTUsMjIuNTY5ODM0IFogTTQwLjk1NDM5MTUsMjIuNTY5ODM0IiBpZD0iUGF0aCIgZmlsbD0iI0ZGRkZGRiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTU5Ljg4NzcwOTcsMzAgQzU5Ljg4NzcwOTcsNDYuNTY4NTQzMyA0Ni42NTczNDk0LDYwIDMwLjMzNjg3MSw2MCBDMjQuMjgzOTkyMiw2MCAxOC42NTYxNTY4LDU4LjE1MjUxMzQgMTMuOTcwNzc2MSw1NC45ODI3NzU0IEw0Ny44MzA5OTc1LDUuODE5NDExMDMgQzU1LjE0Mjg5NTUsMTEuMjgwNjUwMyA1OS44ODc3MDk3LDIwLjA3Nzc5NzMgNTkuODg3NzA5NywzMCBaIE01OS44ODc3MDk3LDMwIiBpZD0icmVmbGVjIiBmaWxsLW9wYWNpdHk9IjAuMDgiIGZpbGw9IiMwMDAwMDAiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+); }\n  &.linkedin      { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPg0KICAgIDxwYXRoIGQ9Ik0wLjQ0OTE2MTM3NiwzMCBDMC40NDkxNjEzNzYsMTMuNDMxNDU2NyAxMy42Nzk1MjE3LDAgMzAsMCBDNDYuMzIwNDc4MywwIDU5LjU1MDgzODYsMTMuNDMxNDU2NyA1OS41NTA4Mzg2LDMwIEM1OS41NTA4Mzg2LDQ2LjU2ODU0MzMgNDYuMzIwNDc4Myw2MCAzMCw2MCBDMTMuNjc5NTIxNyw2MCAwLjQ0OTE2MTM3Niw0Ni41Njg1NDMzIDAuNDQ5MTYxMzc2LDMwIFogTTAuNDQ5MTYxMzc2LDMwIiBmaWxsPSIjMDA3QkI2IiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+DQogICAgPHBhdGggZD0iTTIyLjQ2ODAzOTIsMjMuNzA5ODE0NCBMMTUuNzgwODM2NiwyMy43MDk4MTQ0IEwxNS43ODA4MzY2LDQ0LjEzNjk1MzcgTDIyLjQ2ODAzOTIsNDQuMTM2OTUzNyBMMjIuNDY4MDM5MiwyMy43MDk4MTQ0IFogTTIyLjQ2ODAzOTIsMjMuNzA5ODE0NCIgaWQ9IlBhdGgiIGZpbGw9IiNGRkZGRkYiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCiAgICA8cGF0aCBkPSJNMjIuOTA4NDc1MywxNy4zOTA4NzYxIEMyMi44NjUwNzI3LDE1LjM4ODAwODEgMjEuNDU2MjkxNywxMy44NjI1MDQgMTkuMTY4NjQxOCwxMy44NjI1MDQgQzE2Ljg4MDk5MTgsMTMuODYyNTA0IDE1LjM4NTQwNTcsMTUuMzg4MDA4MSAxNS4zODU0MDU3LDE3LjM5MDg3NjEgQzE1LjM4NTQwNTcsMTkuMzUyMjU3OSAxNi44MzY3ODgsMjAuOTIxNjg4NiAxOS4wODE4MzY2LDIwLjkyMTY4ODYgTDE5LjEyNDU3MTQsMjAuOTIxNjg4NiBDMjEuNDU2MjkxNywyMC45MjE2ODg2IDIyLjkwODQ3NTMsMTkuMzUyMjU3OSAyMi45MDg0NzUzLDE3LjM5MDg3NjEgWiBNMjIuOTA4NDc1MywxNy4zOTA4NzYxIiBpZD0iUGF0aCIgZmlsbD0iI0ZGRkZGRiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik00Ni41ODQ2NTAyLDMyLjQyNDY1NjMgQzQ2LjU4NDY1MDIsMjYuMTUwMzIyNiA0My4yODU2NTM0LDIzLjIzMDE0NTYgMzguODg1MTY1OCwyMy4yMzAxNDU2IEMzNS4zMzQ3MDExLDIzLjIzMDE0NTYgMzMuNzQ1MDk4MywyNS4yMTI4MTI4IDMyLjg1NzU0ODksMjYuNjAzNjg5NiBMMzIuODU3NTQ4OSwyMy43MTAzNTY3IEwyNi4xNjk1NDQ5LDIzLjcxMDM1NjcgQzI2LjI1NzY4NTYsMjUuNjI3MTMzOCAyNi4xNjk1NDQ5LDQ0LjEzNzQ5NiAyNi4xNjk1NDQ5LDQ0LjEzNzQ5NiBMMzIuODU3NTQ4OSw0NC4xMzc0OTYgTDMyLjg1NzU0ODksMzIuNzI5Mjk2MSBDMzIuODU3NTQ4OSwzMi4xMTg3OTYzIDMyLjkwMDk1MTQsMzEuNTA5Nzg3NyAzMy4wNzc3NjY5LDMxLjA3MjY4OTggQzMzLjU2MTA3MTMsMjkuODUzMDQ1OCAzNC42NjE0OTM3LDI4LjU5MDI4ODUgMzYuNTA4OTc0NywyOC41OTAyODg1IEMzOC45Mjk3NzAzLDI4LjU5MDI4ODUgMzkuODk3NDQ3NiwzMC40NjM0MTAxIDM5Ljg5NzQ0NzYsMzMuMjA4NDIyNiBMMzkuODk3NDQ3Niw0NC4xMzY5NTM3IEw0Ni41ODQzODMyLDQ0LjEzNjk1MzcgTDQ2LjU4NDY1MDIsMzIuNDI0NjU2MyBaIE00Ni41ODQ2NTAyLDMyLjQyNDY1NjMiIGlkPSJQYXRoIiBmaWxsPSIjRkZGRkZGIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+DQogICAgPHBhdGggZD0iTTU5LjU1MDgzODYsMzAgQzU5LjU1MDgzODYsNDYuNTY4NTQzMyA0Ni4zMjA0NzgzLDYwIDMwLDYwIEMyMy45NDcxMjEyLDYwIDE4LjMxOTI4NTgsNTguMTUyNTEzNCAxMy42MzM5MDUxLDU0Ljk4Mjc3NTQgTDQ3LjQ5NDEyNjQsNS44MTk0MTEwMyBDNTQuODA2MDI0NSwxMS4yODA2NTAzIDU5LjU1MDgzODYsMjAuMDc3Nzk3MyA1OS41NTA4Mzg2LDMwIFogTTU5LjU1MDgzODYsMzAiIGlkPSJyZWZsZWMiIGZpbGwtb3BhY2l0eT0iMC4wOCIgZmlsbD0iIzAwMDAwMCIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KPC9zdmc+); }\n  &.pinterest     { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPg0KICAgIDxwYXRoIGQ9Ik0wLjg4MzgzMzY3NSwzMCBDMC44ODM4MzM2NzUsMTMuNDMxNDU2NyAxMy45MDA4MDExLDAgMjkuOTU4MDQ1OSwwIEM0Ni4wMTUyOTA3LDAgNTkuMDMyMjU4MSwxMy40MzE0NTY3IDU5LjAzMjI1ODEsMzAgQzU5LjAzMjI1ODEsNDYuNTY4NTQzMyA0Ni4wMTUyOTA3LDYwIDI5Ljk1ODA0NTksNjAgQzEzLjkwMDgwMTEsNjAgMC44ODM4MzM2NzUsNDYuNTY4NTQzMyAwLjg4MzgzMzY3NSwzMCBaIE0wLjg4MzgzMzY3NSwzMCIgZmlsbD0iI0NCMjAyNyIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik0xNy41ODY5MTY1LDI1LjY1NjQ4OTQgQzE3LjU4NjkxNjUsMjguOTU5MDYxOCAxOC43OTg2ODUxLDMxLjg5NzE2OTggMjEuMzk3Njk0MSwzMi45OTIwNTU5IEMyMS44MjM4Njk2LDMzLjE3MTgzNTYgMjIuMjA1NjA4NywzMi45OTgyNDA1IDIyLjMyOTIwMzcsMzIuNTExMzYzOCBDMjIuNDE1MTgyOSwzMi4xNzQ0MTAxIDIyLjYxODU1NjYsMzEuMzI0MzQ4NSAyMi43MDkyODk0LDMwLjk3MDMzMzkgQzIyLjgzMzkxNzksMzAuNDg4Nzg4OCAyMi43ODU1NTQ2LDMwLjMxOTg4NTQgMjIuNDQxNjM4LDI5LjkwMDE4NjIgQzIxLjY5MjIxNCwyOC45ODgwNjU0IDIxLjIxMzMzNSwyNy44MDcyMzQ4IDIxLjIxMzMzNSwyNi4xMzQ2MjI0IEMyMS4yMTMzMzUsMjEuMjgyMDYzMSAyNC43MzE4NjYyLDE2LjkzNzkyIDMwLjM3NTQ4NzcsMTYuOTM3OTIgQzM1LjM3MjgxODgsMTYuOTM3OTIgMzguMTE4MzY0NCwyMC4wODg2NSAzOC4xMTgzNjQ0LDI0LjI5NjUxODggQzM4LjExODM2NDQsMjkuODMzMDA4NyAzNS43NDM4MTA2LDM0LjUwNTc4ODIgMzIuMjE4NjY1NiwzNC41MDU3ODgyIEMzMC4yNzE5NDA3LDM0LjUwNTc4ODIgMjguODE0NjM1NSwzMi44NDQ0Nzg3IDI5LjI4MTczMzcsMzAuODA2OTc1NCBDMjkuODQxMDExNSwyOC4zNzQ1MTEyIDMwLjkyNDQzMTQsMjUuNzQ5MjU4MyAzMC45MjQ0MzE0LDIzLjk5MzQ3MzggQzMwLjkyNDQzMTQsMjIuNDIxNzM0MiAzMC4xMDY4MDI4LDIxLjExMDgxMzkgMjguNDE0NzA4NCwyMS4xMTA4MTM5IEMyNi40MjQ1ODA2LDIxLjExMDgxMzkgMjQuODI1OTA1OCwyMy4yMzUxMTQ4IDI0LjgyNTkwNTgsMjYuMDgwODgwNCBDMjQuODI1OTA1OCwyNy44OTMzOTI1IDI1LjQxOTQ5MjYsMjkuMTE5MjIxNCAyNS40MTk0OTI2LDI5LjExOTIyMTQgQzI1LjQxOTQ5MjYsMjkuMTE5MjIxNCAyMy4zODI4NjE2LDM4LjAyMzExNTMgMjMuMDI1OTI0MiwzOS41ODI0ODU2IEMyMi4zMTQ5NDI4LDQyLjY4ODAwNDEgMjIuOTE5MDcwMyw0Ni40OTQ5NDA3IDIyLjk3MDEyMDQsNDYuODc5NDUxOCBDMjMuMDAwMDg5MSw0Ny4xMDcyMTU0IDIzLjI4Mzg2MTYsNDcuMTYxMzgzOSAyMy40MTI0MTcsNDYuOTg5MjgxNiBDMjMuNTk1OTQ5NCw0Ni43NDIxMTEyIDI1Ljk2NjE2MjksNDMuNzIyNzUwNCAyNi43NzIwMTA3LDQwLjcwNTczNTYgQzI2Ljk5OTk3OTUsMzkuODUxNDA4OCAyOC4wODA5MTkyLDM1LjQyNzcxOSAyOC4wODA5MTkyLDM1LjQyNzcxOSBDMjguNzI3NDE2MiwzNi43MDAyNTIzIDMwLjYxNzA5NzMsMzcuODIxMTU2NCAzMi42MjY2NTMyLDM3LjgyMTE1NjQgQzM4LjYwODgxNzYsMzcuODIxMTU2NCA0Mi42Njc0MDUyLDMyLjE5MzgxNjkgNDIuNjY3NDA1MiwyNC42NjE0MDk4IEM0Mi42Njc0MDUyLDE4Ljk2NTgyNjYgMzcuOTkyMDgyNSwxMy42NjEzNjU2IDMwLjg4NjE5NTUsMTMuNjYxMzY1NiBDMjIuMDQ0ODExMiwxMy42NjEzNjU2IDE3LjU4NjkxNjUsMjAuMjAyMTA1MyAxNy41ODY5MTY1LDI1LjY1NjQ4OTQgWiBNMTcuNTg2OTE2NSwyNS42NTY0ODk0IiBpZD0iUGF0aCIgZmlsbD0iI0ZGRkZGRiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik01OS4wMzIyNTgxLDMwIEM1OS4wMzIyNTgxLDQ2LjU2ODU0MzMgNDYuMDE1MjkwNyw2MCAyOS45NTgwNDU5LDYwIEMyNC4wMDI3OTQxLDYwIDE4LjQ2NTczMDIsNTguMTUyNTEzNCAxMy44NTU5MjAzLDU0Ljk4Mjc3NTQgTDQ3LjE3MDAwOSw1LjgxOTQxMTAzIEM1NC4zNjM5NzMyLDExLjI4MDY1MDMgNTkuMDMyMjU4MSwyMC4wNzc3OTczIDU5LjAzMjI1ODEsMzAgWiBNNTkuMDMyMjU4MSwzMCIgaWQ9InJlZmxlYyIgZmlsbC1vcGFjaXR5PSIwLjA4IiBmaWxsPSIjMDAwMDAwIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+DQo8L3N2Zz4=); }\n  &.rss           { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPg0KICAgIDxwYXRoIGQ9Ik0wLjExMjI5MDM0NCwzMCBDMC4xMTIyOTAzNDQsMTMuNDMxNDU2NyAxMy4zNDI2NTA2LDAgMjkuNjYzMTI5LDAgQzQ1Ljk4MzYwNzMsMCA1OS4yMTM5Njc2LDEzLjQzMTQ1NjcgNTkuMjEzOTY3NiwzMCBDNTkuMjEzOTY3Niw0Ni41Njg1NDMzIDQ1Ljk4MzYwNzMsNjAgMjkuNjYzMTI5LDYwIEMxMy4zNDI2NTA2LDYwIDAuMTEyMjkwMzQ0LDQ2LjU2ODU0MzMgMC4xMTIyOTAzNDQsMzAgWiBNMC4xMTIyOTAzNDQsMzAiIGZpbGw9IiNFMThGMDAiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCiAgICA8cGF0aCBkPSJNMjYuNTE0Nzc1NSwzOC43NTcxMjk2IEMyNi41MTQ3NzU1LDM2LjgxOTI5MzQgMjQuOTU3NTAyMSwzNS4yMjkxNjU2IDIzLjAyOTcwNDcsMzUuMjI5MTY1NiBDMjEuMTA5NDMzMSwzNS4yMjkxNjU2IDE5LjU0OTI3NzUsMzYuODE5MjkzNCAxOS41NDkyNzc1LDM4Ljc1NzEyOTYgQzE5LjU0OTI3NzUsNDAuNzA1MjA2OCAyMS4xMDk0MzMxLDQyLjI3NzYxNiAyMy4wMjk3MDQ3LDQyLjI3NzYxNiBDMjQuOTU3NDIyLDQyLjI3NzYxNiAyNi41MTQ2OTU0LDQwLjcwNTI4ODEgMjYuNTE0Nzc1NSwzOC43NTcxMjk2IFogTTM2LjgwNzU0MzMsNDIuMjcwMDU3MSBDMzYuODA3NTQzMywzMi42MDU1ODQ3IDI5LjA2MjY0OCwyNC43NDQyNzA1IDE5LjU0OTI3NzUsMjQuNzQ0MjcwNSBMMTkuNTQ5Mjc3NSwyOS44MzE4MDE3IEMyMi44MTI4OTg2LDI5LjgzMTgwMTcgMjUuODgxNzMwMywzMS4xMjcyMTQ1IDI4LjE5MjA2MDksMzMuNDc0MDQyOSBDMzAuNDk5OTg5NSwzNS44MTU5MTMzIDMxLjc3MzI4NTMsMzguOTQ1NDUxMyAzMS43NzMyODUzLDQyLjI3MDEzODQgTDM2LjgwNzU0MzMsNDIuMjcwMDU3MSBaIE00NS42ODcxNDgyLDQyLjI2NzUzNzUgQzQ1LjY4NzE0ODIsMjcuNjM0Njg3OCAzMy45NjA0MDE0LDE1LjcyMjM4NCAxOS41NDkyNzc1LDE1LjcyMjM4NCBMMTkuNTQ5Mjc3NSwyMC44MTIzNTM1IEMzMS4xODY5MTYsMjAuODEyMzUzNSA0MC42NjA0OTYsMzAuNDM4ODY5IDQwLjY2MDQ5Niw0Mi4yNjczNzQ5IEw0NS42ODcxNDgyLDQyLjI2NzUzNzUgWiBNNDUuNjg3MTQ4Miw0Mi4yNjc1Mzc1IiBpZD0iUGF0aCIgZmlsbD0iI0ZGRkZGRiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik01OS4yMTM5Njc2LDMwIEM1OS4yMTM5Njc2LDQ2LjU2ODU0MzMgNDUuOTgzNjA3Myw2MCAyOS42NjMxMjksNjAgQzIzLjYxMDI1MDIsNjAgMTcuOTgyNDE0Nyw1OC4xNTI1MTM0IDEzLjI5NzAzNDEsNTQuOTgyNzc1NCBMNDcuMTU3MjU1NCw1LjgxOTQxMTAzIEM1NC40NjkxNTM0LDExLjI4MDY1MDMgNTkuMjEzOTY3NiwyMC4wNzc3OTczIDU5LjIxMzk2NzYsMzAgWiBNNTkuMjEzOTY3NiwzMCIgaWQ9InJlZmxlYyIgZmlsbC1vcGFjaXR5PSIwLjA4IiBmaWxsPSIjMDAwMDAwIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+DQo8L3N2Zz4=); }\n  &.stackoverflow { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQogIDxwYXRoIGZpbGw9IiM5MTkxOTEiIGQ9Im03LjI5NDA3NSwyMy4xMTAxODhsMi4zODU4NjQsMC4wMjMyMzdsLTAuMDgzMTc3LDEwLjU1MjY3OWwxNS44NzgyMjEsMGwwLC0xMC41MTQ1MDVsMi41MTQwNSwwbDAsMTMuMDc3NDFsLTIwLjcwNzg0MywwbDAuMDEyODksLTEzLjEzODgxNWwtMC4wMDAwMDUsLTAuMDAwMDA2eiIvPg0KICA8cmVjdCBmaWxsPSIjOTE5MTkxIiB5PSIyOS4zNDg4NjIiIHg9IjExLjE4NDU4MiIgaGVpZ2h0PSIyLjYyODYyNiIgd2lkdGg9IjEyLjQzNzkzOCIvPg0KICA8cmVjdCBmaWxsPSIjYTc4YjY4IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUzOTU3MzM0MTAzMDQ3MTcsMC4wNTE3MjY2OTg0ODM5OTIwNCwtMC4wNTIwNzU4NjQ3ODAwMzI1MiwwLjUzNTk1NTUyNjQxMDg2NjUsMy42NjExNDE2NjQ4Njc4MzI1LDEuNDA2NzI1NTcyNzY2NjYxNCkgIiB5PSI0MS41MjQzNDciIHg9IjE4LjQ5MTI1IiBoZWlnaHQ9IjUuMDAzOTIzIiB3aWR0aD0iMjMuMDY2ODY0Ii8+DQogIDxyZWN0IGZpbGw9IiNjMTk2NTMiIHRyYW5zZm9ybT0ibWF0cml4KDAuNTIxNjk5ODY3NjIzODk1OCwwLjE0NjI1NTg2MDkyMjc4OTkyLC0wLjE0NzI0MzExOTMxNjAyNDIsMC41MTgyMDE4OTM4Mjc1NDE2LDMuNjYxMTQxNjY0ODY3ODMyNSwxLjQwNjcyNTU3Mjc2NjY2MTQpICIgeT0iMjcuNDM4NTE1IiB4PSIyNC45MDcwNzYiIGhlaWdodD0iNS4wMDM5MjMiIHdpZHRoPSIyMy4wNjY4NjQiLz4NCiAgPHJlY3QgZmlsbD0iI2Q0OGMyOCIgdHJhbnNmb3JtPSJtYXRyaXgoMC40NjQwMDkwMjQ0MjYxMjE2LDAuMjc4MzgzMDczOTI4ODQ3NSwtMC4yODAyNjIyMTkzMTUxMzUzLDAuNDYwODk3ODY1MDk5NzY5OTMsMy42NjExNDE2NjQ4Njc4MzI1LDEuNDA2NzI1NTcyNzY2NjYxNCkgIiB5PSI3LjQ2MTA5MiIgeD0iMzAuMDg5Mzk2IiBoZWlnaHQ9IjUuMDAzOTIzIiB3aWR0aD0iMjMuMDY2ODY0Ii8+DQogIDxyZWN0IGZpbGw9IiNmZTg5MDgiIHRyYW5zZm9ybT0ibWF0cml4KDAuMzE1NzIyMjcwMDE0MzMwNCwwLjQzNzY5MzU2MDg5OTk2MDIsLTAuNDQwNjQ4MDg2MjAxOTY2NCwwLjMxMzYwNTM2NjYwNjg4NzM3LDMuNjYxMTQxNjY0ODY3ODMyNSwxLjQwNjcyNTU3Mjc2NjY2MTQpICIgeT0iLTIwLjM0MzgwMyIgeD0iMjguNDg4MzAzIiBoZWlnaHQ9IjUuMDAzOTIzIiB3aWR0aD0iMjMuMDY2ODY0Ii8+DQogIDxyZWN0IGZpbGw9IiNmZjdhMTUiIHRyYW5zZm9ybT0ibWF0cml4KDAuMDg5MzQwMjMwNDgyMTY3NiwwLjUzMTA4MjgzMzM4NDMxNzksLTAuNTM0NjY3NzU2MjgyMTI5OSwwLjA4ODc0MTIwODMxNTI0NTg1LDMuNjYxMTQxNjY0ODY3ODMyNSwxLjQwNjcyNTU3Mjc2NjY2MTQpICIgeT0iLTQ3LjA0NTkyNyIgeD0iMTQuMTU4MjAzIiBoZWlnaHQ9IjUuMDAzOTIzIiB3aWR0aD0iMjMuMDY2ODY0Ii8+DQo8L3N2Zz4NCg==); }\n  &.twitter       { background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI0MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPg0KICAgIDxwYXRoIGQ9Ik0wLDMwIEMwLDEzLjQzMTQ1NjcgMTMuNDUwODY2MywwIDMwLjA0MzM1MjYsMCBDNDYuNjM1ODM4OSwwIDYwLjA4NjcwNTIsMTMuNDMxNDU2NyA2MC4wODY3MDUyLDMwIEM2MC4wODY3MDUyLDQ2LjU2ODU0MzMgNDYuNjM1ODM4OSw2MCAzMC4wNDMzNTI2LDYwIEMxMy40NTA4NjYzLDYwIDAsNDYuNTY4NTQzMyAwLDMwIFogTTAsMzAiIGZpbGw9IiM0MDk5RkYiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4NCiAgICA8cGF0aCBkPSJNMjkuMjk5NzY3NSwyMy44ODc5Nzc2IEwyOS4zNjI3MjA2LDI0LjkyNjA0NTMgTDI4LjMxMzUwMTYsMjQuNzk4OTM1IEMyNC40OTQzNDQ1LDI0LjMxMTY3ODcgMjEuMTU3ODI4MSwyMi42NTkyNDQ0IDE4LjMyNDkzNjgsMTkuODg0MDAyMyBMMTYuOTM5OTY3NywxOC41MDY5NzM3IEwxNi41ODMyMzMzLDE5LjUyMzg1NjMgQzE1LjgyNzc5NTYsMjEuNzkwNjU3MiAxNi4zMTA0MzYzLDI0LjE4NDU2ODQgMTcuODg0MjY0OCwyNS43OTQ2MzI1IEMxOC43MjM2NCwyNi42ODQ0MDQ4IDE4LjUzNDc4MDYsMjYuODExNTE1MiAxNy4wODY4NTg0LDI2LjI4MTg4ODggQzE2LjU4MzIzMzMsMjYuMTEyNDA4MyAxNi4xNDI1NjEzLDI1Ljk4NTI5OCAxNi4xMDA1OTI1LDI2LjA0ODg1MzIgQzE1Ljk1MzcwMTksMjYuMTk3MTQ4NiAxNi40NTczMjcsMjguMTI0OTg4NSAxNi44NTYwMzAyLDI4Ljg4NzY1MDUgQzE3LjQwMTYyNDEsMjkuOTQ2OTAzMyAxOC41MTM3OTYyLDMwLjk4NDk3MDkgMTkuNzMwODkwMiwzMS41OTkzMzc1IEwyMC43NTkxMjQ4LDMyLjA4NjU5MzggTDE5LjU0MjAzMDgsMzIuMTA3Nzc4OCBDMTguMzY2OTA1NSwzMi4xMDc3Nzg4IDE4LjMyNDkzNjgsMzIuMTI4OTYzOSAxOC40NTA4NDMxLDMyLjU3Mzg1IEMxOC44NzA1MzA3LDMzLjk1MDg3ODYgMjAuNTI4Mjk2NywzNS40MTI2NDc0IDIyLjM3NDkyMjEsMzYuMDQ4MTk5IEwyMy42NzU5NTM2LDM2LjQ5MzA4NTIgTDIyLjU0Mjc5NzEsMzcuMTcxMDA2OSBDMjAuODY0MDQ2NywzOC4xNDU1MTk0IDE4Ljg5MTUxNSwzOC42OTYzMzA5IDE2LjkxODk4MzMsMzguNzM4NzAxIEMxNS45NzQ2ODYyLDM4Ljc1OTg4NiAxNS4xOTgyNjQyLDM4Ljg0NDYyNjIgMTUuMTk4MjY0MiwzOC45MDgxODE0IEMxNS4xOTgyNjQyLDM5LjEyMDAzMTkgMTcuNzU4MzU4NSw0MC4zMDYzOTUgMTkuMjQ4MjQ5NSw0MC43NzI0NjYyIEMyMy43MTc5MjI0LDQyLjE0OTQ5NDggMjkuMDI2OTcwNSw0MS41NTYzMTMyIDMzLjAxNDAwMjcsMzkuMjA0NzcyMiBDMzUuODQ2ODk0LDM3LjUzMTE1MjggMzguNjc5Nzg1MywzNC4yMDUwOTkzIDQwLjAwMTgwMTIsMzAuOTg0OTcwOSBDNDAuNzE1MjcwMSwyOS4yNjg5ODE1IDQxLjQyODczOSwyNi4xMzM1OTM0IDQxLjQyODczOSwyNC42Mjk0NTQ1IEM0MS40Mjg3MzksMjMuNjU0OTQyIDQxLjQ5MTY5MjIsMjMuNTI3ODMxNyA0Mi42NjY4MTc0LDIyLjM2MjY1MzcgQzQzLjM1OTMwMiwyMS42ODQ3MzE5IDQ0LjAwOTgxNzgsMjAuOTQzMjU1IDQ0LjEzNTcyNCwyMC43MzE0MDQ0IEM0NC4zNDU1Njc4LDIwLjMyODg4ODQgNDQuMzI0NTgzNSwyMC4zMjg4ODg0IDQzLjI1NDM4MDEsMjAuNjg5MDM0MyBDNDEuNDcwNzA3OCwyMS4zMjQ1ODYgNDEuMjE4ODk1MiwyMS4yMzk4NDU4IDQyLjEwMDIzOTIsMjAuMjg2NTE4MyBDNDIuNzUwNzU1LDE5LjYwODU5NjUgNDMuNTI3MTc3LDE4LjM3OTg2MzQgNDMuNTI3MTc3LDE4LjAxOTcxNzQgQzQzLjUyNzE3NywxNy45NTYxNjIzIDQzLjIxMjQxMTMsMTguMDYyMDg3NiA0Mi44NTU2NzY5LDE4LjI1Mjc1MyBDNDIuNDc3OTU4LDE4LjQ2NDYwMzYgNDEuNjM4NTgyOCwxOC43ODIzNzk0IDQxLjAwOTA1MTQsMTguOTczMDQ0OSBMMzkuODc1ODk0OSwxOS4zMzMxOTA4IEwzOC44NDc2NjAzLDE4LjYzNDA4NCBDMzguMjgxMDgyLDE4LjI1Mjc1MyAzNy40ODM2NzU2LDE3LjgyOTA1MiAzNy4wNjM5ODgsMTcuNzAxOTQxNiBDMzUuOTkzNzg0NiwxNy40MDUzNTA5IDM0LjM1NzAwMywxNy40NDc3MjEgMzMuMzkxNzIxNSwxNy43ODY2ODE4IEMzMC43Njg2NzQsMTguNzQwMDA5MyAyOS4xMTA5MDgsMjEuMTk3NDc1NyAyOS4yOTk3Njc1LDIzLjg4Nzk3NzYgWiBNMjkuMjk5NzY3NSwyMy44ODc5Nzc2IiBpZD0iUGF0aCIgZmlsbD0iI0ZGRkZGRiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KICAgIDxwYXRoIGQ9Ik02MC4wODY3MDUyLDMwIEM2MC4wODY3MDUyLDQ2LjU2ODU0MzMgNDYuNjM1ODM4OSw2MCAzMC4wNDMzNTI2LDYwIEMyMy44ODk1OTI1LDYwIDE4LjE2Nzk1OTgsNTguMTUyNTEzNCAxMy40MDQ0ODk1LDU0Ljk4Mjc3NTQgTDQ3LjgyOTA0NzgsNS44MTk0MTEwMyBDNTUuMjYyODEwOCwxMS4yODA2NTAzIDYwLjA4NjcwNTIsMjAuMDc3Nzk3MyA2MC4wODY3MDUyLDMwIFogTTYwLjA4NjcwNTIsMzAiIGlkPSJyZWZsZWMiIGZpbGwtb3BhY2l0eT0iMC4wOCIgZmlsbD0iIzAwMDAwMCIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPg0KPC9zdmc+); }\n  &.youtube \t    { background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjQwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAwIDYwIDYwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj4KICAgIDx0aXRsZT5Zb3VUdWJlPC90aXRsZT4KICAgIDxkZXNjcmlwdGlvbj5DcmVhdGVkIHdpdGggU2tldGNoIChodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gpPC9kZXNjcmlwdGlvbj4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHNrZXRjaDp0eXBlPSJNU1BhZ2UiPgogICAgICAgIDxnIGlkPSJZb3VUdWJlIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIj4KICAgICAgICAgICAgPGcgaWQ9IllvdXR1YmUiIHNrZXRjaDp0eXBlPSJNU0xheWVyR3JvdXAiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTAuNDQ5MTYxMzc2LDMwIEMwLjQ0OTE2MTM3NiwxMy40MzE0NTY3IDEzLjY3OTUyMTcsMCAzMCwwIEM0Ni4zMjA0NzgzLDAgNTkuNTUwODM4NiwxMy40MzE0NTY3IDU5LjU1MDgzODYsMzAgQzU5LjU1MDgzODYsNDYuNTY4NTQzMyA0Ni4zMjA0NzgzLDYwIDMwLDYwIEMxMy42Nzk1MjE3LDYwIDAuNDQ5MTYxMzc2LDQ2LjU2ODU0MzMgMC40NDkxNjEzNzYsMzAgWiBNMC40NDkxNjEzNzYsMzAiIGlkPSJZb3VUdWJlIiBmaWxsPSIjQ0QzMzJEIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNDMuMzA1NTgwMiwzMC40MjgzMTI1IEM0NC43MjMxODAyLDMxLjg2MjM1MTYgNDQuNzM4NTE1OCwzOC45NDE4NTM1IDQ0LjczODUxNTgsMzguOTgyNzU1OSBDNDQuNzM4NTE1OCwzOC45ODI3NTU5IDQ0LjcyNzAzMTYsNDYuMDk5MTEzMyA0My4zMDU1ODAyLDQ3LjUzODEzODcgQzQxLjg5Mzg2MjQsNDguOTY5MTQyNiAyOS45OTQzMjc5LDQ5IDI5Ljk5NDMyNzksNDkgQzI5Ljk5NDMyNzksNDkgMTguMDk2NDc0LDQ4Ljk2OTE0MjYgMTYuNjgxMDQ0OSw0Ny41MzgyMTA5IEMxNS4yNjU0NzU3LDQ2LjEwNDA5OTYgMTUuMjYxNTU0MiwzOS4wMzY0NDkyIDE1LjI2MTU1NDIsMzguOTgyNzU1OSBDMTUuMjYxNTU0MiwzOC45NDE5OTggMTUuMjY1NDA1NywzMS44NjIzNTE2IDE2LjY4MTA0NDksMzAuNDI4MzEyNSBDMTguMDk2NjE0MSwyOC45OTY0NDE0IDI5Ljk5NDMyNzksMjguOTc3MzYzMyAyOS45OTQzMjc5LDI4Ljk3ODQ0NzMgQzI5Ljk5NDMyNzksMjguOTc3MzYzMyA0MS44OTM4NjI0LDI4Ljk5NjQ0MTQgNDMuMzA1NTgwMiwzMC40MjgzMTI1IFogTTIyLjAzNjY3OTIsNDQuODgzODk0NSBMMjAuMDk4MzY4Myw0NC44ODM4OTQ1IEwyMC4wOTgzNjgzLDM0LjU5OTA1MDggTDE4LjA5NDUxMzMsMzQuNTk5MDUwOCBMMTguMDk0NTEzMywzMi44NTE1MjM0IEwyNC4wNDA0NjQyLDMyLjg1MTUyMzQgTDI0LjA0MDUzNDIsMzQuNTk5MDUwOCBMMjIuMDM2Njc5MiwzNC41OTkwNTA4IEwyMi4wMzY2NzkyLDQ0Ljg4Mzg5NDUgWiBNMjcuOTg4MzcyMiw0My45MDc3MzA1IEMyNy42NjgyODQ4LDQ0LjI2OTkyNTggMjcuMzQwMzU0NSw0NC41NDM1OTU3IDI2Ljk5NTE5NzksNDQuNzMwNzYzNyBDMjYuNjUxODYyLDQ0LjkyMTkwNjMgMjYuMzIwMDgwMyw0NS4wMTMzMjIzIDI1Ljk5NjA3MTQsNDUuMDEzMzIyMyBDMjUuNTk2Nzg1LDQ1LjAxMzMyMjMgMjUuMzAxNjk2OCw0NC44ODM5NjY4IDI1LjA5NzM2MTgsNDQuNjE3Mzc4OSBDMjQuODk4Njk5LDQ0LjM1MTUxMzcgMjQuNzk2NDYxNSw0My45NTg2MDU1IDI0Ljc5NjQ2MTUsNDMuNDI4MTAzNSBMMjQuNzk2NDYxNSwzNi4wMDYxMzQ4IEwyNi41MTQ5NjE4LDM2LjAwNjEzNDggTDI2LjUxNDk2MTgsNDIuODE1MDc0MiBDMjYuNTE0OTYxOCw0My4wMjYwMTc2IDI2LjU1MTU4NTIsNDMuMTc3MjY5NSAyNi42MjExMjA3LDQzLjI3MDc4MTIgQzI2LjY5NjMyODMsNDMuMzY2MzE2NCAyNi44MTM5NzE0LDQzLjQxMjEzMjggMjYuOTc0MDUwMSw0My40MTIxMzI4IEMyNy4wOTk0NjYxLDQzLjQxMjEzMjggMjcuMjYxNDM1Niw0My4zNDk0MDYzIDI3LjQ1NDI4NjMsNDMuMjI1MDM3MSBDMjcuNjQ5MDk3Nyw0My4wOTk1ODQgMjcuODI0NTgyMSw0Mi45NDIzMzQgMjcuOTg4NDQyMiw0Mi43NTAzMjQyIEwyNy45ODg0NDIyLDM2LjAwNjI3OTMgTDI5LjcwNjg3MjUsMzYuMDA2Mjc5MyBMMjkuNzA2ODAyNSw0NC44ODM5NjY4IEwyNy45ODgzNzIyLDQ0Ljg4Mzk2NjggTDI3Ljk4ODM3MjIsNDMuOTA3NzMwNSBaIE0zNC4zNzAzNzMsNDQuOTk2MjY3NiBDMzQuMDMyODQ5Miw0NC45OTYyNjc2IDMzLjczMzgzOTUsNDQuOTMzNzU3OCAzMy40NzE1MjMzLDQ0LjgwNDMzMDEgQzMzLjIwOTM0NzEsNDQuNjc1MDQ2OSAzMi45NjA0MDU4LDQ0LjQ3NTk1NTEgMzIuNzM2ODEzOCw0NC4yMDMzNjkxIEwzMi43MzY4MTM4LDQ0Ljg4Mzk2NjggTDMwLjk5OTE5NjUsNDQuODgzOTY2OCBMMzAuOTk5MTk2NSwzMi44NTE1MjM0IEwzMi43MzY4MTM4LDMyLjg1MTUyMzQgTDMyLjczNjgxMzgsMzYuNzI1NjExMyBDMzIuOTcwMTM5NCwzNi40NTY4NTU1IDMzLjIxNTA4OTIsMzYuMjQ4ODc1IDMzLjQ3MzU1NCwzNi4xMDk2OTE0IEMzMy43MzU3MzAyLDM1Ljk2ODQxMjEgMzQuMDAwMTQ3MiwzNS44OTg2NzU4IDM0LjI2NjEwNDcsMzUuODk4Njc1OCBDMzQuODExOTU0OSwzNS44OTg2NzU4IDM1LjIyNjY0NywzNi4wODc3OTQ5IDM1LjUxMjA3MTcsMzYuNDY0MDA5OCBDMzUuODAxMzQ3OCwzNi44NDMxMTUyIDM1Ljk0NDEzMDIsMzcuMzk3MzkyNiAzNS45NDQxMzAyLDM4LjEyMzg3ODkgTDM1Ljk0NDEzMDIsNDMuMDQ5ODY1MiBDMzUuOTQzOTkwMSw0My42Nzc3MDkgMzUuODA4ODQwNiw0NC4xNTk0MzE2IDM1LjUzOTAzMTYsNDQuNDk0ODg4NyBDMzUuMjcwOTczMyw0NC44MzExNDA2IDM0Ljg3OTUyOTcsNDQuOTk2MjY3NiAzNC4zNzAzNzMsNDQuOTk2MjY3NiBaIE0zOC42MTcwMTA1LDQyLjMzMDM4ODcgQzM4LjYxNzAxMDUsNDIuNzk4MTY0MSAzOC42NzMxMDExLDQzLjEyMTU1MjcgMzguNzg0NzkyMSw0My4zMDM2NjIxIEMzOC45MDA0NzQ1LDQzLjQ4Mzc0OCAzOS4wOTMzMjUyLDQzLjU3MjQ5MDIgMzkuMzY3MjY1Nyw0My41NzI0OTAyIEMzOS42NTI1NTA0LDQzLjU3MjQ5MDIgMzkuODUxMjgzMiw0My40OTU3NDQxIDM5Ljk2NTA3NSw0My4zNDI1NDEgQzQwLjA3Njk3Niw0My4xODkyNjU2IDQwLjEzNjcwNzksNDIuODUyOTQxNCA0MC4xMzY3MDc5LDQyLjMzMDM4ODcgTDQwLjEzNjcwNzksNDEuOTI1NDEyMSBMNDEuOTA1Mjc2Niw0MS45MjU0MTIxIEw0MS45MDUyNzY2LDQyLjM4MTI2MzcgQzQxLjkwNTI3NjYsNDMuMjkxODgyOCA0MS42OTEwNjgsNDMuOTc3NDY2OCA0MS4yNTcyNTg5LDQ0LjQ0MDE4MzYgQzQwLjgyOTE5MTksNDQuODk3OTg2MyA0MC4xODQ4ODU2LDQ1LjEyNTc2NzYgMzkuMzI4NjgxNiw0NS4xMjU3Njc2IEMzOC41NTkwOTkzLDQ1LjEyNTc2NzYgMzcuOTUxNTU2NSw0NC44ODM4OTQ1IDM3LjUwOTkwNDUsNDQuMzk0Mjk0OSBDMzcuMDY4MTEyNCw0My45MDc4MDI3IDM2Ljg0NDM4MDQsNDMuMjM2ODg4NyAzNi44NDQzODA0LDQyLjM4MTE5MTQgTDM2Ljg0NDM4MDQsMzguMzk0NTg1OSBDMzYuODQ0MzgwNCwzNy42MjczNDE4IDM3LjA4OTMzMDIsMzYuOTk2MzkwNiAzNy41NzUzNzg1LDM2LjUxMjcxNjggQzM4LjA2MTI4NjcsMzYuMDI4MTAzNSAzOC42ODYxOTU5LDM1Ljc4NjMwMjcgMzkuNDU3NzM4OSwzNS43ODYzMDI3IEM0MC4yNDQ1NDc1LDM1Ljc4NjMwMjcgNDAuODUwMTk5NiwzNi4wMTExMjExIDQxLjI3MjUyNDUsMzYuNDU5OTYyOSBDNDEuNjk0ODQ5NCwzNi45MDc3MjA3IDQxLjkwNTIwNjYsMzcuNTUyNjE5MSA0MS45MDUyMDY2LDM4LjM5NDU4NTkgTDQxLjkwNTIwNjYsNDAuNjU3NTExNyBMMzguNjE3MDEwNSw0MC42NTc1ODQgTDM4LjYxNzAxMDUsNDIuMzMwMzg4NyBaIE0zMy45OTIzMDQzLDM3LjUzODY3MTkgQzM0LjExMzY1ODgsMzcuNjkzODI2MiAzNC4xNzM1MzA4LDM3LjkyMTY3OTcgMzQuMTczNTMwOCwzOC4yMjEyOTMgTDM0LjE3MzUzMDgsNDIuODA1MDI5MyBDMzQuMTczNTMwOCw0My4wOTA1NTA4IDM0LjEyMTQzMTcsNDMuMjkxNTkzOCAzNC4wMjMyNTU2LDQzLjQxNjAzNTIgQzMzLjkyNDkzOTYsNDMuNTQzNDM5NSAzMy43NzA1MzMsNDMuNjA2MTY2IDMzLjU2MDMxNTgsNDMuNjA2MTY2IEMzMy40MTM4MjIxLDQzLjYwNjE2NiAzMy4yNzY5MjE5LDQzLjU3MjIwMTIgMzMuMTQ1NjIzNyw0My41MDk2MTkxIEMzMy4wMTI2NDUsNDMuNDQ3ODMyIDMyLjg3NTYwNDcsNDMuMzM5MzYxMyAzMi43MzY4MTM4LDQzLjE5NjEzMDkgTDMyLjczNjgxMzgsMzcuNjY1MTM2NyBDMzIuODU0Mzg2OSwzNy41NDI3MTg4IDMyLjk3MjAzMDEsMzcuNDUyMTY5OSAzMy4wOTE1NjM5LDM3LjM5NDM1NzQgQzMzLjIxMTIzNzgsMzcuMzM0NjY2IDMzLjMzMjY2MjQsMzcuMzA3NzgzMiAzMy40NTYwNDc2LDM3LjMwNzc4MzIgQzMzLjY4NzQxMjUsMzcuMzA3NzgzMiAzMy44NjY4ODgzLDM3LjM4NTM5NjUgMzMuOTkyMzA0MywzNy41Mzg2NzE5IFogTTM4Ljc5NDUyNTYsMzcuNTg0NDg4MyBDMzguNjc0OTkxOCwzNy43Mzk1NzAzIDM4LjYxNzE1MDYsMzguMDA4MzI2MiAzOC42MTcxNTA2LDM4LjM3OTYyNyBMMzguNjE3MTUwNiwzOS4yNzYyMjY2IEw0MC4xMzY5MTgsMzkuMjc2MjI2NiBMNDAuMTM2OTE4LDM4LjM3OTYyNyBDNDAuMTM2OTE4LDM4LjAwODM5ODQgNDAuMDc1MjI1NCwzNy43Mzk3ODcxIDM5Ljk1NTU1MTUsMzcuNTg0NDg4MyBDMzkuODM5ODY5MSwzNy40MTgyMDUxIDM5LjY0NTEyNzYsMzcuMzM5NjUyMyAzOS4zODQ3MDIxLDM3LjMzOTY1MjMgQzM5LjExMDkwMTcsMzcuMzM5NjUyMyAzOC45MTQxOTk1LDM3LjQxODIwNTEgMzguNzk0NTI1NiwzNy41ODQ0ODgzIFogTTM4Ljc5NDUyNTYsMzcuNTg0NDg4MyIgaWQ9IlBhdGgiIGZpbGw9IiNGRkZGRkYiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xOS4xOTc4MzgsMTIgTDIxLjc5MTcyOTQsMjAuMDAzMDU2NiBMMjEuNzkxNzI5NCwyNS4yNTQ1MjczIEwyMy45NzEyMDg4LDI1LjI1NDUyNzMgTDIzLjk3MTIwODgsMTkuNzU1MjU3OCBMMjYuNTA3MjU4OSwxMiBMMjQuMjkxMjI2MSwxMiBMMjIuOTQ1MTkyNCwxNy4yOTgyMjY2IEwyMi44MDgyMjIyLDE3LjI5ODIyNjYgTDIxLjM5MjU4MywxMiBMMTkuMTk3ODM4LDEyIFogTTI5LjU0Njc5MzgsMTUuMjI5NDA2MyBDMzAuMzQ3MTE3MywxNS4yMjk0MDYzIDMxLjAwNDg2ODYsMTUuNDY2MTQ4NCAzMS41MTc4NzY3LDE1LjkzOTkyMTkgQzMyLjAyNjk2MzQsMTYuNDEyNjExMyAzMi4yODM1Mzc2LDE3LjAyMjYwNTUgMzIuMjgzNTM3NiwxNy43NjgwMjU0IEwzMi4yODM1Mzc2LDIyLjgxOTM5MjYgQzMyLjI4MzUzNzYsMjMuNjU1Mjg5MSAzMi4wMzI4NDU2LDI0LjMxMDE2MDIgMzEuNTMzMzUyNCwyNC43ODY4OTY1IEMzMS4wMjc5NzcsMjUuMjYyNTQ4OCAzMC4zMzk0ODQ1LDI1LjUwMTQ1OSAyOS40NTgxNDEzLDI1LjUwMTQ1OSBDMjguNjEzNDIxNCwyNS41MDE0NTkgMjcuOTM0NTkyNSwyNS4yNTQ1OTk2IDI3LjQyNTM2NTcsMjQuNzY1MTQ0NSBDMjYuOTIwMDYwMywyNC4yNzM0NDkyIDI2LjY2MzYyNjMsMjMuNjExNzEyOSAyNi42NjM2MjYzLDIyLjc4MDgwMjcgTDI2LjY2MzQ4NjIsMTcuNzEzMjQ4IEMyNi42NjM0ODYyLDE2Ljk1Mzk1MzEgMjYuOTIzODQxNywxNi4zNTA4OTY1IDI3LjQ0NjUxMzQsMTUuOTAzMDY2NCBDMjcuOTY3Mjk0NCwxNS40NTQyMjQ2IDI4LjY2OTIzMTksMTUuMjI5NDA2MyAyOS41NDY3OTM4LDE1LjIyOTQwNjMgWiBNMjkuNDU0MTQ5OCwyMy44MDc0ODA1IEMyOS43MTY1MzYsMjMuODA3NDgwNSAyOS45MjI4MzE3LDIzLjczMTk2MjkgMzAuMDc5MDU5LDIzLjU4MzYwMTYgQzMwLjIzMzQ2NTYsMjMuNDMyMjc3MyAzMC4zMTA2MzM5LDIzLjIyNjM5MjYgMzAuMzEwNjMzOSwyMi45NjU1ODU5IEwzMC4zMTA2MzM5LDE3LjYzODUyNTQgQzMwLjMxMDYzMzksMTcuNDI0NjkxNCAzMC4yMzE0MzQ5LDE3LjI1MjQ4MjQgMzAuMDczMzE2OSwxNy4xMjAwOTE4IEMyOS45MTUxOTg5LDE2Ljk4ODc4NTIgMjkuNzA4ODMzMiwxNi45MjQwMzUyIDI5LjQ1NDE0OTgsMTYuOTI0MDM1MiBDMjkuMjE2OTcyOCwxNi45MjQwMzUyIDI5LjAyNjA4MjgsMTYuOTg4Nzg1MiAyOC44Nzc1NTgzLDE3LjEyMDA5MTggQzI4LjczMDk5NDYsMTcuMjUyNDgyNCAyOC42NTU3ODcsMTcuNDI0NTQ2OSAyOC42NTU3ODcsMTcuNjM4NTI1NCBMMjguNjU1Nzg3LDIyLjk2NTY1ODIgQzI4LjY1NTcxNjksMjMuMjMzMzMwMSAyOC43MjcwNzMxLDIzLjQzOTI4NzEgMjguODYzOTczMywyMy41ODc1NzYyIEMyOS4wMDA5NDM2LDIzLjczNDg1MzUgMjkuMTk3NzE1NywyMy44MDc0ODA1IDI5LjQ1NDE0OTgsMjMuODA3NDgwNSBaIE0zNy40NDA2NDkxLDI1LjI1NDU5OTYgTDM3LjQ0MDY0OTEsMjQuMTc0ODc4OSBDMzcuMDg3NjQ5NiwyNC41NzE5MDYzIDM2LjcxNTUzMzEsMjQuODc3NTE3NiAzNi4zMjc3MzA5LDI1LjA4NDQxNDEgQzM1Ljk0MjAyOTQsMjUuMjkyMzk0NSAzNS41Njc4MTIyLDI1LjM5NjAyMzQgMzUuMjA1MTQ5MSwyNS4zOTYwMjM0IEMzNC43NTM5NzM3LDI1LjM5NjAyMzQgMzQuNDIwMjMxMiwyNS4yNDk2ODU1IDM0LjE5Mjc4NzgsMjQuOTU5MTA1NSBDMzMuOTY3MDk1LDI0LjY2NzUxMzcgMzMuODUzMzAzMywyNC4yMzE2Nzk3IDMzLjg1MzMwMzMsMjMuNjQ4NDIzOCBMMzMuODUzMzAzMywxNS40NzYxMjExIEwzNS43ODU3MzIxLDE1LjQ3NjEyMTEgTDM1Ljc4NTczMjEsMjIuOTcyNTk1NyBDMzUuNzg1NzMyMSwyMy4yMDQ0OTYxIDM1LjgzMDE5ODQsMjMuMzcxNjQ2NSAzNS45MTExNDgxLDIzLjQ3NTEzMDkgQzM1Ljk5MDIwNzEsMjMuNTc4NzU5OCAzNi4xMjMyNTU5LDIzLjYzMTM2OTEgMzYuMzA0NjIyNCwyMy42MzEzNjkxIEMzNi40NDUzNzQsMjMuNjMxMzY5MSAzNi42MjY3NDA1LDIzLjU2MTc3NzMgMzYuODQ0NTkwNSwyMy40MjU0MTIxIEMzNy4wNjA1NDk3LDIzLjI4ODEwNzQgMzcuMjYxMTczMiwyMy4xMTI3OTEgMzcuNDQwNTA5LDIyLjg5Nzk0NTMgTDM3LjQ0MDUwOSwxNS40NzYxMjExIEwzOS4zNzY5OTkzLDE1LjQ3NjEyMTEgTDM5LjM3Njk5OTMsMjUuMjU0NTk5NiBMMzcuNDQwNjQ5MSwyNS4yNTQ1OTk2IFogTTM3LjQ0MDY0OTEsMjUuMjU0NTk5NiIgaWQ9IlBhdGgiIGZpbGw9IiNGRkZGRkYiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik01OS41NTA4Mzg2LDMwIEM1OS41NTA4Mzg2LDQ2LjU2ODU0MzMgNDYuMzIwNDc4Myw2MCAzMCw2MCBDMjMuOTQ3MTIxMiw2MCAxOC4zMTkyODU4LDU4LjE1MjUxMzQgMTMuNjMzOTA1MSw1NC45ODI3NzU0IEw0Ny40OTQxMjY0LDUuODE5NDExMDMgQzU0LjgwNjAyNDUsMTEuMjgwNjUwMyA1OS41NTA4Mzg2LDIwLjA3Nzc5NzMgNTkuNTUwODM4NiwzMCBaIE01OS41NTA4Mzg2LDMwIiBpZD0icmVmbGVjIiBmaWxsLW9wYWNpdHk9IjAuMDgiIGZpbGw9IiMwMDAwMDAiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+); }\n  &.googleplus\t  { background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjQwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAwIDYwIDYwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj4KICAgIDx0aXRsZT5Hb29nbGUgKzwvdGl0bGU+CiAgICA8ZGVzY3JpcHRpb24+Q3JlYXRlZCB3aXRoIFNrZXRjaCAoaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoKTwvZGVzY3JpcHRpb24+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4KICAgICAgICA8ZyBpZD0iR29vZ2xlLSsiIHNrZXRjaDp0eXBlPSJNU0FydGJvYXJkR3JvdXAiPgogICAgICAgICAgICA8ZyBza2V0Y2g6dHlwZT0iTVNMYXllckdyb3VwIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0wLjExMjI5MDM0NCwyOS41MDgxOTY3IEMwLjExMjI5MDM0NCwxMy4yMTEyNjg5IDEzLjM0MjY1MDYsMCAyOS42NjMxMjksMCBDNDUuOTgzNjA3MywwIDU5LjIxMzk2NzYsMTMuMjExMjY4OSA1OS4yMTM5Njc2LDI5LjUwODE5NjcgQzU5LjIxMzk2NzYsNDUuODA1MTI0NiA0NS45ODM2MDczLDU5LjAxNjM5MzQgMjkuNjYzMTI5LDU5LjAxNjM5MzQgQzEzLjM0MjY1MDYsNTkuMDE2MzkzNCAwLjExMjI5MDM0NCw0NS44MDUxMjQ2IDAuMTEyMjkwMzQ0LDI5LjUwODE5NjcgWiBNMC4xMTIyOTAzNDQsMjkuNTA4MTk2NyIgZmlsbD0iI0QzNDgzNiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTU4LjI5NTc2NzIsMjIuNzE1NzA0OSBMNTEuMzA3NTkxNSwyMi43MTU3MDQ5IEw1MS4zMDc1OTE1LDMwLjQ2OTIwNzkgTDQ4LjAxMzY2MjMsMzAuNDY5MjA3OSBMNDguMDEzNjYyMywyMi43MTU3MDQ5IEw0MC4zMjc4Njg5LDIyLjcxNTcwNDkgTDQwLjMyNzg2ODksMTkuNDg4NjU5IEw0OC4wMTM2NjIzLDE5LjQ4ODY1OSBMNDguMDEzNjYyMywxMS44MDMyNzg3IEw1MS4zMDc1OTE1LDExLjgwMzI3ODcgTDUxLjMwNzU5MTUsMTkuNDg4NjU5IEw1Ny4xNzUyNDk2LDE5LjQ4ODY1OSBDNTcuNjA4NjI1NiwyMC41MzUzODMzIDU3Ljk4MzUwNDMsMjEuNjEyNDcyNiA1OC4yOTU3NjcyLDIyLjcxNTcwNDkgWiBNNTguMjk1NzY3MiwyMi43MTU3MDQ5IiBpZD0iU2hhcGUiIGZpbGw9IiNGRkZGRkYiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjIzMDMzODgzLDQ4LjYwNTA4MTEgQzkuMDU2NjMyNTQsNDcuMjE3NTUzNiAxMC4zMzc4NjM5LDQ1Ljg1MzQgMTIuMjM1OTMwOCw0NC43MzIzODI4IEMxNi41MTg2MjMxLDQyLjExMjA5MjEgMjIuMjg2NjQyMSw0MS43NjYwMTU5IDI1LjQwNTgyODMsNDEuNTY4MjU4MSBDMjQuNDQwMzY1OSw0MC4zMzIyNzE5IDIzLjMyNjM3MDgsMzkuMDIyMTI2NSAyMy4zMjYzNzA4LDM2Ljg3MTUxMDUgQzIzLjMyNjM3MDgsMzUuNzA5NjgzNSAyMy42NzI5NDcxLDM1LjAxNzUzMTIgMjQuMDE5NTIzMywzNC4yMDE3ODAzIEMyMy4yNTIxMDQ1LDM0LjI3NTkzOTUgMjIuNTA5NDQxMSwzNC4zNTAwOTg2IDIxLjgxNjI4ODYsMzQuMzUwMDk4NiBDMTQuNTEzNDMxOSwzNC4zNTAwOTg2IDEwLjM3OTI3MjMsMjguOTExNzU5MyAxMC4zNzkyNzIzLDIzLjU0NzU3OTEgQzEwLjM3OTI3MjMsMjAuMzgzNDU0NCAxMS44Mzk4NDM3LDE2Ljg2ODMwOTYgMTQuNzg1NzQxOCwxNC4zMjQ2NSBDMTguNzIxODU3OCwxMS4wOTM3ODIgMjMuNDAwNjM3MiwxMC41NDI1MzIxIDI3LjExMzk1NDIsMTAuNTQyNTMyMSBMNDEuMjk4ODI1LDEwLjU0MjUzMjEgTDM2Ljg5MjM1NTUsMTMuMDE2OTc2NSBMMzIuNjM0NDE4NywxMy4wMTY5NzY1IEMzNC4yMTg3NjczLDE0LjMyNDY1IDM3LjUxMTI0MTcsMTcuMDc1OTU1MyAzNy41MTEyNDE3LDIyLjMxMTU5MjkgQzM3LjUxMTI0MTcsMjcuNDAzODU2MSAzNC42MTQ4NTQ0LDI5LjgwMTY2OTQgMzEuNzQzMjIyNiwzMi4wNzU4ODQgQzMwLjgyNzI3MTEsMzIuOTY1Nzk0MSAyOS44MTIyOTc4LDMzLjkyOTg2MzMgMjkuODEyMjk3OCwzNS40Mzc3NjY1IEMyOS44MTIyOTc4LDM2Ljk0NTY2OTcgMzAuODI3MjcxMSwzNy43ODYxNDAzIDMxLjU5NDY5LDM4LjQwNDEzMzQgTDM0LjA3MDIzNDYsNDAuMzMyMjcxOSBDMzcuMTE1MTU0NSw0Mi44NTM2ODM4IDM5Ljg2MzAwOTEsNDUuMjAyMDU3NiAzOS44NjMwMDkxLDQ5Ljk0ODI0NDcgQzM5Ljg2MzAwOTEsNTMuMDc4MTc5MiAzOC40MDAyNTI5LDU2LjIxOTY2MDMgMzUuNTUwMTgxMSw1OC42MzA1MzAyIEMzNC4wMTY3MDEyLDU4Ljg4MDE3NzUgMzIuNDQzNTc1Myw1OS4wMTE5NjcxIDMwLjg0MDQzMjQsNTkuMDE2MjgzOSBDMzMuNzM0NDYwMyw1Ny43NDg2MzExIDM1LjIzMzc0MDYsNTUuNDI5MjU1NiAzNS4yMzM3NDA2LDUyLjY0MjY5NDYgQzM1LjIzMzc0MDYsNDkuMTMyNDkzOCAzMi45ODA5OTUsNDcuMjc4NTE0NSAyNy43MzI4NDAzLDQzLjU0NTgzNjEgQzI3LjE4ODIyMDUsNDMuNDk2Mzk2NiAyNi44NDE2NDQyLDQzLjQ5NjM5NjYgMjYuMTQ4NDkxNyw0My40OTYzOTY2IEMyNS41Mjk2MDU2LDQzLjQ5NjM5NjYgMjEuODE2Mjg4Niw0My42MTk5OTUzIDE4LjkxOTkwMTQsNDQuNTg0MDY0NSBDMTcuNDA5ODE5MSw0NS4xMjc4OTg0IDEzLjAwMzM0OTcsNDYuNzg0MTIgMTMuMDAzMzQ5Nyw1MS42Nzg2MjU0IEMxMy4wMDMzNDk3LDUyLjIxMDUzODQgMTMuMDYwMDU2Myw1Mi43MjYyMzA4IDEzLjE3MDY5NTEsNTMuMjIyOTAwMSBDNS45MTIzMTMsNDcuODQ2Mjg5OCA5LjA1NjYzMjU5LDQ4LjYwNTA4MjQgOC4yMzAzMzg4Myw0OC42MDUwODExIFogTTMxLjQ0NjE1NzMsMjUuNDc1NzE3NiBDMzEuNDQ2MTU3MywyMC41MDcwNTMgMjguNTAwMjU5MiwxMi44MTE4MDI4IDIyLjc4MTc1MSwxMi44MTE4MDI4IEMyMC45OTkzNTg5LDEyLjgxMTgwMjggMTkuMDY4NDM0LDEzLjcwNjY1NjggMTcuOTU0NDM5LDE1LjA4MzU0NTUgQzE2Ljc5MDkzMywxNi41MjcxNzc0IDE2LjQ0NDM1NjcsMTguMzgxMTU2NyAxNi40NDQzNTY3LDIwLjE2MDk3NjkgQzE2LjQ0NDM1NjcsMjQuNzgzNTY1MyAxOS4xMTc5NDQ5LDMyLjQyMTk2MDEgMjUuMDU5MjUyMSwzMi40MjE5NjAxIEMyNi43NjczNzc5LDMyLjQyMTk2MDEgMjguNjI0MDM2NCwzMS41ODE0ODk1IDI5LjczODAzMTUsMzAuNDkzODIxNiBDMzEuMzIyMzgwMSwyOC45MTE3NTkzIDMxLjQ0NjE1NzMsMjYuNzExNzAzOCAzMS40NDYxNTczLDI1LjQ3NTcxNzYgWiBNMzEuNDQ2MTU3MywyNS40NzU3MTc2IiBpZD0iUGF0aCIgZmlsbD0iI0ZGRkZGRiIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTU5LjI3OTM3MzcsMjkuNjg1ODI1MiBDNTkuMjc5MzczNyw0NS45ODI3NTMxIDQ2LjA0OTAxMzQsNTkuMTk0MDIxOSAyOS43Mjg1MzUxLDU5LjE5NDAyMTkgQzIzLjY3NTY1NjMsNTkuMTk0MDIxOSAxOC4wNDc4MjA4LDU3LjM3NjgyMiAxMy4zNjI0NDAyLDU0LjI1OTA0NjkgTDQ3LjIyMjY2MTUsNS45MDE2MzkzNCBDNTQuNTM0NTU5NSwxMS4yNzMzNTAxIDU5LjI3OTM3MzcsMTkuOTI2MjgxNiA1OS4yNzkzNzM3LDI5LjY4NTgyNTIgWiBNNTkuMjc5MzczNywyOS42ODU4MjUyIiBpZD0icmVmbGVjIiBmaWxsLW9wYWNpdHk9IjAuMDgiIGZpbGw9IiMwMDAwMDAiIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+); }\n\n}\n"
  },
  {
    "path": "_sass/_variables.scss",
    "content": "\n//\n// VARIABLES\n//\n\n// Colors\n$blue: #4183C4;\n\n// Grays\n$black: #000;\n$darkerGray: #222;\n$darkGray: #333;\n$gray: #666;\n$lightGray: #eee;\n$white: #fff;\n\n// Font stacks\n$helvetica: Helvetica, Arial, sans-serif;\n$helveticaNeue: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n$georgia: Georgia, serif;\n\n// Mobile breakpoints\n@mixin mobile {\n  @media screen and (max-width: 640px) {\n    @content;\n  }\n}"
  },
  {
    "path": "docs/.gitignore",
    "content": ""
  },
  {
    "path": "docs/.order",
    "content": "About-Azure-DevOps-Demo-Generator\nFeatures-Timeline\nAzure-DevOps-Demo-Generator-REST-API-Reference"
  },
  {
    "path": "docs/About-Azure-DevOps-Demo-Generator/.order",
    "content": "Known-Issues-and-FAQ\nUsing-the-Generator\nBuild-your-own-template"
  },
  {
    "path": "docs/About-Azure-DevOps-Demo-Generator/Known-Issues-and-FAQ.md",
    "content": "[[_TOC_]]\n\n\n# Known Issues:\n\n## **Issue:** Error while creating release definition:\nTasks with versions 'ARM Outputs:4.*' are not valid for deploy job 'Agent job' in stage Stage 1\n\n**Cause:** This is usually caused by one of the third-party extensions not enabled or installed in your Azure DevOps org. Usually installation of extensions are quick but sometimes, it  can take a few minutes (or even hours!) for an extension to be available to use, after it is installed in the marketplace. \n\n**Workaround:** You can try waiting for a few minutes and confirm whether the extension is available to use, and then run the generator again. \n\n------------------\n# Frequently Asked Questions\n\n##  Q: Is the Generator open-source? Can I get access to the code?\n\nAzure DevOps Generator is not open-sourced yet. While we plan to make this open source, it is being evaluated by the product and legal teams\n\n---------------\n\n##  Q: How can I build my own template?\n\nYes, you can take a snapshot of your project and turn into a template and use it for provisioning future projects using the **Extractor** - See [Build-your-own-template](/About-Azure-DevOps-Demo-Generator/Build-your-own-template)\n\n-----------"
  },
  {
    "path": "docs/Azure-DevOps-Demo-Generator-REST-API-Reference/.order",
    "content": "Get-status-of-project-creation-using-TrackId\nAzure-DevOps-REST-API-%2D-Call-API-with-powershell"
  },
  {
    "path": "docs/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%2D-Call-API-with-powershell.md",
    "content": "## Here is the details on how to call an API to create project using powershell\n\n```\n$pat = \"_PAT_\"\n$encodedPat = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(\":$pat\"))\n\n$body = @\"\n{\n    \"accessToken\": \"_PAT_\",\n    \"organizationName\": \"_ORG_\",\n    \"templateName\": \"_TEMPLATENAME_\",\n    \"users\": [{\n        \"email\":  \"_EMAIL_\",\n        \"ProjectName\":  \"_PROJECTNAME_\"\n    }]\n}\n\"@\n\nWrite-Host \"Provisioning project ...\" -ForegroundColor Blue -BackgroundColor Cyan\n$resp = Invoke-WebRequest -Uri \"https://azuredevopsdemogenerator.azurewebsites.net/api/environment/create\" -Method \"POST\" -ContentType application/json -Body $body\n\n$returnCode = $resp.StatusCode\n$returnStatus = $resp.StatusDescription\n\nif ($returnCode -ne \"202\") {\n    Write-Host \"Create project failed - $returnCode $returnStatus\" -ForegroundColor White -BackgroundColor Red\n    break\n}\nWrite-Host \"Project queued ... awaiting completion ...\" -ForegroundColor Blue -BackgroundColor Cyan\n\n$method = \"GET\"\n$listurl = \"https://dev.azure.com/culater/_apis/projects?api-version=5.1-preview.4\"\n$resp = Invoke-RestMethod -Uri $listurl -Method $method -Headers @{Authorization = \"Basic $encodedPat\"}\n\n#Wait till project is finished deploying\nwhile (1 -eq 1)\n{\n    $resp = Invoke-RestMethod -Uri $listurl -Method $method -Headers @{Authorization = \"Basic $encodedPat\"}\n\n    foreach ($project in $resp.value)\n    {\n        $projname = $project.name\n        $projStatus = $project.state\n        #Write-Host \"Inspecting project $projname - $projStatus\" -ForegroundColor Blue -BackgroundColor Cyan\n        if ($projname -eq \"davesvab-ContosoShuttle1\" -and $projStatus -eq \"wellFormed\")\n        {\n            break \n        }\n        Start-Sleep -seconds 1\n    }\n\n    if ($projname -eq \"davesvab-ContosoShuttle1\" -and $projStatus -eq \"wellFormed\")\n    {\n        break \n    }\n}\nWrite-Host \"Project provisioned successfully\" -ForegroundColor Blue -BackgroundColor Cyan\n\n```\n"
  },
  {
    "path": "docs/Azure-DevOps-Demo-Generator-REST-API-Reference/Get-status-of-project-creation-using-TrackId.md",
    "content": "**Here is the details about how to track the project creation status using TrackId**\n\n## Track project create status\n\n `GET https://azuredevopsdemogenerator.azurewebsites.net/api/environment/currentprogress?id={TrackId}`\n\n### Parameters\n<table>\n  <tr>\n    <th>Parameter</th>\n    <th>Description</th>\n  </tr>\n  <tr>\n    <td>id</td>\n    <td>id is TrackId value</td>\n  </tr>\n</table>\n\n## Sample Response\n```\n\"Project {ProjectName} created\"\n.\n.\n.\n.\n\"Successfully Created\"\n```\n"
  },
  {
    "path": "docs/Azure-DevOps-Demo-Generator-REST-API-Reference.md",
    "content": "# Welcome to the Azure DevOps Services REST API Reference\n-------------------------\nWe have added API support to the Azure DevOps Demo Generator so that it can be invoked externally. This page has all the instructions that you need to know how to call the API.\n\n* Calling the API from a [PowerShell Script](./Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%252D-Call-API-with-powershell.md)\n\n\n## Create a Project\n\n `POST https://azuredevopsdemogenerator.azurewebsites.net/api/environment/create`\n\n## Sample Request Body\n\n```\n{\n\t\"accessToken\": \"********************************\",\n\t\"organizationName\": \"DemoProjects\",\n\t\"templateName\": \"contososhuttle2\",\n\t\"users\": [\t\t\n\t\t{\n\t\t\t\"email\": \"abc@outlook.com\",\n\t\t\t\"ProjectName\": \"TestProject1\"\n\t\t},\n\t{\n\t\t\t\"email\": \"abc@outlook.com\",\n\t\t\t\"ProjectName\": \"TestProject2\"\n\t\t}\n    \t]\n}\n```\n### Parameters\n<table>\n  <tr>\n    <th>Parameter</th>\n    <th>Description</th>\n  </tr>\n  <tr>\n    <td>accessToken</td>\n    <td>PAT for the Azure DevOps Org. Note that the projects will be created under the user name in which the PAT is created. The PAT should be created with the following scopes \n<li><b>read, write and manage </b> projects and teams and </li>\n<li><b>read and write</b> permissions for Work Item, Code, Build, Wiki, Dashboard, Extensions, etc.,</li></td>\n  </tr>\n<tr>\n<td> Organization name </td><td>Name of the Azure DevOps org in which the project will be created\n</td>\n</tr>\n<tr><td> templatName</td><td>The short name of the template</td></tr>\n<tr><td> users</td><td>Users information. You can specify any number of users.<br /><li>Email address of the user</li><li<>Name of the project </td></tr>\n</table>\n\n## Sample Response\n\n\n\n## Validation Messages\n<table>\n<tr><td>Validation for account based on provided Organisation name</td><td>If Organisation Name is empty, then message will be \"Provide a valid Account name\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for access token</td><td>If access token is empty, then message will be \"Token of type Basic must be provided\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for Project Name</td><td>If the Project Name is invalid, then message will be \"Invalid Project name\" with status code 402 Bad Request\nIf the Project Name is same as reserved keywords, then message will be \"Project name must not be a system-reserved name such as PRN, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, COM10, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9, NUL, CON, AUX, SERVER, SignalR, DefaultCollection, or Web\" with status code 402 Bad request</td></tr>\n<tr><td>Check for Duplicate Project Name in Request body</td><td>If the Project Name duplicate in the request body, then message will be \"ProjectName must be unique\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for TemplateName</td><td>If templateName is empty, then message will be \n\"Template Name should not be empty\" with status code 402 Bad Request.\nIf the given template name not found in the source, then message will be \"Template Not Found!\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for Email ID and Project Name</td><td>\"EmailId or ProjectName is not found\" with status code 402 Bad Request</td></tr>\n</table>"
  },
  {
    "path": "docs/FAQ.md",
    "content": "# Frequently Asked Questions\n\nHere are the few frequently asked questions or the knows issues\n\n1. **Q: What are pre-requisites to use Azure DevOps Demo Generator?**<br>\n**A:** You just need to have an organization with all the permissions required to create or manage the project.\n\n1. **Q: Do we require organization prior to the using Azure DevOps Demo Generator?**<br>\n**A:**   Yes, if you really want to create a project. Azure DevOps Demo Generator doesn't create organizations. User must have an organization before using the tool.\n\n1. **Q: How much time does it take to create a project?** <br>\n**A:** It depends on the template you have choosen. Roughly say 3-5 minutes.\n\n1. **Q: My Organization is not listed under the picklist, what would be the reason?**<br>\n**A:** You might have logged in with different **Azure Active Directory** other than the organization you are looking for. Please sign out and login after changing the directory. You can find reference guide to change the directory [here](https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/change-azure-ad-connection?view=azure-devops)\n\n1. **Q: Can we use this tool for project migration or to create a copy of the project?** <br>\n**A:** This tool doesn't designed for migration or to copy the projects from one organization to another. This is only to provision a demo set up with predefined step by step instruction \n\n1. **Q: Can we fork the GitHub repository to any other GitHub organization?**<br>\n**A:** Currently no. Repository will be forked to the organization associated to GitHub login id.\n\n1. **Q: Info: Could not find any organizations, please change the directory and login** <br>\n**A:** You might have logged in with different **Azure Active Directory** other than the organization you are looking for. Please sign out and login after changing the directory. You can find reference guide to change the directory [here](https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/change-azure-ad-connection?view=azure-devops)\n\n1. **Q: Error while creating release definition:** Tasks with versions ARM Outputs:4.* are not valid for deploy job Agent job in stage Stage 1 <br>\n**A:** This is usually caused by one of the third-party extensions not enabled or installed in your Azure DevOps org. Usually installation of extensions are quick but sometimes, it can take a few minutes (or even hours!) for an extension to be available to use, after it is installed in the marketplace. <br>\nYou can try waiting for a few minutes and confirm whether the extension is available to use, and then run the generator again\n\n1. **Q: Error while creating query: TF401256: You do not have Write permissions for query Shared Queries:** <br>\n**A:** In Azure DevOps, users have different access levels - Basic, Stakeholder and Visual Studio Subscriber. Access levels determine what features are available to users. In order to provision projects using the demo generator, you need at least a Basic access level. This error indicates the user has a stakeholder license which does not grant permissions to writing shared queries. <br>\nYou should change the access level, from stakeholder to basic. Please refer to this article on docs: [Add users to your organization or project](https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/add-organization-users?view=azure-devops) for more information on how to add users to your organization, and specify the level of features they can use.\n\n1. **Q: TF50309: The following account does not have sufficient permissions to complete the operation** <br>\n**A:** You do not have permissions to create new projects in the Azure DevOps organization you have selected. You will need to be a part of the Project Administrators group or have explicit permissions to create new projects. <br>\nPlease make sure you have the required permissions or try selecting a different Azure DevOps org where you project creation permission.\n\n"
  },
  {
    "path": "docs/Gemfile",
    "content": "source \"https://rubygems.org\"\n\ngem 'github-pages', group: :jekyll_plugins\ngem 'jekyll-feed'\ngem 'jekyll-redirect-from'"
  },
  {
    "path": "docs/Limitations.md",
    "content": "# Limitations of Azure DevOps Demo Generator\n\nAzure DevOps Demo Generator is to create a demo set up with predefined templates, it has some limitations, which are listed below. This can't be treated as migration or copying project tool from one Organization to another.\n\n## Following are the limitations of Azure DevOps Demo Generator and Template Builder\n\n||Description|\n|------|-----|\n|Custom process template| Templates with Custom Process doesn't supports exporting Kanban board setting or the style. To use the project template generated from Custom Process or Inherited template, the target organization must have the same process and  template Id|\n| Areas and Iterations| Not all the areas and iterations can be exported by the Template Builder with hierarchy. |\n|Iteration dates| It has predefined logic to align the dates, this can't be changed based on the requirement |\n| Work Items | Not all the work items will be exported. This count is limited to 200 work items of each type, if there are more than 200 work items reduce it to 200 and run the Template Builder |\n|Work Item fields|Only few standard fields are supported, which are listed below. ```Title, State, Reason,Priority, Steps, Parameters, LocalDataSource, AutomationStatus, AcceptanceCriteria, Tags, RemainingWork, AssignedTo,  AreaPath, Description, Effort```|\n| Wiki and Dashboard | These are not supported for General templates, we have some set of standart templates, which supports Wiki and Dashboard|\n|Test Plans and Suites| Not supported for General templates, supported for standard templates which demonstrates the feature|\n|Service connections|Service connections will be created based on the template requirement, those are needs to be authenticated by the user upon creating project|\n|Source code| Source code can be present in public GitHub repository, which can be imported at the time of project creation, if the source code present in some Azure Repos, user has to provide PAT in ```/Template/ServiceEndPoints/**.json``` files at the time of importing the template, as shown below ```\"username\": \"$username$\",\"password\": \"$password$\"``` |\n|Groups and Permissoins| Demo Generator doesn't support additon or modification of any groups or users and permission|\n|Environments | once you run the YML pipeline environemts will be created|\n\n\n"
  },
  {
    "path": "docs/Local-Development.md",
    "content": "# Running the Azure DevOps Demo Generator locally\n\nTo run this locally, you will need:\n\n* Microsoft Visual Studio 2017 or higher;\n* Internet Information Server and ASP.NET 4.5  or above installed;\n* SQL Server 2016 Express LocalDB\n\n## Steps\n\n1. Clone the solution to your local repository  or fork it to your GitHub repo first and clone it from there.\n1. Open the solution (src\\VSTSDemoGeneratorV2.sln ) in Visual Studio and restore the required packages.\n1. This application uses **OAuth** for authorization. In order to register the app, you will need to provide a callback URL. However, App registration does not allow localhost (http) to be the hostname in your callback URL. You can edit the hosts file (C:\\Windows\\System32\\Drivers\\etc\\hosts) on your local computer to map a hostname to 127.0.0.1. **Then use this hostname when you register your app**.\n1. Using an elevated command prompt, open the Hosts file on your machine and add a new mapping to your hostname. For instance, let's say we will use **azuredevopsdemogen-mylocal.com** domain name.\n\n    > 127.0.0.1 azuredevopsdemogen-mylocal.com\n\n    ![Sample host file](/Images/hostfile.png)\n\n1. You can register the app using this domain but you will need to provide a secure connection (https) for the callback URL. Create a new website **azuredevopsdemogen-mylocal.com** and enable HTTPS with a self-signed certificate on IIS by following the instructions provided in this [article](https://weblogs.asp.net/scottgu/tip-trick-enabling-ssl-on-iis7-using-self-signed-certificates)\n1. Next, go to (https://app.vsaex.visualstudio.com/app/register) to register your app. Specify the domain name (**azuredevopsdemogen-mylocal.com**) for the **Application website** and the **Application Callback URL** must be `https://<<domain name>>/Environment/Create`\n1. Select the following scopes and submit. If the submission is successful, the application settings page is displayed. You will need these information.\n\n   ![](/Images/scopes.png)\n\n   ![](/Images/AppSetting.png)\n\n1. Go to IIS Manager, select the wesbiste you created. Open the  **Configuration Editor** by double-clicking it. Open the **Collections**. Add the following entries to the collection ( **Note:** If you want to view the settings for the app that you registered, you can get it from [here](https://app.vssps.visualstudio.com/profile/view).:\n\n    * RedirectUri - `https://<<domain name>>/Environment/Create`\n    * ClientId - App ID from the application settings\n    * ClientSecret - Client Secret from the application settings\n    * AppScope - Authorized Scopes from the application settings (Encode the Authorized scopes and copy)\n\n    ![](/Images/IIS_Appsettings.png)\n\n1. Update the **Web \\| Server** information in the Project properties file. Make sure you are running using the Local IIS and not IIS Express and your Project URL matches the web server name created in IIS.\n\n    ![](/Images/local-debug.png)\n\n1. Save the file and run the application\n\n## Extractor\nWhen you are using extractor make sure you have given the Read & Write permissions for **IIS_IUSRS** group on the folder **ExtractedTemplate**\n\n   ![](/Images/permissions.png)\n"
  },
  {
    "path": "docs/Using-Private-template-URL.md",
    "content": "# Using Private template URL\n\nOnce you generate the custom tempalte using [Azure  DevOps Demo Generator - Template Builder](https://azuredevopsdemogenerator.azurewebsites.net/), you can use the same template as a master copy to provision the sample projects.\n\n## Provisioning your project from your custom template using public URL\n\nUsing private template URL you can provisoin the project. You have multiple options here\n\n\n1. Using the template URL from public GitHub repository, refer [Provisioning the project from your custom template](./Using-The-Template-Extractor.md)\n\n1. Use the template URL in the home page of [Azure DevOps Demo Generator](https://azuredevopsdemogenerator.azurewebsites.net/) with querystring parameter **?templateurl**. This supports only the public URL\n \n    >```Ex: https://azuredevopsdemogenerator.azurewebsites.net/?templateurl=public_url ```\n\n    Once you format the URL, press enter to reload the page.\n1. Click on **Sign In** button\n\n1. Once you navigate to **Create Project** page, you should see the private tempalte selected by default\n\n1. Select the **Organization**.  Provide the **Project Name**. Choose **Create Project** to start provisioning a project\n\n    > **Note**: Once the process completes, the template will be discarded by the system. If you want to reuse the tempalte, you can use the **Private** option in the **Choose Template** dialog box\n\n    You can refer the document [Provisioning your project from your custom template](./Using-The-Template-Extractor.md)\n\nPrevious: [Using the Extractor](./Using-The-Template-Extractor.md)\n"
  },
  {
    "path": "docs/Using-The-Generator.md",
    "content": "# Using the Azure DevOps Demo Generator\n\n1. Browse to the [Azure DevOps Demo Generator site](https://azuredevopsdemogenerator.azurewebsites.net/) by click the link, or copy `https://azuredevopsdemogenerator.azurewebsites.net/` into your browser's URL field.\n\n2. Click **Sign In** and provide the Microsoft or Azure AD account credentials associated with an organization in Azure DevOps Services. If you don't have an organization, click on **Get Started for Free** to create one and then log in with your credentials.\n\n![Image of VSTS Demo Generator V2 login](./About-Azure-DevOps-Demo-Generator/images/homepage.png)\n\n1. After you sign in, select **Accept** to grant the Demo Generator permissions to access your Azure DevOps account.\n\n1. Select the organization you will use to host the project created by the Azure DevOps Demo Generator. (You may have multiple accounts of which you are a member, and which are associated with your login, so choose carefully.) Provide a name for your project (such as \"MyProjectDemo\" ) that you and other contributors can use to identify it as a demo project. \n\n![Image of the generator main page](./About-Azure-DevOps-Demo-Generator/images/mainpage.png)\n\nLastly, select the demo project template you want to provision by clicking the **Choose Template** button.\n\n![Image of VSTS Demo Generator template selection screen](./About-Azure-DevOps-Demo-Generator/images/templateselection.png)\n\n   >The default template is **SmartHotel360**, which contains complete ASP.NET 2 web mobile and desktop business apps for a hotel, and can be deployed using Docker containers. Other templates include **MyHealthClinic**, which defines a team project for an ASP.NET Core app that deploys to Azure App Service; **PartsUnlimited**, which defines an ASP.NET app with customized CI/CD pipelines; and **MyShuttle**, which defines a Java app and Azure App service deployment.\n\n   >All four templates provide fictional Azure DevOps users and pre-populated Agile planning and tracking work items and data, along with source code in an Azure Repos Git repo, as well as access to Azure Pipelines.\n\n1. Some templates may require additional extensions to be installed to your organization. The demo generation process checks to see if these extensions are already installed. If the extension is already installed, a green check will be displayed in front of the extension name. If the extension is **not** installed, select the empty check boxes to install the extension(s) to your account. When ready, click on **Create Project** button.\n\n    > If you want to manually install the extensions,  click on the provided link for a specific extension, which takes you to the extension's page on Azure DevOps Marketplace. From there, you can install the extension.\n\n2. Your project may take a couple of minutes for the Demo Generator to provision. When it completes, you will be provided with a link to the demo project.\n\n![Image of Azure DevOps Demo Generator project created screen](./About-Azure-DevOps-Demo-Generator/images/projectcreated.png)\n\n1. Select the **Navigate to project** button to the new demo Azure DevOps Services project and confirm it was successfully provisioned.\n\n![Image of Azure DevOps Demo Generator provision confirmation screen](./About-Azure-DevOps-Demo-Generator/images/projecthomepage.png)\n\n> You must provide your own information such as URLs, logins, password, and others for the configuration of project endpoints that use Azure resources.\n\n-------------\n\nNext: [Building your own template](./Using-The-Template-Extractor.md)\n"
  },
  {
    "path": "docs/Using-The-Template-Extractor.md",
    "content": "# Using the Extractor\n\nAzure DevOps Generator provides a number of templates, out of the box, that supports a wide variety of scenarios, from different project types to different programming languages, deployment platforms, etc., In addition to this, the generator also allows users to make their own templates. Users can convert their existing projects into templates and then provision new projects using that template. The ability to have custom templates can be useful in many scenarios, such as building custom training materials, provision only certain artifacts, etc., \n\nThis document walks you through the steps on how you can use the extractor.\n\n## Before you start\n\nSetup an Azure DevOps project and make sure it is ready to be extracted. The extractor will capture the contents of the project and save them as JSON files  which will be archived into a zip file.\n\n## Building a new custom template\n\n1. Access the generator with the query parameter **\"enableextractor=true\"** added to the URL: [https://azuredevopsdemogenerator.azurewebsites.net/?enableextractor=true](https://azuredevopsdemogenerator.azurewebsites.net/?enableextractor=true)\n\n    ![Azure DevOps Generator Home Page](./About-Azure-DevOps-Demo-Generator/images/homepage.png)\n\n1. After you sign in, on the main page, you will see a new link labelled **\"Build your own template\"**\n\n    ![Build your template link on main page](./About-Azure-DevOps-Demo-Generator/images/buildyourtemplatelink.png)\n\n1. Selecting that will open the **extractor** main page in a new tab. \n\n    ![Extractor Home Page](./About-Azure-DevOps-Demo-Generator/images/extractorhomepage.png)\n\n1. Select the organization and then the project that you want to turn into a template.\n\n1. Click **Analyze**. This will validate if the project is one of the supported types (only Agile and Scrum based projects are supported for the time-being) and that all of the contents can be read.At the end of the analysis, you will see the artifacts and count of items for you to confirm if the extractor has read all items correctly.\n\n    ![Analyzing the project](./About-Azure-DevOps-Demo-Generator/images/analyze.png)\n\n1. If it is correct and you wish to proceed, select the **Generate** button. This will again read all the items from the project but this time, the contents will be saved as JSON data. After all the items have been extracted, the folder will be archived into a zip file.\n\n1. Select the link to download the zip file. Note that the zip file is not stored on the server side - so, make sure you download the file.  It will not be available after you close the page. \n\n    ![Downloadin the generated template](./About-Azure-DevOps-Demo-Generator/images/generatedfile.png)\n\n**Note:** The Extractor does not support all item types and so it should not be considered as a migration tool for moving projects from one server to another. For what's supported and what's not supported, see the [limitations](./Limitations.md) section\n\n## Provisioning your project from your custom template\n\n1. Return back to the generator page  or re-open it again if you have already closed it.\n\n1. Select **Choose Template**\n\n1. You will see a new tab labelled **Private**. Select the tab.\n\n    Here you have three option\n\n    1. Select **Browse** and select the zip file you downloaded zip file.\n\n    1. Use the radio button **GitHub** to consume the private template from a github raw URL\n\n    1. Use the radio button **URL** to consume the private template from other sources\n\n1. Once you point the right template, click **Submit** to validate and pick the template for provisoning the project\n\n1.  Choose **Create Project** to start provisioning a project\n\n-------------\n\nPrevious: [Using the Generator](./Using-The-Generator.md)\n\nNext: [Using Private template URL](./Using-Private-template-URL.md)"
  },
  {
    "path": "docs/_config.yml",
    "content": "#\n# This file contains configuration flags to customize your site\n#\n\n# Name of your site (displayed in the header)\nname: Azure DevOps Demo Generator\n\n# Short bio or description (displayed in the header)\ndescription: Azure DevOps Demo Generator\n\n# URL of your avatar or profile pic (you could use your GitHub profile pic)\navatar:\n\n#\n# Flags below are optional\n#\n\n\n# Includes an icon in the footer for each username you enter\nfooter-links:\n  dribbble:\n  email:\n  facebook:\n  flickr:\n  github: barryclark/jekyll-now\n  instagram:\n  linkedin:\n  pinterest:\n  rss: # just type anything here for a working RSS icon\n  twitter: jekyllrb\n  stackoverflow: # your stackoverflow profile, e.g. \"users/50476/bart-kiers\"\n  youtube: # channel/<your_long_string> or user/<user-name>\n  googleplus: # anything in your profile username that comes after plus.google.com/\n\n\n# Enter your Disqus shortname (not your username) to enable commenting on posts\n# You can find your shortname on the Settings page of your Disqus account\ndisqus:\n\n# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking\ngoogle_analytics:\n\n# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)\n# Used for Sitemap.xml and your RSS feed\nurl:\n\n# If you're hosting your site at a Project repository on GitHub pages\n# (http://yourusername.github.io/repository-name)\n# and NOT your User repository (http://yourusername.github.io)\n# then add in the baseurl here, like this: \"/repository-name\"\nbaseurl: \"\"\n\n#\n# !! You don't need to change any of the configuration flags below !!\n#\n\npermalink: /:title/\n\n# The release of Jekyll Now that you're using\nversion: v1.2.0\n\n# Jekyll 3 now only supports Kramdown for Markdown\nkramdown:\n  # Use GitHub flavored markdown, including triple backtick fenced code blocks\n  input: GFM\n  # Jekyll 3 and GitHub Pages now only support rouge for syntax highlighting\n  syntax_highlighter: rouge\n  syntax_highlighter_opts:\n    # Use existing pygments syntax highlighting css\n    css_class: 'highlight'\n\n# Set the Sass partials directory, as we're using @imports\nsass:\n  style: :expanded # You might prefer to minify using :compressed\n\n# Use the following plug-ins\nplugins:\n  - jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem\n  - jekyll-feed # Create an Atom feed using the official Jekyll feed gem\n\n# Exclude these files from your production _site\nexclude:\n  - Gemfile\n  - Gemfile.lock\n  - LICENSE\n  - README.md\n  - CNAME\n\n\nhost: 127.0.0.1\n# the preview server used. Leave as is.\n\nport: 4000\n"
  },
  {
    "path": "docs/_site/About-Azure-DevOps-Demo-Generator/Known-Issues-and-FAQ/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Azure DevOps Demo Generator | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/About-Azure-DevOps-Demo-Generator/Known-Issues-and-FAQ/\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/About-Azure-DevOps-Demo-Generator/Known-Issues-and-FAQ/\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/About-Azure-DevOps-Demo-Generator/Known-Issues-and-FAQ/\",\"headline\":\"Azure DevOps Demo Generator\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <p>[[<em>TOC</em>]]</p>\n\n<h1 id=\"known-issues\">Known Issues:</h1>\n\n<h2 id=\"issue-error-while-creating-release-definition\"><strong>Issue:</strong> Error while creating release definition:</h2>\n<p>Tasks with versions ‘ARM Outputs:4.*’ are not valid for deploy job ‘Agent job’ in stage Stage 1</p>\n\n<p><strong>Cause:</strong> This is usually caused by one of the third-party extensions not enabled or installed in your Azure DevOps org. Usually installation of extensions are quick but sometimes, it  can take a few minutes (or even hours!) for an extension to be available to use, after it is installed in the marketplace.</p>\n\n<p><strong>Workaround:</strong> You can try waiting for a few minutes and confirm whether the extension is available to use, and then run the generator again.</p>\n\n<hr />\n<h1 id=\"frequently-asked-questions\">Frequently Asked Questions</h1>\n\n<h2 id=\"q-is-the-generator-open-source-can-i-get-access-to-the-code\">Q: Is the Generator open-source? Can I get access to the code?</h2>\n\n<p>Azure DevOps Generator is not open-sourced yet. While we plan to make this open source, it is being evaluated by the product and legal teams</p>\n\n<hr />\n\n<h2 id=\"q-how-can-i-build-my-own-template\">Q: How can I build my own template?</h2>\n\n<p>Yes, you can take a snapshot of your project and turn into a template and use it for provisioning future projects using the <strong>Extractor</strong> - See <a href=\"/About-Azure-DevOps-Demo-Generator/Build-your-own-template\">Build-your-own-template</a></p>\n\n<hr />\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/About-Azure-DevOps-Demo-Generator/Known-Issues-and-FAQ.md",
    "content": "[[_TOC_]]\n\n\n# Known Issues:\n\n## **Issue:** Error while creating release definition:\nTasks with versions 'ARM Outputs:4.*' are not valid for deploy job 'Agent job' in stage Stage 1\n\n**Cause:** This is usually caused by one of the third-party extensions not enabled or installed in your Azure DevOps org. Usually installation of extensions are quick but sometimes, it  can take a few minutes (or even hours!) for an extension to be available to use, after it is installed in the marketplace. \n\n**Workaround:** You can try waiting for a few minutes and confirm whether the extension is available to use, and then run the generator again. \n\n------------------\n# Frequently Asked Questions\n\n##  Q: Is the Generator open-source? Can I get access to the code?\n\nAzure DevOps Generator is not open-sourced yet. While we plan to make this open source, it is being evaluated by the product and legal teams\n\n---------------\n\n##  Q: How can I build my own template?\n\nYes, you can take a snapshot of your project and turn into a template and use it for provisioning future projects using the **Extractor** - See [Build-your-own-template](/About-Azure-DevOps-Demo-Generator/Build-your-own-template)\n\n-----------"
  },
  {
    "path": "docs/_site/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%2D-Call-API-with-powershell/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Here is the details on how to call an API to create project using powershell | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Here is the details on how to call an API to create project using powershell\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%252D-Call-API-with-powershell/\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%252D-Call-API-with-powershell/\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%252D-Call-API-with-powershell/\",\"headline\":\"Here is the details on how to call an API to create project using powershell\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <h2 id=\"here-is-the-details-on-how-to-call-an-api-to-create-project-using-powershell\">Here is the details on how to call an API to create project using powershell</h2>\n\n<div class=\"highlighter-rouge\"><div class=\"highlight\"><pre class=\"highlight\"><code>$pat = \"_PAT_\"\n$encodedPat = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(\":$pat\"))\n\n$body = @\"\n{\n    \"accessToken\": \"_PAT_\",\n    \"organizationName\": \"_ORG_\",\n    \"templateName\": \"_TEMPLATENAME_\",\n    \"users\": [{\n        \"email\":  \"_EMAIL_\",\n        \"ProjectName\":  \"_PROJECTNAME_\"\n    }]\n}\n\"@\n\nWrite-Host \"Provisioning project ...\" -ForegroundColor Blue -BackgroundColor Cyan\n$resp = Invoke-WebRequest -Uri \"https://demogenapi.azurewebsites.net/api/environment/create\" -Method \"POST\" -ContentType application/json -Body $body\n\n$returnCode = $resp.StatusCode\n$returnStatus = $resp.StatusDescription\n\nif ($returnCode -ne \"202\") {\n    Write-Host \"Create project failed - $returnCode $returnStatus\" -ForegroundColor White -BackgroundColor Red\n    break\n}\nWrite-Host \"Project queued ... awaiting completion ...\" -ForegroundColor Blue -BackgroundColor Cyan\n\n$method = \"GET\"\n$listurl = \"https://dev.azure.com/culater/_apis/projects?api-version=5.1-preview.4\"\n$resp = Invoke-RestMethod -Uri $listurl -Method $method -Headers @{Authorization = \"Basic $encodedPat\"}\n\n#Wait till project is finished deploying\nwhile (1 -eq 1)\n{\n    $resp = Invoke-RestMethod -Uri $listurl -Method $method -Headers @{Authorization = \"Basic $encodedPat\"}\n\n    foreach ($project in $resp.value)\n    {\n        $projname = $project.name\n        $projStatus = $project.state\n        #Write-Host \"Inspecting project $projname - $projStatus\" -ForegroundColor Blue -BackgroundColor Cyan\n        if ($projname -eq \"davesvab-ContosoShuttle1\" -and $projStatus -eq \"wellFormed\")\n        {\n            break \n        }\n        Start-Sleep -seconds 1\n    }\n\n    if ($projname -eq \"davesvab-ContosoShuttle1\" -and $projStatus -eq \"wellFormed\")\n    {\n        break \n    }\n}\nWrite-Host \"Project provisioned successfully\" -ForegroundColor Blue -BackgroundColor Cyan\n\n</code></pre></div></div>\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%2D-Call-API-with-powershell.md",
    "content": "## Here is the details on how to call an API to create project using powershell\n\n```\n$pat = \"_PAT_\"\n$encodedPat = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(\":$pat\"))\n\n$body = @\"\n{\n    \"accessToken\": \"_PAT_\",\n    \"organizationName\": \"_ORG_\",\n    \"templateName\": \"_TEMPLATENAME_\",\n    \"users\": [{\n        \"email\":  \"_EMAIL_\",\n        \"ProjectName\":  \"_PROJECTNAME_\"\n    }]\n}\n\"@\n\nWrite-Host \"Provisioning project ...\" -ForegroundColor Blue -BackgroundColor Cyan\n$resp = Invoke-WebRequest -Uri \"https://demogenapi.azurewebsites.net/api/environment/create\" -Method \"POST\" -ContentType application/json -Body $body\n\n$returnCode = $resp.StatusCode\n$returnStatus = $resp.StatusDescription\n\nif ($returnCode -ne \"202\") {\n    Write-Host \"Create project failed - $returnCode $returnStatus\" -ForegroundColor White -BackgroundColor Red\n    break\n}\nWrite-Host \"Project queued ... awaiting completion ...\" -ForegroundColor Blue -BackgroundColor Cyan\n\n$method = \"GET\"\n$listurl = \"https://dev.azure.com/culater/_apis/projects?api-version=5.1-preview.4\"\n$resp = Invoke-RestMethod -Uri $listurl -Method $method -Headers @{Authorization = \"Basic $encodedPat\"}\n\n#Wait till project is finished deploying\nwhile (1 -eq 1)\n{\n    $resp = Invoke-RestMethod -Uri $listurl -Method $method -Headers @{Authorization = \"Basic $encodedPat\"}\n\n    foreach ($project in $resp.value)\n    {\n        $projname = $project.name\n        $projStatus = $project.state\n        #Write-Host \"Inspecting project $projname - $projStatus\" -ForegroundColor Blue -BackgroundColor Cyan\n        if ($projname -eq \"davesvab-ContosoShuttle1\" -and $projStatus -eq \"wellFormed\")\n        {\n            break \n        }\n        Start-Sleep -seconds 1\n    }\n\n    if ($projname -eq \"davesvab-ContosoShuttle1\" -and $projStatus -eq \"wellFormed\")\n    {\n        break \n    }\n}\nWrite-Host \"Project provisioned successfully\" -ForegroundColor Blue -BackgroundColor Cyan\n\n```\n"
  },
  {
    "path": "docs/_site/Azure-DevOps-Demo-Generator-REST-API-Reference/Get-status-of-project-creation-using-TrackId/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Azure DevOps Demo Generator | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/Get-status-of-project-creation-using-TrackId/\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/Get-status-of-project-creation-using-TrackId/\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/Get-status-of-project-creation-using-TrackId/\",\"headline\":\"Azure DevOps Demo Generator\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <p><strong>Here is the details about how to track the project creation status using TrackId</strong></p>\n\n<h2 id=\"track-project-create-status\">Track project create status</h2>\n\n<p><code class=\"highlighter-rouge\">GET https://azuredevopsdemogenerator.azurewebsites.net/api/environment/currentprogress?id={TrackId}</code></p>\n\n<h3 id=\"parameters\">Parameters</h3>\n<table>\n  <tr>\n    <th>Parameter</th>\n    <th>Description</th>\n  </tr>\n  <tr>\n    <td>id</td>\n    <td>id is TrackId value</td>\n  </tr>\n</table>\n\n<h2 id=\"sample-response\">Sample Response</h2>\n<div class=\"highlighter-rouge\"><div class=\"highlight\"><pre class=\"highlight\"><code>\"Project {ProjectName} created\"\n.\n.\n.\n.\n\"Successfully Created\"\n</code></pre></div></div>\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/Azure-DevOps-Demo-Generator-REST-API-Reference/Get-status-of-project-creation-using-TrackId.md",
    "content": "**Here is the details about how to track the project creation status using TrackId**\n\n## Track project create status\n\n `GET https://azuredevopsdemogenerator.azurewebsites.net/api/environment/currentprogress?id={TrackId}`\n\n### Parameters\n<table>\n  <tr>\n    <th>Parameter</th>\n    <th>Description</th>\n  </tr>\n  <tr>\n    <td>id</td>\n    <td>id is TrackId value</td>\n  </tr>\n</table>\n\n## Sample Response\n```\n\"Project {ProjectName} created\"\n.\n.\n.\n.\n\"Successfully Created\"\n```\n"
  },
  {
    "path": "docs/_site/Azure-DevOps-Demo-Generator-REST-API-Reference/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Welcome to the Azure DevOps Services REST API Reference | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Welcome to the Azure DevOps Services REST API Reference\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/\",\"headline\":\"Welcome to the Azure DevOps Services REST API Reference\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <h1 id=\"welcome-to-the-azure-devops-services-rest-api-reference\">Welcome to the Azure DevOps Services REST API Reference</h1>\n<hr />\n<p>We have added API support to the Azure DevOps Demo Generator so that it can be invoked externally. This page has all the instructions that you need to know how to call the API.</p>\n\n<ul>\n  <li>Calling the API from a <a href=\"/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%2D-Call-API-with-powershell\">PowerShell Script</a></li>\n</ul>\n\n<h2 id=\"create-a-project\">Create a Project</h2>\n\n<p><code class=\"highlighter-rouge\">POST https://azuredevopsdemogenerator.azurewebsites.net/api/environment/create</code></p>\n\n<h2 id=\"sample-request-body\">Sample Request Body</h2>\n\n<div class=\"highlighter-rouge\"><div class=\"highlight\"><pre class=\"highlight\"><code>{\n\t\"accessToken\": \"********************************\",\n\t\"organizationName\": \"DemoProjects\",\n\t\"templateName\": \"contososhuttle2\",\n\t\"users\": [\t\t\n\t\t{\n\t\t\t\"email\": \"abc@outlook.com\",\n\t\t\t\"ProjectName\": \"TestProject1\"\n\t\t},\n\t{\n\t\t\t\"email\": \"abc@outlook.com\",\n\t\t\t\"ProjectName\": \"TestProject2\"\n\t\t}\n    \t]\n}\n</code></pre></div></div>\n<h3 id=\"parameters\">Parameters</h3>\n<table>\n  <tr>\n    <th>Parameter</th>\n    <th>Description</th>\n  </tr>\n  <tr>\n    <td>accessToken</td>\n    <td>PAT for the Azure DevOps Org. Note that the projects will be created under the user name in which the PAT is created. The PAT should be created with the following scopes \n<li><b>read, write and manage </b> projects and teams and </li>\n<li><b>read and write</b> permissions for Work Item, Code, Build, Wiki, Dashboard, Extensions, etc.,</li></td>\n  </tr>\n<tr>\n<td> Organization name </td><td>Name of the Azure DevOps org in which the project will be created\n</td>\n</tr>\n<tr><td> templatName</td><td>The short name of the template</td></tr>\n<tr><td> users</td><td>Users information. You can specify any number of users.<br /><li>Email address of the user</li>&lt;li&lt;&gt;Name of the project </td></tr>\n</table>\n\n<h2 id=\"sample-response\">Sample Response</h2>\n\n<h2 id=\"validation-messages\">Validation Messages</h2>\n<table>\n<tr><td>Validation for account based on provided Organisation name</td><td>If Organisation Name is empty, then message will be \"Provide a valid Account name\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for access token</td><td>If access token is empty, then message will be \"Token of type Basic must be provided\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for Project Name</td><td>If the Project Name is invalid, then message will be \"Invalid Project name\" with status code 402 Bad Request\nIf the Project Name is same as reserved keywords, then message will be \"Project name must not be a system-reserved name such as PRN, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, COM10, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9, NUL, CON, AUX, SERVER, SignalR, DefaultCollection, or Web\" with status code 402 Bad request</td></tr>\n<tr><td>Check for Duplicate Project Name in Request body</td><td>If the Project Name duplicate in the request body, then message will be \"ProjectName must be unique\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for TemplateName</td><td>If templateName is empty, then message will be \n\"Template Name should not be empty\" with status code 402 Bad Request.\nIf the given template name not found in the source, then message will be \"Template Not Found!\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for Email ID and Project Name</td><td>\"EmailId or ProjectName is not found\" with status code 402 Bad Request</td></tr>\n</table>\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/Azure-DevOps-Demo-Generator-REST-API-Reference.md",
    "content": "# Welcome to the Azure DevOps Services REST API Reference\n-------------------------\nWe have added API support to the Azure DevOps Demo Generator so that it can be invoked externally. This page has all the instructions that you need to know how to call the API.\n\n* Calling the API from a [PowerShell Script](/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%2D-Call-API-with-powershell)\n\n\n## Create a Project\n\n `POST https://azuredevopsdemogenerator.azurewebsites.net/api/environment/create`\n\n## Sample Request Body\n\n```\n{\n\t\"accessToken\": \"********************************\",\n\t\"organizationName\": \"DemoProjects\",\n\t\"templateName\": \"contososhuttle2\",\n\t\"users\": [\t\t\n\t\t{\n\t\t\t\"email\": \"abc@outlook.com\",\n\t\t\t\"ProjectName\": \"TestProject1\"\n\t\t},\n\t{\n\t\t\t\"email\": \"abc@outlook.com\",\n\t\t\t\"ProjectName\": \"TestProject2\"\n\t\t}\n    \t]\n}\n```\n### Parameters\n<table>\n  <tr>\n    <th>Parameter</th>\n    <th>Description</th>\n  </tr>\n  <tr>\n    <td>accessToken</td>\n    <td>PAT for the Azure DevOps Org. Note that the projects will be created under the user name in which the PAT is created. The PAT should be created with the following scopes \n<li><b>read, write and manage </b> projects and teams and </li>\n<li><b>read and write</b> permissions for Work Item, Code, Build, Wiki, Dashboard, Extensions, etc.,</li></td>\n  </tr>\n<tr>\n<td> Organization name </td><td>Name of the Azure DevOps org in which the project will be created\n</td>\n</tr>\n<tr><td> templatName</td><td>The short name of the template</td></tr>\n<tr><td> users</td><td>Users information. You can specify any number of users.<br /><li>Email address of the user</li><li<>Name of the project </td></tr>\n</table>\n\n## Sample Response\n\n\n\n## Validation Messages\n<table>\n<tr><td>Validation for account based on provided Organisation name</td><td>If Organisation Name is empty, then message will be \"Provide a valid Account name\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for access token</td><td>If access token is empty, then message will be \"Token of type Basic must be provided\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for Project Name</td><td>If the Project Name is invalid, then message will be \"Invalid Project name\" with status code 402 Bad Request\nIf the Project Name is same as reserved keywords, then message will be \"Project name must not be a system-reserved name such as PRN, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, COM10, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9, NUL, CON, AUX, SERVER, SignalR, DefaultCollection, or Web\" with status code 402 Bad request</td></tr>\n<tr><td>Check for Duplicate Project Name in Request body</td><td>If the Project Name duplicate in the request body, then message will be \"ProjectName must be unique\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for TemplateName</td><td>If templateName is empty, then message will be \n\"Template Name should not be empty\" with status code 402 Bad Request.\nIf the given template name not found in the source, then message will be \"Template Not Found!\" with status code 402 Bad Request</td></tr>\n<tr><td>Validation for Email ID and Project Name</td><td>\"EmailId or ProjectName is not found\" with status code 402 Bad Request</td></tr>\n</table>"
  },
  {
    "path": "docs/_site/Features-Timeline/Dashboard-creation/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Export and Create Dashboard | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Export and Create Dashboard\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/Features-Timeline/Dashboard-creation/\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/Features-Timeline/Dashboard-creation/\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/Features-Timeline/Dashboard-creation/\",\"headline\":\"Export and Create Dashboard\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <h1 id=\"export-and-create-dashboard\">Export and Create Dashboard</h1>\n<p>Export the dashboard using template builder with valid placeholders\nwhen importing/creating the dashboard, replace the placeholders with valid Ids</p>\n\n<h2 id=\"observations\">Observations</h2>\n<ul>\n  <li>Dashboard contains different types of widgets</li>\n  <li>Widgets can be segregated based on widget <code class=\"highlighter-rouge\">typeId</code></li>\n  <li>Widgets can contain <code class=\"highlighter-rouge\">QueryId</code>,<code class=\"highlighter-rouge\">BuildId</code>,<code class=\"highlighter-rouge\">ReleaseId</code>,<code class=\"highlighter-rouge\">GroupKey</code>,<code class=\"highlighter-rouge\">RepositoryId</code> etc</li>\n  <li>Not all the Ids can be replace with placeholders, only query Ids can be replaced. Since other widgets might have different names than the <code class=\"highlighter-rouge\">Build Name</code>,<code class=\"highlighter-rouge\">Release Name</code>, <code class=\"highlighter-rouge\">Repo Name</code></li>\n</ul>\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/Features-Timeline/Dashboard-creation.md",
    "content": "# Export and Create Dashboard \nExport the dashboard using template builder with valid placeholders\nwhen importing/creating the dashboard, replace the placeholders with valid Ids\n\n## Observations\n- Dashboard contains different types of widgets\n- Widgets can be segregated based on widget `typeId` \n- Widgets can contain `QueryId`,`BuildId`,`ReleaseId`,`GroupKey`,`RepositoryId` etc\n- Not all the Ids can be replace with placeholders, only query Ids can be replaced. Since other widgets might have different names than the `Build Name`,`Release Name`, `Repo Name`"
  },
  {
    "path": "docs/_site/Features-Timeline/YAML-Pipeline-Support/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Support for YAML pipeline | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Support for YAML pipeline\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/Features-Timeline/YAML-Pipeline-Support/\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/Features-Timeline/YAML-Pipeline-Support/\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/Features-Timeline/YAML-Pipeline-Support/\",\"headline\":\"Support for YAML pipeline\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <h1 id=\"support-for-yaml-pipeline\">Support for YAML pipeline</h1>\n<p>Sprint#32  May 6, 2019</p>\n\n<hr />\n\n<p>In this sprint we are adding YAML pipelines to the generator. Templates can now have CI and CD definitions defined in YAML and those pipelines will be provisioned when creating a new instance through the generator. We are also adding to the extractor so users can extract projects that has pipelines defined in YAML.</p>\n\n<p>For more information on YAML pipelines in Azure Pipelines, see <a href=\"https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=azure-devops&amp;tabs=schema\">https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=azure-devops&amp;tabs=schema</a></p>\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/Features-Timeline/YAML-Pipeline-Support.md",
    "content": "# Support for YAML pipeline\nSprint#32  May 6, 2019\n\n------------------------------\n\nIn this sprint we are adding YAML pipelines to the generator. Templates can now have CI and CD definitions defined in YAML and those pipelines will be provisioned when creating a new instance through the generator. We are also adding to the extractor so users can extract projects that has pipelines defined in YAML. \n\nFor more information on YAML pipelines in Azure Pipelines, see [https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=azure-devops&tabs=schema](https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=azure-devops&tabs=schema)"
  },
  {
    "path": "docs/_site/Features-Timeline/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Azure DevOps Demo Generator Features Timeline | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Azure DevOps Demo Generator Features Timeline\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/Features-Timeline/\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/Features-Timeline/\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/Features-Timeline/\",\"headline\":\"Azure DevOps Demo Generator Features Timeline\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <h1 id=\"azure-devops-demo-generator-features-timeline\">Azure DevOps Demo Generator Features Timeline</h1>\n\n<p>Feature list is a peek into our roadmap. It identifies some of the significant features we are currently working on and a rough timeframe for when you can expect to see them. It is not comprehensive but is intended to provide some visibility into key investments. Each feature is linked to the public roadmap project where you can learn more about a particular item</p>\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/Features-Timeline.md",
    "content": "# Azure DevOps Demo Generator Features Timeline\n\nFeature list is a peek into our roadmap. It identifies some of the significant features we are currently working on and a rough timeframe for when you can expect to see them. It is not comprehensive but is intended to provide some visibility into key investments. Each feature is linked to the public roadmap project where you can learn more about a particular item"
  },
  {
    "path": "docs/_site/assets/css/style.css",
    "content": "/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */\n/**\n * 1. Change the default font family in all browsers (opinionated).\n * 2. Prevent adjustments of font size after orientation changes in IE and iOS.\n */\nhtml {\n  font-family: sans-serif;\n  /* 1 */\n  -ms-text-size-adjust: 100%;\n  /* 2 */\n  -webkit-text-size-adjust: 100%;\n  /* 2 */\n}\n\n/**\n * Remove the margin in all browsers (opinionated).\n */\nbody {\n  margin: 0;\n}\n\n/* HTML5 display definitions\n   ========================================================================== */\n/**\n * Add the correct display in IE 9-.\n * 1. Add the correct display in Edge, IE, and Firefox.\n * 2. Add the correct display in IE.\n */\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nmain,\nmenu,\nnav,\nsection {\n  /* 1 */\n  display: block;\n}\n\nsummary {\n  display: list-item;\n}\n\n/**\n * Add the correct display in IE 9-.\n */\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n}\n\n/**\n * Add the correct display in iOS 4-7.\n */\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n  vertical-align: baseline;\n}\n\n/**\n * Add the correct display in IE 10-.\n * 1. Add the correct display in IE.\n */\ntemplate,\n[hidden] {\n  display: none;\n}\n\n/* Links\n   ========================================================================== */\n/**\n * Remove the gray background on active links in IE 10.\n */\na {\n  background-color: transparent;\n  /* 1 */\n}\n\n/**\n * Remove the outline on focused links when they are also active or hovered\n * in all browsers (opinionated).\n */\na:active,\na:hover {\n  outline-width: 0;\n}\n\n/* Text-level semantics\n   ========================================================================== */\n/**\n * 1. Remove the bottom border in Firefox 39-.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\nabbr[title] {\n  border-bottom: none;\n  /* 1 */\n  text-decoration: underline;\n  /* 2 */\n  text-decoration: underline dotted;\n  /* 2 */\n}\n\n/**\n * Prevent the duplicate application of `bolder` by the next rule in Safari 6.\n */\nb,\nstrong {\n  font-weight: inherit;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\nb,\nstrong {\n  font-weight: bolder;\n}\n\n/**\n * Add the correct font style in Android 4.3-.\n */\ndfn {\n  font-style: italic;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n/**\n * Add the correct background and color in IE 9-.\n */\nmark {\n  background-color: #ff0;\n  color: #000;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\nsmall {\n  font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\nsup {\n  top: -0.5em;\n}\n\n/* Embedded content\n   ========================================================================== */\n/**\n * Remove the border on images inside links in IE 10-.\n */\nimg {\n  border-style: none;\n}\n\n/**\n * Hide the overflow in IE.\n */\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n/* Grouping content\n   ========================================================================== */\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  /* 1 */\n  font-size: 1em;\n  /* 2 */\n}\n\n/**\n * Add the correct margin in IE 8.\n */\nfigure {\n  margin: 1em 40px;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\nhr {\n  box-sizing: content-box;\n  /* 1 */\n  height: 0;\n  /* 1 */\n  overflow: visible;\n  /* 2 */\n}\n\n/* Forms\n   ========================================================================== */\n/**\n * 1. Change font properties to `inherit` in all browsers (opinionated).\n * 2. Remove the margin in Firefox and Safari.\n */\nbutton,\ninput,\nselect,\ntextarea {\n  font: inherit;\n  /* 1 */\n  margin: 0;\n  /* 2 */\n}\n\n/**\n * Restore the font weight unset by the previous rule.\n */\noptgroup {\n  font-weight: bold;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\nbutton,\ninput {\n  /* 1 */\n  overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\nbutton,\nselect {\n  /* 1 */\n  text-transform: none;\n}\n\n/**\n * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n *    controls in Android 4.\n * 2. Correct the inability to style clickable types in iOS and Safari.\n */\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button;\n  /* 2 */\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n  border-style: none;\n  padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n  outline: 1px dotted ButtonText;\n}\n\n/**\n * Change the border, margin, and padding in all browsers (opinionated).\n */\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n *    `fieldset` elements in all browsers.\n */\nlegend {\n  box-sizing: border-box;\n  /* 1 */\n  color: inherit;\n  /* 2 */\n  display: table;\n  /* 1 */\n  max-width: 100%;\n  /* 1 */\n  padding: 0;\n  /* 3 */\n  white-space: normal;\n  /* 1 */\n}\n\n/**\n * Remove the default vertical scrollbar in IE.\n */\ntextarea {\n  overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10-.\n * 2. Remove the padding in IE 10-.\n */\n[type=\"checkbox\"],\n[type=\"radio\"] {\n  box-sizing: border-box;\n  /* 1 */\n  padding: 0;\n  /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n[type=\"search\"] {\n  -webkit-appearance: textfield;\n  /* 1 */\n  outline-offset: -2px;\n  /* 2 */\n}\n\n/**\n * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.\n */\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n/**\n * Correct the text style of placeholders in Chrome, Edge, and Safari.\n */\n::-webkit-input-placeholder {\n  color: inherit;\n  opacity: 0.54;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n  -webkit-appearance: button;\n  /* 1 */\n  font: inherit;\n  /* 2 */\n}\n\n* {\n  box-sizing: border-box;\n}\n\ninput,\nselect,\ntextarea,\nbutton {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\nbody {\n  font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n  font-size: 14px;\n  line-height: 1.5;\n  color: #24292e;\n  background-color: #fff;\n}\n\na {\n  color: #0366d6;\n  text-decoration: none;\n}\na:hover {\n  text-decoration: underline;\n}\n\nb,\nstrong {\n  font-weight: 600;\n}\n\nhr,\n.rule {\n  height: 0;\n  margin: 15px 0;\n  overflow: hidden;\n  background: transparent;\n  border: 0;\n  border-bottom: 1px solid #dfe2e5;\n}\nhr::before,\n.rule::before {\n  display: table;\n  content: \"\";\n}\nhr::after,\n.rule::after {\n  display: table;\n  clear: both;\n  content: \"\";\n}\n\ntable {\n  border-spacing: 0;\n  border-collapse: collapse;\n}\n\ntd,\nth {\n  padding: 0;\n}\n\nbutton {\n  cursor: pointer;\n  border-radius: 0;\n}\n\ndetails summary {\n  cursor: pointer;\n}\ndetails:not([open]) > *:not(summary) {\n  display: none !important;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n  margin-top: 0;\n  margin-bottom: 0;\n}\n\nh1 {\n  font-size: 32px;\n  font-weight: 600;\n}\n\nh2 {\n  font-size: 24px;\n  font-weight: 600;\n}\n\nh3 {\n  font-size: 20px;\n  font-weight: 600;\n}\n\nh4 {\n  font-size: 16px;\n  font-weight: 600;\n}\n\nh5 {\n  font-size: 14px;\n  font-weight: 600;\n}\n\nh6 {\n  font-size: 12px;\n  font-weight: 600;\n}\n\np {\n  margin-top: 0;\n  margin-bottom: 10px;\n}\n\nsmall {\n  font-size: 90%;\n}\n\nblockquote {\n  margin: 0;\n}\n\nul,\nol {\n  padding-left: 0;\n  margin-top: 0;\n  margin-bottom: 0;\n}\n\nol ol,\nul ol {\n  list-style-type: lower-roman;\n}\n\nul ul ol,\nul ol ol,\nol ul ol,\nol ol ol {\n  list-style-type: lower-alpha;\n}\n\ndd {\n  margin-left: 0;\n}\n\ntt,\ncode {\n  font-family: \"SFMono-Regular\", Consolas, \"Liberation Mono\", Menlo, Courier, monospace;\n  font-size: 12px;\n}\n\npre {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-family: \"SFMono-Regular\", Consolas, \"Liberation Mono\", Menlo, Courier, monospace;\n  font-size: 12px;\n}\n\n.octicon {\n  vertical-align: text-bottom;\n}\n\n/* Fade in an element */\n.anim-fade-in {\n  animation-name: fade-in;\n  animation-duration: 1s;\n  animation-timing-function: ease-in-out;\n}\n.anim-fade-in.fast {\n  animation-duration: 300ms;\n}\n\n@keyframes fade-in {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n/* Fade out an element */\n.anim-fade-out {\n  animation-name: fade-out;\n  animation-duration: 1s;\n  animation-timing-function: ease-out;\n}\n.anim-fade-out.fast {\n  animation-duration: 0.3s;\n}\n\n@keyframes fade-out {\n  0% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0;\n  }\n}\n/* Fade in and slide up an element */\n.anim-fade-up {\n  opacity: 0;\n  animation-name: fade-up;\n  animation-duration: 0.3s;\n  animation-fill-mode: forwards;\n  animation-timing-function: ease-out;\n  animation-delay: 1s;\n}\n\n@keyframes fade-up {\n  0% {\n    opacity: 0.8;\n    transform: translateY(100%);\n  }\n  100% {\n    opacity: 1;\n    transform: translateY(0);\n  }\n}\n/* Fade an element out and slide down */\n.anim-fade-down {\n  animation-name: fade-down;\n  animation-duration: 0.3s;\n  animation-fill-mode: forwards;\n  animation-timing-function: ease-in;\n}\n\n@keyframes fade-down {\n  0% {\n    opacity: 1;\n    transform: translateY(0);\n  }\n  100% {\n    opacity: 0.5;\n    transform: translateY(100%);\n  }\n}\n/* Grow an element width from 0 to 100% */\n.anim-grow-x {\n  width: 0%;\n  animation-name: grow-x;\n  animation-duration: 0.3s;\n  animation-fill-mode: forwards;\n  animation-timing-function: ease;\n  animation-delay: 0.5s;\n}\n\n@keyframes grow-x {\n  to {\n    width: 100%;\n  }\n}\n/* Shrink an element from 100% to 0% */\n.anim-shrink-x {\n  animation-name: shrink-x;\n  animation-duration: 0.3s;\n  animation-fill-mode: forwards;\n  animation-timing-function: ease-in-out;\n  animation-delay: 0.5s;\n}\n\n@keyframes shrink-x {\n  to {\n    width: 0%;\n  }\n}\n/* Fade in an element and scale it fast */\n.anim-scale-in {\n  animation-name: scale-in;\n  animation-duration: 0.15s;\n  animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5);\n}\n\n@keyframes scale-in {\n  0% {\n    opacity: 0;\n    transform: scale(0.5);\n  }\n  100% {\n    opacity: 1;\n    transform: scale(1);\n  }\n}\n/* Pulse an element's opacity */\n.anim-pulse {\n  animation-name: pulse;\n  animation-duration: 2s;\n  animation-timing-function: linear;\n  animation-iteration-count: infinite;\n}\n\n@keyframes pulse {\n  0% {\n    opacity: 0.3;\n  }\n  10% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0.3;\n  }\n}\n/* Pulse in an element */\n.anim-pulse-in {\n  animation-name: pulse-in;\n  animation-duration: 0.5s;\n}\n\n@keyframes pulse-in {\n  0% {\n    transform: scale3d(1, 1, 1);\n  }\n  50% {\n    transform: scale3d(1.1, 1.1, 1.1);\n  }\n  100% {\n    transform: scale3d(1, 1, 1);\n  }\n}\n/* Increase scale of an element on hover */\n.hover-grow {\n  transition: transform 0.3s;\n}\n.hover-grow:hover {\n  transform: scale(1.025);\n}\n\n/* Add a gray border */\n.border {\n  border: 1px #e1e4e8 solid !important;\n}\n\n/* Add a gray border to the top */\n.border-top {\n  border-top: 1px #e1e4e8 solid !important;\n}\n\n/* Add a gray border to the right */\n.border-right {\n  border-right: 1px #e1e4e8 solid !important;\n}\n\n/* Add a gray border to the bottom */\n.border-bottom {\n  border-bottom: 1px #e1e4e8 solid !important;\n}\n\n/* Add a gray border to the left */\n.border-left {\n  border-left: 1px #e1e4e8 solid !important;\n}\n\n/* Add a gray border to the left and right */\n.border-y {\n  border-top: 1px #e1e4e8 solid !important;\n  border-bottom: 1px #e1e4e8 solid !important;\n}\n\n.border-dashed {\n  border-style: dashed !important;\n}\n\n/* Use with .border to turn the border blue */\n.border-blue {\n  border-color: #0366d6 !important;\n}\n\n/* Use with .border to turn the border blue-light */\n.border-blue-light {\n  border-color: #c8e1ff !important;\n}\n\n/* Use with .border to turn the border green */\n.border-green {\n  border-color: #34d058 !important;\n}\n\n/* Use with .border to turn the border green light */\n.border-green-light {\n  border-color: #a2cbac !important;\n}\n\n/* Use with .border to turn the border red */\n.border-red {\n  border-color: #d73a49 !important;\n}\n\n/* Use with .border to turn the border red-light */\n.border-red-light {\n  border-color: #cea0a5 !important;\n}\n\n/* Use with .border to turn the border purple */\n.border-purple {\n  border-color: #6f42c1 !important;\n}\n\n/* Use with .border to turn the border yellow */\n.border-yellow {\n  border-color: #d9d0a5 !important;\n}\n\n/* Use with .border to turn the border gray-light */\n.border-gray-light {\n  border-color: #eaecef !important;\n}\n\n/* Use with .border to turn the border gray-dark */\n.border-gray-dark {\n  border-color: #d1d5da !important;\n}\n\n/* Use with .border to turn the border rgba black 0.15 */\n.border-black-fade {\n  border-color: rgba(27, 31, 35, 0.15) !important;\n}\n\n/* Remove all borders */\n.border-0 {\n  border: 0 !important;\n}\n\n/* Remove the top border */\n.border-top-0 {\n  border-top: 0 !important;\n}\n\n/* Remove the right border */\n.border-right-0 {\n  border-right: 0 !important;\n}\n\n/* Remove the bottom border */\n.border-bottom-0 {\n  border-bottom: 0 !important;\n}\n\n/* Remove the left border */\n.border-left-0 {\n  border-left: 0 !important;\n}\n\n/* Remove the border-radius */\n.rounded-0 {\n  border-radius: 0 !important;\n}\n\n/* Add a border-radius to all corners */\n.rounded-1 {\n  border-radius: 3px !important;\n}\n\n/* Add a 2x border-radius to all corners */\n.rounded-2 {\n  border-radius: 6px !important;\n}\n\n/* Add a 50% border-radius to make something into a circle */\n.circle {\n  border-radius: 50% !important;\n}\n\n.box-shadow {\n  box-shadow: 0 1px 1px rgba(27, 31, 35, 0.1) !important;\n}\n\n.box-shadow-medium {\n  box-shadow: 0 1px 5px rgba(27, 31, 35, 0.15) !important;\n}\n\n.box-shadow-large {\n  box-shadow: 0 1px 15px rgba(27, 31, 35, 0.15) !important;\n}\n\n.box-shadow-extra-large {\n  box-shadow: 0 10px 50px rgba(27, 31, 35, 0.07) !important;\n}\n\n.box-shadow-none {\n  box-shadow: none !important;\n}\n\n/* Set the background to $bg-white */\n.bg-white {\n  background-color: #fff !important;\n}\n\n/* Set the background to $bg-blue */\n.bg-blue {\n  background-color: #0366d6 !important;\n}\n\n/* Set the background to $bg-blue-light */\n.bg-blue-light {\n  background-color: #f1f8ff !important;\n}\n\n/* Set the background to $bg-gray-dark */\n.bg-gray-dark {\n  background-color: #24292e !important;\n}\n\n/* Set the background to $bg-gray */\n.bg-gray {\n  background-color: #f6f8fa !important;\n}\n\n/* Set the background to $bg-gray-light */\n.bg-gray-light {\n  background-color: #fafbfc !important;\n}\n\n/* Set the background to $bg-green */\n.bg-green {\n  background-color: #28a745 !important;\n}\n\n/* Set the background to $bg-green-light */\n.bg-green-light {\n  background-color: #dcffe4 !important;\n}\n\n/* Set the background to $bg-red */\n.bg-red {\n  background-color: #d73a49 !important;\n}\n\n/* Set the background to $bg-red-light */\n.bg-red-light {\n  background-color: #ffdce0 !important;\n}\n\n/* Set the background to $bg-yellow */\n.bg-yellow {\n  background-color: #ffd33d !important;\n}\n\n/* Set the background to $bg-yellow-light */\n.bg-yellow-light {\n  background-color: #fff5b1 !important;\n}\n\n/* Set the background to $bg-purple */\n.bg-purple {\n  background-color: #6f42c1 !important;\n}\n\n/* Set the background to $bg-purple-light */\n.bg-purple-light {\n  background-color: #f5f0ff !important;\n}\n\n.bg-shade-gradient {\n  background-image: linear-gradient(180deg, rgba(27, 31, 35, 0.065), rgba(27, 31, 35, 0)) !important;\n  background-repeat: no-repeat !important;\n  background-size: 100% 200px !important;\n}\n\n/* Set the text color to $text-blue */\n.text-blue {\n  color: #0366d6 !important;\n}\n\n/* Set the text color to $text-red */\n.text-red {\n  color: #cb2431 !important;\n}\n\n/* Set the text color to $text-gray-light */\n.text-gray-light {\n  color: #6a737d !important;\n}\n\n/* Set the text color to $text-gray */\n.text-gray {\n  color: #586069 !important;\n}\n\n/* Set the text color to $text-gray-dark */\n.text-gray-dark {\n  color: #24292e !important;\n}\n\n/* Set the text color to $text-green */\n.text-green {\n  color: #28a745 !important;\n}\n\n/* Set the text color to $text-orange */\n.text-orange {\n  color: #a04100 !important;\n}\n\n/* Set the text color to $text-orange-light */\n.text-orange-light {\n  color: #e36209 !important;\n}\n\n/* Set the text color to $text-purple */\n.text-purple {\n  color: #6f42c1 !important;\n}\n\n/* Set the text color to $text-white */\n.text-white {\n  color: #fff !important;\n}\n\n/* Set the text color to inherit */\n.text-inherit {\n  color: inherit !important;\n}\n\n.text-pending {\n  color: #b08800 !important;\n}\n\n.bg-pending {\n  color: #dbab09 !important;\n}\n\n.link-gray {\n  color: #586069 !important;\n}\n.link-gray:hover {\n  color: #0366d6 !important;\n}\n\n.link-gray-dark {\n  color: #24292e !important;\n}\n.link-gray-dark:hover {\n  color: #0366d6 !important;\n}\n\n/* Set the link color to $text-blue on hover\n  Useful when you want only part of a link to turn blue on hover */\n.link-hover-blue:hover {\n  color: #0366d6 !important;\n}\n\n/* Make a link $text-gray, then $text-blue on hover and removes the underline */\n.muted-link {\n  color: #586069 !important;\n}\n.muted-link:hover {\n  color: #0366d6 !important;\n  text-decoration: none;\n}\n\n.flex-row {\n  flex-direction: row !important;\n}\n\n.flex-row-reverse {\n  flex-direction: row-reverse !important;\n}\n\n.flex-column {\n  flex-direction: column !important;\n}\n\n.flex-wrap {\n  flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n  flex-wrap: nowrap !important;\n}\n\n.flex-justify-start {\n  justify-content: flex-start !important;\n}\n\n.flex-justify-end {\n  justify-content: flex-end !important;\n}\n\n.flex-justify-center {\n  justify-content: center !important;\n}\n\n.flex-justify-between {\n  justify-content: space-between !important;\n}\n\n.flex-justify-around {\n  justify-content: space-around !important;\n}\n\n.flex-items-start {\n  align-items: flex-start !important;\n}\n\n.flex-items-end {\n  align-items: flex-end !important;\n}\n\n.flex-items-center {\n  align-items: center !important;\n}\n\n.flex-items-baseline {\n  align-items: baseline !important;\n}\n\n.flex-items-stretch {\n  align-items: stretch !important;\n}\n\n.flex-content-start {\n  align-content: flex-start !important;\n}\n\n.flex-content-end {\n  align-content: flex-end !important;\n}\n\n.flex-content-center {\n  align-content: center !important;\n}\n\n.flex-content-between {\n  align-content: space-between !important;\n}\n\n.flex-content-around {\n  align-content: space-around !important;\n}\n\n.flex-content-stretch {\n  align-content: stretch !important;\n}\n\n.flex-auto {\n  flex: 1 1 auto !important;\n}\n\n.flex-shrink-0 {\n  flex-shrink: 0 !important;\n}\n\n.flex-self-auto {\n  align-self: auto !important;\n}\n\n.flex-self-start {\n  align-self: flex-start !important;\n}\n\n.flex-self-end {\n  align-self: flex-end !important;\n}\n\n.flex-self-center {\n  align-self: center !important;\n}\n\n.flex-self-baseline {\n  align-self: baseline !important;\n}\n\n.flex-self-stretch {\n  align-self: stretch !important;\n}\n\n.flex-item-equal {\n  flex-grow: 1;\n  flex-basis: 0;\n}\n\n@media (min-width: 544px) {\n  .flex-sm-row {\n    flex-direction: row !important;\n  }\n\n  .flex-sm-row-reverse {\n    flex-direction: row-reverse !important;\n  }\n\n  .flex-sm-column {\n    flex-direction: column !important;\n  }\n\n  .flex-sm-wrap {\n    flex-wrap: wrap !important;\n  }\n\n  .flex-sm-nowrap {\n    flex-wrap: nowrap !important;\n  }\n\n  .flex-sm-justify-start {\n    justify-content: flex-start !important;\n  }\n\n  .flex-sm-justify-end {\n    justify-content: flex-end !important;\n  }\n\n  .flex-sm-justify-center {\n    justify-content: center !important;\n  }\n\n  .flex-sm-justify-between {\n    justify-content: space-between !important;\n  }\n\n  .flex-sm-justify-around {\n    justify-content: space-around !important;\n  }\n\n  .flex-sm-items-start {\n    align-items: flex-start !important;\n  }\n\n  .flex-sm-items-end {\n    align-items: flex-end !important;\n  }\n\n  .flex-sm-items-center {\n    align-items: center !important;\n  }\n\n  .flex-sm-items-baseline {\n    align-items: baseline !important;\n  }\n\n  .flex-sm-items-stretch {\n    align-items: stretch !important;\n  }\n\n  .flex-sm-content-start {\n    align-content: flex-start !important;\n  }\n\n  .flex-sm-content-end {\n    align-content: flex-end !important;\n  }\n\n  .flex-sm-content-center {\n    align-content: center !important;\n  }\n\n  .flex-sm-content-between {\n    align-content: space-between !important;\n  }\n\n  .flex-sm-content-around {\n    align-content: space-around !important;\n  }\n\n  .flex-sm-content-stretch {\n    align-content: stretch !important;\n  }\n\n  .flex-sm-auto {\n    flex: 1 1 auto !important;\n  }\n\n  .flex-sm-shrink-0 {\n    flex-shrink: 0 !important;\n  }\n\n  .flex-sm-self-auto {\n    align-self: auto !important;\n  }\n\n  .flex-sm-self-start {\n    align-self: flex-start !important;\n  }\n\n  .flex-sm-self-end {\n    align-self: flex-end !important;\n  }\n\n  .flex-sm-self-center {\n    align-self: center !important;\n  }\n\n  .flex-sm-self-baseline {\n    align-self: baseline !important;\n  }\n\n  .flex-sm-self-stretch {\n    align-self: stretch !important;\n  }\n\n  .flex-sm-item-equal {\n    flex-grow: 1;\n    flex-basis: 0;\n  }\n}\n@media (min-width: 768px) {\n  .flex-md-row {\n    flex-direction: row !important;\n  }\n\n  .flex-md-row-reverse {\n    flex-direction: row-reverse !important;\n  }\n\n  .flex-md-column {\n    flex-direction: column !important;\n  }\n\n  .flex-md-wrap {\n    flex-wrap: wrap !important;\n  }\n\n  .flex-md-nowrap {\n    flex-wrap: nowrap !important;\n  }\n\n  .flex-md-justify-start {\n    justify-content: flex-start !important;\n  }\n\n  .flex-md-justify-end {\n    justify-content: flex-end !important;\n  }\n\n  .flex-md-justify-center {\n    justify-content: center !important;\n  }\n\n  .flex-md-justify-between {\n    justify-content: space-between !important;\n  }\n\n  .flex-md-justify-around {\n    justify-content: space-around !important;\n  }\n\n  .flex-md-items-start {\n    align-items: flex-start !important;\n  }\n\n  .flex-md-items-end {\n    align-items: flex-end !important;\n  }\n\n  .flex-md-items-center {\n    align-items: center !important;\n  }\n\n  .flex-md-items-baseline {\n    align-items: baseline !important;\n  }\n\n  .flex-md-items-stretch {\n    align-items: stretch !important;\n  }\n\n  .flex-md-content-start {\n    align-content: flex-start !important;\n  }\n\n  .flex-md-content-end {\n    align-content: flex-end !important;\n  }\n\n  .flex-md-content-center {\n    align-content: center !important;\n  }\n\n  .flex-md-content-between {\n    align-content: space-between !important;\n  }\n\n  .flex-md-content-around {\n    align-content: space-around !important;\n  }\n\n  .flex-md-content-stretch {\n    align-content: stretch !important;\n  }\n\n  .flex-md-auto {\n    flex: 1 1 auto !important;\n  }\n\n  .flex-md-shrink-0 {\n    flex-shrink: 0 !important;\n  }\n\n  .flex-md-self-auto {\n    align-self: auto !important;\n  }\n\n  .flex-md-self-start {\n    align-self: flex-start !important;\n  }\n\n  .flex-md-self-end {\n    align-self: flex-end !important;\n  }\n\n  .flex-md-self-center {\n    align-self: center !important;\n  }\n\n  .flex-md-self-baseline {\n    align-self: baseline !important;\n  }\n\n  .flex-md-self-stretch {\n    align-self: stretch !important;\n  }\n\n  .flex-md-item-equal {\n    flex-grow: 1;\n    flex-basis: 0;\n  }\n}\n@media (min-width: 1012px) {\n  .flex-lg-row {\n    flex-direction: row !important;\n  }\n\n  .flex-lg-row-reverse {\n    flex-direction: row-reverse !important;\n  }\n\n  .flex-lg-column {\n    flex-direction: column !important;\n  }\n\n  .flex-lg-wrap {\n    flex-wrap: wrap !important;\n  }\n\n  .flex-lg-nowrap {\n    flex-wrap: nowrap !important;\n  }\n\n  .flex-lg-justify-start {\n    justify-content: flex-start !important;\n  }\n\n  .flex-lg-justify-end {\n    justify-content: flex-end !important;\n  }\n\n  .flex-lg-justify-center {\n    justify-content: center !important;\n  }\n\n  .flex-lg-justify-between {\n    justify-content: space-between !important;\n  }\n\n  .flex-lg-justify-around {\n    justify-content: space-around !important;\n  }\n\n  .flex-lg-items-start {\n    align-items: flex-start !important;\n  }\n\n  .flex-lg-items-end {\n    align-items: flex-end !important;\n  }\n\n  .flex-lg-items-center {\n    align-items: center !important;\n  }\n\n  .flex-lg-items-baseline {\n    align-items: baseline !important;\n  }\n\n  .flex-lg-items-stretch {\n    align-items: stretch !important;\n  }\n\n  .flex-lg-content-start {\n    align-content: flex-start !important;\n  }\n\n  .flex-lg-content-end {\n    align-content: flex-end !important;\n  }\n\n  .flex-lg-content-center {\n    align-content: center !important;\n  }\n\n  .flex-lg-content-between {\n    align-content: space-between !important;\n  }\n\n  .flex-lg-content-around {\n    align-content: space-around !important;\n  }\n\n  .flex-lg-content-stretch {\n    align-content: stretch !important;\n  }\n\n  .flex-lg-auto {\n    flex: 1 1 auto !important;\n  }\n\n  .flex-lg-shrink-0 {\n    flex-shrink: 0 !important;\n  }\n\n  .flex-lg-self-auto {\n    align-self: auto !important;\n  }\n\n  .flex-lg-self-start {\n    align-self: flex-start !important;\n  }\n\n  .flex-lg-self-end {\n    align-self: flex-end !important;\n  }\n\n  .flex-lg-self-center {\n    align-self: center !important;\n  }\n\n  .flex-lg-self-baseline {\n    align-self: baseline !important;\n  }\n\n  .flex-lg-self-stretch {\n    align-self: stretch !important;\n  }\n\n  .flex-lg-item-equal {\n    flex-grow: 1;\n    flex-basis: 0;\n  }\n}\n@media (min-width: 1280px) {\n  .flex-xl-row {\n    flex-direction: row !important;\n  }\n\n  .flex-xl-row-reverse {\n    flex-direction: row-reverse !important;\n  }\n\n  .flex-xl-column {\n    flex-direction: column !important;\n  }\n\n  .flex-xl-wrap {\n    flex-wrap: wrap !important;\n  }\n\n  .flex-xl-nowrap {\n    flex-wrap: nowrap !important;\n  }\n\n  .flex-xl-justify-start {\n    justify-content: flex-start !important;\n  }\n\n  .flex-xl-justify-end {\n    justify-content: flex-end !important;\n  }\n\n  .flex-xl-justify-center {\n    justify-content: center !important;\n  }\n\n  .flex-xl-justify-between {\n    justify-content: space-between !important;\n  }\n\n  .flex-xl-justify-around {\n    justify-content: space-around !important;\n  }\n\n  .flex-xl-items-start {\n    align-items: flex-start !important;\n  }\n\n  .flex-xl-items-end {\n    align-items: flex-end !important;\n  }\n\n  .flex-xl-items-center {\n    align-items: center !important;\n  }\n\n  .flex-xl-items-baseline {\n    align-items: baseline !important;\n  }\n\n  .flex-xl-items-stretch {\n    align-items: stretch !important;\n  }\n\n  .flex-xl-content-start {\n    align-content: flex-start !important;\n  }\n\n  .flex-xl-content-end {\n    align-content: flex-end !important;\n  }\n\n  .flex-xl-content-center {\n    align-content: center !important;\n  }\n\n  .flex-xl-content-between {\n    align-content: space-between !important;\n  }\n\n  .flex-xl-content-around {\n    align-content: space-around !important;\n  }\n\n  .flex-xl-content-stretch {\n    align-content: stretch !important;\n  }\n\n  .flex-xl-auto {\n    flex: 1 1 auto !important;\n  }\n\n  .flex-xl-shrink-0 {\n    flex-shrink: 0 !important;\n  }\n\n  .flex-xl-self-auto {\n    align-self: auto !important;\n  }\n\n  .flex-xl-self-start {\n    align-self: flex-start !important;\n  }\n\n  .flex-xl-self-end {\n    align-self: flex-end !important;\n  }\n\n  .flex-xl-self-center {\n    align-self: center !important;\n  }\n\n  .flex-xl-self-baseline {\n    align-self: baseline !important;\n  }\n\n  .flex-xl-self-stretch {\n    align-self: stretch !important;\n  }\n\n  .flex-xl-item-equal {\n    flex-grow: 1;\n    flex-basis: 0;\n  }\n}\n/* Set position to static */\n.position-static {\n  position: static !important;\n}\n\n/* Set position to relative */\n.position-relative {\n  position: relative !important;\n}\n\n/* Set position to absolute */\n.position-absolute {\n  position: absolute !important;\n}\n\n/* Set position to fixed */\n.position-fixed {\n  position: fixed !important;\n}\n\n/* Set top 0 */\n.top-0 {\n  top: 0 !important;\n}\n\n/* Set right 0 */\n.right-0 {\n  right: 0 !important;\n}\n\n/* Set bottom 0 */\n.bottom-0 {\n  bottom: 0 !important;\n}\n\n/* Set left 0 */\n.left-0 {\n  left: 0 !important;\n}\n\n/* Vertical align middle */\n.v-align-middle {\n  vertical-align: middle !important;\n}\n\n/* Vertical align top */\n.v-align-top {\n  vertical-align: top !important;\n}\n\n/* Vertical align bottom */\n.v-align-bottom {\n  vertical-align: bottom !important;\n}\n\n/* Vertical align to the top of the text */\n.v-align-text-top {\n  vertical-align: text-top !important;\n}\n\n/* Vertical align to the bottom of the text */\n.v-align-text-bottom {\n  vertical-align: text-bottom !important;\n}\n\n/* Vertical align to the parent's baseline */\n.v-align-baseline {\n  vertical-align: baseline !important;\n}\n\n/* Set the overflow hidden */\n.overflow-hidden {\n  overflow: hidden !important;\n}\n\n/* Set the overflow scroll */\n.overflow-scroll {\n  overflow: scroll !important;\n}\n\n/* Set the overflow auto */\n.overflow-auto {\n  overflow: auto !important;\n}\n\n/* Clear floats around the element */\n.clearfix::before {\n  display: table;\n  content: \"\";\n}\n.clearfix::after {\n  display: table;\n  clear: both;\n  content: \"\";\n}\n\n/* Float to the right */\n.float-right {\n  float: right !important;\n}\n\n/* Float to the left */\n.float-left {\n  float: left !important;\n}\n\n/* Don't float left or right */\n.float-none {\n  float: none !important;\n}\n\n@media (min-width: 544px) {\n  /* Float to the left at the sm breakpoint */\n  .float-sm-left {\n    float: left !important;\n  }\n\n  /* Float to the right at the sm breakpoint */\n  .float-sm-right {\n    float: right !important;\n  }\n\n  /* No float at the sm breakpoint */\n  .float-sm-none {\n    float: none !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Float to the left at the md breakpoint */\n  .float-md-left {\n    float: left !important;\n  }\n\n  /* Float to the right at the md breakpoint */\n  .float-md-right {\n    float: right !important;\n  }\n\n  /* No float at the md breakpoint */\n  .float-md-none {\n    float: none !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Float to the left at the lg breakpoint */\n  .float-lg-left {\n    float: left !important;\n  }\n\n  /* Float to the right at the lg breakpoint */\n  .float-lg-right {\n    float: right !important;\n  }\n\n  /* No float at the lg breakpoint */\n  .float-lg-none {\n    float: none !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Float to the left at the xl breakpoint */\n  .float-xl-left {\n    float: left !important;\n  }\n\n  /* Float to the right at the xl breakpoint */\n  .float-xl-right {\n    float: right !important;\n  }\n\n  /* No float at the xl breakpoint */\n  .float-xl-none {\n    float: none !important;\n  }\n}\n/* Max width 100% */\n.width-fit {\n  max-width: 100% !important;\n}\n\n/* Set the width to 100% */\n.width-full {\n  width: 100% !important;\n}\n\n/* Max height 100% */\n.height-fit {\n  max-height: 100% !important;\n}\n\n/* Set the height to 100% */\n.height-full {\n  height: 100% !important;\n}\n\n/* Remove min-width from element */\n.min-width-0 {\n  min-width: 0 !important;\n}\n\n/* Set the direction to rtl */\n.direction-rtl {\n  direction: rtl !important;\n}\n\n/* Set the direction to ltr */\n.direction-ltr {\n  direction: ltr !important;\n}\n\n@media (min-width: 544px) {\n  /* Set the direction to rtl at the sm breakpoint */\n  .direction-sm-rtl {\n    direction: rtl !important;\n  }\n\n  /* Set the direction to ltr at the sm breakpoint */\n  .direction-sm-ltr {\n    direction: ltr !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set the direction to rtl at the md breakpoint */\n  .direction-md-rtl {\n    direction: rtl !important;\n  }\n\n  /* Set the direction to ltr at the md breakpoint */\n  .direction-md-ltr {\n    direction: ltr !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set the direction to rtl at the lg breakpoint */\n  .direction-lg-rtl {\n    direction: rtl !important;\n  }\n\n  /* Set the direction to ltr at the lg breakpoint */\n  .direction-lg-ltr {\n    direction: ltr !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set the direction to rtl at the xl breakpoint */\n  .direction-xl-rtl {\n    direction: rtl !important;\n  }\n\n  /* Set the direction to ltr at the xl breakpoint */\n  .direction-xl-ltr {\n    direction: ltr !important;\n  }\n}\n/* Set a 0 margin to all sides */\n.m-0 {\n  margin: 0 !important;\n}\n\n/* Set a 0 margin on the top */\n.mt-0 {\n  margin-top: 0 !important;\n}\n\n/* Set a 0 margin on the right */\n.mr-0 {\n  margin-right: 0 !important;\n}\n\n/* Set a 0 margin on the bottom */\n.mb-0 {\n  margin-bottom: 0 !important;\n}\n\n/* Set a 0 margin on the left */\n.ml-0 {\n  margin-left: 0 !important;\n}\n\n/* Set a negative 0 margin on top */\n.mt-n0 {\n  margin-top: -0 !important;\n}\n\n/* Set a negative 0 margin on the right */\n.mr-n0 {\n  margin-right: -0 !important;\n}\n\n/* Set a negative 0 margin on the bottom */\n.mb-n0 {\n  margin-bottom: -0 !important;\n}\n\n/* Set a negative 0 margin on the left */\n.ml-n0 {\n  margin-left: -0 !important;\n}\n\n/* Set a 0 margin on the left & right */\n.mx-0 {\n  margin-right: 0 !important;\n  margin-left: 0 !important;\n}\n\n/* Set a 0 margin on the top & bottom */\n.my-0 {\n  margin-top: 0 !important;\n  margin-bottom: 0 !important;\n}\n\n/* Set a 4px margin to all sides */\n.m-1 {\n  margin: 4px !important;\n}\n\n/* Set a 4px margin on the top */\n.mt-1 {\n  margin-top: 4px !important;\n}\n\n/* Set a 4px margin on the right */\n.mr-1 {\n  margin-right: 4px !important;\n}\n\n/* Set a 4px margin on the bottom */\n.mb-1 {\n  margin-bottom: 4px !important;\n}\n\n/* Set a 4px margin on the left */\n.ml-1 {\n  margin-left: 4px !important;\n}\n\n/* Set a negative 4px margin on top */\n.mt-n1 {\n  margin-top: -4px !important;\n}\n\n/* Set a negative 4px margin on the right */\n.mr-n1 {\n  margin-right: -4px !important;\n}\n\n/* Set a negative 4px margin on the bottom */\n.mb-n1 {\n  margin-bottom: -4px !important;\n}\n\n/* Set a negative 4px margin on the left */\n.ml-n1 {\n  margin-left: -4px !important;\n}\n\n/* Set a 4px margin on the left & right */\n.mx-1 {\n  margin-right: 4px !important;\n  margin-left: 4px !important;\n}\n\n/* Set a 4px margin on the top & bottom */\n.my-1 {\n  margin-top: 4px !important;\n  margin-bottom: 4px !important;\n}\n\n/* Set a 8px margin to all sides */\n.m-2 {\n  margin: 8px !important;\n}\n\n/* Set a 8px margin on the top */\n.mt-2 {\n  margin-top: 8px !important;\n}\n\n/* Set a 8px margin on the right */\n.mr-2 {\n  margin-right: 8px !important;\n}\n\n/* Set a 8px margin on the bottom */\n.mb-2 {\n  margin-bottom: 8px !important;\n}\n\n/* Set a 8px margin on the left */\n.ml-2 {\n  margin-left: 8px !important;\n}\n\n/* Set a negative 8px margin on top */\n.mt-n2 {\n  margin-top: -8px !important;\n}\n\n/* Set a negative 8px margin on the right */\n.mr-n2 {\n  margin-right: -8px !important;\n}\n\n/* Set a negative 8px margin on the bottom */\n.mb-n2 {\n  margin-bottom: -8px !important;\n}\n\n/* Set a negative 8px margin on the left */\n.ml-n2 {\n  margin-left: -8px !important;\n}\n\n/* Set a 8px margin on the left & right */\n.mx-2 {\n  margin-right: 8px !important;\n  margin-left: 8px !important;\n}\n\n/* Set a 8px margin on the top & bottom */\n.my-2 {\n  margin-top: 8px !important;\n  margin-bottom: 8px !important;\n}\n\n/* Set a 16px margin to all sides */\n.m-3 {\n  margin: 16px !important;\n}\n\n/* Set a 16px margin on the top */\n.mt-3 {\n  margin-top: 16px !important;\n}\n\n/* Set a 16px margin on the right */\n.mr-3 {\n  margin-right: 16px !important;\n}\n\n/* Set a 16px margin on the bottom */\n.mb-3 {\n  margin-bottom: 16px !important;\n}\n\n/* Set a 16px margin on the left */\n.ml-3 {\n  margin-left: 16px !important;\n}\n\n/* Set a negative 16px margin on top */\n.mt-n3 {\n  margin-top: -16px !important;\n}\n\n/* Set a negative 16px margin on the right */\n.mr-n3 {\n  margin-right: -16px !important;\n}\n\n/* Set a negative 16px margin on the bottom */\n.mb-n3 {\n  margin-bottom: -16px !important;\n}\n\n/* Set a negative 16px margin on the left */\n.ml-n3 {\n  margin-left: -16px !important;\n}\n\n/* Set a 16px margin on the left & right */\n.mx-3 {\n  margin-right: 16px !important;\n  margin-left: 16px !important;\n}\n\n/* Set a 16px margin on the top & bottom */\n.my-3 {\n  margin-top: 16px !important;\n  margin-bottom: 16px !important;\n}\n\n/* Set a 24px margin to all sides */\n.m-4 {\n  margin: 24px !important;\n}\n\n/* Set a 24px margin on the top */\n.mt-4 {\n  margin-top: 24px !important;\n}\n\n/* Set a 24px margin on the right */\n.mr-4 {\n  margin-right: 24px !important;\n}\n\n/* Set a 24px margin on the bottom */\n.mb-4 {\n  margin-bottom: 24px !important;\n}\n\n/* Set a 24px margin on the left */\n.ml-4 {\n  margin-left: 24px !important;\n}\n\n/* Set a negative 24px margin on top */\n.mt-n4 {\n  margin-top: -24px !important;\n}\n\n/* Set a negative 24px margin on the right */\n.mr-n4 {\n  margin-right: -24px !important;\n}\n\n/* Set a negative 24px margin on the bottom */\n.mb-n4 {\n  margin-bottom: -24px !important;\n}\n\n/* Set a negative 24px margin on the left */\n.ml-n4 {\n  margin-left: -24px !important;\n}\n\n/* Set a 24px margin on the left & right */\n.mx-4 {\n  margin-right: 24px !important;\n  margin-left: 24px !important;\n}\n\n/* Set a 24px margin on the top & bottom */\n.my-4 {\n  margin-top: 24px !important;\n  margin-bottom: 24px !important;\n}\n\n/* Set a 32px margin to all sides */\n.m-5 {\n  margin: 32px !important;\n}\n\n/* Set a 32px margin on the top */\n.mt-5 {\n  margin-top: 32px !important;\n}\n\n/* Set a 32px margin on the right */\n.mr-5 {\n  margin-right: 32px !important;\n}\n\n/* Set a 32px margin on the bottom */\n.mb-5 {\n  margin-bottom: 32px !important;\n}\n\n/* Set a 32px margin on the left */\n.ml-5 {\n  margin-left: 32px !important;\n}\n\n/* Set a negative 32px margin on top */\n.mt-n5 {\n  margin-top: -32px !important;\n}\n\n/* Set a negative 32px margin on the right */\n.mr-n5 {\n  margin-right: -32px !important;\n}\n\n/* Set a negative 32px margin on the bottom */\n.mb-n5 {\n  margin-bottom: -32px !important;\n}\n\n/* Set a negative 32px margin on the left */\n.ml-n5 {\n  margin-left: -32px !important;\n}\n\n/* Set a 32px margin on the left & right */\n.mx-5 {\n  margin-right: 32px !important;\n  margin-left: 32px !important;\n}\n\n/* Set a 32px margin on the top & bottom */\n.my-5 {\n  margin-top: 32px !important;\n  margin-bottom: 32px !important;\n}\n\n/* Set a 40px margin to all sides */\n.m-6 {\n  margin: 40px !important;\n}\n\n/* Set a 40px margin on the top */\n.mt-6 {\n  margin-top: 40px !important;\n}\n\n/* Set a 40px margin on the right */\n.mr-6 {\n  margin-right: 40px !important;\n}\n\n/* Set a 40px margin on the bottom */\n.mb-6 {\n  margin-bottom: 40px !important;\n}\n\n/* Set a 40px margin on the left */\n.ml-6 {\n  margin-left: 40px !important;\n}\n\n/* Set a negative 40px margin on top */\n.mt-n6 {\n  margin-top: -40px !important;\n}\n\n/* Set a negative 40px margin on the right */\n.mr-n6 {\n  margin-right: -40px !important;\n}\n\n/* Set a negative 40px margin on the bottom */\n.mb-n6 {\n  margin-bottom: -40px !important;\n}\n\n/* Set a negative 40px margin on the left */\n.ml-n6 {\n  margin-left: -40px !important;\n}\n\n/* Set a 40px margin on the left & right */\n.mx-6 {\n  margin-right: 40px !important;\n  margin-left: 40px !important;\n}\n\n/* Set a 40px margin on the top & bottom */\n.my-6 {\n  margin-top: 40px !important;\n  margin-bottom: 40px !important;\n}\n\n/* Set an auto margin on left & right */\n.mx-auto {\n  margin-right: auto !important;\n  margin-left: auto !important;\n}\n\n@media (min-width: 544px) {\n  /* Set a 0 margin to all sides at the breakpoint sm */\n  .m-sm-0 {\n    margin: 0 !important;\n  }\n\n  /* Set a 0 margin on the top at the breakpoint sm */\n  .mt-sm-0 {\n    margin-top: 0 !important;\n  }\n\n  /* Set a 0 margin on the right at the breakpoint sm */\n  .mr-sm-0 {\n    margin-right: 0 !important;\n  }\n\n  /* Set a 0 margin on the bottom at the breakpoint sm */\n  .mb-sm-0 {\n    margin-bottom: 0 !important;\n  }\n\n  /* Set a 0 margin on the left at the breakpoint sm */\n  .ml-sm-0 {\n    margin-left: 0 !important;\n  }\n\n  /* Set a negative 0 margin on top at the breakpoint sm */\n  .mt-sm-n0 {\n    margin-top: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the right at the breakpoint sm */\n  .mr-sm-n0 {\n    margin-right: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the bottom at the breakpoint sm */\n  .mb-sm-n0 {\n    margin-bottom: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the left at the breakpoint sm */\n  .ml-sm-n0 {\n    margin-left: -0 !important;\n  }\n\n  /* Set a 0 margin on the left & right at the breakpoint sm */\n  .mx-sm-0 {\n    margin-right: 0 !important;\n    margin-left: 0 !important;\n  }\n\n  /* Set a 0 margin on the top & bottom at the breakpoint sm */\n  .my-sm-0 {\n    margin-top: 0 !important;\n    margin-bottom: 0 !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 4px margin to all sides at the breakpoint sm */\n  .m-sm-1 {\n    margin: 4px !important;\n  }\n\n  /* Set a 4px margin on the top at the breakpoint sm */\n  .mt-sm-1 {\n    margin-top: 4px !important;\n  }\n\n  /* Set a 4px margin on the right at the breakpoint sm */\n  .mr-sm-1 {\n    margin-right: 4px !important;\n  }\n\n  /* Set a 4px margin on the bottom at the breakpoint sm */\n  .mb-sm-1 {\n    margin-bottom: 4px !important;\n  }\n\n  /* Set a 4px margin on the left at the breakpoint sm */\n  .ml-sm-1 {\n    margin-left: 4px !important;\n  }\n\n  /* Set a negative 4px margin on top at the breakpoint sm */\n  .mt-sm-n1 {\n    margin-top: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the right at the breakpoint sm */\n  .mr-sm-n1 {\n    margin-right: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the bottom at the breakpoint sm */\n  .mb-sm-n1 {\n    margin-bottom: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the left at the breakpoint sm */\n  .ml-sm-n1 {\n    margin-left: -4px !important;\n  }\n\n  /* Set a 4px margin on the left & right at the breakpoint sm */\n  .mx-sm-1 {\n    margin-right: 4px !important;\n    margin-left: 4px !important;\n  }\n\n  /* Set a 4px margin on the top & bottom at the breakpoint sm */\n  .my-sm-1 {\n    margin-top: 4px !important;\n    margin-bottom: 4px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 8px margin to all sides at the breakpoint sm */\n  .m-sm-2 {\n    margin: 8px !important;\n  }\n\n  /* Set a 8px margin on the top at the breakpoint sm */\n  .mt-sm-2 {\n    margin-top: 8px !important;\n  }\n\n  /* Set a 8px margin on the right at the breakpoint sm */\n  .mr-sm-2 {\n    margin-right: 8px !important;\n  }\n\n  /* Set a 8px margin on the bottom at the breakpoint sm */\n  .mb-sm-2 {\n    margin-bottom: 8px !important;\n  }\n\n  /* Set a 8px margin on the left at the breakpoint sm */\n  .ml-sm-2 {\n    margin-left: 8px !important;\n  }\n\n  /* Set a negative 8px margin on top at the breakpoint sm */\n  .mt-sm-n2 {\n    margin-top: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the right at the breakpoint sm */\n  .mr-sm-n2 {\n    margin-right: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the bottom at the breakpoint sm */\n  .mb-sm-n2 {\n    margin-bottom: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the left at the breakpoint sm */\n  .ml-sm-n2 {\n    margin-left: -8px !important;\n  }\n\n  /* Set a 8px margin on the left & right at the breakpoint sm */\n  .mx-sm-2 {\n    margin-right: 8px !important;\n    margin-left: 8px !important;\n  }\n\n  /* Set a 8px margin on the top & bottom at the breakpoint sm */\n  .my-sm-2 {\n    margin-top: 8px !important;\n    margin-bottom: 8px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 16px margin to all sides at the breakpoint sm */\n  .m-sm-3 {\n    margin: 16px !important;\n  }\n\n  /* Set a 16px margin on the top at the breakpoint sm */\n  .mt-sm-3 {\n    margin-top: 16px !important;\n  }\n\n  /* Set a 16px margin on the right at the breakpoint sm */\n  .mr-sm-3 {\n    margin-right: 16px !important;\n  }\n\n  /* Set a 16px margin on the bottom at the breakpoint sm */\n  .mb-sm-3 {\n    margin-bottom: 16px !important;\n  }\n\n  /* Set a 16px margin on the left at the breakpoint sm */\n  .ml-sm-3 {\n    margin-left: 16px !important;\n  }\n\n  /* Set a negative 16px margin on top at the breakpoint sm */\n  .mt-sm-n3 {\n    margin-top: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the right at the breakpoint sm */\n  .mr-sm-n3 {\n    margin-right: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the bottom at the breakpoint sm */\n  .mb-sm-n3 {\n    margin-bottom: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the left at the breakpoint sm */\n  .ml-sm-n3 {\n    margin-left: -16px !important;\n  }\n\n  /* Set a 16px margin on the left & right at the breakpoint sm */\n  .mx-sm-3 {\n    margin-right: 16px !important;\n    margin-left: 16px !important;\n  }\n\n  /* Set a 16px margin on the top & bottom at the breakpoint sm */\n  .my-sm-3 {\n    margin-top: 16px !important;\n    margin-bottom: 16px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 24px margin to all sides at the breakpoint sm */\n  .m-sm-4 {\n    margin: 24px !important;\n  }\n\n  /* Set a 24px margin on the top at the breakpoint sm */\n  .mt-sm-4 {\n    margin-top: 24px !important;\n  }\n\n  /* Set a 24px margin on the right at the breakpoint sm */\n  .mr-sm-4 {\n    margin-right: 24px !important;\n  }\n\n  /* Set a 24px margin on the bottom at the breakpoint sm */\n  .mb-sm-4 {\n    margin-bottom: 24px !important;\n  }\n\n  /* Set a 24px margin on the left at the breakpoint sm */\n  .ml-sm-4 {\n    margin-left: 24px !important;\n  }\n\n  /* Set a negative 24px margin on top at the breakpoint sm */\n  .mt-sm-n4 {\n    margin-top: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the right at the breakpoint sm */\n  .mr-sm-n4 {\n    margin-right: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the bottom at the breakpoint sm */\n  .mb-sm-n4 {\n    margin-bottom: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the left at the breakpoint sm */\n  .ml-sm-n4 {\n    margin-left: -24px !important;\n  }\n\n  /* Set a 24px margin on the left & right at the breakpoint sm */\n  .mx-sm-4 {\n    margin-right: 24px !important;\n    margin-left: 24px !important;\n  }\n\n  /* Set a 24px margin on the top & bottom at the breakpoint sm */\n  .my-sm-4 {\n    margin-top: 24px !important;\n    margin-bottom: 24px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 32px margin to all sides at the breakpoint sm */\n  .m-sm-5 {\n    margin: 32px !important;\n  }\n\n  /* Set a 32px margin on the top at the breakpoint sm */\n  .mt-sm-5 {\n    margin-top: 32px !important;\n  }\n\n  /* Set a 32px margin on the right at the breakpoint sm */\n  .mr-sm-5 {\n    margin-right: 32px !important;\n  }\n\n  /* Set a 32px margin on the bottom at the breakpoint sm */\n  .mb-sm-5 {\n    margin-bottom: 32px !important;\n  }\n\n  /* Set a 32px margin on the left at the breakpoint sm */\n  .ml-sm-5 {\n    margin-left: 32px !important;\n  }\n\n  /* Set a negative 32px margin on top at the breakpoint sm */\n  .mt-sm-n5 {\n    margin-top: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the right at the breakpoint sm */\n  .mr-sm-n5 {\n    margin-right: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the bottom at the breakpoint sm */\n  .mb-sm-n5 {\n    margin-bottom: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the left at the breakpoint sm */\n  .ml-sm-n5 {\n    margin-left: -32px !important;\n  }\n\n  /* Set a 32px margin on the left & right at the breakpoint sm */\n  .mx-sm-5 {\n    margin-right: 32px !important;\n    margin-left: 32px !important;\n  }\n\n  /* Set a 32px margin on the top & bottom at the breakpoint sm */\n  .my-sm-5 {\n    margin-top: 32px !important;\n    margin-bottom: 32px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 40px margin to all sides at the breakpoint sm */\n  .m-sm-6 {\n    margin: 40px !important;\n  }\n\n  /* Set a 40px margin on the top at the breakpoint sm */\n  .mt-sm-6 {\n    margin-top: 40px !important;\n  }\n\n  /* Set a 40px margin on the right at the breakpoint sm */\n  .mr-sm-6 {\n    margin-right: 40px !important;\n  }\n\n  /* Set a 40px margin on the bottom at the breakpoint sm */\n  .mb-sm-6 {\n    margin-bottom: 40px !important;\n  }\n\n  /* Set a 40px margin on the left at the breakpoint sm */\n  .ml-sm-6 {\n    margin-left: 40px !important;\n  }\n\n  /* Set a negative 40px margin on top at the breakpoint sm */\n  .mt-sm-n6 {\n    margin-top: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the right at the breakpoint sm */\n  .mr-sm-n6 {\n    margin-right: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the bottom at the breakpoint sm */\n  .mb-sm-n6 {\n    margin-bottom: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the left at the breakpoint sm */\n  .ml-sm-n6 {\n    margin-left: -40px !important;\n  }\n\n  /* Set a 40px margin on the left & right at the breakpoint sm */\n  .mx-sm-6 {\n    margin-right: 40px !important;\n    margin-left: 40px !important;\n  }\n\n  /* Set a 40px margin on the top & bottom at the breakpoint sm */\n  .my-sm-6 {\n    margin-top: 40px !important;\n    margin-bottom: 40px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 0 margin to all sides at the breakpoint md */\n  .m-md-0 {\n    margin: 0 !important;\n  }\n\n  /* Set a 0 margin on the top at the breakpoint md */\n  .mt-md-0 {\n    margin-top: 0 !important;\n  }\n\n  /* Set a 0 margin on the right at the breakpoint md */\n  .mr-md-0 {\n    margin-right: 0 !important;\n  }\n\n  /* Set a 0 margin on the bottom at the breakpoint md */\n  .mb-md-0 {\n    margin-bottom: 0 !important;\n  }\n\n  /* Set a 0 margin on the left at the breakpoint md */\n  .ml-md-0 {\n    margin-left: 0 !important;\n  }\n\n  /* Set a negative 0 margin on top at the breakpoint md */\n  .mt-md-n0 {\n    margin-top: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the right at the breakpoint md */\n  .mr-md-n0 {\n    margin-right: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the bottom at the breakpoint md */\n  .mb-md-n0 {\n    margin-bottom: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the left at the breakpoint md */\n  .ml-md-n0 {\n    margin-left: -0 !important;\n  }\n\n  /* Set a 0 margin on the left & right at the breakpoint md */\n  .mx-md-0 {\n    margin-right: 0 !important;\n    margin-left: 0 !important;\n  }\n\n  /* Set a 0 margin on the top & bottom at the breakpoint md */\n  .my-md-0 {\n    margin-top: 0 !important;\n    margin-bottom: 0 !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 4px margin to all sides at the breakpoint md */\n  .m-md-1 {\n    margin: 4px !important;\n  }\n\n  /* Set a 4px margin on the top at the breakpoint md */\n  .mt-md-1 {\n    margin-top: 4px !important;\n  }\n\n  /* Set a 4px margin on the right at the breakpoint md */\n  .mr-md-1 {\n    margin-right: 4px !important;\n  }\n\n  /* Set a 4px margin on the bottom at the breakpoint md */\n  .mb-md-1 {\n    margin-bottom: 4px !important;\n  }\n\n  /* Set a 4px margin on the left at the breakpoint md */\n  .ml-md-1 {\n    margin-left: 4px !important;\n  }\n\n  /* Set a negative 4px margin on top at the breakpoint md */\n  .mt-md-n1 {\n    margin-top: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the right at the breakpoint md */\n  .mr-md-n1 {\n    margin-right: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the bottom at the breakpoint md */\n  .mb-md-n1 {\n    margin-bottom: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the left at the breakpoint md */\n  .ml-md-n1 {\n    margin-left: -4px !important;\n  }\n\n  /* Set a 4px margin on the left & right at the breakpoint md */\n  .mx-md-1 {\n    margin-right: 4px !important;\n    margin-left: 4px !important;\n  }\n\n  /* Set a 4px margin on the top & bottom at the breakpoint md */\n  .my-md-1 {\n    margin-top: 4px !important;\n    margin-bottom: 4px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 8px margin to all sides at the breakpoint md */\n  .m-md-2 {\n    margin: 8px !important;\n  }\n\n  /* Set a 8px margin on the top at the breakpoint md */\n  .mt-md-2 {\n    margin-top: 8px !important;\n  }\n\n  /* Set a 8px margin on the right at the breakpoint md */\n  .mr-md-2 {\n    margin-right: 8px !important;\n  }\n\n  /* Set a 8px margin on the bottom at the breakpoint md */\n  .mb-md-2 {\n    margin-bottom: 8px !important;\n  }\n\n  /* Set a 8px margin on the left at the breakpoint md */\n  .ml-md-2 {\n    margin-left: 8px !important;\n  }\n\n  /* Set a negative 8px margin on top at the breakpoint md */\n  .mt-md-n2 {\n    margin-top: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the right at the breakpoint md */\n  .mr-md-n2 {\n    margin-right: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the bottom at the breakpoint md */\n  .mb-md-n2 {\n    margin-bottom: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the left at the breakpoint md */\n  .ml-md-n2 {\n    margin-left: -8px !important;\n  }\n\n  /* Set a 8px margin on the left & right at the breakpoint md */\n  .mx-md-2 {\n    margin-right: 8px !important;\n    margin-left: 8px !important;\n  }\n\n  /* Set a 8px margin on the top & bottom at the breakpoint md */\n  .my-md-2 {\n    margin-top: 8px !important;\n    margin-bottom: 8px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 16px margin to all sides at the breakpoint md */\n  .m-md-3 {\n    margin: 16px !important;\n  }\n\n  /* Set a 16px margin on the top at the breakpoint md */\n  .mt-md-3 {\n    margin-top: 16px !important;\n  }\n\n  /* Set a 16px margin on the right at the breakpoint md */\n  .mr-md-3 {\n    margin-right: 16px !important;\n  }\n\n  /* Set a 16px margin on the bottom at the breakpoint md */\n  .mb-md-3 {\n    margin-bottom: 16px !important;\n  }\n\n  /* Set a 16px margin on the left at the breakpoint md */\n  .ml-md-3 {\n    margin-left: 16px !important;\n  }\n\n  /* Set a negative 16px margin on top at the breakpoint md */\n  .mt-md-n3 {\n    margin-top: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the right at the breakpoint md */\n  .mr-md-n3 {\n    margin-right: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the bottom at the breakpoint md */\n  .mb-md-n3 {\n    margin-bottom: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the left at the breakpoint md */\n  .ml-md-n3 {\n    margin-left: -16px !important;\n  }\n\n  /* Set a 16px margin on the left & right at the breakpoint md */\n  .mx-md-3 {\n    margin-right: 16px !important;\n    margin-left: 16px !important;\n  }\n\n  /* Set a 16px margin on the top & bottom at the breakpoint md */\n  .my-md-3 {\n    margin-top: 16px !important;\n    margin-bottom: 16px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 24px margin to all sides at the breakpoint md */\n  .m-md-4 {\n    margin: 24px !important;\n  }\n\n  /* Set a 24px margin on the top at the breakpoint md */\n  .mt-md-4 {\n    margin-top: 24px !important;\n  }\n\n  /* Set a 24px margin on the right at the breakpoint md */\n  .mr-md-4 {\n    margin-right: 24px !important;\n  }\n\n  /* Set a 24px margin on the bottom at the breakpoint md */\n  .mb-md-4 {\n    margin-bottom: 24px !important;\n  }\n\n  /* Set a 24px margin on the left at the breakpoint md */\n  .ml-md-4 {\n    margin-left: 24px !important;\n  }\n\n  /* Set a negative 24px margin on top at the breakpoint md */\n  .mt-md-n4 {\n    margin-top: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the right at the breakpoint md */\n  .mr-md-n4 {\n    margin-right: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the bottom at the breakpoint md */\n  .mb-md-n4 {\n    margin-bottom: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the left at the breakpoint md */\n  .ml-md-n4 {\n    margin-left: -24px !important;\n  }\n\n  /* Set a 24px margin on the left & right at the breakpoint md */\n  .mx-md-4 {\n    margin-right: 24px !important;\n    margin-left: 24px !important;\n  }\n\n  /* Set a 24px margin on the top & bottom at the breakpoint md */\n  .my-md-4 {\n    margin-top: 24px !important;\n    margin-bottom: 24px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 32px margin to all sides at the breakpoint md */\n  .m-md-5 {\n    margin: 32px !important;\n  }\n\n  /* Set a 32px margin on the top at the breakpoint md */\n  .mt-md-5 {\n    margin-top: 32px !important;\n  }\n\n  /* Set a 32px margin on the right at the breakpoint md */\n  .mr-md-5 {\n    margin-right: 32px !important;\n  }\n\n  /* Set a 32px margin on the bottom at the breakpoint md */\n  .mb-md-5 {\n    margin-bottom: 32px !important;\n  }\n\n  /* Set a 32px margin on the left at the breakpoint md */\n  .ml-md-5 {\n    margin-left: 32px !important;\n  }\n\n  /* Set a negative 32px margin on top at the breakpoint md */\n  .mt-md-n5 {\n    margin-top: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the right at the breakpoint md */\n  .mr-md-n5 {\n    margin-right: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the bottom at the breakpoint md */\n  .mb-md-n5 {\n    margin-bottom: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the left at the breakpoint md */\n  .ml-md-n5 {\n    margin-left: -32px !important;\n  }\n\n  /* Set a 32px margin on the left & right at the breakpoint md */\n  .mx-md-5 {\n    margin-right: 32px !important;\n    margin-left: 32px !important;\n  }\n\n  /* Set a 32px margin on the top & bottom at the breakpoint md */\n  .my-md-5 {\n    margin-top: 32px !important;\n    margin-bottom: 32px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 40px margin to all sides at the breakpoint md */\n  .m-md-6 {\n    margin: 40px !important;\n  }\n\n  /* Set a 40px margin on the top at the breakpoint md */\n  .mt-md-6 {\n    margin-top: 40px !important;\n  }\n\n  /* Set a 40px margin on the right at the breakpoint md */\n  .mr-md-6 {\n    margin-right: 40px !important;\n  }\n\n  /* Set a 40px margin on the bottom at the breakpoint md */\n  .mb-md-6 {\n    margin-bottom: 40px !important;\n  }\n\n  /* Set a 40px margin on the left at the breakpoint md */\n  .ml-md-6 {\n    margin-left: 40px !important;\n  }\n\n  /* Set a negative 40px margin on top at the breakpoint md */\n  .mt-md-n6 {\n    margin-top: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the right at the breakpoint md */\n  .mr-md-n6 {\n    margin-right: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the bottom at the breakpoint md */\n  .mb-md-n6 {\n    margin-bottom: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the left at the breakpoint md */\n  .ml-md-n6 {\n    margin-left: -40px !important;\n  }\n\n  /* Set a 40px margin on the left & right at the breakpoint md */\n  .mx-md-6 {\n    margin-right: 40px !important;\n    margin-left: 40px !important;\n  }\n\n  /* Set a 40px margin on the top & bottom at the breakpoint md */\n  .my-md-6 {\n    margin-top: 40px !important;\n    margin-bottom: 40px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 0 margin to all sides at the breakpoint lg */\n  .m-lg-0 {\n    margin: 0 !important;\n  }\n\n  /* Set a 0 margin on the top at the breakpoint lg */\n  .mt-lg-0 {\n    margin-top: 0 !important;\n  }\n\n  /* Set a 0 margin on the right at the breakpoint lg */\n  .mr-lg-0 {\n    margin-right: 0 !important;\n  }\n\n  /* Set a 0 margin on the bottom at the breakpoint lg */\n  .mb-lg-0 {\n    margin-bottom: 0 !important;\n  }\n\n  /* Set a 0 margin on the left at the breakpoint lg */\n  .ml-lg-0 {\n    margin-left: 0 !important;\n  }\n\n  /* Set a negative 0 margin on top at the breakpoint lg */\n  .mt-lg-n0 {\n    margin-top: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the right at the breakpoint lg */\n  .mr-lg-n0 {\n    margin-right: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the bottom at the breakpoint lg */\n  .mb-lg-n0 {\n    margin-bottom: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the left at the breakpoint lg */\n  .ml-lg-n0 {\n    margin-left: -0 !important;\n  }\n\n  /* Set a 0 margin on the left & right at the breakpoint lg */\n  .mx-lg-0 {\n    margin-right: 0 !important;\n    margin-left: 0 !important;\n  }\n\n  /* Set a 0 margin on the top & bottom at the breakpoint lg */\n  .my-lg-0 {\n    margin-top: 0 !important;\n    margin-bottom: 0 !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 4px margin to all sides at the breakpoint lg */\n  .m-lg-1 {\n    margin: 4px !important;\n  }\n\n  /* Set a 4px margin on the top at the breakpoint lg */\n  .mt-lg-1 {\n    margin-top: 4px !important;\n  }\n\n  /* Set a 4px margin on the right at the breakpoint lg */\n  .mr-lg-1 {\n    margin-right: 4px !important;\n  }\n\n  /* Set a 4px margin on the bottom at the breakpoint lg */\n  .mb-lg-1 {\n    margin-bottom: 4px !important;\n  }\n\n  /* Set a 4px margin on the left at the breakpoint lg */\n  .ml-lg-1 {\n    margin-left: 4px !important;\n  }\n\n  /* Set a negative 4px margin on top at the breakpoint lg */\n  .mt-lg-n1 {\n    margin-top: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the right at the breakpoint lg */\n  .mr-lg-n1 {\n    margin-right: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the bottom at the breakpoint lg */\n  .mb-lg-n1 {\n    margin-bottom: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the left at the breakpoint lg */\n  .ml-lg-n1 {\n    margin-left: -4px !important;\n  }\n\n  /* Set a 4px margin on the left & right at the breakpoint lg */\n  .mx-lg-1 {\n    margin-right: 4px !important;\n    margin-left: 4px !important;\n  }\n\n  /* Set a 4px margin on the top & bottom at the breakpoint lg */\n  .my-lg-1 {\n    margin-top: 4px !important;\n    margin-bottom: 4px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 8px margin to all sides at the breakpoint lg */\n  .m-lg-2 {\n    margin: 8px !important;\n  }\n\n  /* Set a 8px margin on the top at the breakpoint lg */\n  .mt-lg-2 {\n    margin-top: 8px !important;\n  }\n\n  /* Set a 8px margin on the right at the breakpoint lg */\n  .mr-lg-2 {\n    margin-right: 8px !important;\n  }\n\n  /* Set a 8px margin on the bottom at the breakpoint lg */\n  .mb-lg-2 {\n    margin-bottom: 8px !important;\n  }\n\n  /* Set a 8px margin on the left at the breakpoint lg */\n  .ml-lg-2 {\n    margin-left: 8px !important;\n  }\n\n  /* Set a negative 8px margin on top at the breakpoint lg */\n  .mt-lg-n2 {\n    margin-top: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the right at the breakpoint lg */\n  .mr-lg-n2 {\n    margin-right: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the bottom at the breakpoint lg */\n  .mb-lg-n2 {\n    margin-bottom: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the left at the breakpoint lg */\n  .ml-lg-n2 {\n    margin-left: -8px !important;\n  }\n\n  /* Set a 8px margin on the left & right at the breakpoint lg */\n  .mx-lg-2 {\n    margin-right: 8px !important;\n    margin-left: 8px !important;\n  }\n\n  /* Set a 8px margin on the top & bottom at the breakpoint lg */\n  .my-lg-2 {\n    margin-top: 8px !important;\n    margin-bottom: 8px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 16px margin to all sides at the breakpoint lg */\n  .m-lg-3 {\n    margin: 16px !important;\n  }\n\n  /* Set a 16px margin on the top at the breakpoint lg */\n  .mt-lg-3 {\n    margin-top: 16px !important;\n  }\n\n  /* Set a 16px margin on the right at the breakpoint lg */\n  .mr-lg-3 {\n    margin-right: 16px !important;\n  }\n\n  /* Set a 16px margin on the bottom at the breakpoint lg */\n  .mb-lg-3 {\n    margin-bottom: 16px !important;\n  }\n\n  /* Set a 16px margin on the left at the breakpoint lg */\n  .ml-lg-3 {\n    margin-left: 16px !important;\n  }\n\n  /* Set a negative 16px margin on top at the breakpoint lg */\n  .mt-lg-n3 {\n    margin-top: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the right at the breakpoint lg */\n  .mr-lg-n3 {\n    margin-right: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the bottom at the breakpoint lg */\n  .mb-lg-n3 {\n    margin-bottom: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the left at the breakpoint lg */\n  .ml-lg-n3 {\n    margin-left: -16px !important;\n  }\n\n  /* Set a 16px margin on the left & right at the breakpoint lg */\n  .mx-lg-3 {\n    margin-right: 16px !important;\n    margin-left: 16px !important;\n  }\n\n  /* Set a 16px margin on the top & bottom at the breakpoint lg */\n  .my-lg-3 {\n    margin-top: 16px !important;\n    margin-bottom: 16px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 24px margin to all sides at the breakpoint lg */\n  .m-lg-4 {\n    margin: 24px !important;\n  }\n\n  /* Set a 24px margin on the top at the breakpoint lg */\n  .mt-lg-4 {\n    margin-top: 24px !important;\n  }\n\n  /* Set a 24px margin on the right at the breakpoint lg */\n  .mr-lg-4 {\n    margin-right: 24px !important;\n  }\n\n  /* Set a 24px margin on the bottom at the breakpoint lg */\n  .mb-lg-4 {\n    margin-bottom: 24px !important;\n  }\n\n  /* Set a 24px margin on the left at the breakpoint lg */\n  .ml-lg-4 {\n    margin-left: 24px !important;\n  }\n\n  /* Set a negative 24px margin on top at the breakpoint lg */\n  .mt-lg-n4 {\n    margin-top: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the right at the breakpoint lg */\n  .mr-lg-n4 {\n    margin-right: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the bottom at the breakpoint lg */\n  .mb-lg-n4 {\n    margin-bottom: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the left at the breakpoint lg */\n  .ml-lg-n4 {\n    margin-left: -24px !important;\n  }\n\n  /* Set a 24px margin on the left & right at the breakpoint lg */\n  .mx-lg-4 {\n    margin-right: 24px !important;\n    margin-left: 24px !important;\n  }\n\n  /* Set a 24px margin on the top & bottom at the breakpoint lg */\n  .my-lg-4 {\n    margin-top: 24px !important;\n    margin-bottom: 24px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 32px margin to all sides at the breakpoint lg */\n  .m-lg-5 {\n    margin: 32px !important;\n  }\n\n  /* Set a 32px margin on the top at the breakpoint lg */\n  .mt-lg-5 {\n    margin-top: 32px !important;\n  }\n\n  /* Set a 32px margin on the right at the breakpoint lg */\n  .mr-lg-5 {\n    margin-right: 32px !important;\n  }\n\n  /* Set a 32px margin on the bottom at the breakpoint lg */\n  .mb-lg-5 {\n    margin-bottom: 32px !important;\n  }\n\n  /* Set a 32px margin on the left at the breakpoint lg */\n  .ml-lg-5 {\n    margin-left: 32px !important;\n  }\n\n  /* Set a negative 32px margin on top at the breakpoint lg */\n  .mt-lg-n5 {\n    margin-top: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the right at the breakpoint lg */\n  .mr-lg-n5 {\n    margin-right: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the bottom at the breakpoint lg */\n  .mb-lg-n5 {\n    margin-bottom: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the left at the breakpoint lg */\n  .ml-lg-n5 {\n    margin-left: -32px !important;\n  }\n\n  /* Set a 32px margin on the left & right at the breakpoint lg */\n  .mx-lg-5 {\n    margin-right: 32px !important;\n    margin-left: 32px !important;\n  }\n\n  /* Set a 32px margin on the top & bottom at the breakpoint lg */\n  .my-lg-5 {\n    margin-top: 32px !important;\n    margin-bottom: 32px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 40px margin to all sides at the breakpoint lg */\n  .m-lg-6 {\n    margin: 40px !important;\n  }\n\n  /* Set a 40px margin on the top at the breakpoint lg */\n  .mt-lg-6 {\n    margin-top: 40px !important;\n  }\n\n  /* Set a 40px margin on the right at the breakpoint lg */\n  .mr-lg-6 {\n    margin-right: 40px !important;\n  }\n\n  /* Set a 40px margin on the bottom at the breakpoint lg */\n  .mb-lg-6 {\n    margin-bottom: 40px !important;\n  }\n\n  /* Set a 40px margin on the left at the breakpoint lg */\n  .ml-lg-6 {\n    margin-left: 40px !important;\n  }\n\n  /* Set a negative 40px margin on top at the breakpoint lg */\n  .mt-lg-n6 {\n    margin-top: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the right at the breakpoint lg */\n  .mr-lg-n6 {\n    margin-right: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the bottom at the breakpoint lg */\n  .mb-lg-n6 {\n    margin-bottom: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the left at the breakpoint lg */\n  .ml-lg-n6 {\n    margin-left: -40px !important;\n  }\n\n  /* Set a 40px margin on the left & right at the breakpoint lg */\n  .mx-lg-6 {\n    margin-right: 40px !important;\n    margin-left: 40px !important;\n  }\n\n  /* Set a 40px margin on the top & bottom at the breakpoint lg */\n  .my-lg-6 {\n    margin-top: 40px !important;\n    margin-bottom: 40px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 0 margin to all sides at the breakpoint xl */\n  .m-xl-0 {\n    margin: 0 !important;\n  }\n\n  /* Set a 0 margin on the top at the breakpoint xl */\n  .mt-xl-0 {\n    margin-top: 0 !important;\n  }\n\n  /* Set a 0 margin on the right at the breakpoint xl */\n  .mr-xl-0 {\n    margin-right: 0 !important;\n  }\n\n  /* Set a 0 margin on the bottom at the breakpoint xl */\n  .mb-xl-0 {\n    margin-bottom: 0 !important;\n  }\n\n  /* Set a 0 margin on the left at the breakpoint xl */\n  .ml-xl-0 {\n    margin-left: 0 !important;\n  }\n\n  /* Set a negative 0 margin on top at the breakpoint xl */\n  .mt-xl-n0 {\n    margin-top: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the right at the breakpoint xl */\n  .mr-xl-n0 {\n    margin-right: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the bottom at the breakpoint xl */\n  .mb-xl-n0 {\n    margin-bottom: -0 !important;\n  }\n\n  /* Set a negative 0 margin on the left at the breakpoint xl */\n  .ml-xl-n0 {\n    margin-left: -0 !important;\n  }\n\n  /* Set a 0 margin on the left & right at the breakpoint xl */\n  .mx-xl-0 {\n    margin-right: 0 !important;\n    margin-left: 0 !important;\n  }\n\n  /* Set a 0 margin on the top & bottom at the breakpoint xl */\n  .my-xl-0 {\n    margin-top: 0 !important;\n    margin-bottom: 0 !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 4px margin to all sides at the breakpoint xl */\n  .m-xl-1 {\n    margin: 4px !important;\n  }\n\n  /* Set a 4px margin on the top at the breakpoint xl */\n  .mt-xl-1 {\n    margin-top: 4px !important;\n  }\n\n  /* Set a 4px margin on the right at the breakpoint xl */\n  .mr-xl-1 {\n    margin-right: 4px !important;\n  }\n\n  /* Set a 4px margin on the bottom at the breakpoint xl */\n  .mb-xl-1 {\n    margin-bottom: 4px !important;\n  }\n\n  /* Set a 4px margin on the left at the breakpoint xl */\n  .ml-xl-1 {\n    margin-left: 4px !important;\n  }\n\n  /* Set a negative 4px margin on top at the breakpoint xl */\n  .mt-xl-n1 {\n    margin-top: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the right at the breakpoint xl */\n  .mr-xl-n1 {\n    margin-right: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the bottom at the breakpoint xl */\n  .mb-xl-n1 {\n    margin-bottom: -4px !important;\n  }\n\n  /* Set a negative 4px margin on the left at the breakpoint xl */\n  .ml-xl-n1 {\n    margin-left: -4px !important;\n  }\n\n  /* Set a 4px margin on the left & right at the breakpoint xl */\n  .mx-xl-1 {\n    margin-right: 4px !important;\n    margin-left: 4px !important;\n  }\n\n  /* Set a 4px margin on the top & bottom at the breakpoint xl */\n  .my-xl-1 {\n    margin-top: 4px !important;\n    margin-bottom: 4px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 8px margin to all sides at the breakpoint xl */\n  .m-xl-2 {\n    margin: 8px !important;\n  }\n\n  /* Set a 8px margin on the top at the breakpoint xl */\n  .mt-xl-2 {\n    margin-top: 8px !important;\n  }\n\n  /* Set a 8px margin on the right at the breakpoint xl */\n  .mr-xl-2 {\n    margin-right: 8px !important;\n  }\n\n  /* Set a 8px margin on the bottom at the breakpoint xl */\n  .mb-xl-2 {\n    margin-bottom: 8px !important;\n  }\n\n  /* Set a 8px margin on the left at the breakpoint xl */\n  .ml-xl-2 {\n    margin-left: 8px !important;\n  }\n\n  /* Set a negative 8px margin on top at the breakpoint xl */\n  .mt-xl-n2 {\n    margin-top: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the right at the breakpoint xl */\n  .mr-xl-n2 {\n    margin-right: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the bottom at the breakpoint xl */\n  .mb-xl-n2 {\n    margin-bottom: -8px !important;\n  }\n\n  /* Set a negative 8px margin on the left at the breakpoint xl */\n  .ml-xl-n2 {\n    margin-left: -8px !important;\n  }\n\n  /* Set a 8px margin on the left & right at the breakpoint xl */\n  .mx-xl-2 {\n    margin-right: 8px !important;\n    margin-left: 8px !important;\n  }\n\n  /* Set a 8px margin on the top & bottom at the breakpoint xl */\n  .my-xl-2 {\n    margin-top: 8px !important;\n    margin-bottom: 8px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 16px margin to all sides at the breakpoint xl */\n  .m-xl-3 {\n    margin: 16px !important;\n  }\n\n  /* Set a 16px margin on the top at the breakpoint xl */\n  .mt-xl-3 {\n    margin-top: 16px !important;\n  }\n\n  /* Set a 16px margin on the right at the breakpoint xl */\n  .mr-xl-3 {\n    margin-right: 16px !important;\n  }\n\n  /* Set a 16px margin on the bottom at the breakpoint xl */\n  .mb-xl-3 {\n    margin-bottom: 16px !important;\n  }\n\n  /* Set a 16px margin on the left at the breakpoint xl */\n  .ml-xl-3 {\n    margin-left: 16px !important;\n  }\n\n  /* Set a negative 16px margin on top at the breakpoint xl */\n  .mt-xl-n3 {\n    margin-top: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the right at the breakpoint xl */\n  .mr-xl-n3 {\n    margin-right: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the bottom at the breakpoint xl */\n  .mb-xl-n3 {\n    margin-bottom: -16px !important;\n  }\n\n  /* Set a negative 16px margin on the left at the breakpoint xl */\n  .ml-xl-n3 {\n    margin-left: -16px !important;\n  }\n\n  /* Set a 16px margin on the left & right at the breakpoint xl */\n  .mx-xl-3 {\n    margin-right: 16px !important;\n    margin-left: 16px !important;\n  }\n\n  /* Set a 16px margin on the top & bottom at the breakpoint xl */\n  .my-xl-3 {\n    margin-top: 16px !important;\n    margin-bottom: 16px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 24px margin to all sides at the breakpoint xl */\n  .m-xl-4 {\n    margin: 24px !important;\n  }\n\n  /* Set a 24px margin on the top at the breakpoint xl */\n  .mt-xl-4 {\n    margin-top: 24px !important;\n  }\n\n  /* Set a 24px margin on the right at the breakpoint xl */\n  .mr-xl-4 {\n    margin-right: 24px !important;\n  }\n\n  /* Set a 24px margin on the bottom at the breakpoint xl */\n  .mb-xl-4 {\n    margin-bottom: 24px !important;\n  }\n\n  /* Set a 24px margin on the left at the breakpoint xl */\n  .ml-xl-4 {\n    margin-left: 24px !important;\n  }\n\n  /* Set a negative 24px margin on top at the breakpoint xl */\n  .mt-xl-n4 {\n    margin-top: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the right at the breakpoint xl */\n  .mr-xl-n4 {\n    margin-right: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the bottom at the breakpoint xl */\n  .mb-xl-n4 {\n    margin-bottom: -24px !important;\n  }\n\n  /* Set a negative 24px margin on the left at the breakpoint xl */\n  .ml-xl-n4 {\n    margin-left: -24px !important;\n  }\n\n  /* Set a 24px margin on the left & right at the breakpoint xl */\n  .mx-xl-4 {\n    margin-right: 24px !important;\n    margin-left: 24px !important;\n  }\n\n  /* Set a 24px margin on the top & bottom at the breakpoint xl */\n  .my-xl-4 {\n    margin-top: 24px !important;\n    margin-bottom: 24px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 32px margin to all sides at the breakpoint xl */\n  .m-xl-5 {\n    margin: 32px !important;\n  }\n\n  /* Set a 32px margin on the top at the breakpoint xl */\n  .mt-xl-5 {\n    margin-top: 32px !important;\n  }\n\n  /* Set a 32px margin on the right at the breakpoint xl */\n  .mr-xl-5 {\n    margin-right: 32px !important;\n  }\n\n  /* Set a 32px margin on the bottom at the breakpoint xl */\n  .mb-xl-5 {\n    margin-bottom: 32px !important;\n  }\n\n  /* Set a 32px margin on the left at the breakpoint xl */\n  .ml-xl-5 {\n    margin-left: 32px !important;\n  }\n\n  /* Set a negative 32px margin on top at the breakpoint xl */\n  .mt-xl-n5 {\n    margin-top: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the right at the breakpoint xl */\n  .mr-xl-n5 {\n    margin-right: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the bottom at the breakpoint xl */\n  .mb-xl-n5 {\n    margin-bottom: -32px !important;\n  }\n\n  /* Set a negative 32px margin on the left at the breakpoint xl */\n  .ml-xl-n5 {\n    margin-left: -32px !important;\n  }\n\n  /* Set a 32px margin on the left & right at the breakpoint xl */\n  .mx-xl-5 {\n    margin-right: 32px !important;\n    margin-left: 32px !important;\n  }\n\n  /* Set a 32px margin on the top & bottom at the breakpoint xl */\n  .my-xl-5 {\n    margin-top: 32px !important;\n    margin-bottom: 32px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 40px margin to all sides at the breakpoint xl */\n  .m-xl-6 {\n    margin: 40px !important;\n  }\n\n  /* Set a 40px margin on the top at the breakpoint xl */\n  .mt-xl-6 {\n    margin-top: 40px !important;\n  }\n\n  /* Set a 40px margin on the right at the breakpoint xl */\n  .mr-xl-6 {\n    margin-right: 40px !important;\n  }\n\n  /* Set a 40px margin on the bottom at the breakpoint xl */\n  .mb-xl-6 {\n    margin-bottom: 40px !important;\n  }\n\n  /* Set a 40px margin on the left at the breakpoint xl */\n  .ml-xl-6 {\n    margin-left: 40px !important;\n  }\n\n  /* Set a negative 40px margin on top at the breakpoint xl */\n  .mt-xl-n6 {\n    margin-top: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the right at the breakpoint xl */\n  .mr-xl-n6 {\n    margin-right: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the bottom at the breakpoint xl */\n  .mb-xl-n6 {\n    margin-bottom: -40px !important;\n  }\n\n  /* Set a negative 40px margin on the left at the breakpoint xl */\n  .ml-xl-n6 {\n    margin-left: -40px !important;\n  }\n\n  /* Set a 40px margin on the left & right at the breakpoint xl */\n  .mx-xl-6 {\n    margin-right: 40px !important;\n    margin-left: 40px !important;\n  }\n\n  /* Set a 40px margin on the top & bottom at the breakpoint xl */\n  .my-xl-6 {\n    margin-top: 40px !important;\n    margin-bottom: 40px !important;\n  }\n}\n/* Set a 0 padding to all sides */\n.p-0 {\n  padding: 0 !important;\n}\n\n/* Set a 0 padding to the top */\n.pt-0 {\n  padding-top: 0 !important;\n}\n\n/* Set a 0 padding to the right */\n.pr-0 {\n  padding-right: 0 !important;\n}\n\n/* Set a 0 padding to the bottom */\n.pb-0 {\n  padding-bottom: 0 !important;\n}\n\n/* Set a 0 padding to the left */\n.pl-0 {\n  padding-left: 0 !important;\n}\n\n/* Set a 0 padding to the left & right */\n.px-0 {\n  padding-right: 0 !important;\n  padding-left: 0 !important;\n}\n\n/* Set a 0 padding to the top & bottom */\n.py-0 {\n  padding-top: 0 !important;\n  padding-bottom: 0 !important;\n}\n\n/* Set a 4px padding to all sides */\n.p-1 {\n  padding: 4px !important;\n}\n\n/* Set a 4px padding to the top */\n.pt-1 {\n  padding-top: 4px !important;\n}\n\n/* Set a 4px padding to the right */\n.pr-1 {\n  padding-right: 4px !important;\n}\n\n/* Set a 4px padding to the bottom */\n.pb-1 {\n  padding-bottom: 4px !important;\n}\n\n/* Set a 4px padding to the left */\n.pl-1 {\n  padding-left: 4px !important;\n}\n\n/* Set a 4px padding to the left & right */\n.px-1 {\n  padding-right: 4px !important;\n  padding-left: 4px !important;\n}\n\n/* Set a 4px padding to the top & bottom */\n.py-1 {\n  padding-top: 4px !important;\n  padding-bottom: 4px !important;\n}\n\n/* Set a 8px padding to all sides */\n.p-2 {\n  padding: 8px !important;\n}\n\n/* Set a 8px padding to the top */\n.pt-2 {\n  padding-top: 8px !important;\n}\n\n/* Set a 8px padding to the right */\n.pr-2 {\n  padding-right: 8px !important;\n}\n\n/* Set a 8px padding to the bottom */\n.pb-2 {\n  padding-bottom: 8px !important;\n}\n\n/* Set a 8px padding to the left */\n.pl-2 {\n  padding-left: 8px !important;\n}\n\n/* Set a 8px padding to the left & right */\n.px-2 {\n  padding-right: 8px !important;\n  padding-left: 8px !important;\n}\n\n/* Set a 8px padding to the top & bottom */\n.py-2 {\n  padding-top: 8px !important;\n  padding-bottom: 8px !important;\n}\n\n/* Set a 16px padding to all sides */\n.p-3 {\n  padding: 16px !important;\n}\n\n/* Set a 16px padding to the top */\n.pt-3 {\n  padding-top: 16px !important;\n}\n\n/* Set a 16px padding to the right */\n.pr-3 {\n  padding-right: 16px !important;\n}\n\n/* Set a 16px padding to the bottom */\n.pb-3 {\n  padding-bottom: 16px !important;\n}\n\n/* Set a 16px padding to the left */\n.pl-3 {\n  padding-left: 16px !important;\n}\n\n/* Set a 16px padding to the left & right */\n.px-3 {\n  padding-right: 16px !important;\n  padding-left: 16px !important;\n}\n\n/* Set a 16px padding to the top & bottom */\n.py-3 {\n  padding-top: 16px !important;\n  padding-bottom: 16px !important;\n}\n\n/* Set a 24px padding to all sides */\n.p-4 {\n  padding: 24px !important;\n}\n\n/* Set a 24px padding to the top */\n.pt-4 {\n  padding-top: 24px !important;\n}\n\n/* Set a 24px padding to the right */\n.pr-4 {\n  padding-right: 24px !important;\n}\n\n/* Set a 24px padding to the bottom */\n.pb-4 {\n  padding-bottom: 24px !important;\n}\n\n/* Set a 24px padding to the left */\n.pl-4 {\n  padding-left: 24px !important;\n}\n\n/* Set a 24px padding to the left & right */\n.px-4 {\n  padding-right: 24px !important;\n  padding-left: 24px !important;\n}\n\n/* Set a 24px padding to the top & bottom */\n.py-4 {\n  padding-top: 24px !important;\n  padding-bottom: 24px !important;\n}\n\n/* Set a 32px padding to all sides */\n.p-5 {\n  padding: 32px !important;\n}\n\n/* Set a 32px padding to the top */\n.pt-5 {\n  padding-top: 32px !important;\n}\n\n/* Set a 32px padding to the right */\n.pr-5 {\n  padding-right: 32px !important;\n}\n\n/* Set a 32px padding to the bottom */\n.pb-5 {\n  padding-bottom: 32px !important;\n}\n\n/* Set a 32px padding to the left */\n.pl-5 {\n  padding-left: 32px !important;\n}\n\n/* Set a 32px padding to the left & right */\n.px-5 {\n  padding-right: 32px !important;\n  padding-left: 32px !important;\n}\n\n/* Set a 32px padding to the top & bottom */\n.py-5 {\n  padding-top: 32px !important;\n  padding-bottom: 32px !important;\n}\n\n/* Set a 40px padding to all sides */\n.p-6 {\n  padding: 40px !important;\n}\n\n/* Set a 40px padding to the top */\n.pt-6 {\n  padding-top: 40px !important;\n}\n\n/* Set a 40px padding to the right */\n.pr-6 {\n  padding-right: 40px !important;\n}\n\n/* Set a 40px padding to the bottom */\n.pb-6 {\n  padding-bottom: 40px !important;\n}\n\n/* Set a 40px padding to the left */\n.pl-6 {\n  padding-left: 40px !important;\n}\n\n/* Set a 40px padding to the left & right */\n.px-6 {\n  padding-right: 40px !important;\n  padding-left: 40px !important;\n}\n\n/* Set a 40px padding to the top & bottom */\n.py-6 {\n  padding-top: 40px !important;\n  padding-bottom: 40px !important;\n}\n\n@media (min-width: 544px) {\n  /* Set a 0 padding to all sides at the sm breakpoint */\n  .p-sm-0 {\n    padding: 0 !important;\n  }\n\n  /* Set a 0 padding to the top at the sm breakpoint */\n  .pt-sm-0 {\n    padding-top: 0 !important;\n  }\n\n  /* Set a 0 padding to the right at the sm breakpoint */\n  .pr-sm-0 {\n    padding-right: 0 !important;\n  }\n\n  /* Set a 0 padding to the bottom at the sm breakpoint */\n  .pb-sm-0 {\n    padding-bottom: 0 !important;\n  }\n\n  /* Set a 0 padding to the left at the sm breakpoint */\n  .pl-sm-0 {\n    padding-left: 0 !important;\n  }\n\n  /* Set a 0 padding to the left & right at the sm breakpoint */\n  .px-sm-0 {\n    padding-right: 0 !important;\n    padding-left: 0 !important;\n  }\n\n  /* Set a 0 padding to the top & bottom at the sm breakpoint */\n  .py-sm-0 {\n    padding-top: 0 !important;\n    padding-bottom: 0 !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 4px padding to all sides at the sm breakpoint */\n  .p-sm-1 {\n    padding: 4px !important;\n  }\n\n  /* Set a 4px padding to the top at the sm breakpoint */\n  .pt-sm-1 {\n    padding-top: 4px !important;\n  }\n\n  /* Set a 4px padding to the right at the sm breakpoint */\n  .pr-sm-1 {\n    padding-right: 4px !important;\n  }\n\n  /* Set a 4px padding to the bottom at the sm breakpoint */\n  .pb-sm-1 {\n    padding-bottom: 4px !important;\n  }\n\n  /* Set a 4px padding to the left at the sm breakpoint */\n  .pl-sm-1 {\n    padding-left: 4px !important;\n  }\n\n  /* Set a 4px padding to the left & right at the sm breakpoint */\n  .px-sm-1 {\n    padding-right: 4px !important;\n    padding-left: 4px !important;\n  }\n\n  /* Set a 4px padding to the top & bottom at the sm breakpoint */\n  .py-sm-1 {\n    padding-top: 4px !important;\n    padding-bottom: 4px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 8px padding to all sides at the sm breakpoint */\n  .p-sm-2 {\n    padding: 8px !important;\n  }\n\n  /* Set a 8px padding to the top at the sm breakpoint */\n  .pt-sm-2 {\n    padding-top: 8px !important;\n  }\n\n  /* Set a 8px padding to the right at the sm breakpoint */\n  .pr-sm-2 {\n    padding-right: 8px !important;\n  }\n\n  /* Set a 8px padding to the bottom at the sm breakpoint */\n  .pb-sm-2 {\n    padding-bottom: 8px !important;\n  }\n\n  /* Set a 8px padding to the left at the sm breakpoint */\n  .pl-sm-2 {\n    padding-left: 8px !important;\n  }\n\n  /* Set a 8px padding to the left & right at the sm breakpoint */\n  .px-sm-2 {\n    padding-right: 8px !important;\n    padding-left: 8px !important;\n  }\n\n  /* Set a 8px padding to the top & bottom at the sm breakpoint */\n  .py-sm-2 {\n    padding-top: 8px !important;\n    padding-bottom: 8px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 16px padding to all sides at the sm breakpoint */\n  .p-sm-3 {\n    padding: 16px !important;\n  }\n\n  /* Set a 16px padding to the top at the sm breakpoint */\n  .pt-sm-3 {\n    padding-top: 16px !important;\n  }\n\n  /* Set a 16px padding to the right at the sm breakpoint */\n  .pr-sm-3 {\n    padding-right: 16px !important;\n  }\n\n  /* Set a 16px padding to the bottom at the sm breakpoint */\n  .pb-sm-3 {\n    padding-bottom: 16px !important;\n  }\n\n  /* Set a 16px padding to the left at the sm breakpoint */\n  .pl-sm-3 {\n    padding-left: 16px !important;\n  }\n\n  /* Set a 16px padding to the left & right at the sm breakpoint */\n  .px-sm-3 {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n\n  /* Set a 16px padding to the top & bottom at the sm breakpoint */\n  .py-sm-3 {\n    padding-top: 16px !important;\n    padding-bottom: 16px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 24px padding to all sides at the sm breakpoint */\n  .p-sm-4 {\n    padding: 24px !important;\n  }\n\n  /* Set a 24px padding to the top at the sm breakpoint */\n  .pt-sm-4 {\n    padding-top: 24px !important;\n  }\n\n  /* Set a 24px padding to the right at the sm breakpoint */\n  .pr-sm-4 {\n    padding-right: 24px !important;\n  }\n\n  /* Set a 24px padding to the bottom at the sm breakpoint */\n  .pb-sm-4 {\n    padding-bottom: 24px !important;\n  }\n\n  /* Set a 24px padding to the left at the sm breakpoint */\n  .pl-sm-4 {\n    padding-left: 24px !important;\n  }\n\n  /* Set a 24px padding to the left & right at the sm breakpoint */\n  .px-sm-4 {\n    padding-right: 24px !important;\n    padding-left: 24px !important;\n  }\n\n  /* Set a 24px padding to the top & bottom at the sm breakpoint */\n  .py-sm-4 {\n    padding-top: 24px !important;\n    padding-bottom: 24px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 32px padding to all sides at the sm breakpoint */\n  .p-sm-5 {\n    padding: 32px !important;\n  }\n\n  /* Set a 32px padding to the top at the sm breakpoint */\n  .pt-sm-5 {\n    padding-top: 32px !important;\n  }\n\n  /* Set a 32px padding to the right at the sm breakpoint */\n  .pr-sm-5 {\n    padding-right: 32px !important;\n  }\n\n  /* Set a 32px padding to the bottom at the sm breakpoint */\n  .pb-sm-5 {\n    padding-bottom: 32px !important;\n  }\n\n  /* Set a 32px padding to the left at the sm breakpoint */\n  .pl-sm-5 {\n    padding-left: 32px !important;\n  }\n\n  /* Set a 32px padding to the left & right at the sm breakpoint */\n  .px-sm-5 {\n    padding-right: 32px !important;\n    padding-left: 32px !important;\n  }\n\n  /* Set a 32px padding to the top & bottom at the sm breakpoint */\n  .py-sm-5 {\n    padding-top: 32px !important;\n    padding-bottom: 32px !important;\n  }\n}\n@media (min-width: 544px) {\n  /* Set a 40px padding to all sides at the sm breakpoint */\n  .p-sm-6 {\n    padding: 40px !important;\n  }\n\n  /* Set a 40px padding to the top at the sm breakpoint */\n  .pt-sm-6 {\n    padding-top: 40px !important;\n  }\n\n  /* Set a 40px padding to the right at the sm breakpoint */\n  .pr-sm-6 {\n    padding-right: 40px !important;\n  }\n\n  /* Set a 40px padding to the bottom at the sm breakpoint */\n  .pb-sm-6 {\n    padding-bottom: 40px !important;\n  }\n\n  /* Set a 40px padding to the left at the sm breakpoint */\n  .pl-sm-6 {\n    padding-left: 40px !important;\n  }\n\n  /* Set a 40px padding to the left & right at the sm breakpoint */\n  .px-sm-6 {\n    padding-right: 40px !important;\n    padding-left: 40px !important;\n  }\n\n  /* Set a 40px padding to the top & bottom at the sm breakpoint */\n  .py-sm-6 {\n    padding-top: 40px !important;\n    padding-bottom: 40px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 0 padding to all sides at the md breakpoint */\n  .p-md-0 {\n    padding: 0 !important;\n  }\n\n  /* Set a 0 padding to the top at the md breakpoint */\n  .pt-md-0 {\n    padding-top: 0 !important;\n  }\n\n  /* Set a 0 padding to the right at the md breakpoint */\n  .pr-md-0 {\n    padding-right: 0 !important;\n  }\n\n  /* Set a 0 padding to the bottom at the md breakpoint */\n  .pb-md-0 {\n    padding-bottom: 0 !important;\n  }\n\n  /* Set a 0 padding to the left at the md breakpoint */\n  .pl-md-0 {\n    padding-left: 0 !important;\n  }\n\n  /* Set a 0 padding to the left & right at the md breakpoint */\n  .px-md-0 {\n    padding-right: 0 !important;\n    padding-left: 0 !important;\n  }\n\n  /* Set a 0 padding to the top & bottom at the md breakpoint */\n  .py-md-0 {\n    padding-top: 0 !important;\n    padding-bottom: 0 !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 4px padding to all sides at the md breakpoint */\n  .p-md-1 {\n    padding: 4px !important;\n  }\n\n  /* Set a 4px padding to the top at the md breakpoint */\n  .pt-md-1 {\n    padding-top: 4px !important;\n  }\n\n  /* Set a 4px padding to the right at the md breakpoint */\n  .pr-md-1 {\n    padding-right: 4px !important;\n  }\n\n  /* Set a 4px padding to the bottom at the md breakpoint */\n  .pb-md-1 {\n    padding-bottom: 4px !important;\n  }\n\n  /* Set a 4px padding to the left at the md breakpoint */\n  .pl-md-1 {\n    padding-left: 4px !important;\n  }\n\n  /* Set a 4px padding to the left & right at the md breakpoint */\n  .px-md-1 {\n    padding-right: 4px !important;\n    padding-left: 4px !important;\n  }\n\n  /* Set a 4px padding to the top & bottom at the md breakpoint */\n  .py-md-1 {\n    padding-top: 4px !important;\n    padding-bottom: 4px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 8px padding to all sides at the md breakpoint */\n  .p-md-2 {\n    padding: 8px !important;\n  }\n\n  /* Set a 8px padding to the top at the md breakpoint */\n  .pt-md-2 {\n    padding-top: 8px !important;\n  }\n\n  /* Set a 8px padding to the right at the md breakpoint */\n  .pr-md-2 {\n    padding-right: 8px !important;\n  }\n\n  /* Set a 8px padding to the bottom at the md breakpoint */\n  .pb-md-2 {\n    padding-bottom: 8px !important;\n  }\n\n  /* Set a 8px padding to the left at the md breakpoint */\n  .pl-md-2 {\n    padding-left: 8px !important;\n  }\n\n  /* Set a 8px padding to the left & right at the md breakpoint */\n  .px-md-2 {\n    padding-right: 8px !important;\n    padding-left: 8px !important;\n  }\n\n  /* Set a 8px padding to the top & bottom at the md breakpoint */\n  .py-md-2 {\n    padding-top: 8px !important;\n    padding-bottom: 8px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 16px padding to all sides at the md breakpoint */\n  .p-md-3 {\n    padding: 16px !important;\n  }\n\n  /* Set a 16px padding to the top at the md breakpoint */\n  .pt-md-3 {\n    padding-top: 16px !important;\n  }\n\n  /* Set a 16px padding to the right at the md breakpoint */\n  .pr-md-3 {\n    padding-right: 16px !important;\n  }\n\n  /* Set a 16px padding to the bottom at the md breakpoint */\n  .pb-md-3 {\n    padding-bottom: 16px !important;\n  }\n\n  /* Set a 16px padding to the left at the md breakpoint */\n  .pl-md-3 {\n    padding-left: 16px !important;\n  }\n\n  /* Set a 16px padding to the left & right at the md breakpoint */\n  .px-md-3 {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n\n  /* Set a 16px padding to the top & bottom at the md breakpoint */\n  .py-md-3 {\n    padding-top: 16px !important;\n    padding-bottom: 16px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 24px padding to all sides at the md breakpoint */\n  .p-md-4 {\n    padding: 24px !important;\n  }\n\n  /* Set a 24px padding to the top at the md breakpoint */\n  .pt-md-4 {\n    padding-top: 24px !important;\n  }\n\n  /* Set a 24px padding to the right at the md breakpoint */\n  .pr-md-4 {\n    padding-right: 24px !important;\n  }\n\n  /* Set a 24px padding to the bottom at the md breakpoint */\n  .pb-md-4 {\n    padding-bottom: 24px !important;\n  }\n\n  /* Set a 24px padding to the left at the md breakpoint */\n  .pl-md-4 {\n    padding-left: 24px !important;\n  }\n\n  /* Set a 24px padding to the left & right at the md breakpoint */\n  .px-md-4 {\n    padding-right: 24px !important;\n    padding-left: 24px !important;\n  }\n\n  /* Set a 24px padding to the top & bottom at the md breakpoint */\n  .py-md-4 {\n    padding-top: 24px !important;\n    padding-bottom: 24px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 32px padding to all sides at the md breakpoint */\n  .p-md-5 {\n    padding: 32px !important;\n  }\n\n  /* Set a 32px padding to the top at the md breakpoint */\n  .pt-md-5 {\n    padding-top: 32px !important;\n  }\n\n  /* Set a 32px padding to the right at the md breakpoint */\n  .pr-md-5 {\n    padding-right: 32px !important;\n  }\n\n  /* Set a 32px padding to the bottom at the md breakpoint */\n  .pb-md-5 {\n    padding-bottom: 32px !important;\n  }\n\n  /* Set a 32px padding to the left at the md breakpoint */\n  .pl-md-5 {\n    padding-left: 32px !important;\n  }\n\n  /* Set a 32px padding to the left & right at the md breakpoint */\n  .px-md-5 {\n    padding-right: 32px !important;\n    padding-left: 32px !important;\n  }\n\n  /* Set a 32px padding to the top & bottom at the md breakpoint */\n  .py-md-5 {\n    padding-top: 32px !important;\n    padding-bottom: 32px !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set a 40px padding to all sides at the md breakpoint */\n  .p-md-6 {\n    padding: 40px !important;\n  }\n\n  /* Set a 40px padding to the top at the md breakpoint */\n  .pt-md-6 {\n    padding-top: 40px !important;\n  }\n\n  /* Set a 40px padding to the right at the md breakpoint */\n  .pr-md-6 {\n    padding-right: 40px !important;\n  }\n\n  /* Set a 40px padding to the bottom at the md breakpoint */\n  .pb-md-6 {\n    padding-bottom: 40px !important;\n  }\n\n  /* Set a 40px padding to the left at the md breakpoint */\n  .pl-md-6 {\n    padding-left: 40px !important;\n  }\n\n  /* Set a 40px padding to the left & right at the md breakpoint */\n  .px-md-6 {\n    padding-right: 40px !important;\n    padding-left: 40px !important;\n  }\n\n  /* Set a 40px padding to the top & bottom at the md breakpoint */\n  .py-md-6 {\n    padding-top: 40px !important;\n    padding-bottom: 40px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 0 padding to all sides at the lg breakpoint */\n  .p-lg-0 {\n    padding: 0 !important;\n  }\n\n  /* Set a 0 padding to the top at the lg breakpoint */\n  .pt-lg-0 {\n    padding-top: 0 !important;\n  }\n\n  /* Set a 0 padding to the right at the lg breakpoint */\n  .pr-lg-0 {\n    padding-right: 0 !important;\n  }\n\n  /* Set a 0 padding to the bottom at the lg breakpoint */\n  .pb-lg-0 {\n    padding-bottom: 0 !important;\n  }\n\n  /* Set a 0 padding to the left at the lg breakpoint */\n  .pl-lg-0 {\n    padding-left: 0 !important;\n  }\n\n  /* Set a 0 padding to the left & right at the lg breakpoint */\n  .px-lg-0 {\n    padding-right: 0 !important;\n    padding-left: 0 !important;\n  }\n\n  /* Set a 0 padding to the top & bottom at the lg breakpoint */\n  .py-lg-0 {\n    padding-top: 0 !important;\n    padding-bottom: 0 !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 4px padding to all sides at the lg breakpoint */\n  .p-lg-1 {\n    padding: 4px !important;\n  }\n\n  /* Set a 4px padding to the top at the lg breakpoint */\n  .pt-lg-1 {\n    padding-top: 4px !important;\n  }\n\n  /* Set a 4px padding to the right at the lg breakpoint */\n  .pr-lg-1 {\n    padding-right: 4px !important;\n  }\n\n  /* Set a 4px padding to the bottom at the lg breakpoint */\n  .pb-lg-1 {\n    padding-bottom: 4px !important;\n  }\n\n  /* Set a 4px padding to the left at the lg breakpoint */\n  .pl-lg-1 {\n    padding-left: 4px !important;\n  }\n\n  /* Set a 4px padding to the left & right at the lg breakpoint */\n  .px-lg-1 {\n    padding-right: 4px !important;\n    padding-left: 4px !important;\n  }\n\n  /* Set a 4px padding to the top & bottom at the lg breakpoint */\n  .py-lg-1 {\n    padding-top: 4px !important;\n    padding-bottom: 4px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 8px padding to all sides at the lg breakpoint */\n  .p-lg-2 {\n    padding: 8px !important;\n  }\n\n  /* Set a 8px padding to the top at the lg breakpoint */\n  .pt-lg-2 {\n    padding-top: 8px !important;\n  }\n\n  /* Set a 8px padding to the right at the lg breakpoint */\n  .pr-lg-2 {\n    padding-right: 8px !important;\n  }\n\n  /* Set a 8px padding to the bottom at the lg breakpoint */\n  .pb-lg-2 {\n    padding-bottom: 8px !important;\n  }\n\n  /* Set a 8px padding to the left at the lg breakpoint */\n  .pl-lg-2 {\n    padding-left: 8px !important;\n  }\n\n  /* Set a 8px padding to the left & right at the lg breakpoint */\n  .px-lg-2 {\n    padding-right: 8px !important;\n    padding-left: 8px !important;\n  }\n\n  /* Set a 8px padding to the top & bottom at the lg breakpoint */\n  .py-lg-2 {\n    padding-top: 8px !important;\n    padding-bottom: 8px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 16px padding to all sides at the lg breakpoint */\n  .p-lg-3 {\n    padding: 16px !important;\n  }\n\n  /* Set a 16px padding to the top at the lg breakpoint */\n  .pt-lg-3 {\n    padding-top: 16px !important;\n  }\n\n  /* Set a 16px padding to the right at the lg breakpoint */\n  .pr-lg-3 {\n    padding-right: 16px !important;\n  }\n\n  /* Set a 16px padding to the bottom at the lg breakpoint */\n  .pb-lg-3 {\n    padding-bottom: 16px !important;\n  }\n\n  /* Set a 16px padding to the left at the lg breakpoint */\n  .pl-lg-3 {\n    padding-left: 16px !important;\n  }\n\n  /* Set a 16px padding to the left & right at the lg breakpoint */\n  .px-lg-3 {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n\n  /* Set a 16px padding to the top & bottom at the lg breakpoint */\n  .py-lg-3 {\n    padding-top: 16px !important;\n    padding-bottom: 16px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 24px padding to all sides at the lg breakpoint */\n  .p-lg-4 {\n    padding: 24px !important;\n  }\n\n  /* Set a 24px padding to the top at the lg breakpoint */\n  .pt-lg-4 {\n    padding-top: 24px !important;\n  }\n\n  /* Set a 24px padding to the right at the lg breakpoint */\n  .pr-lg-4 {\n    padding-right: 24px !important;\n  }\n\n  /* Set a 24px padding to the bottom at the lg breakpoint */\n  .pb-lg-4 {\n    padding-bottom: 24px !important;\n  }\n\n  /* Set a 24px padding to the left at the lg breakpoint */\n  .pl-lg-4 {\n    padding-left: 24px !important;\n  }\n\n  /* Set a 24px padding to the left & right at the lg breakpoint */\n  .px-lg-4 {\n    padding-right: 24px !important;\n    padding-left: 24px !important;\n  }\n\n  /* Set a 24px padding to the top & bottom at the lg breakpoint */\n  .py-lg-4 {\n    padding-top: 24px !important;\n    padding-bottom: 24px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 32px padding to all sides at the lg breakpoint */\n  .p-lg-5 {\n    padding: 32px !important;\n  }\n\n  /* Set a 32px padding to the top at the lg breakpoint */\n  .pt-lg-5 {\n    padding-top: 32px !important;\n  }\n\n  /* Set a 32px padding to the right at the lg breakpoint */\n  .pr-lg-5 {\n    padding-right: 32px !important;\n  }\n\n  /* Set a 32px padding to the bottom at the lg breakpoint */\n  .pb-lg-5 {\n    padding-bottom: 32px !important;\n  }\n\n  /* Set a 32px padding to the left at the lg breakpoint */\n  .pl-lg-5 {\n    padding-left: 32px !important;\n  }\n\n  /* Set a 32px padding to the left & right at the lg breakpoint */\n  .px-lg-5 {\n    padding-right: 32px !important;\n    padding-left: 32px !important;\n  }\n\n  /* Set a 32px padding to the top & bottom at the lg breakpoint */\n  .py-lg-5 {\n    padding-top: 32px !important;\n    padding-bottom: 32px !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set a 40px padding to all sides at the lg breakpoint */\n  .p-lg-6 {\n    padding: 40px !important;\n  }\n\n  /* Set a 40px padding to the top at the lg breakpoint */\n  .pt-lg-6 {\n    padding-top: 40px !important;\n  }\n\n  /* Set a 40px padding to the right at the lg breakpoint */\n  .pr-lg-6 {\n    padding-right: 40px !important;\n  }\n\n  /* Set a 40px padding to the bottom at the lg breakpoint */\n  .pb-lg-6 {\n    padding-bottom: 40px !important;\n  }\n\n  /* Set a 40px padding to the left at the lg breakpoint */\n  .pl-lg-6 {\n    padding-left: 40px !important;\n  }\n\n  /* Set a 40px padding to the left & right at the lg breakpoint */\n  .px-lg-6 {\n    padding-right: 40px !important;\n    padding-left: 40px !important;\n  }\n\n  /* Set a 40px padding to the top & bottom at the lg breakpoint */\n  .py-lg-6 {\n    padding-top: 40px !important;\n    padding-bottom: 40px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 0 padding to all sides at the xl breakpoint */\n  .p-xl-0 {\n    padding: 0 !important;\n  }\n\n  /* Set a 0 padding to the top at the xl breakpoint */\n  .pt-xl-0 {\n    padding-top: 0 !important;\n  }\n\n  /* Set a 0 padding to the right at the xl breakpoint */\n  .pr-xl-0 {\n    padding-right: 0 !important;\n  }\n\n  /* Set a 0 padding to the bottom at the xl breakpoint */\n  .pb-xl-0 {\n    padding-bottom: 0 !important;\n  }\n\n  /* Set a 0 padding to the left at the xl breakpoint */\n  .pl-xl-0 {\n    padding-left: 0 !important;\n  }\n\n  /* Set a 0 padding to the left & right at the xl breakpoint */\n  .px-xl-0 {\n    padding-right: 0 !important;\n    padding-left: 0 !important;\n  }\n\n  /* Set a 0 padding to the top & bottom at the xl breakpoint */\n  .py-xl-0 {\n    padding-top: 0 !important;\n    padding-bottom: 0 !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 4px padding to all sides at the xl breakpoint */\n  .p-xl-1 {\n    padding: 4px !important;\n  }\n\n  /* Set a 4px padding to the top at the xl breakpoint */\n  .pt-xl-1 {\n    padding-top: 4px !important;\n  }\n\n  /* Set a 4px padding to the right at the xl breakpoint */\n  .pr-xl-1 {\n    padding-right: 4px !important;\n  }\n\n  /* Set a 4px padding to the bottom at the xl breakpoint */\n  .pb-xl-1 {\n    padding-bottom: 4px !important;\n  }\n\n  /* Set a 4px padding to the left at the xl breakpoint */\n  .pl-xl-1 {\n    padding-left: 4px !important;\n  }\n\n  /* Set a 4px padding to the left & right at the xl breakpoint */\n  .px-xl-1 {\n    padding-right: 4px !important;\n    padding-left: 4px !important;\n  }\n\n  /* Set a 4px padding to the top & bottom at the xl breakpoint */\n  .py-xl-1 {\n    padding-top: 4px !important;\n    padding-bottom: 4px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 8px padding to all sides at the xl breakpoint */\n  .p-xl-2 {\n    padding: 8px !important;\n  }\n\n  /* Set a 8px padding to the top at the xl breakpoint */\n  .pt-xl-2 {\n    padding-top: 8px !important;\n  }\n\n  /* Set a 8px padding to the right at the xl breakpoint */\n  .pr-xl-2 {\n    padding-right: 8px !important;\n  }\n\n  /* Set a 8px padding to the bottom at the xl breakpoint */\n  .pb-xl-2 {\n    padding-bottom: 8px !important;\n  }\n\n  /* Set a 8px padding to the left at the xl breakpoint */\n  .pl-xl-2 {\n    padding-left: 8px !important;\n  }\n\n  /* Set a 8px padding to the left & right at the xl breakpoint */\n  .px-xl-2 {\n    padding-right: 8px !important;\n    padding-left: 8px !important;\n  }\n\n  /* Set a 8px padding to the top & bottom at the xl breakpoint */\n  .py-xl-2 {\n    padding-top: 8px !important;\n    padding-bottom: 8px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 16px padding to all sides at the xl breakpoint */\n  .p-xl-3 {\n    padding: 16px !important;\n  }\n\n  /* Set a 16px padding to the top at the xl breakpoint */\n  .pt-xl-3 {\n    padding-top: 16px !important;\n  }\n\n  /* Set a 16px padding to the right at the xl breakpoint */\n  .pr-xl-3 {\n    padding-right: 16px !important;\n  }\n\n  /* Set a 16px padding to the bottom at the xl breakpoint */\n  .pb-xl-3 {\n    padding-bottom: 16px !important;\n  }\n\n  /* Set a 16px padding to the left at the xl breakpoint */\n  .pl-xl-3 {\n    padding-left: 16px !important;\n  }\n\n  /* Set a 16px padding to the left & right at the xl breakpoint */\n  .px-xl-3 {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n\n  /* Set a 16px padding to the top & bottom at the xl breakpoint */\n  .py-xl-3 {\n    padding-top: 16px !important;\n    padding-bottom: 16px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 24px padding to all sides at the xl breakpoint */\n  .p-xl-4 {\n    padding: 24px !important;\n  }\n\n  /* Set a 24px padding to the top at the xl breakpoint */\n  .pt-xl-4 {\n    padding-top: 24px !important;\n  }\n\n  /* Set a 24px padding to the right at the xl breakpoint */\n  .pr-xl-4 {\n    padding-right: 24px !important;\n  }\n\n  /* Set a 24px padding to the bottom at the xl breakpoint */\n  .pb-xl-4 {\n    padding-bottom: 24px !important;\n  }\n\n  /* Set a 24px padding to the left at the xl breakpoint */\n  .pl-xl-4 {\n    padding-left: 24px !important;\n  }\n\n  /* Set a 24px padding to the left & right at the xl breakpoint */\n  .px-xl-4 {\n    padding-right: 24px !important;\n    padding-left: 24px !important;\n  }\n\n  /* Set a 24px padding to the top & bottom at the xl breakpoint */\n  .py-xl-4 {\n    padding-top: 24px !important;\n    padding-bottom: 24px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 32px padding to all sides at the xl breakpoint */\n  .p-xl-5 {\n    padding: 32px !important;\n  }\n\n  /* Set a 32px padding to the top at the xl breakpoint */\n  .pt-xl-5 {\n    padding-top: 32px !important;\n  }\n\n  /* Set a 32px padding to the right at the xl breakpoint */\n  .pr-xl-5 {\n    padding-right: 32px !important;\n  }\n\n  /* Set a 32px padding to the bottom at the xl breakpoint */\n  .pb-xl-5 {\n    padding-bottom: 32px !important;\n  }\n\n  /* Set a 32px padding to the left at the xl breakpoint */\n  .pl-xl-5 {\n    padding-left: 32px !important;\n  }\n\n  /* Set a 32px padding to the left & right at the xl breakpoint */\n  .px-xl-5 {\n    padding-right: 32px !important;\n    padding-left: 32px !important;\n  }\n\n  /* Set a 32px padding to the top & bottom at the xl breakpoint */\n  .py-xl-5 {\n    padding-top: 32px !important;\n    padding-bottom: 32px !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set a 40px padding to all sides at the xl breakpoint */\n  .p-xl-6 {\n    padding: 40px !important;\n  }\n\n  /* Set a 40px padding to the top at the xl breakpoint */\n  .pt-xl-6 {\n    padding-top: 40px !important;\n  }\n\n  /* Set a 40px padding to the right at the xl breakpoint */\n  .pr-xl-6 {\n    padding-right: 40px !important;\n  }\n\n  /* Set a 40px padding to the bottom at the xl breakpoint */\n  .pb-xl-6 {\n    padding-bottom: 40px !important;\n  }\n\n  /* Set a 40px padding to the left at the xl breakpoint */\n  .pl-xl-6 {\n    padding-left: 40px !important;\n  }\n\n  /* Set a 40px padding to the left & right at the xl breakpoint */\n  .px-xl-6 {\n    padding-right: 40px !important;\n    padding-left: 40px !important;\n  }\n\n  /* Set a 40px padding to the top & bottom at the xl breakpoint */\n  .py-xl-6 {\n    padding-top: 40px !important;\n    padding-bottom: 40px !important;\n  }\n}\n.p-responsive {\n  padding-right: 16px !important;\n  padding-left: 16px !important;\n}\n@media (min-width: 544px) {\n  .p-responsive {\n    padding-right: 40px !important;\n    padding-left: 40px !important;\n  }\n}\n@media (min-width: 1012px) {\n  .p-responsive {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n}\n\n/* Set the font size to 26px */\n.h1 {\n  font-size: 26px !important;\n}\n@media (min-width: 768px) {\n  .h1 {\n    font-size: 32px !important;\n  }\n}\n\n/* Set the font size to 22px */\n.h2 {\n  font-size: 22px !important;\n}\n@media (min-width: 768px) {\n  .h2 {\n    font-size: 24px !important;\n  }\n}\n\n/* Set the font size to 18px */\n.h3 {\n  font-size: 18px !important;\n}\n@media (min-width: 768px) {\n  .h3 {\n    font-size: 20px !important;\n  }\n}\n\n/* Set the font size to 16px */\n.h4 {\n  font-size: 16px !important;\n}\n\n/* Set the font size to 14px */\n.h5 {\n  font-size: 14px !important;\n}\n\n/* Set the font size to 12px */\n.h6 {\n  font-size: 12px !important;\n}\n\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-weight: 600 !important;\n}\n\n/* Set the font size to 26px */\n.f1 {\n  font-size: 26px !important;\n}\n@media (min-width: 768px) {\n  .f1 {\n    font-size: 32px !important;\n  }\n}\n\n/* Set the font size to 22px */\n.f2 {\n  font-size: 22px !important;\n}\n@media (min-width: 768px) {\n  .f2 {\n    font-size: 24px !important;\n  }\n}\n\n/* Set the font size to 18px */\n.f3 {\n  font-size: 18px !important;\n}\n@media (min-width: 768px) {\n  .f3 {\n    font-size: 20px !important;\n  }\n}\n\n/* Set the font size to 16px */\n.f4 {\n  font-size: 16px !important;\n}\n@media (min-width: 768px) {\n  .f4 {\n    font-size: 16px !important;\n  }\n}\n\n/* Set the font size to 14px */\n.f5 {\n  font-size: 14px !important;\n}\n\n/* Set the font size to 12px */\n.f6 {\n  font-size: 12px !important;\n}\n\n/* Set the font size to 40px and weight to light */\n.f00-light {\n  font-size: 40px !important;\n  font-weight: 300 !important;\n}\n@media (min-width: 768px) {\n  .f00-light {\n    font-size: 48px !important;\n  }\n}\n\n/* Set the font size to 32px and weight to light */\n.f0-light {\n  font-size: 32px !important;\n  font-weight: 300 !important;\n}\n@media (min-width: 768px) {\n  .f0-light {\n    font-size: 40px !important;\n  }\n}\n\n/* Set the font size to 26px and weight to light */\n.f1-light {\n  font-size: 26px !important;\n  font-weight: 300 !important;\n}\n@media (min-width: 768px) {\n  .f1-light {\n    font-size: 32px !important;\n  }\n}\n\n/* Set the font size to 22px and weight to light */\n.f2-light {\n  font-size: 22px !important;\n  font-weight: 300 !important;\n}\n@media (min-width: 768px) {\n  .f2-light {\n    font-size: 24px !important;\n  }\n}\n\n/* Set the font size to 18px and weight to light */\n.f3-light {\n  font-size: 18px !important;\n  font-weight: 300 !important;\n}\n@media (min-width: 768px) {\n  .f3-light {\n    font-size: 20px !important;\n  }\n}\n\n/* Set the font size to ${#h6-size} */\n.text-small {\n  font-size: 12px !important;\n}\n\n/* Large leading paragraphs */\n.lead {\n  margin-bottom: 30px;\n  font-size: 20px;\n  font-weight: 300;\n  color: #586069;\n}\n\n/* Set the line height to ultra condensed */\n.lh-condensed-ultra {\n  line-height: 1 !important;\n}\n\n/* Set the line height to condensed */\n.lh-condensed {\n  line-height: 1.25 !important;\n}\n\n/* Set the line height to default */\n.lh-default {\n  line-height: 1.5 !important;\n}\n\n/* Text align to the right */\n.text-right {\n  text-align: right !important;\n}\n\n/* Text align to the left */\n.text-left {\n  text-align: left !important;\n}\n\n/* Text align to the center */\n.text-center {\n  text-align: center !important;\n}\n\n@media (min-width: 544px) {\n  .text-sm-right {\n    text-align: right !important;\n  }\n\n  .text-sm-left {\n    text-align: left !important;\n  }\n\n  .text-sm-center {\n    text-align: center !important;\n  }\n}\n@media (min-width: 768px) {\n  .text-md-right {\n    text-align: right !important;\n  }\n\n  .text-md-left {\n    text-align: left !important;\n  }\n\n  .text-md-center {\n    text-align: center !important;\n  }\n}\n@media (min-width: 1012px) {\n  .text-lg-right {\n    text-align: right !important;\n  }\n\n  .text-lg-left {\n    text-align: left !important;\n  }\n\n  .text-lg-center {\n    text-align: center !important;\n  }\n}\n@media (min-width: 1280px) {\n  .text-xl-right {\n    text-align: right !important;\n  }\n\n  .text-xl-left {\n    text-align: left !important;\n  }\n\n  .text-xl-center {\n    text-align: center !important;\n  }\n}\n/* Set the font weight to normal */\n.text-normal {\n  font-weight: 400 !important;\n}\n\n/* Set the font weight to bold */\n.text-bold {\n  font-weight: 600 !important;\n}\n\n/* Set the font to italic */\n.text-italic {\n  font-style: italic !important;\n}\n\n/* Make text uppercase */\n.text-uppercase {\n  text-transform: uppercase !important;\n}\n\n/* Underline text */\n.no-underline {\n  text-decoration: none !important;\n}\n\n/* Don't wrap white space */\n.no-wrap {\n  white-space: nowrap !important;\n}\n\n/* Normal white space */\n.ws-normal {\n  white-space: normal !important;\n}\n\n/* Allow long lines with no spaces to line break */\n.wb-break-all {\n  word-break: break-all !important;\n}\n\n.text-emphasized {\n  font-weight: 600;\n  color: #24292e;\n}\n\n.list-style-none {\n  list-style: none !important;\n}\n\n/* Add a dark text shadow */\n.text-shadow-dark {\n  text-shadow: 0 1px 1px rgba(27, 31, 35, 0.25), 0 1px 25px rgba(27, 31, 35, 0.75);\n}\n\n/* Add a light text shadow */\n.text-shadow-light {\n  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);\n}\n\n/* Visibility hidden */\n.v-hidden {\n  visibility: hidden !important;\n}\n\n/* Visibility visible */\n.v-visible {\n  visibility: visible !important;\n}\n\n/* Set the display to table */\n.d-table {\n  display: table !important;\n}\n\n/* Set the display to table-cell */\n.d-table-cell {\n  display: table-cell !important;\n}\n\n/* Set the table-layout to fixed */\n.table-fixed {\n  table-layout: fixed !important;\n}\n\n/* Set the display to block */\n.d-block {\n  display: block !important;\n}\n\n/* Set the display to inline */\n.d-inline {\n  display: inline !important;\n}\n\n/* Set the display to inline-block */\n.d-inline-block {\n  display: inline-block !important;\n}\n\n/* Set the display to flex */\n.d-flex {\n  display: flex !important;\n}\n\n/* Set the display to inline-flex */\n.d-inline-flex {\n  display: inline-flex !important;\n}\n\n/* Set the display to none */\n.d-none {\n  display: none !important;\n}\n\n@media (min-width: 544px) {\n  /* Set the display to table at the sm breakpoint */\n  .d-sm-table {\n    display: table !important;\n  }\n\n  /* Set the display to table cell at the sm breakpoint */\n  .d-sm-table-cell {\n    display: table-cell !important;\n  }\n\n  /* Set the display to block at the sm breakpoint */\n  .d-sm-block {\n    display: block !important;\n  }\n\n  /* Set the display to inline at the sm breakpoint */\n  .d-sm-inline {\n    display: inline !important;\n  }\n\n  /* Set the display to inline block at the sm breakpoint */\n  .d-sm-inline-block {\n    display: inline-block !important;\n  }\n\n  /* Set the display to flex at the sm breakpoint */\n  .d-sm-flex {\n    display: flex !important;\n  }\n\n  /* Set the display to flex at the sm breakpoint */\n  .d-sm-inline-flex {\n    display: inline-flex !important;\n  }\n\n  /* Set the display to none at the sm breakpoint */\n  .d-sm-none {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) {\n  /* Set the display to table at the md breakpoint */\n  .d-md-table {\n    display: table !important;\n  }\n\n  /* Set the display to table cell at the md breakpoint */\n  .d-md-table-cell {\n    display: table-cell !important;\n  }\n\n  /* Set the display to block at the md breakpoint */\n  .d-md-block {\n    display: block !important;\n  }\n\n  /* Set the display to inline at the md breakpoint */\n  .d-md-inline {\n    display: inline !important;\n  }\n\n  /* Set the display to inline block at the md breakpoint */\n  .d-md-inline-block {\n    display: inline-block !important;\n  }\n\n  /* Set the display to flex at the md breakpoint */\n  .d-md-flex {\n    display: flex !important;\n  }\n\n  /* Set the display to flex at the md breakpoint */\n  .d-md-inline-flex {\n    display: inline-flex !important;\n  }\n\n  /* Set the display to none at the md breakpoint */\n  .d-md-none {\n    display: none !important;\n  }\n}\n@media (min-width: 1012px) {\n  /* Set the display to table at the lg breakpoint */\n  .d-lg-table {\n    display: table !important;\n  }\n\n  /* Set the display to table cell at the lg breakpoint */\n  .d-lg-table-cell {\n    display: table-cell !important;\n  }\n\n  /* Set the display to block at the lg breakpoint */\n  .d-lg-block {\n    display: block !important;\n  }\n\n  /* Set the display to inline at the lg breakpoint */\n  .d-lg-inline {\n    display: inline !important;\n  }\n\n  /* Set the display to inline block at the lg breakpoint */\n  .d-lg-inline-block {\n    display: inline-block !important;\n  }\n\n  /* Set the display to flex at the lg breakpoint */\n  .d-lg-flex {\n    display: flex !important;\n  }\n\n  /* Set the display to flex at the lg breakpoint */\n  .d-lg-inline-flex {\n    display: inline-flex !important;\n  }\n\n  /* Set the display to none at the lg breakpoint */\n  .d-lg-none {\n    display: none !important;\n  }\n}\n@media (min-width: 1280px) {\n  /* Set the display to table at the xl breakpoint */\n  .d-xl-table {\n    display: table !important;\n  }\n\n  /* Set the display to table cell at the xl breakpoint */\n  .d-xl-table-cell {\n    display: table-cell !important;\n  }\n\n  /* Set the display to block at the xl breakpoint */\n  .d-xl-block {\n    display: block !important;\n  }\n\n  /* Set the display to inline at the xl breakpoint */\n  .d-xl-inline {\n    display: inline !important;\n  }\n\n  /* Set the display to inline block at the xl breakpoint */\n  .d-xl-inline-block {\n    display: inline-block !important;\n  }\n\n  /* Set the display to flex at the xl breakpoint */\n  .d-xl-flex {\n    display: flex !important;\n  }\n\n  /* Set the display to flex at the xl breakpoint */\n  .d-xl-inline-flex {\n    display: inline-flex !important;\n  }\n\n  /* Set the display to none at the xl breakpoint */\n  .d-xl-none {\n    display: none !important;\n  }\n}\n@media (max-width: 544px) {\n  .hide-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 544px) and (max-width: 768px) {\n  .hide-md {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 1012px) {\n  .hide-lg {\n    display: none !important;\n  }\n}\n@media (min-width: 1012px) {\n  .hide-xl {\n    display: none !important;\n  }\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  word-wrap: normal;\n  border: 0;\n}\n\n.show-on-focus {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: 0;\n  overflow: hidden;\n  clip: rect(1px, 1px, 1px, 1px);\n}\n.show-on-focus:focus {\n  z-index: 20;\n  width: auto;\n  height: auto;\n  clip: auto;\n}\n\n.container {\n  width: 980px;\n  margin-right: auto;\n  margin-left: auto;\n}\n.container::before {\n  display: table;\n  content: \"\";\n}\n.container::after {\n  display: table;\n  clear: both;\n  content: \"\";\n}\n\n.container-md {\n  max-width: 768px;\n  margin-right: auto;\n  margin-left: auto;\n}\n\n.container-lg {\n  max-width: 1012px;\n  margin-right: auto;\n  margin-left: auto;\n}\n\n.container-xl {\n  max-width: 1280px;\n  margin-right: auto;\n  margin-left: auto;\n}\n\n.columns {\n  margin-right: -10px;\n  margin-left: -10px;\n}\n.columns::before {\n  display: table;\n  content: \"\";\n}\n.columns::after {\n  display: table;\n  clear: both;\n  content: \"\";\n}\n\n.column {\n  float: left;\n  padding-right: 10px;\n  padding-left: 10px;\n}\n\n.one-third {\n  width: 33.333333%;\n}\n\n.two-thirds {\n  width: 66.666667%;\n}\n\n.one-fourth {\n  width: 25%;\n}\n\n.one-half {\n  width: 50%;\n}\n\n.three-fourths {\n  width: 75%;\n}\n\n.one-fifth {\n  width: 20%;\n}\n\n.four-fifths {\n  width: 80%;\n}\n\n.centered {\n  display: block;\n  float: none;\n  margin-right: auto;\n  margin-left: auto;\n}\n\n.col-1 {\n  width: 8.3333333333%;\n}\n\n.col-2 {\n  width: 16.6666666667%;\n}\n\n.col-3 {\n  width: 25%;\n}\n\n.col-4 {\n  width: 33.3333333333%;\n}\n\n.col-5 {\n  width: 41.6666666667%;\n}\n\n.col-6 {\n  width: 50%;\n}\n\n.col-7 {\n  width: 58.3333333333%;\n}\n\n.col-8 {\n  width: 66.6666666667%;\n}\n\n.col-9 {\n  width: 75%;\n}\n\n.col-10 {\n  width: 83.3333333333%;\n}\n\n.col-11 {\n  width: 91.6666666667%;\n}\n\n.col-12 {\n  width: 100%;\n}\n\n@media (min-width: 544px) {\n  .col-sm-1 {\n    width: 8.3333333333%;\n  }\n\n  .col-sm-2 {\n    width: 16.6666666667%;\n  }\n\n  .col-sm-3 {\n    width: 25%;\n  }\n\n  .col-sm-4 {\n    width: 33.3333333333%;\n  }\n\n  .col-sm-5 {\n    width: 41.6666666667%;\n  }\n\n  .col-sm-6 {\n    width: 50%;\n  }\n\n  .col-sm-7 {\n    width: 58.3333333333%;\n  }\n\n  .col-sm-8 {\n    width: 66.6666666667%;\n  }\n\n  .col-sm-9 {\n    width: 75%;\n  }\n\n  .col-sm-10 {\n    width: 83.3333333333%;\n  }\n\n  .col-sm-11 {\n    width: 91.6666666667%;\n  }\n\n  .col-sm-12 {\n    width: 100%;\n  }\n}\n@media (min-width: 768px) {\n  .col-md-1 {\n    width: 8.3333333333%;\n  }\n\n  .col-md-2 {\n    width: 16.6666666667%;\n  }\n\n  .col-md-3 {\n    width: 25%;\n  }\n\n  .col-md-4 {\n    width: 33.3333333333%;\n  }\n\n  .col-md-5 {\n    width: 41.6666666667%;\n  }\n\n  .col-md-6 {\n    width: 50%;\n  }\n\n  .col-md-7 {\n    width: 58.3333333333%;\n  }\n\n  .col-md-8 {\n    width: 66.6666666667%;\n  }\n\n  .col-md-9 {\n    width: 75%;\n  }\n\n  .col-md-10 {\n    width: 83.3333333333%;\n  }\n\n  .col-md-11 {\n    width: 91.6666666667%;\n  }\n\n  .col-md-12 {\n    width: 100%;\n  }\n}\n@media (min-width: 1012px) {\n  .col-lg-1 {\n    width: 8.3333333333%;\n  }\n\n  .col-lg-2 {\n    width: 16.6666666667%;\n  }\n\n  .col-lg-3 {\n    width: 25%;\n  }\n\n  .col-lg-4 {\n    width: 33.3333333333%;\n  }\n\n  .col-lg-5 {\n    width: 41.6666666667%;\n  }\n\n  .col-lg-6 {\n    width: 50%;\n  }\n\n  .col-lg-7 {\n    width: 58.3333333333%;\n  }\n\n  .col-lg-8 {\n    width: 66.6666666667%;\n  }\n\n  .col-lg-9 {\n    width: 75%;\n  }\n\n  .col-lg-10 {\n    width: 83.3333333333%;\n  }\n\n  .col-lg-11 {\n    width: 91.6666666667%;\n  }\n\n  .col-lg-12 {\n    width: 100%;\n  }\n}\n@media (min-width: 1280px) {\n  .col-xl-1 {\n    width: 8.3333333333%;\n  }\n\n  .col-xl-2 {\n    width: 16.6666666667%;\n  }\n\n  .col-xl-3 {\n    width: 25%;\n  }\n\n  .col-xl-4 {\n    width: 33.3333333333%;\n  }\n\n  .col-xl-5 {\n    width: 41.6666666667%;\n  }\n\n  .col-xl-6 {\n    width: 50%;\n  }\n\n  .col-xl-7 {\n    width: 58.3333333333%;\n  }\n\n  .col-xl-8 {\n    width: 66.6666666667%;\n  }\n\n  .col-xl-9 {\n    width: 75%;\n  }\n\n  .col-xl-10 {\n    width: 83.3333333333%;\n  }\n\n  .col-xl-11 {\n    width: 91.6666666667%;\n  }\n\n  .col-xl-12 {\n    width: 100%;\n  }\n}\n.gutter {\n  margin-right: -16px;\n  margin-left: -16px;\n}\n.gutter > [class*=\"col-\"] {\n  padding-right: 16px !important;\n  padding-left: 16px !important;\n}\n\n.gutter-condensed {\n  margin-right: -8px;\n  margin-left: -8px;\n}\n.gutter-condensed > [class*=\"col-\"] {\n  padding-right: 8px !important;\n  padding-left: 8px !important;\n}\n\n.gutter-spacious {\n  margin-right: -24px;\n  margin-left: -24px;\n}\n.gutter-spacious > [class*=\"col-\"] {\n  padding-right: 24px !important;\n  padding-left: 24px !important;\n}\n\n@media (min-width: 544px) {\n  .gutter-sm {\n    margin-right: -16px;\n    margin-left: -16px;\n  }\n  .gutter-sm > [class*=\"col-\"] {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n\n  .gutter-sm-condensed {\n    margin-right: -8px;\n    margin-left: -8px;\n  }\n  .gutter-sm-condensed > [class*=\"col-\"] {\n    padding-right: 8px !important;\n    padding-left: 8px !important;\n  }\n\n  .gutter-sm-spacious {\n    margin-right: -24px;\n    margin-left: -24px;\n  }\n  .gutter-sm-spacious > [class*=\"col-\"] {\n    padding-right: 24px !important;\n    padding-left: 24px !important;\n  }\n}\n@media (min-width: 768px) {\n  .gutter-md {\n    margin-right: -16px;\n    margin-left: -16px;\n  }\n  .gutter-md > [class*=\"col-\"] {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n\n  .gutter-md-condensed {\n    margin-right: -8px;\n    margin-left: -8px;\n  }\n  .gutter-md-condensed > [class*=\"col-\"] {\n    padding-right: 8px !important;\n    padding-left: 8px !important;\n  }\n\n  .gutter-md-spacious {\n    margin-right: -24px;\n    margin-left: -24px;\n  }\n  .gutter-md-spacious > [class*=\"col-\"] {\n    padding-right: 24px !important;\n    padding-left: 24px !important;\n  }\n}\n@media (min-width: 1012px) {\n  .gutter-lg {\n    margin-right: -16px;\n    margin-left: -16px;\n  }\n  .gutter-lg > [class*=\"col-\"] {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n\n  .gutter-lg-condensed {\n    margin-right: -8px;\n    margin-left: -8px;\n  }\n  .gutter-lg-condensed > [class*=\"col-\"] {\n    padding-right: 8px !important;\n    padding-left: 8px !important;\n  }\n\n  .gutter-lg-spacious {\n    margin-right: -24px;\n    margin-left: -24px;\n  }\n  .gutter-lg-spacious > [class*=\"col-\"] {\n    padding-right: 24px !important;\n    padding-left: 24px !important;\n  }\n}\n@media (min-width: 1280px) {\n  .gutter-xl {\n    margin-right: -16px;\n    margin-left: -16px;\n  }\n  .gutter-xl > [class*=\"col-\"] {\n    padding-right: 16px !important;\n    padding-left: 16px !important;\n  }\n\n  .gutter-xl-condensed {\n    margin-right: -8px;\n    margin-left: -8px;\n  }\n  .gutter-xl-condensed > [class*=\"col-\"] {\n    padding-right: 8px !important;\n    padding-left: 8px !important;\n  }\n\n  .gutter-xl-spacious {\n    margin-right: -24px;\n    margin-left: -24px;\n  }\n  .gutter-xl-spacious > [class*=\"col-\"] {\n    padding-right: 24px !important;\n    padding-left: 24px !important;\n  }\n}\n.offset-1 {\n  margin-left: 8.3333333333%;\n}\n\n.offset-2 {\n  margin-left: 16.6666666667%;\n}\n\n.offset-3 {\n  margin-left: 25%;\n}\n\n.offset-4 {\n  margin-left: 33.3333333333%;\n}\n\n.offset-5 {\n  margin-left: 41.6666666667%;\n}\n\n.offset-6 {\n  margin-left: 50%;\n}\n\n.offset-7 {\n  margin-left: 58.3333333333%;\n}\n\n.offset-8 {\n  margin-left: 66.6666666667%;\n}\n\n.offset-9 {\n  margin-left: 75%;\n}\n\n.offset-10 {\n  margin-left: 83.3333333333%;\n}\n\n.offset-11 {\n  margin-left: 91.6666666667%;\n}\n\n@media (min-width: 544px) {\n  .offset-sm-1 {\n    margin-left: 8.3333333333%;\n  }\n\n  .offset-sm-2 {\n    margin-left: 16.6666666667%;\n  }\n\n  .offset-sm-3 {\n    margin-left: 25%;\n  }\n\n  .offset-sm-4 {\n    margin-left: 33.3333333333%;\n  }\n\n  .offset-sm-5 {\n    margin-left: 41.6666666667%;\n  }\n\n  .offset-sm-6 {\n    margin-left: 50%;\n  }\n\n  .offset-sm-7 {\n    margin-left: 58.3333333333%;\n  }\n\n  .offset-sm-8 {\n    margin-left: 66.6666666667%;\n  }\n\n  .offset-sm-9 {\n    margin-left: 75%;\n  }\n\n  .offset-sm-10 {\n    margin-left: 83.3333333333%;\n  }\n\n  .offset-sm-11 {\n    margin-left: 91.6666666667%;\n  }\n}\n@media (min-width: 768px) {\n  .offset-md-1 {\n    margin-left: 8.3333333333%;\n  }\n\n  .offset-md-2 {\n    margin-left: 16.6666666667%;\n  }\n\n  .offset-md-3 {\n    margin-left: 25%;\n  }\n\n  .offset-md-4 {\n    margin-left: 33.3333333333%;\n  }\n\n  .offset-md-5 {\n    margin-left: 41.6666666667%;\n  }\n\n  .offset-md-6 {\n    margin-left: 50%;\n  }\n\n  .offset-md-7 {\n    margin-left: 58.3333333333%;\n  }\n\n  .offset-md-8 {\n    margin-left: 66.6666666667%;\n  }\n\n  .offset-md-9 {\n    margin-left: 75%;\n  }\n\n  .offset-md-10 {\n    margin-left: 83.3333333333%;\n  }\n\n  .offset-md-11 {\n    margin-left: 91.6666666667%;\n  }\n}\n@media (min-width: 1012px) {\n  .offset-lg-1 {\n    margin-left: 8.3333333333%;\n  }\n\n  .offset-lg-2 {\n    margin-left: 16.6666666667%;\n  }\n\n  .offset-lg-3 {\n    margin-left: 25%;\n  }\n\n  .offset-lg-4 {\n    margin-left: 33.3333333333%;\n  }\n\n  .offset-lg-5 {\n    margin-left: 41.6666666667%;\n  }\n\n  .offset-lg-6 {\n    margin-left: 50%;\n  }\n\n  .offset-lg-7 {\n    margin-left: 58.3333333333%;\n  }\n\n  .offset-lg-8 {\n    margin-left: 66.6666666667%;\n  }\n\n  .offset-lg-9 {\n    margin-left: 75%;\n  }\n\n  .offset-lg-10 {\n    margin-left: 83.3333333333%;\n  }\n\n  .offset-lg-11 {\n    margin-left: 91.6666666667%;\n  }\n}\n@media (min-width: 1280px) {\n  .offset-xl-1 {\n    margin-left: 8.3333333333%;\n  }\n\n  .offset-xl-2 {\n    margin-left: 16.6666666667%;\n  }\n\n  .offset-xl-3 {\n    margin-left: 25%;\n  }\n\n  .offset-xl-4 {\n    margin-left: 33.3333333333%;\n  }\n\n  .offset-xl-5 {\n    margin-left: 41.6666666667%;\n  }\n\n  .offset-xl-6 {\n    margin-left: 50%;\n  }\n\n  .offset-xl-7 {\n    margin-left: 58.3333333333%;\n  }\n\n  .offset-xl-8 {\n    margin-left: 66.6666666667%;\n  }\n\n  .offset-xl-9 {\n    margin-left: 75%;\n  }\n\n  .offset-xl-10 {\n    margin-left: 83.3333333333%;\n  }\n\n  .offset-xl-11 {\n    margin-left: 91.6666666667%;\n  }\n}\n.markdown-body {\n  font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n  font-size: 16px;\n  line-height: 1.5;\n  word-wrap: break-word;\n}\n.markdown-body::before {\n  display: table;\n  content: \"\";\n}\n.markdown-body::after {\n  display: table;\n  clear: both;\n  content: \"\";\n}\n.markdown-body > *:first-child {\n  margin-top: 0 !important;\n}\n.markdown-body > *:last-child {\n  margin-bottom: 0 !important;\n}\n.markdown-body a:not([href]) {\n  color: inherit;\n  text-decoration: none;\n}\n.markdown-body .absent {\n  color: #cb2431;\n}\n.markdown-body .anchor {\n  float: left;\n  padding-right: 4px;\n  margin-left: -20px;\n  line-height: 1;\n}\n.markdown-body .anchor:focus {\n  outline: none;\n}\n.markdown-body p,\n.markdown-body blockquote,\n.markdown-body ul,\n.markdown-body ol,\n.markdown-body dl,\n.markdown-body table,\n.markdown-body pre {\n  margin-top: 0;\n  margin-bottom: 16px;\n}\n.markdown-body hr {\n  height: 0.25em;\n  padding: 0;\n  margin: 24px 0;\n  background-color: #e1e4e8;\n  border: 0;\n}\n.markdown-body blockquote {\n  padding: 0 1em;\n  color: #6a737d;\n  border-left: 0.25em solid #dfe2e5;\n}\n.markdown-body blockquote > :first-child {\n  margin-top: 0;\n}\n.markdown-body blockquote > :last-child {\n  margin-bottom: 0;\n}\n.markdown-body kbd {\n  display: inline-block;\n  padding: 3px 5px;\n  font-size: 11px;\n  line-height: 10px;\n  color: #444d56;\n  vertical-align: middle;\n  background-color: #fafbfc;\n  border: solid 1px #c6cbd1;\n  border-bottom-color: #959da5;\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 #959da5;\n}\n\n.markdown-body h1,\n.markdown-body h2,\n.markdown-body h3,\n.markdown-body h4,\n.markdown-body h5,\n.markdown-body h6 {\n  margin-top: 24px;\n  margin-bottom: 16px;\n  font-weight: 600;\n  line-height: 1.25;\n}\n.markdown-body h1 .octicon-link,\n.markdown-body h2 .octicon-link,\n.markdown-body h3 .octicon-link,\n.markdown-body h4 .octicon-link,\n.markdown-body h5 .octicon-link,\n.markdown-body h6 .octicon-link {\n  color: #1b1f23;\n  vertical-align: middle;\n  visibility: hidden;\n}\n.markdown-body h1:hover .anchor,\n.markdown-body h2:hover .anchor,\n.markdown-body h3:hover .anchor,\n.markdown-body h4:hover .anchor,\n.markdown-body h5:hover .anchor,\n.markdown-body h6:hover .anchor {\n  text-decoration: none;\n}\n.markdown-body h1:hover .anchor .octicon-link,\n.markdown-body h2:hover .anchor .octicon-link,\n.markdown-body h3:hover .anchor .octicon-link,\n.markdown-body h4:hover .anchor .octicon-link,\n.markdown-body h5:hover .anchor .octicon-link,\n.markdown-body h6:hover .anchor .octicon-link {\n  visibility: visible;\n}\n.markdown-body h1 tt,\n.markdown-body h1 code,\n.markdown-body h2 tt,\n.markdown-body h2 code,\n.markdown-body h3 tt,\n.markdown-body h3 code,\n.markdown-body h4 tt,\n.markdown-body h4 code,\n.markdown-body h5 tt,\n.markdown-body h5 code,\n.markdown-body h6 tt,\n.markdown-body h6 code {\n  font-size: inherit;\n}\n.markdown-body h1 {\n  padding-bottom: 0.3em;\n  font-size: 2em;\n  border-bottom: 1px solid #eaecef;\n}\n.markdown-body h2 {\n  padding-bottom: 0.3em;\n  font-size: 1.5em;\n  border-bottom: 1px solid #eaecef;\n}\n.markdown-body h3 {\n  font-size: 1.25em;\n}\n.markdown-body h4 {\n  font-size: 1em;\n}\n.markdown-body h5 {\n  font-size: 0.875em;\n}\n.markdown-body h6 {\n  font-size: 0.85em;\n  color: #6a737d;\n}\n\n.markdown-body ul,\n.markdown-body ol {\n  padding-left: 2em;\n}\n.markdown-body ul.no-list,\n.markdown-body ol.no-list {\n  padding: 0;\n  list-style-type: none;\n}\n.markdown-body ul ul,\n.markdown-body ul ol,\n.markdown-body ol ol,\n.markdown-body ol ul {\n  margin-top: 0;\n  margin-bottom: 0;\n}\n.markdown-body li {\n  word-wrap: break-all;\n}\n.markdown-body li > p {\n  margin-top: 16px;\n}\n.markdown-body li + li {\n  margin-top: 0.25em;\n}\n.markdown-body dl {\n  padding: 0;\n}\n.markdown-body dl dt {\n  padding: 0;\n  margin-top: 16px;\n  font-size: 1em;\n  font-style: italic;\n  font-weight: 600;\n}\n.markdown-body dl dd {\n  padding: 0 16px;\n  margin-bottom: 16px;\n}\n\n.markdown-body table {\n  display: block;\n  width: 100%;\n  overflow: auto;\n}\n.markdown-body table th {\n  font-weight: 600;\n}\n.markdown-body table th,\n.markdown-body table td {\n  padding: 6px 13px;\n  border: 1px solid #dfe2e5;\n}\n.markdown-body table tr {\n  background-color: #fff;\n  border-top: 1px solid #c6cbd1;\n}\n.markdown-body table tr:nth-child(2n) {\n  background-color: #f6f8fa;\n}\n.markdown-body table img {\n  background-color: transparent;\n}\n\n.markdown-body img {\n  max-width: 100%;\n  box-sizing: content-box;\n  background-color: #fff;\n}\n.markdown-body img[align=right] {\n  padding-left: 20px;\n}\n.markdown-body img[align=left] {\n  padding-right: 20px;\n}\n.markdown-body .emoji {\n  max-width: none;\n  vertical-align: text-top;\n  background-color: transparent;\n}\n.markdown-body span.frame {\n  display: block;\n  overflow: hidden;\n}\n.markdown-body span.frame > span {\n  display: block;\n  float: left;\n  width: auto;\n  padding: 7px;\n  margin: 13px 0 0;\n  overflow: hidden;\n  border: 1px solid #dfe2e5;\n}\n.markdown-body span.frame span img {\n  display: block;\n  float: left;\n}\n.markdown-body span.frame span span {\n  display: block;\n  padding: 5px 0 0;\n  clear: both;\n  color: #24292e;\n}\n.markdown-body span.align-center {\n  display: block;\n  overflow: hidden;\n  clear: both;\n}\n.markdown-body span.align-center > span {\n  display: block;\n  margin: 13px auto 0;\n  overflow: hidden;\n  text-align: center;\n}\n.markdown-body span.align-center span img {\n  margin: 0 auto;\n  text-align: center;\n}\n.markdown-body span.align-right {\n  display: block;\n  overflow: hidden;\n  clear: both;\n}\n.markdown-body span.align-right > span {\n  display: block;\n  margin: 13px 0 0;\n  overflow: hidden;\n  text-align: right;\n}\n.markdown-body span.align-right span img {\n  margin: 0;\n  text-align: right;\n}\n.markdown-body span.float-left {\n  display: block;\n  float: left;\n  margin-right: 13px;\n  overflow: hidden;\n}\n.markdown-body span.float-left span {\n  margin: 13px 0 0;\n}\n.markdown-body span.float-right {\n  display: block;\n  float: right;\n  margin-left: 13px;\n  overflow: hidden;\n}\n.markdown-body span.float-right > span {\n  display: block;\n  margin: 13px auto 0;\n  overflow: hidden;\n  text-align: right;\n}\n\n.markdown-body code,\n.markdown-body tt {\n  padding: 0.2em 0.4em;\n  margin: 0;\n  font-size: 85%;\n  background-color: rgba(27, 31, 35, 0.05);\n  border-radius: 3px;\n}\n.markdown-body code br,\n.markdown-body tt br {\n  display: none;\n}\n.markdown-body del code {\n  text-decoration: inherit;\n}\n.markdown-body pre {\n  word-wrap: normal;\n}\n.markdown-body pre > code {\n  padding: 0;\n  margin: 0;\n  font-size: 100%;\n  word-break: normal;\n  white-space: pre;\n  background: transparent;\n  border: 0;\n}\n.markdown-body .highlight {\n  margin-bottom: 16px;\n}\n.markdown-body .highlight pre {\n  margin-bottom: 0;\n  word-break: normal;\n}\n.markdown-body .highlight pre,\n.markdown-body pre {\n  padding: 16px;\n  overflow: auto;\n  font-size: 85%;\n  line-height: 1.45;\n  background-color: #f6f8fa;\n  border-radius: 3px;\n}\n.markdown-body pre code,\n.markdown-body pre tt {\n  display: inline;\n  max-width: auto;\n  padding: 0;\n  margin: 0;\n  overflow: visible;\n  line-height: inherit;\n  word-wrap: normal;\n  background-color: transparent;\n  border: 0;\n}\n\n.markdown-body .csv-data td,\n.markdown-body .csv-data th {\n  padding: 5px;\n  overflow: hidden;\n  font-size: 12px;\n  line-height: 1;\n  text-align: left;\n  white-space: nowrap;\n}\n.markdown-body .csv-data .blob-num {\n  padding: 10px 8px 9px;\n  text-align: right;\n  background: #fff;\n  border: 0;\n}\n.markdown-body .csv-data tr {\n  border-top: 0;\n}\n.markdown-body .csv-data th {\n  font-weight: 600;\n  background: #f6f8fa;\n  border-top: 0;\n}\n\n.highlight table td {\n  padding: 5px;\n}\n\n.highlight table pre {\n  margin: 0;\n}\n\n.highlight .cm {\n  color: #999988;\n  font-style: italic;\n}\n\n.highlight .cp {\n  color: #999999;\n  font-weight: bold;\n}\n\n.highlight .c1 {\n  color: #999988;\n  font-style: italic;\n}\n\n.highlight .cs {\n  color: #999999;\n  font-weight: bold;\n  font-style: italic;\n}\n\n.highlight .c, .highlight .cd {\n  color: #999988;\n  font-style: italic;\n}\n\n.highlight .err {\n  color: #a61717;\n  background-color: #e3d2d2;\n}\n\n.highlight .gd {\n  color: #000000;\n  background-color: #ffdddd;\n}\n\n.highlight .ge {\n  color: #000000;\n  font-style: italic;\n}\n\n.highlight .gr {\n  color: #aa0000;\n}\n\n.highlight .gh {\n  color: #999999;\n}\n\n.highlight .gi {\n  color: #000000;\n  background-color: #ddffdd;\n}\n\n.highlight .go {\n  color: #888888;\n}\n\n.highlight .gp {\n  color: #555555;\n}\n\n.highlight .gs {\n  font-weight: bold;\n}\n\n.highlight .gu {\n  color: #aaaaaa;\n}\n\n.highlight .gt {\n  color: #aa0000;\n}\n\n.highlight .kc {\n  color: #000000;\n  font-weight: bold;\n}\n\n.highlight .kd {\n  color: #000000;\n  font-weight: bold;\n}\n\n.highlight .kn {\n  color: #000000;\n  font-weight: bold;\n}\n\n.highlight .kp {\n  color: #000000;\n  font-weight: bold;\n}\n\n.highlight .kr {\n  color: #000000;\n  font-weight: bold;\n}\n\n.highlight .kt {\n  color: #445588;\n  font-weight: bold;\n}\n\n.highlight .k, .highlight .kv {\n  color: #000000;\n  font-weight: bold;\n}\n\n.highlight .mf {\n  color: #009999;\n}\n\n.highlight .mh {\n  color: #009999;\n}\n\n.highlight .il {\n  color: #009999;\n}\n\n.highlight .mi {\n  color: #009999;\n}\n\n.highlight .mo {\n  color: #009999;\n}\n\n.highlight .m, .highlight .mb, .highlight .mx {\n  color: #009999;\n}\n\n.highlight .sb {\n  color: #d14;\n}\n\n.highlight .sc {\n  color: #d14;\n}\n\n.highlight .sd {\n  color: #d14;\n}\n\n.highlight .s2 {\n  color: #d14;\n}\n\n.highlight .se {\n  color: #d14;\n}\n\n.highlight .sh {\n  color: #d14;\n}\n\n.highlight .si {\n  color: #d14;\n}\n\n.highlight .sx {\n  color: #d14;\n}\n\n.highlight .sr {\n  color: #009926;\n}\n\n.highlight .s1 {\n  color: #d14;\n}\n\n.highlight .ss {\n  color: #990073;\n}\n\n.highlight .s {\n  color: #d14;\n}\n\n.highlight .na {\n  color: #008080;\n}\n\n.highlight .bp {\n  color: #999999;\n}\n\n.highlight .nb {\n  color: #0086B3;\n}\n\n.highlight .nc {\n  color: #445588;\n  font-weight: bold;\n}\n\n.highlight .no {\n  color: #008080;\n}\n\n.highlight .nd {\n  color: #3c5d5d;\n  font-weight: bold;\n}\n\n.highlight .ni {\n  color: #800080;\n}\n\n.highlight .ne {\n  color: #990000;\n  font-weight: bold;\n}\n\n.highlight .nf {\n  color: #990000;\n  font-weight: bold;\n}\n\n.highlight .nl {\n  color: #990000;\n  font-weight: bold;\n}\n\n.highlight .nn {\n  color: #555555;\n}\n\n.highlight .nt {\n  color: #000080;\n}\n\n.highlight .vc {\n  color: #008080;\n}\n\n.highlight .vg {\n  color: #008080;\n}\n\n.highlight .vi {\n  color: #008080;\n}\n\n.highlight .nv {\n  color: #008080;\n}\n\n.highlight .ow {\n  color: #000000;\n  font-weight: bold;\n}\n\n.highlight .o {\n  color: #000000;\n  font-weight: bold;\n}\n\n.highlight .w {\n  color: #bbbbbb;\n}\n\n.highlight {\n  background-color: #f8f8f8;\n}\n\nheader {\n  display: none;\n}\n"
  },
  {
    "path": "docs/_site/extractor.htm",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Building your own template | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Building your own template\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/extractor.htm\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/extractor.htm\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/extractor.htm\",\"headline\":\"Building your own template\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <h1 id=\"using-the-extractor\">Using the Extractor</h1>\n\n<p>Azure DevOps Generator provides a number of templates, out of the box, that supports a wide variety of scenarios, from different project types to different programming languages, deployment platforms, etc., In addition to this, the generator also allows users to make their own templates. Users can convert their existing projects into templates and then provision new projects using that template. The ability to have custom templates can be useful in many scenarios, such as building custom training materials, provision only certain artifacts, etc.,</p>\n\n<p>This document walks you through the steps on how you can use the extractor.</p>\n\n<h2 id=\"before-you-start\">Before you start</h2>\n\n<p>Setup an Azure DevOps project and make sure it is ready to be extracted. The extractor will capture the contents of the project and save them as JSON files  which will be archived into a zip file.</p>\n\n<h2 id=\"building-a-new-custom-template\">Building a new custom template</h2>\n\n<ol>\n  <li>\n    <p>Access the generator with the query parameter <strong>“enableextractor=true”</strong> added to the URL: <a href=\"https://azuredevopsdemogenerator.azurewebsites.net/?enableextractor=true\">https://azuredevopsdemogenerator.azurewebsites.net/?enableextractor=true</a></p>\n\n    <p><img src=\"images/homepage.png\" alt=\"Azure DevOps Generator Home Page\" /></p>\n  </li>\n  <li>\n    <p>After you sign in, on the main page, you will see a new link labelled <strong>“Build your own template”</strong></p>\n\n    <p><img src=\"images/buildyourtemplatelink.png\" alt=\"Build your template link on main page\" /></p>\n  </li>\n  <li>\n    <p>Selecting that will open the <strong>extractor</strong> main page in a new tab.</p>\n\n    <p><img src=\"images/extractorhomepage.png\" alt=\"Extractor Home Page\" /></p>\n  </li>\n  <li>\n    <p>Select the organization and then the project that you want to turn into a template.</p>\n  </li>\n  <li>\n    <p>Click <strong>Analyze</strong>. This will validate if the project is one of the supported types (only Agile and Scrum based projects are supported for the time-being) and that all of the contents can be read.At the end of the analysis, you will see the artifacts and count of items for you to confirm if the extractor has read all items correctly.</p>\n\n    <p><img src=\"images/analyze.png\" alt=\"Analyzing the project\" /></p>\n  </li>\n  <li>\n    <p>If it is correct and you wish to proceed, select the <strong>Generate</strong> button. This will again read all the items from the project but this time, the contents will be saved as JSON data. After all the items have been extracted, the folder will be archived into a zip file.</p>\n  </li>\n  <li>\n    <p>Select the link to download the zip file. Note that the zip file is not stored on the server side - so, make sure you download the file.  It will not be available after you close the page.</p>\n\n    <p><img src=\"images/generatedfile.png\" alt=\"Downloadin the generated template\" /></p>\n  </li>\n</ol>\n\n<p><strong>Note:</strong> The Extractor does not support all item types and so it should not be considered as a migration tool for moving projects from one server to another. For what’s supported and what’s not supported, see the <a href=\"/Limitations.md\">limitations</a> section</p>\n\n<h2 id=\"provisioning-your-project-from-your-custom-template\">Provisioning your project from your custom template</h2>\n\n<ol>\n  <li>\n    <p>Return back to the generator page  or re-open it again if you have already closed it. You should use the <strong>enableextractor=true</strong> query parameter in the URL.</p>\n  </li>\n  <li>\n    <p>Select <strong>Choose Template</strong></p>\n  </li>\n  <li>\n    <p>You will see a new tab labelled <strong>Private</strong>. Select the tab.</p>\n  </li>\n  <li>\n    <p>Select <strong>Browse</strong> and select the zip file you downloaded zip file.</p>\n  </li>\n  <li>\n    <p>Click <strong>OK</strong> to close the dialog. Choose <strong>Create Project</strong> to start provisioning a project</p>\n  </li>\n</ol>\n\n<hr />\n\n<p>Previous: <a href=\"/About-Azure-DevOps-Demo-Generator/Using-the-Generator\">Using the Generator</a></p>\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/feed.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?><feed xmlns=\"http://www.w3.org/2005/Atom\" ><generator uri=\"https://jekyllrb.com/\" version=\"3.7.4\">Jekyll</generator><link href=\"http://localhost:4000/feed.xml\" rel=\"self\" type=\"application/atom+xml\" /><link href=\"http://localhost:4000/\" rel=\"alternate\" type=\"text/html\" /><updated>2019-05-10T07:52:46-07:00</updated><id>http://localhost:4000/feed.xml</id><title type=\"html\">Azure DevOps Demo Generator</title><subtitle>Azure DevOps Demo Generator</subtitle></feed>"
  },
  {
    "path": "docs/_site/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Azure DevOps Demo Generator | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebSite\",\"url\":\"http://localhost:4000/\",\"name\":\"Azure DevOps Demo Generator\",\"headline\":\"Azure DevOps Demo Generator\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <h1 id=\"azure-devops-demo-generator\">Azure DevOps Demo Generator</h1>\n\n<p><img src=\"/About-Azure-DevOps-Demo-Generator/images/homepage.png\" alt=\"images\" /></p>\n\n<p><strong>Azure DevOps Demo Generator</strong> helps you create projects on your Azure DevOps organization with pre-populated sample content that includes source code, work items, iterations, service endpoints, build and release definitions based on a template you choose.</p>\n\n<p>The purpose of this system is to simplify working with the hands-on-labs, demos and other education material provided by Azure Marketing team.</p>\n\n<h2 id=\"table-of-contents\">Table of contents</h2>\n<ul>\n  <li><a href=\"using.html\">Using the Azure DevOps Demo Generator</a>\n    <ul>\n      <li>Frequently asked questions and issues</li>\n    </ul>\n  </li>\n  <li><a href=\"extractor.htm\">Building your own template</a></li>\n</ul>\n\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/_site/readme.md",
    "content": "# Azure DevOps Demo Generator\n\n![images](About-Azure-DevOps-Demo-Generator/images/homepage.png)\n\n**Azure DevOps Demo Generator** helps you create projects on your Azure DevOps organization with pre-populated sample content that includes source code, work items, iterations, service endpoints, build and release definitions based on a template you choose.\n\nThe purpose of this system is to simplify working with the hands-on-labs, demos and other education material provided by Azure Marketing team.\n\nTable of contents\n-----------------\n* [Using the Azure DevOps Demo Generator](using.html)\n    * Frequently asked questions and issues\n* [Building your own template](extractor.htm)\n\n\n\n\n"
  },
  {
    "path": "docs/_site/robots.txt",
    "content": "Sitemap: http://localhost:4000/sitemap.xml\n"
  },
  {
    "path": "docs/_site/sitemap.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n<url>\n<loc>http://localhost:4000/extractor.htm</loc>\n</url>\n<url>\n<loc>http://localhost:4000/using.html</loc>\n</url>\n<url>\n<loc>http://localhost:4000/About-Azure-DevOps-Demo-Generator/Known-Issues-and-FAQ/</loc>\n</url>\n<url>\n<loc>http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/</loc>\n</url>\n<url>\n<loc>http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/Azure-DevOps-REST-API-%252D-Call-API-with-powershell/</loc>\n</url>\n<url>\n<loc>http://localhost:4000/Azure-DevOps-Demo-Generator-REST-API-Reference/Get-status-of-project-creation-using-TrackId/</loc>\n</url>\n<url>\n<loc>http://localhost:4000/Features-Timeline/</loc>\n</url>\n<url>\n<loc>http://localhost:4000/Features-Timeline/Dashboard-creation/</loc>\n</url>\n<url>\n<loc>http://localhost:4000/Features-Timeline/YAML-Pipeline-Support/</loc>\n</url>\n<url>\n<loc>http://localhost:4000/</loc>\n</url>\n</urlset>\n"
  },
  {
    "path": "docs/_site/using.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en-US\">\n  <head>\n    <meta charset=\"UTF-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n<!-- Begin Jekyll SEO tag v2.5.0 -->\n<title>Using the Demo Generator | Azure DevOps Demo Generator</title>\n<meta name=\"generator\" content=\"Jekyll v3.7.4\" />\n<meta property=\"og:title\" content=\"Using the Demo Generator\" />\n<meta property=\"og:locale\" content=\"en_US\" />\n<meta name=\"description\" content=\"Azure DevOps Demo Generator\" />\n<meta property=\"og:description\" content=\"Azure DevOps Demo Generator\" />\n<link rel=\"canonical\" href=\"http://localhost:4000/using.html\" />\n<meta property=\"og:url\" content=\"http://localhost:4000/using.html\" />\n<meta property=\"og:site_name\" content=\"Azure DevOps Demo Generator\" />\n<script type=\"application/ld+json\">\n{\"@type\":\"WebPage\",\"url\":\"http://localhost:4000/using.html\",\"headline\":\"Using the Demo Generator\",\"description\":\"Azure DevOps Demo Generator\",\"@context\":\"http://schema.org\"}</script>\n<!-- End Jekyll SEO tag -->\n\n    <link rel=\"stylesheet\" href=\"/assets/css/style.css?v=71de869d35c4585adaf0b064bf89fd3929f3aa6a\">\n  </head>\n  <body>\n    <div class=\"container-lg px-3 my-5 markdown-body\">\n      \n\n      <h1 id=\"using-the-azure-devops-demo-generator\">Using the Azure DevOps Demo Generator</h1>\n<hr />\n\n<ol>\n  <li>\n    <p>Browse to the <a href=\"https://azuredevopsdemogenerator.azurewebsites.net/\">Azure DevOps Demo Generator site</a> by click the link, or copy <code class=\"highlighter-rouge\">https://azuredevopsdemogenerator.azurewebsites.net/</code> into your browser’s URL field.</p>\n  </li>\n  <li>\n    <p>Click <strong>Sign In</strong> and provide the Microsoft or Azure AD account credentials associated with an organization in Azure DevOps Services. If you don’t have an organization, click on <strong>Get Started for Free</strong> to create one and then log in with your credentials.</p>\n  </li>\n</ol>\n\n<p><img src=\"/About-Azure-DevOps-Demo-Generator/images/homepage.png\" alt=\"Image of VSTS Demo Generator V2 login\" /></p>\n\n<ol>\n  <li>\n    <p>After you sign in, select <strong>Accept</strong> to grant the Demo Generator permissions to access your Azure DevOps account.</p>\n  </li>\n  <li>\n    <p>Select the organization you will use to host the project created by the Azure DevOps Demo Generator. (You may have multiple accounts of which you are a member, and which are associated with your login, so choose carefully.) Provide a name for your project (such as “MyProjectDemo” ) that you and other contributors can use to identify it as a demo project.</p>\n  </li>\n</ol>\n\n<p><img src=\"/About-Azure-DevOps-Demo-Generator/images/mainpage.png\" alt=\"Image of the generator main page\" /></p>\n\n<p>Lastly, select the demo project template you want to provision by clicking <strong>…</strong> (Browse) button.</p>\n\n<p><img src=\"/About-Azure-DevOps-Demo-Generator/images/templateselection.png\" alt=\"Image of VSTS Demo Generator template selection screen\" /></p>\n\n<blockquote>\n  <p>The default template is <strong>SmartHotel360</strong>, which contains complete ASP.NET 2 web mobile and desktop business apps for a hotel, and can be deployed using Docker containers. Other templates include <strong>MyHealthClinic</strong>, which defines a team project for an ASP.NET Core app that deploys to Azure App Service; <strong>PartsUnlimited</strong>, which defines an ASP.NET app with customized CI/CD pipelines; and <strong>MyShuttle</strong>, which defines a Java app and Azure App service deployment.</p>\n</blockquote>\n\n<blockquote>\n  <p>All four templates provide fictional Azure DevOps users and pre-populated Agile planning and tracking work items and data, along with source code in an Azure Repos Git repo, as well as access to Azure Pipelines.</p>\n</blockquote>\n\n<ol>\n  <li>\n    <p>Some templates may require additional extensions to be installed to your organization. The demo generation process checks to see if these extensions are already installed. If the extension is already installed, a green check will be displayed in front of the extension name. If the extension is <strong>not</strong> installed, select the empty check boxes to install the extension(s) to your account. When ready, click on <strong>Create Project</strong> button.</p>\n\n    <blockquote>\n      <p>If you want to manually install the extensions,  click on the provided link for a specific extension, which takes you to the extension’s page on Azure DevOps Marketplace. From there, you can install the extension.</p>\n    </blockquote>\n  </li>\n  <li>\n    <p>Your project may take a couple of minutes for the Demo Generator to provision. When it completes, you will be provided with a link to the demo project.</p>\n  </li>\n</ol>\n\n<p><img src=\"_img/projectcreated.png\" alt=\"Image of Azure DevOps Demo Generator project created screen\" /></p>\n\n<ol>\n  <li>Select the link to go to the new demo Azure DevOps Services project and confirm it was successfully provisioned.</li>\n</ol>\n\n<p><img src=\"_img/projecthomepage.png\" alt=\"Image of Azure DevOps Demo Generator provision confirmation screen\" /></p>\n\n<blockquote>\n  <p>You must provide your own information such as URLs, logins, password, and others for the configuration of demo endpoints that use Azure resources.</p>\n</blockquote>\n\n<hr />\n\n<p>Next: <a href=\"/About-Azure-DevOps-Demo-Generator/Build-your-own-template\">Building your own template</a></p>\n\n\n      \n    </div>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.1.0/anchor.min.js\" integrity=\"sha256-lZaRhKri35AyJSypXXs4o6OPFTbTmUoltBbDCbdzegg=\" crossorigin=\"anonymous\"></script>\n    <script>anchors.add();</script>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "docs/assets/css/style.scss",
    "content": "---\n---\n\n@import \"{{ site.theme }}\";\n\nheader {\n  display: none;\n}"
  },
  {
    "path": "index.html",
    "content": "---\nlayout: default\n---\n\n<div class=\"posts\">\n  {% for post in site.posts %}\n    <article class=\"post\">\n\n      <h1><a href=\"{{ site.baseurl }}{{ post.url }}\">{{ post.title }}</a></h1>\n\n      <div class=\"entry\">\n        {{ post.excerpt }}\n      </div>\n\n      <a href=\"{{ site.baseurl }}{{ post.url }}\" class=\"read-more\">Read More</a>\n    </article>\n  {% endfor %}\n</div>"
  },
  {
    "path": "src/.gitignore",
    "content": "﻿################################################################################\n# This .gitignore file was automatically created by Microsoft(R) Visual Studio.\n################################################################################\n\n/ExportWorkitemsTool/bin/Debug\n/ExportWorkitemsTool/obj\n/packages\n/VstsDemoBuilder/bin\n/VstsDemoBuilder/Log\n/VstsDemoBuilder/obj\n/VstsDemoBuilder/Properties/PublishProfiles\n/VstsRestAPI/bin\n/VstsDemoBuilder/Templates/BasicBot\n/VstsDemoBuilder/Templates/PartsUnlimited-agile\n/.vs/DemoGenerator/v15\n/.vs/VstsDemoBuilder/v15/Server/sqlite3\n/.vs\n/VstsRestAPI/obj\n\n/ExportWorkitemsTool/bin/Release\n"
  },
  {
    "path": "src/VSTSDemoGeneratorV2.sln",
    "content": "﻿\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio 15\nVisualStudioVersion = 15.0.28010.2036\nMinimumVisualStudioVersion = 10.0.40219.1\nProject(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"VstsDemoBuilder\", \"VstsDemoBuilder\\VstsDemoBuilder.csproj\", \"{E1796A5C-DA7B-4077-86F3-B2C8626257B7}\"\nEndProject\nProject(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"VstsRestAPI\", \"VstsRestAPI\\VstsRestAPI.csproj\", \"{720825C0-F4F3-44F3-9492-3BC4C967034D}\"\nEndProject\nGlobal\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\n\t\tDebug|Any CPU = Debug|Any CPU\n\t\tRelease|Any CPU = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\n\t\t{E1796A5C-DA7B-4077-86F3-B2C8626257B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{E1796A5C-DA7B-4077-86F3-B2C8626257B7}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{E1796A5C-DA7B-4077-86F3-B2C8626257B7}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{E1796A5C-DA7B-4077-86F3-B2C8626257B7}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{720825C0-F4F3-44F3-9492-3BC4C967034D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{720825C0-F4F3-44F3-9492-3BC4C967034D}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{720825C0-F4F3-44F3-9492-3BC4C967034D}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{720825C0-F4F3-44F3-9492-3BC4C967034D}.Release|Any CPU.Build.0 = Release|Any CPU\n\t\t{7AB69A60-0D63-41D0-8FA8-0FC003C9F624}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\n\t\t{7AB69A60-0D63-41D0-8FA8-0FC003C9F624}.Debug|Any CPU.Build.0 = Debug|Any CPU\n\t\t{7AB69A60-0D63-41D0-8FA8-0FC003C9F624}.Release|Any CPU.ActiveCfg = Release|Any CPU\n\t\t{7AB69A60-0D63-41D0-8FA8-0FC003C9F624}.Release|Any CPU.Build.0 = Release|Any CPU\n\tEndGlobalSection\n\tGlobalSection(SolutionProperties) = preSolution\n\t\tHideSolutionNode = FALSE\n\tEndGlobalSection\n\tGlobalSection(ExtensibilityGlobals) = postSolution\n\t\tSolutionGuid = {DAC2A97D-0DA4-4109-BD2E-C25C4888743C}\n\tEndGlobalSection\nEndGlobal\n"
  },
  {
    "path": "src/VstsDemoBuilder/App_Start/BundleConfig.cs",
    "content": "﻿using System.Web;\nusing System.Web.Optimization;\n\nnamespace VstsDemoBuilder\n{\n    public class BundleConfig\n    {\n        // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725\n        public static void RegisterBundles(BundleCollection bundles)\n        {\n            bundles.Add(new ScriptBundle(\"~/bundles/jquery\").Include(\n                        \"~/Scripts/jquery-{version}.js\"));\n\n            bundles.Add(new ScriptBundle(\"~/bundles/jqueryui\").Include(\n                        \"~/Scripts/jquery-ui-{version}.js\"));\n\n            bundles.Add(new ScriptBundle(\"~/bundles/jqueryval\").Include(\n                        \"~/Scripts/jquery.unobtrusive*\",\n                        \"~/Scripts/jquery.validate*\"));\n\n            bundles.Add(new ScriptBundle(\"~/bundles/bootstrap\").Include(\n                        \"~/Scripts/bootstrap*\"));\n\n            // Use the development version of Modernizr to develop with and learn from. Then, when you're\n            // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.\n            bundles.Add(new ScriptBundle(\"~/bundles/modernizr\").Include(\n                        \"~/Scripts/modernizr-*\"));\n\n            //bundles.Add(new StyleBundle(\"~/Content/css\").Include(\"~/Content/site.css\"));\n\n            bundles.Add(new StyleBundle(\"~/Content/css\").Include(\n                        \"~/Content/bootstrap.css\",\n                        //\"~/Content/bootstrap.css.map\",\n                        //\"~/Content/bootstrap.min.css\",\n                        //\"~/Content/bootstrap.min.css.map\",\n                        //\"~/Content/bootstrap-theme.css\",\n                        //\"~/Content/bootstrap-theme.css.map\",\n                        //\"~/Content/bootstrap-theme.min.css\",\n                        //\"~/Content/bootstrap-theme.min.css.map\",\n                        \"~/Content/custome-style.css\"));\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/App_Start/FilterConfig.cs",
    "content": "﻿using System.Web;\nusing System.Web.Mvc;\n\nnamespace VstsDemoBuilder\n{\n    public class FilterConfig\n    {\n        public static void RegisterGlobalFilters(GlobalFilterCollection filters)\n        {\n            filters.Add(new ErrorHandler.AiHandleErrorAttribute());\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/App_Start/RouteConfig.cs",
    "content": "﻿using LowercaseRoutesMVC;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\nusing System.Web.Mvc;\nusing System.Web.Routing;\n\nnamespace VstsDemoBuilder\n{\n    public class RouteConfig\n    {\n        public static void RegisterRoutes(RouteCollection routes)\n        {\n            routes.IgnoreRoute(\"{resource}.axd/{*pathInfo}\");\n\n            routes.MapRouteLowercase(\n                name: \"Default\",\n                url: \"{controller}/{action}/{id}\",\n                defaults: new { controller = \"Account\", action = \"Verify\", id = UrlParameter.Optional }\n            );\n           \n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/App_Start/SwaggerConfig.cs",
    "content": "using System.Web.Http;\nusing WebActivatorEx;\nusing VstsDemoBuilder;\nusing Swashbuckle.Application;\nusing System.Linq;\n\n[assembly: PreApplicationStartMethod(typeof(SwaggerConfig), \"Register\")]\n\nnamespace VstsDemoBuilder\n{\n    public class SwaggerConfig\n    {\n        public static void Register()\n        {\n            var thisAssembly = typeof(SwaggerConfig).Assembly;\n\n            GlobalConfiguration.Configuration\n                .EnableSwagger(c =>\n                    {\n                        // By default, the service root url is inferred from the request used to access the docs.\n                        // However, there may be situations (e.g. proxy and load-balanced environments) where this does not\n                        // resolve correctly. You can workaround this by providing your own code to determine the root URL.\n                        //\n                        //c.RootUrl(req => GetRootUrlFromAppConfig());\n\n                        // If schemes are not explicitly provided in a Swagger 2.0 document, then the scheme used to access\n                        // the docs is taken as the default. If your API supports multiple schemes and you want to be explicit\n                        // about them, you can use the \"Schemes\" option as shown below.\n                        //\n                        //c.Schemes(new[] { \"http\", \"https\" });\n\n                        // Use \"SingleApiVersion\" to describe a single version API. Swagger 2.0 includes an \"Info\" object to\n                        // hold additional metadata for an API. Version and title are required but you can also provide\n                        // additional fields by chaining methods off SingleApiVersion.\n                        //\n                        c.SingleApiVersion(\"v1\", \"VstsDemoBuilder\");\n\n                        // If you want the output Swagger docs to be indented properly, enable the \"PrettyPrint\" option.\n                        //\n                        //c.PrettyPrint();\n\n                        // If your API has multiple versions, use \"MultipleApiVersions\" instead of \"SingleApiVersion\".\n                        // In this case, you must provide a lambda that tells Swashbuckle which actions should be\n                        // included in the docs for a given API version. Like \"SingleApiVersion\", each call to \"Version\"\n                        // returns an \"Info\" builder so you can provide additional metadata per API version.\n                        //\n                        //c.MultipleApiVersions(\n                        //    (apiDesc, targetApiVersion) => ResolveVersionSupportByRouteConstraint(apiDesc, targetApiVersion),\n                        //    (vc) =>\n                        //    {\n                        //        vc.Version(\"v2\", \"Swashbuckle Dummy API V2\");\n                        //        vc.Version(\"v1\", \"Swashbuckle Dummy API V1\");\n                        //    });\n\n                        // You can use \"BasicAuth\", \"ApiKey\" or \"OAuth2\" options to describe security schemes for the API.\n                        // See https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md for more details.\n                        // NOTE: These only define the schemes and need to be coupled with a corresponding \"security\" property\n                        // at the document or operation level to indicate which schemes are required for an operation. To do this,\n                        // you'll need to implement a custom IDocumentFilter and/or IOperationFilter to set these properties\n                        // according to your specific authorization implementation\n                        //\n                        //c.BasicAuth(\"basic\")\n                        //    .Description(\"Basic HTTP Authentication\");\n                        //\n                        // NOTE: You must also configure 'EnableApiKeySupport' below in the SwaggerUI section\n                        //c.ApiKey(\"apiKey\")\n                        //    .Description(\"API Key Authentication\")\n                        //    .Name(\"apiKey\")\n                        //    .In(\"header\");\n                        //\n                        //c.OAuth2(\"oauth2\")\n                        //    .Description(\"OAuth2 Implicit Grant\")\n                        //    .Flow(\"implicit\")\n                        //    .AuthorizationUrl(\"http://petstore.swagger.wordnik.com/api/oauth/dialog\")\n                        //    //.TokenUrl(\"https://tempuri.org/token\")\n                        //    .Scopes(scopes =>\n                        //    {\n                        //        scopes.Add(\"read\", \"Read access to protected resources\");\n                        //        scopes.Add(\"write\", \"Write access to protected resources\");\n                        //    });\n\n                        // Set this flag to omit descriptions for any actions decorated with the Obsolete attribute\n                        //c.IgnoreObsoleteActions();\n\n                        // Each operation be assigned one or more tags which are then used by consumers for various reasons.\n                        // For example, the swagger-ui groups operations according to the first tag of each operation.\n                        // By default, this will be controller name but you can use the \"GroupActionsBy\" option to\n                        // override with any value.\n                        //\n                        //c.GroupActionsBy(apiDesc => apiDesc.HttpMethod.ToString());\n\n                        // You can also specify a custom sort order for groups (as defined by \"GroupActionsBy\") to dictate\n                        // the order in which operations are listed. For example, if the default grouping is in place\n                        // (controller name) and you specify a descending alphabetic sort order, then actions from a\n                        // ProductsController will be listed before those from a CustomersController. This is typically\n                        // used to customize the order of groupings in the swagger-ui.\n                        //\n                        //c.OrderActionGroupsBy(new DescendingAlphabeticComparer());\n\n                        // If you annotate Controllers and API Types with\n                        // Xml comments (http://msdn.microsoft.com/en-us/library/b2s063f7(v=vs.110).aspx), you can incorporate\n                        // those comments into the generated docs and UI. You can enable this by providing the path to one or\n                        // more Xml comment files.\n                        //\n                        //c.IncludeXmlComments(GetXmlCommentsPath());\n\n                        // Swashbuckle makes a best attempt at generating Swagger compliant JSON schemas for the various types\n                        // exposed in your API. However, there may be occasions when more control of the output is needed.\n                        // This is supported through the \"MapType\" and \"SchemaFilter\" options:\n                        //\n                        // Use the \"MapType\" option to override the Schema generation for a specific type.\n                        // It should be noted that the resulting Schema will be placed \"inline\" for any applicable Operations.\n                        // While Swagger 2.0 supports inline definitions for \"all\" Schema types, the swagger-ui tool does not.\n                        // It expects \"complex\" Schemas to be defined separately and referenced. For this reason, you should only\n                        // use the \"MapType\" option when the resulting Schema is a primitive or array type. If you need to alter a\n                        // complex Schema, use a Schema filter.\n                        //\n                        //c.MapType<ProductType>(() => new Schema { type = \"integer\", format = \"int32\" });\n\n                        // If you want to post-modify \"complex\" Schemas once they've been generated, across the board or for a\n                        // specific type, you can wire up one or more Schema filters.\n                        //\n                        //c.SchemaFilter<ApplySchemaVendorExtensions>();\n\n                        // In a Swagger 2.0 document, complex types are typically declared globally and referenced by unique\n                        // Schema Id. By default, Swashbuckle does NOT use the full type name in Schema Ids. In most cases, this\n                        // works well because it prevents the \"implementation detail\" of type namespaces from leaking into your\n                        // Swagger docs and UI. However, if you have multiple types in your API with the same class name, you'll\n                        // need to opt out of this behavior to avoid Schema Id conflicts.\n                        //\n                        //c.UseFullTypeNameInSchemaIds();\n\n                        // Alternatively, you can provide your own custom strategy for inferring SchemaId's for\n                        // describing \"complex\" types in your API.\n                        //\n                        //c.SchemaId(t => t.FullName.Contains('`') ? t.FullName.Substring(0, t.FullName.IndexOf('`')) : t.FullName);\n\n                        // Set this flag to omit schema property descriptions for any type properties decorated with the\n                        // Obsolete attribute\n                        //c.IgnoreObsoleteProperties();\n\n                        // In accordance with the built in JsonSerializer, Swashbuckle will, by default, describe enums as integers.\n                        // You can change the serializer behavior by configuring the StringToEnumConverter globally or for a given\n                        // enum type. Swashbuckle will honor this change out-of-the-box. However, if you use a different\n                        // approach to serialize enums as strings, you can also force Swashbuckle to describe them as strings.\n                        //\n                        //c.DescribeAllEnumsAsStrings();\n\n                        // Similar to Schema filters, Swashbuckle also supports Operation and Document filters:\n                        //\n                        // Post-modify Operation descriptions once they've been generated by wiring up one or more\n                        // Operation filters.\n                        //\n                        //c.OperationFilter<AddDefaultResponse>();\n                        //\n                        // If you've defined an OAuth2 flow as described above, you could use a custom filter\n                        // to inspect some attribute on each action and infer which (if any) OAuth2 scopes are required\n                        // to execute the operation\n                        //\n                        //c.OperationFilter<AssignOAuth2SecurityRequirements>();\n\n                        // Post-modify the entire Swagger document by wiring up one or more Document filters.\n                        // This gives full control to modify the final SwaggerDocument. You should have a good understanding of\n                        // the Swagger 2.0 spec. - https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md\n                        // before using this option.\n                        //\n                        //c.DocumentFilter<ApplyDocumentVendorExtensions>();\n\n                        // In contrast to WebApi, Swagger 2.0 does not include the query string component when mapping a URL\n                        // to an action. As a result, Swashbuckle will raise an exception if it encounters multiple actions\n                        // with the same path (sans query string) and HTTP method. You can workaround this by providing a\n                        // custom strategy to pick a winner or merge the descriptions for the purposes of the Swagger docs\n                        //\n                        c.ResolveConflictingActions(apiDescriptions => apiDescriptions.First());\n\n                        // Wrap the default SwaggerGenerator with additional behavior (e.g. caching) or provide an\n                        // alternative implementation for ISwaggerProvider with the CustomProvider option.\n                        //\n                        //c.CustomProvider((defaultProvider) => new CachingSwaggerProvider(defaultProvider));\n                    })\n                .EnableSwaggerUi(c =>\n                    {\n                        // Use the \"DocumentTitle\" option to change the Document title.\n                        // Very helpful when you have multiple Swagger pages open, to tell them apart.\n                        //\n                        //c.DocumentTitle(\"My Swagger UI\");\n\n                        // Use the \"InjectStylesheet\" option to enrich the UI with one or more additional CSS stylesheets.\n                        // The file must be included in your project as an \"Embedded Resource\", and then the resource's\n                        // \"Logical Name\" is passed to the method as shown below.\n                        //\n                        //c.InjectStylesheet(containingAssembly, \"Swashbuckle.Dummy.SwaggerExtensions.testStyles1.css\");\n\n                        // Use the \"InjectJavaScript\" option to invoke one or more custom JavaScripts after the swagger-ui\n                        // has loaded. The file must be included in your project as an \"Embedded Resource\", and then the resource's\n                        // \"Logical Name\" is passed to the method as shown above.\n                        //\n                        //c.InjectJavaScript(thisAssembly, \"Swashbuckle.Dummy.SwaggerExtensions.testScript1.js\");\n\n                        // The swagger-ui renders boolean data types as a dropdown. By default, it provides \"true\" and \"false\"\n                        // strings as the possible choices. You can use this option to change these to something else,\n                        // for example 0 and 1.\n                        //\n                        //c.BooleanValues(new[] { \"0\", \"1\" });\n\n                        // By default, swagger-ui will validate specs against swagger.io's online validator and display the result\n                        // in a badge at the bottom of the page. Use these options to set a different validator URL or to disable the\n                        // feature entirely.\n                        //c.SetValidatorUrl(\"http://localhost/validator\");\n                        //c.DisableValidator();\n\n                        // Use this option to control how the Operation listing is displayed.\n                        // It can be set to \"None\" (default), \"List\" (shows operations for each resource),\n                        // or \"Full\" (fully expanded: shows operations and their details).\n                        //\n                        //c.DocExpansion(DocExpansion.List);\n\n                        // Specify which HTTP operations will have the 'Try it out!' option. An empty paramter list disables\n                        // it for all operations.\n                        //\n                        //c.SupportedSubmitMethods(\"GET\", \"HEAD\");\n\n                        // Use the CustomAsset option to provide your own version of assets used in the swagger-ui.\n                        // It's typically used to instruct Swashbuckle to return your version instead of the default\n                        // when a request is made for \"index.html\". As with all custom content, the file must be included\n                        // in your project as an \"Embedded Resource\", and then the resource's \"Logical Name\" is passed to\n                        // the method as shown below.\n                        //\n                        //c.CustomAsset(\"index\", containingAssembly, \"YourWebApiProject.SwaggerExtensions.index.html\");\n\n                        // If your API has multiple versions and you've applied the MultipleApiVersions setting\n                        // as described above, you can also enable a select box in the swagger-ui, that displays\n                        // a discovery URL for each version. This provides a convenient way for users to browse documentation\n                        // for different API versions.\n                        //\n                        //c.EnableDiscoveryUrlSelector();\n\n                        // If your API supports the OAuth2 Implicit flow, and you've described it correctly, according to\n                        // the Swagger 2.0 specification, you can enable UI support as shown below.\n                        //\n                        //c.EnableOAuth2Support(\n                        //    clientId: \"test-client-id\",\n                        //    clientSecret: null,\n                        //    realm: \"test-realm\",\n                        //    appName: \"Swagger UI\"\n                        //    //additionalQueryStringParams: new Dictionary<string, string>() { { \"foo\", \"bar\" } }\n                        //);\n\n                        // If your API supports ApiKey, you can override the default values.\n                        // \"apiKeyIn\" can either be \"query\" or \"header\"\n                        //\n                        //c.EnableApiKeySupport(\"apiKey\", \"header\");\n                    });\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/App_Start/UnityConfig.cs",
    "content": "using System;\nusing Microsoft.Practices.Unity;\nusing Microsoft.Practices.Unity.Configuration;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsDemoBuilder.Services;\n\nnamespace VstsDemoBuilder.App_Start\n{\n    /// <summary>\n    /// Specifies the Unity configuration for the main container.\n    /// </summary>\n    public class UnityConfig\n    {\n        #region Unity Container\n        private static Lazy<IUnityContainer> container = new Lazy<IUnityContainer>(() =>\n        {\n            var container = new UnityContainer();\n            RegisterTypes(container);\n            return container;\n        });\n\n        /// <summary>\n        /// Gets the configured Unity container.\n        /// </summary>\n        public static IUnityContainer GetConfiguredContainer()\n        {\n            return container.Value;\n        }\n        #endregion\n\n        /// <summary>Registers the type mappings with the Unity container.</summary>\n        /// <param name=\"container\">The unity container to configure.</param>\n        /// <remarks>There is no need to register concrete types such as controllers or API controllers (unless you want to \n        /// change the defaults), as Unity allows resolving a concrete type even if it was not previously registered.</remarks>\n        public static void RegisterTypes(IUnityContainer container)\n        {\n            // NOTE: To load from web.config uncomment the line below. Make sure to add a Microsoft.Practices.Unity.Configuration to the using statements.\n            // container.LoadConfiguration();\n\n            // TODO: Register your types here\n            container.RegisterType<IAccountService, AccountService>();\n            container.RegisterType<IProjectService, ProjectService>();\n            container.RegisterType<ITemplateService, TemplateService>();\n            container.RegisterType<IExtractorService, ExtractorService>();\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/App_Start/UnityMvcActivator.cs",
    "content": "using System.Linq;\nusing System.Web.Mvc;\nusing Microsoft.Practices.Unity.Mvc;\n\n[assembly: WebActivatorEx.PreApplicationStartMethod(typeof(VstsDemoBuilder.App_Start.UnityWebActivator), \"Start\")]\n[assembly: WebActivatorEx.ApplicationShutdownMethod(typeof(VstsDemoBuilder.App_Start.UnityWebActivator), \"Shutdown\")]\n\nnamespace VstsDemoBuilder.App_Start\n{\n    /// <summary>Provides the bootstrapping for integrating Unity with ASP.NET MVC.</summary>\n    public static class UnityWebActivator\n    {\n        /// <summary>Integrates Unity when the application starts.</summary>\n        public static void Start() \n        {\n            var container = UnityConfig.GetConfiguredContainer();\n\n            FilterProviders.Providers.Remove(FilterProviders.Providers.OfType<FilterAttributeFilterProvider>().First());\n            FilterProviders.Providers.Add(new UnityFilterAttributeFilterProvider(container));\n\n            DependencyResolver.SetResolver(new UnityDependencyResolver(container));\n\n            // TODO: Uncomment if you want to use PerRequestLifetimeManager\n            // Microsoft.Web.Infrastructure.DynamicModuleHelper.DynamicModuleUtility.RegisterModule(typeof(UnityPerRequestHttpModule));\n        }\n\n        /// <summary>Disposes the Unity container when the application is shut down.</summary>\n        public static void Shutdown()\n        {\n            var container = UnityConfig.GetConfiguredContainer();\n            container.Dispose();\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/App_Start/WebApiConfig.cs",
    "content": "﻿using System.Web.Http;\n\nnamespace VstsDemoBuilder\n{\n    public static class WebApiConfig\n    {\n        public static void Register(HttpConfiguration config)\n        {\n            // Web API routes\n            config.MapHttpAttributeRoutes();\n\n        \n            config.Routes.MapHttpRoute(\n                name: \"DefaultApi\",\n                routeTemplate: \"api/{controller}/{id}\",\n                defaults: new { id = RouteParameter.Optional }\n            );\n            config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new\n            System.Net.Http.Headers.MediaTypeHeaderValue(\"text/html\"));\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/ApplicationInsights.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ApplicationInsights xmlns=\"http://schemas.microsoft.com/ApplicationInsights/2013/Settings\">\n  <InstrumentationKey>7f2c2d9c-82b6-4c29-a5ec-55dc332f3f7a</InstrumentationKey>\n  <TelemetryModules>\n    <Add Type=\"Microsoft.ApplicationInsights.DependencyCollector.DependencyTrackingTelemetryModule, Microsoft.AI.DependencyCollector\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Extensibility.PerfCounterCollector.PerformanceCollectorModule, Microsoft.AI.PerfCounterCollector\">\n      <!--\n      Use the following syntax here to collect additional performance counters:\n      \n      <Counters>\n        <Add PerformanceCounter=\"\\Process(??APP_WIN32_PROC??)\\Handle Count\" ReportAs=\"Process handle count\" />\n        ...\n      </Counters>\n      \n      PerformanceCounter must be either \\CategoryName(InstanceName)\\CounterName or \\CategoryName\\CounterName\n      \n      Counter names may only contain letters, round brackets, forward slashes, hyphens, underscores, spaces and dots.\n      You may provide an optional ReportAs attribute which will be used as the metric name when reporting counter data.\n      For the purposes of reporting, metric names will be sanitized by removing all invalid characters from the resulting metric name.\n      \n      NOTE: performance counters configuration will be lost upon NuGet upgrade.\n      \n      The following placeholders are supported as InstanceName:\n        ??APP_WIN32_PROC?? - instance name of the application process  for Win32 counters.\n        ??APP_W3SVC_PROC?? - instance name of the application IIS worker process for IIS/ASP.NET counters.\n        ??APP_CLR_PROC?? - instance name of the application CLR process for .NET counters.\n      -->\n    </Add>\n    <Add Type=\"Microsoft.ApplicationInsights.Extensibility.PerfCounterCollector.QuickPulse.QuickPulseTelemetryModule, Microsoft.AI.PerfCounterCollector\" />\n    <Add Type=\"Microsoft.ApplicationInsights.WindowsServer.DeveloperModeWithDebuggerAttachedTelemetryModule, Microsoft.AI.WindowsServer\" />\n    <Add Type=\"Microsoft.ApplicationInsights.WindowsServer.UnhandledExceptionTelemetryModule, Microsoft.AI.WindowsServer\" />\n    <Add Type=\"Microsoft.ApplicationInsights.WindowsServer.UnobservedExceptionTelemetryModule, Microsoft.AI.WindowsServer\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.RequestTrackingTelemetryModule, Microsoft.AI.Web\">\n      <Handlers>\n        <!-- \n        Add entries here to filter out additional handlers: \n        \n        NOTE: handler configuration will be lost upon NuGet upgrade.\n        -->\n        <Add>System.Web.Handlers.TransferRequestHandler</Add>\n        <Add>Microsoft.VisualStudio.Web.PageInspector.Runtime.Tracing.RequestDataHttpHandler</Add>\n        <Add>System.Web.StaticFileHandler</Add>\n        <Add>System.Web.Handlers.AssemblyResourceLoader</Add>\n        <Add>System.Web.Optimization.BundleHandler</Add>\n        <Add>System.Web.Script.Services.ScriptHandlerFactory</Add>\n        <Add>System.Web.Handlers.TraceHandler</Add>\n        <Add>System.Web.Services.Discovery.DiscoveryRequestHandler</Add>\n        <Add>System.Web.HttpDebugHandler</Add>\n      </Handlers>\n    </Add>\n    <Add Type=\"Microsoft.ApplicationInsights.Web.ExceptionTrackingTelemetryModule, Microsoft.AI.Web\" />\n  </TelemetryModules>\n  <TelemetryProcessors>\n    <Add Type=\"Microsoft.ApplicationInsights.Extensibility.PerfCounterCollector.QuickPulse.QuickPulseTelemetryProcessor, Microsoft.AI.PerfCounterCollector\" />\n    <Add Type=\"Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.AdaptiveSamplingTelemetryProcessor, Microsoft.AI.ServerTelemetryChannel\">\n      <MaxTelemetryItemsPerSecond>5</MaxTelemetryItemsPerSecond>\n    </Add>\n  </TelemetryProcessors>\n  <TelemetryChannel Type=\"Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.ServerTelemetryChannel, Microsoft.AI.ServerTelemetryChannel\" />\n  <!-- \n    Learn more about Application Insights configuration with ApplicationInsights.config here: \n    http://go.microsoft.com/fwlink/?LinkID=513840\n    \n    Note: If not present, please add <InstrumentationKey>Your Key</InstrumentationKey> to the top of this file.\n  -->\n  <TelemetryInitializers>\n    <Add Type=\"Microsoft.ApplicationInsights.WindowsServer.AzureRoleEnvironmentTelemetryInitializer, Microsoft.AI.WindowsServer\" />\n    <Add Type=\"Microsoft.ApplicationInsights.WindowsServer.DomainNameRoleInstanceTelemetryInitializer, Microsoft.AI.WindowsServer\" />\n    <Add Type=\"Microsoft.ApplicationInsights.WindowsServer.BuildInfoConfigComponentVersionTelemetryInitializer, Microsoft.AI.WindowsServer\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.WebTestTelemetryInitializer, Microsoft.AI.Web\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.SyntheticUserAgentTelemetryInitializer, Microsoft.AI.Web\">\n      <Filters>\n        <Add Pattern=\"(YottaaMonitor|BrowserMob|HttpMonitor|YandexBot|BingPreview|PagePeeker|ThumbShotsBot|WebThumb|URL2PNG|ZooShot|GomezA|Catchpoint bot|Willow Internet Crawler|Google SketchUp|Read%20Later|KTXN|Pingdom|AlwaysOn)\" />\n        <Add Pattern=\"Slurp\" SourceName=\"Yahoo Bot\" />\n        <Add Pattern=\"(bot|zao|borg|Bot|oegp|silk|Xenu|zeal|^NING|crawl|Crawl|htdig|lycos|slurp|teoma|voila|yahoo|Sogou|CiBra|Nutch|^Java/|^JNLP/|Daumoa|Genieo|ichiro|larbin|pompos|Scrapy|snappy|speedy|spider|Spider|vortex|favicon|indexer|Riddler|scooter|scraper|scrubby|WhatWeb|WinHTTP|^voyager|archiver|Icarus6j|mogimogi|Netvibes|altavista|charlotte|findlinks|Retreiver|TLSProber|WordPress|wsr\\-agent|Squrl Java|A6\\-Indexer|netresearch|searchsight|http%20client|Python-urllib|dataparksearch|Screaming Frog|AppEngine-Google|YahooCacheSystem|semanticdiscovery|facebookexternalhit|Google.*/\\+/web/snippet|Google-HTTP-Java-Client)\" SourceName=\"Spider\" />\n      </Filters>\n    </Add>\n    <Add Type=\"Microsoft.ApplicationInsights.Web.ClientIpHeaderTelemetryInitializer, Microsoft.AI.Web\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.OperationNameTelemetryInitializer, Microsoft.AI.Web\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.OperationCorrelationTelemetryInitializer, Microsoft.AI.Web\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.UserTelemetryInitializer, Microsoft.AI.Web\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.AuthenticatedUserIdTelemetryInitializer, Microsoft.AI.Web\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.AccountIdTelemetryInitializer, Microsoft.AI.Web\" />\n    <Add Type=\"Microsoft.ApplicationInsights.Web.SessionTelemetryInitializer, Microsoft.AI.Web\" />\n  </TelemetryInitializers>\n</ApplicationInsights>"
  },
  {
    "path": "src/VstsDemoBuilder/Content/Site.css",
    "content": "﻿body {\n    font-size: .85em;\n    font-family: \"Segoe UI\", Verdana, Helvetica, Sans-Serif;\n    color: #232323;\n    background-color: #fff;\n}\n\nheader, footer, nav, section {\n    display: block;\n}\n\n\n/* Styles for basic forms\n-----------------------------------------------------------*/\nfieldset {\n    border: 1px solid #ddd;\n    padding: 0 1.4em 1.4em 1.4em;\n    margin: 0 0 1.5em 0;\n}\n\nlegend {\n    font-size: 1.2em;\n    font-weight: bold;\n}\n\ntextarea {\n    min-height: 75px;\n}\n\n.editor-label {\n    margin: 1em 0 0 0;\n}\n\n.editor-field {\n    margin: 0.5em 0 0 0;\n}\n\n\n/* Styles for validation helpers\n-----------------------------------------------------------*/\n.field-validation-error {\n    color: #f00;\n}\n\n.field-validation-valid {\n    display: none;\n}\n\n.input-validation-error {\n    border: 1px solid #f00;\n    background-color: #fee;\n}\n\n.validation-summary-errors {\n    font-weight: bold;\n    color: #f00;\n}\n\n.validation-summary-valid {\n    display: none;\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Content/assets/css/custom.scss",
    "content": "// MAIN SCSS\n@import \"../../node_modules/bootstrap/scss/bootstrap.scss\";\n\n// MAIN PAGE CONTAINER\nhtml,body{\n    min-height:100%;\n}\n.section-1\n{\n    min-height: 100%;\n    main\n    {\n        flex:1;\n        .VSTS-hero-image\n        {\n            flex:1;\n            .VSTS-hero\n            {\n                flex:1;\n                background:url('../images/VSTS_cover_image.png') center center / cover;\n                img{\n                    width:60px;\n                }\n            }\n        }\n        .VSTS-details\n        {\n            @media (min-width: 768px)\n            {\n                max-width: 550px;\n            }\n            .demo-generator-details-logo\n            {\n                width:160px;\n            }\n            p\n            {\n                font-size: $spacer/1.142;\n            }\n        }\n    }\n}\n.navbar\n{\n    height: 46px;\n    .nav-item img\n    {\n        width: 18px;\n    }\n}\n.navbar-brand img\n{\n    width: 18px;\n    font-size: inherit;\n}\n.navbar-brand-text\n{\n    font-size: 1rem;\n}\n.jumbotron {\n    background: url('../images/vsts_header_image.png'),darken($primary,8%);\n    background-size: 1500px;\n    margin-top: 20px;\n}\n.custom-radio{\n    button\n    {\n        letter-spacing: 2px;\n    }\n}\n.VSTS-mh-100\n{\n    min-height: 100%;\n}\n.VSTS-create-page-feedback {\n    font-size: 0.8rem;\n}\n\n.footer.VSTS-create-page-footer {\n    position: fixed;\n    bottom: 0;\n    width: 100%;\n    /* Set the fixed height of the footer here */\n    height: 60px;\n    line-height: 60px; /* Vertically nter the text there */\n    background-color: #f5f5f5;\n  }\n\n\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Content/bootstrap-select.css",
    "content": "/*!\n * Bootstrap-select v1.13.0-alpha (http://silviomoreto.github.io/bootstrap-select)\n *\n * Copyright 2013-2017 bootstrap-select\n * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)\n */\n\nselect.bs-select-hidden,\nselect.selectpicker {\n  display: none !important;\n}\n.bootstrap-select {\n  width: 220px \\0;\n  /*IE9 and below*/\n}\n.bootstrap-select > .dropdown-toggle {\n  width: 100%;\n  padding-right: 25px;\n  z-index: 1;\n}\n.bootstrap-select > .dropdown-toggle.bs-placeholder,\n.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,\n.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,\n.bootstrap-select > .dropdown-toggle.bs-placeholder:active {\n  color: #999;\n}\n.bootstrap-select > select {\n  position: absolute !important;\n  bottom: 0;\n  left: 50%;\n  display: block !important;\n  width: 0.5px !important;\n  height: 100% !important;\n  padding: 0 !important;\n  opacity: 0 !important;\n  border: none;\n}\n.bootstrap-select > select.mobile-device {\n  top: 0;\n  left: 0;\n  display: block !important;\n  width: 100% !important;\n  z-index: 2;\n}\n.has-error .bootstrap-select .dropdown-toggle,\n.error .bootstrap-select .dropdown-toggle {\n  border-color: #b94a48;\n}\n.bootstrap-select.fit-width {\n  width: auto !important;\n}\n.bootstrap-select:not([class*=\"col-\"]):not([class*=\"form-control\"]):not(.input-group-btn) {\n  width: 220px;\n}\n.bootstrap-select .dropdown-toggle:focus {\n  outline: thin dotted #333333 !important;\n  outline: 5px auto -webkit-focus-ring-color !important;\n  outline-offset: -2px;\n}\n.bootstrap-select.form-control {\n  margin-bottom: 0;\n  padding: 0;\n  border: none;\n}\n.bootstrap-select.form-control:not([class*=\"col-\"]) {\n  width: 100%;\n}\n.bootstrap-select.form-control.input-group-btn {\n  z-index: auto;\n}\n.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.bootstrap-select.btn-group:not(.input-group-btn),\n.bootstrap-select.btn-group[class*=\"col-\"] {\n  float: none;\n  display: inline-block;\n  margin-left: 0;\n}\n.bootstrap-select.btn-group.dropdown-menu-right,\n.bootstrap-select.btn-group[class*=\"col-\"].dropdown-menu-right,\n.row .bootstrap-select.btn-group[class*=\"col-\"].dropdown-menu-right {\n  float: right;\n}\n.form-inline .bootstrap-select.btn-group,\n.form-horizontal .bootstrap-select.btn-group,\n.form-group .bootstrap-select.btn-group {\n  margin-bottom: 0;\n}\n.form-group-lg .bootstrap-select.btn-group.form-control,\n.form-group-sm .bootstrap-select.btn-group.form-control {\n  padding: 0;\n}\n.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,\n.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {\n  height: 100%;\n  font-size: inherit;\n  line-height: inherit;\n  border-radius: inherit;\n}\n.form-inline .bootstrap-select.btn-group .form-control {\n  width: 100%;\n}\n.bootstrap-select.btn-group.disabled,\n.bootstrap-select.btn-group > .disabled {\n  cursor: not-allowed;\n}\n.bootstrap-select.btn-group.disabled:focus,\n.bootstrap-select.btn-group > .disabled:focus {\n  outline: none !important;\n}\n.bootstrap-select.btn-group.bs-container {\n  position: absolute;\n  height: 0 !important;\n  padding: 0 !important;\n}\n.bootstrap-select.btn-group.bs-container .dropdown-menu {\n  z-index: 1060;\n}\n.bootstrap-select.btn-group .dropdown-toggle .filter-option {\n  display: inline-block;\n  overflow: hidden;\n  width: 100%;\n  text-align: left;\n}\n.bootstrap-select.btn-group .dropdown-toggle .caret {\n  position: absolute;\n  top: 50%;\n  right: 12px;\n  margin-top: -2px;\n  vertical-align: middle;\n}\n.bootstrap-select.btn-group[class*=\"col-\"] .dropdown-toggle {\n  width: 100%;\n}\n.bootstrap-select.btn-group .dropdown-menu {\n  min-width: 100%;\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n.bootstrap-select.btn-group .dropdown-menu > .inner:focus {\n  outline: none !important;\n}\n.bootstrap-select.btn-group .dropdown-menu.inner {\n  position: static;\n  float: none;\n  border: 0;\n  padding: 0;\n  margin: 0;\n  border-radius: 0;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.bootstrap-select.btn-group .dropdown-menu li {\n  position: relative;\n}\n.bootstrap-select.btn-group .dropdown-menu li.active small {\n  color: #fff;\n}\n.bootstrap-select.btn-group .dropdown-menu li.disabled a {\n  cursor: not-allowed;\n}\n.bootstrap-select.btn-group .dropdown-menu li a {\n  cursor: pointer;\n  -webkit-user-select: none;\n     -moz-user-select: none;\n      -ms-user-select: none;\n          user-select: none;\n}\n.bootstrap-select.btn-group .dropdown-menu li a.opt {\n  position: relative;\n  padding-left: 2.25em;\n}\n.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {\n  display: none;\n}\n.bootstrap-select.btn-group .dropdown-menu li a span.text {\n  display: inline-block;\n}\n.bootstrap-select.btn-group .dropdown-menu li small {\n  padding-left: 0.5em;\n}\n.bootstrap-select.btn-group .dropdown-menu .notify {\n  position: absolute;\n  bottom: 5px;\n  width: 96%;\n  margin: 0 2%;\n  min-height: 26px;\n  padding: 3px 5px;\n  background: #f5f5f5;\n  border: 1px solid #e3e3e3;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n  pointer-events: none;\n  opacity: 0.9;\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n.bootstrap-select.btn-group .no-results {\n  padding: 3px;\n  background: #f5f5f5;\n  margin: 0 5px;\n  white-space: nowrap;\n}\n.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {\n  position: static;\n}\n.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {\n  position: static;\n  top: auto;\n  margin-top: -1px;\n}\n.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {\n  position: absolute;\n  display: inline-block;\n  right: 15px;\n  margin-top: 5px;\n}\n.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {\n  margin-right: 34px;\n}\n.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {\n  z-index: 1061;\n}\n.bootstrap-select.show-menu-arrow .dropdown-toggle:before {\n  content: '';\n  border-left: 7px solid transparent;\n  border-right: 7px solid transparent;\n  border-bottom: 7px solid rgba(204, 204, 204, 0.2);\n  position: absolute;\n  bottom: -4px;\n  left: 9px;\n  display: none;\n}\n.bootstrap-select.show-menu-arrow .dropdown-toggle:after {\n  content: '';\n  border-left: 6px solid transparent;\n  border-right: 6px solid transparent;\n  border-bottom: 6px solid white;\n  position: absolute;\n  bottom: -4px;\n  left: 10px;\n  display: none;\n}\n.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {\n  bottom: auto;\n  top: -3px;\n  border-top: 7px solid rgba(204, 204, 204, 0.2);\n  border-bottom: 0;\n}\n.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {\n  bottom: auto;\n  top: -3px;\n  border-top: 6px solid white;\n  border-bottom: 0;\n}\n.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {\n  right: 12px;\n  left: auto;\n}\n.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {\n  right: 13px;\n  left: auto;\n}\n.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,\n.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {\n  display: block;\n}\n.bs-searchbox,\n.bs-actionsbox,\n.bs-donebutton {\n  padding: 4px 8px;\n}\n.bs-actionsbox {\n  width: 100%;\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n.bs-actionsbox .btn-group button {\n  width: 50%;\n}\n.bs-donebutton {\n  float: left;\n  width: 100%;\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n.bs-donebutton .btn-group button {\n  width: 100%;\n}\n.bs-searchbox + .bs-actionsbox {\n  padding: 0 8px 4px;\n}\n.bs-searchbox .form-control {\n  margin-bottom: 0;\n  width: 100%;\n  float: none;\n}\n/*# sourceMappingURL=bootstrap-select.css.map */"
  },
  {
    "path": "src/VstsDemoBuilder/Content/bootstrap-theme.css",
    "content": "/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n  text-shadow: none;\n}\n.btn:active,\n.btn.active {\n  background-image: none;\n}\n.btn-default {\n  text-shadow: 0 1px 0 #fff;\n  background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n  background-image:      -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));\n  background-image:         linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #dbdbdb;\n  border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n  background-color: #e0e0e0;\n  background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n  background-color: #e0e0e0;\n  border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n  background-color: #e0e0e0;\n  background-image: none;\n}\n.btn-primary {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n  background-color: #265a88;\n  background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n  background-color: #265a88;\n  border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n  background-color: #265a88;\n  background-image: none;\n}\n.btn-success {\n  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n  background-image:      -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));\n  background-image:         linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n  background-color: #419641;\n  background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n  background-color: #419641;\n  border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n  background-color: #419641;\n  background-image: none;\n}\n.btn-info {\n  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n  background-image:      -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));\n  background-image:         linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n  background-color: #2aabd2;\n  background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n  background-color: #2aabd2;\n  border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n  background-color: #2aabd2;\n  background-image: none;\n}\n.btn-warning {\n  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));\n  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n  background-color: #eb9316;\n  background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n  background-color: #eb9316;\n  border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n  background-color: #eb9316;\n  background-image: none;\n}\n.btn-danger {\n  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n  background-image:      -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));\n  background-image:         linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n  background-color: #c12e2a;\n  background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n  background-color: #c12e2a;\n  border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n  background-color: #c12e2a;\n  background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);\n          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  background-color: #e8e8e8;\n  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));\n  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n  background-repeat: repeat-x;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  background-color: #2e6da4;\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n  background-repeat: repeat-x;\n}\n.navbar-default {\n  background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);\n  background-image:      -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));\n  background-image:         linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n  background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n  background-image:      -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));\n  background-image:         linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n  background-repeat: repeat-x;\n  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);\n}\n.navbar-inverse {\n  background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n  background-image:      -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));\n  background-image:         linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  background-repeat: repeat-x;\n  border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n  background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n  background-image:      -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));\n  background-image:         linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n  background-repeat: repeat-x;\n  -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);\n          box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  border-radius: 0;\n}\n@media (max-width: 767px) {\n  .navbar .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n    background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n    background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n    background-repeat: repeat-x;\n  }\n}\n.alert {\n  text-shadow: 0 1px 0 rgba(255, 255, 255, .2);\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);\n}\n.alert-success {\n  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n  background-image:      -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));\n  background-image:         linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #b2dba1;\n}\n.alert-info {\n  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n  background-image:      -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));\n  background-image:         linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #9acfea;\n}\n.alert-warning {\n  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));\n  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #f5e79e;\n}\n.alert-danger {\n  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n  background-image:      -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));\n  background-image:         linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #dca7a7;\n}\n.progress {\n  background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n  background-image:      -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));\n  background-image:         linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-success {\n  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n  background-image:      -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));\n  background-image:         linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-info {\n  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n  background-image:      -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));\n  background-image:         linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-warning {\n  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n  background-image:      -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));\n  background-image:         linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-danger {\n  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n  background-image:      -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));\n  background-image:         linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n  background-repeat: repeat-x;\n}\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.list-group {\n  border-radius: 4px;\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);\n          box-shadow: 0 1px 2px rgba(0, 0, 0, .075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  text-shadow: 0 -1px 0 #286090;\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n  text-shadow: none;\n}\n.panel {\n  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);\n          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);\n}\n.panel-default > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image:      -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));\n  background-image:         linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-primary > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image:      -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));\n  background-image:         linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-success > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n  background-image:      -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));\n  background-image:         linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-info > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n  background-image:      -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));\n  background-image:         linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-warning > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n  background-image:      -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));\n  background-image:         linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n  background-repeat: repeat-x;\n}\n.panel-danger > .panel-heading {\n  background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n  background-image:      -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));\n  background-image:         linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n  background-repeat: repeat-x;\n}\n.well {\n  background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n  background-image:      -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n  background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));\n  background-image:         linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n  background-repeat: repeat-x;\n  border-color: #dcdcdc;\n  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);\n          box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */\n"
  },
  {
    "path": "src/VstsDemoBuilder/Content/bootstrap.css",
    "content": "/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n  font-family: sans-serif;\n  -webkit-text-size-adjust: 100%;\n      -ms-text-size-adjust: 100%;\n}\nbody {\n  margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n  vertical-align: baseline;\n}\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n[hidden],\ntemplate {\n  display: none;\n}\na {\n  background-color: transparent;\n}\na:active,\na:hover {\n  outline: 0;\n}\nabbr[title] {\n  border-bottom: 1px dotted;\n}\nb,\nstrong {\n  font-weight: bold;\n}\ndfn {\n  font-style: italic;\n}\nh1 {\n  margin: .67em 0;\n  font-size: 2em;\n}\nmark {\n  color: #000;\n  background: #ff0;\n}\nsmall {\n  font-size: 80%;\n}\nsub,\nsup {\n  position: relative;\n  font-size: 75%;\n  line-height: 0;\n  vertical-align: baseline;\n}\nsup {\n  top: -.5em;\n}\nsub {\n  bottom: -.25em;\n}\nimg {\n  border: 0;\n}\nsvg:not(:root) {\n  overflow: hidden;\n}\nfigure {\n  margin: 1em 40px;\n}\nhr {\n  height: 0;\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n}\npre {\n  overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n  font: inherit;\n  color: inherit;\n}\nbutton {\n  overflow: visible;\n}\nbutton,\nselect {\n  text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  padding: 0;\n  border: 0;\n}\ninput {\n  line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n  padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n  -webkit-appearance: textfield;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\nfieldset {\n  padding: .35em .625em .75em;\n  margin: 0 2px;\n  border: 1px solid #c0c0c0;\n}\nlegend {\n  padding: 0;\n  border: 0;\n}\ntextarea {\n  overflow: auto;\n}\noptgroup {\n  font-weight: bold;\n}\ntable {\n  border-spacing: 0;\n  border-collapse: collapse;\n}\ntd,\nth {\n  padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n  *,\n  *:before,\n  *:after {\n    color: #000 !important;\n    text-shadow: none !important;\n    background: transparent !important;\n    -webkit-box-shadow: none !important;\n            box-shadow: none !important;\n  }\n  a,\n  a:visited {\n    text-decoration: underline;\n  }\n  a[href]:after {\n    content: \" (\" attr(href) \")\";\n  }\n  abbr[title]:after {\n    content: \" (\" attr(title) \")\";\n  }\n  a[href^=\"#\"]:after,\n  a[href^=\"javascript:\"]:after {\n    content: \"\";\n  }\n  pre,\n  blockquote {\n    border: 1px solid #999;\n\n    page-break-inside: avoid;\n  }\n  thead {\n    display: table-header-group;\n  }\n  tr,\n  img {\n    page-break-inside: avoid;\n  }\n  img {\n    max-width: 100% !important;\n  }\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3;\n  }\n  h2,\n  h3 {\n    page-break-after: avoid;\n  }\n  .navbar {\n    display: none;\n  }\n  .btn > .caret,\n  .dropup > .btn > .caret {\n    border-top-color: #000 !important;\n  }\n  .label {\n    border: 1px solid #000;\n  }\n  .table {\n    border-collapse: collapse !important;\n  }\n  .table td,\n  .table th {\n    background-color: #fff !important;\n  }\n  .table-bordered th,\n  .table-bordered td {\n    border: 1px solid #ddd !important;\n  }\n}\n@font-face {\n  font-family: 'Glyphicons Halflings';\n\n  src: url('../fonts/glyphicons-halflings-regular.eot');\n  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n  content: \"\\002a\";\n}\n.glyphicon-plus:before {\n  content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n  content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n  content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n  content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n  content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n  content: \"\\270f\";\n}\n.glyphicon-glass:before {\n  content: \"\\e001\";\n}\n.glyphicon-music:before {\n  content: \"\\e002\";\n}\n.glyphicon-search:before {\n  content: \"\\e003\";\n}\n.glyphicon-heart:before {\n  content: \"\\e005\";\n}\n.glyphicon-star:before {\n  content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n  content: \"\\e007\";\n}\n.glyphicon-user:before {\n  content: \"\\e008\";\n}\n.glyphicon-film:before {\n  content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n  content: \"\\e010\";\n}\n.glyphicon-th:before {\n  content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n  content: \"\\e012\";\n}\n.glyphicon-ok:before {\n  content: \"\\e013\";\n}\n.glyphicon-remove:before {\n  content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n  content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n  content: \"\\e016\";\n}\n.glyphicon-off:before {\n  content: \"\\e017\";\n}\n.glyphicon-signal:before {\n  content: \"\\e018\";\n}\n.glyphicon-cog:before {\n  content: \"\\e019\";\n}\n.glyphicon-trash:before {\n  content: \"\\e020\";\n}\n.glyphicon-home:before {\n  content: \"\\e021\";\n}\n.glyphicon-file:before {\n  content: \"\\e022\";\n}\n.glyphicon-time:before {\n  content: \"\\e023\";\n}\n.glyphicon-road:before {\n  content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n  content: \"\\e025\";\n}\n.glyphicon-download:before {\n  content: \"\\e026\";\n}\n.glyphicon-upload:before {\n  content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n  content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n  content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n  content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n  content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n  content: \"\\e032\";\n}\n.glyphicon-lock:before {\n  content: \"\\e033\";\n}\n.glyphicon-flag:before {\n  content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n  content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n  content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n  content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n  content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n  content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n  content: \"\\e040\";\n}\n.glyphicon-tag:before {\n  content: \"\\e041\";\n}\n.glyphicon-tags:before {\n  content: \"\\e042\";\n}\n.glyphicon-book:before {\n  content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n  content: \"\\e044\";\n}\n.glyphicon-print:before {\n  content: \"\\e045\";\n}\n.glyphicon-camera:before {\n  content: \"\\e046\";\n}\n.glyphicon-font:before {\n  content: \"\\e047\";\n}\n.glyphicon-bold:before {\n  content: \"\\e048\";\n}\n.glyphicon-italic:before {\n  content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n  content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n  content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n  content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n  content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n  content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n  content: \"\\e055\";\n}\n.glyphicon-list:before {\n  content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n  content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n  content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n  content: \"\\e059\";\n}\n.glyphicon-picture:before {\n  content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n  content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n  content: \"\\e063\";\n}\n.glyphicon-tint:before {\n  content: \"\\e064\";\n}\n.glyphicon-edit:before {\n  content: \"\\e065\";\n}\n.glyphicon-share:before {\n  content: \"\\e066\";\n}\n.glyphicon-check:before {\n  content: \"\\e067\";\n}\n.glyphicon-move:before {\n  content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n  content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n  content: \"\\e070\";\n}\n.glyphicon-backward:before {\n  content: \"\\e071\";\n}\n.glyphicon-play:before {\n  content: \"\\e072\";\n}\n.glyphicon-pause:before {\n  content: \"\\e073\";\n}\n.glyphicon-stop:before {\n  content: \"\\e074\";\n}\n.glyphicon-forward:before {\n  content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n  content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n  content: \"\\e077\";\n}\n.glyphicon-eject:before {\n  content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n  content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n  content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n  content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n  content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n  content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n  content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n  content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n  content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n  content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n  content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n  content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n  content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n  content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n  content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n  content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n  content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n  content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n  content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n  content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n  content: \"\\e101\";\n}\n.glyphicon-gift:before {\n  content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n  content: \"\\e103\";\n}\n.glyphicon-fire:before {\n  content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n  content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n  content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n  content: \"\\e107\";\n}\n.glyphicon-plane:before {\n  content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n  content: \"\\e109\";\n}\n.glyphicon-random:before {\n  content: \"\\e110\";\n}\n.glyphicon-comment:before {\n  content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n  content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n  content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n  content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n  content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n  content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n  content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n  content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n  content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n  content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n  content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n  content: \"\\e122\";\n}\n.glyphicon-bell:before {\n  content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n  content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n  content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n  content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n  content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n  content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n  content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n  content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n  content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n  content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n  content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n  content: \"\\e134\";\n}\n.glyphicon-globe:before {\n  content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n  content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n  content: \"\\e137\";\n}\n.glyphicon-filter:before {\n  content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n  content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n  content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n  content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n  content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n  content: \"\\e143\";\n}\n.glyphicon-link:before {\n  content: \"\\e144\";\n}\n.glyphicon-phone:before {\n  content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n  content: \"\\e146\";\n}\n.glyphicon-usd:before {\n  content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n  content: \"\\e149\";\n}\n.glyphicon-sort:before {\n  content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n  content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n  content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n  content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n  content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n  content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n  content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n  content: \"\\e157\";\n}\n.glyphicon-expand:before {\n  content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n  content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n  content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n  content: \"\\e161\";\n}\n.glyphicon-flash:before {\n  content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n  content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n  content: \"\\e164\";\n}\n.glyphicon-record:before {\n  content: \"\\e165\";\n}\n.glyphicon-save:before {\n  content: \"\\e166\";\n}\n.glyphicon-open:before {\n  content: \"\\e167\";\n}\n.glyphicon-saved:before {\n  content: \"\\e168\";\n}\n.glyphicon-import:before {\n  content: \"\\e169\";\n}\n.glyphicon-export:before {\n  content: \"\\e170\";\n}\n.glyphicon-send:before {\n  content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n  content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n  content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n  content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n  content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n  content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n  content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n  content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n  content: \"\\e179\";\n}\n.glyphicon-header:before {\n  content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n  content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n  content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n  content: \"\\e183\";\n}\n.glyphicon-tower:before {\n  content: \"\\e184\";\n}\n.glyphicon-stats:before {\n  content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n  content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n  content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n  content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n  content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n  content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n  content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n  content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n  content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n  content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n  content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n  content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n  content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n  content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n  content: \"\\e200\";\n}\n.glyphicon-cd:before {\n  content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n  content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n  content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n  content: \"\\e204\";\n}\n.glyphicon-copy:before {\n  content: \"\\e205\";\n}\n.glyphicon-paste:before {\n  content: \"\\e206\";\n}\n.glyphicon-alert:before {\n  content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n  content: \"\\e210\";\n}\n.glyphicon-king:before {\n  content: \"\\e211\";\n}\n.glyphicon-queen:before {\n  content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n  content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n  content: \"\\e214\";\n}\n.glyphicon-knight:before {\n  content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n  content: \"\\e216\";\n}\n.glyphicon-tent:before {\n  content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n  content: \"\\e218\";\n}\n.glyphicon-bed:before {\n  content: \"\\e219\";\n}\n.glyphicon-apple:before {\n  content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n  content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n  content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n  content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n  content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n  content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n  content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n  content: \"\\e227\";\n}\n.glyphicon-btc:before {\n  content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n  content: \"\\e227\";\n}\n.glyphicon-yen:before {\n  content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n  content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n  content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n  content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n  content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n  content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n  content: \"\\e232\";\n}\n.glyphicon-education:before {\n  content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n  content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n  content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n  content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n  content: \"\\e237\";\n}\n.glyphicon-oil:before {\n  content: \"\\e238\";\n}\n.glyphicon-grain:before {\n  content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n  content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n  content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n  content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n  content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n  content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n  content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n  content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n  content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n  content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n  content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n  content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n  content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n  content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n  content: \"\\e253\";\n}\n.glyphicon-console:before {\n  content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n  content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n  content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n  content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n  content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n  content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n  content: \"\\e260\";\n}\n* {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n*:before,\n*:after {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\nhtml {\n  font-size: 10px;\n\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #333;\n  background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\na {\n  color: #337ab7;\n  text-decoration: none;\n}\na:hover,\na:focus {\n  color: #23527c;\n  text-decoration: underline;\n}\na:focus {\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\nfigure {\n  margin: 0;\n}\nimg {\n  vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  display: block;\n  max-width: 100%;\n  height: auto;\n}\n.img-rounded {\n  border-radius: 6px;\n}\n.img-thumbnail {\n  display: inline-block;\n  max-width: 100%;\n  height: auto;\n  padding: 4px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n  -webkit-transition: all .2s ease-in-out;\n       -o-transition: all .2s ease-in-out;\n          transition: all .2s ease-in-out;\n}\n.img-circle {\n  border-radius: 50%;\n}\nhr {\n  margin-top: 20px;\n  margin-bottom: 20px;\n  border: 0;\n  border-top: 1px solid #eee;\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\n[role=\"button\"] {\n  cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n  font-family: inherit;\n  font-weight: 500;\n  line-height: 1.1;\n  color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n  font-weight: normal;\n  line-height: 1;\n  color: #777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n  margin-top: 20px;\n  margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n  font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n  font-size: 75%;\n}\nh1,\n.h1 {\n  font-size: 36px;\n}\nh2,\n.h2 {\n  font-size: 30px;\n}\nh3,\n.h3 {\n  font-size: 24px;\n}\nh4,\n.h4 {\n  font-size: 18px;\n}\nh5,\n.h5 {\n  font-size: 14px;\n}\nh6,\n.h6 {\n  font-size: 12px;\n}\np {\n  margin: 0 0 10px;\n}\n.lead {\n  margin-bottom: 20px;\n  font-size: 16px;\n  font-weight: 300;\n  line-height: 1.4;\n}\n@media (min-width: 768px) {\n  .lead {\n    font-size: 21px;\n  }\n}\nsmall,\n.small {\n  font-size: 85%;\n}\nmark,\n.mark {\n  padding: .2em;\n  background-color: #fcf8e3;\n}\n.text-left {\n  text-align: left;\n}\n.text-right {\n  text-align: right;\n}\n.text-center {\n  text-align: center;\n}\n.text-justify {\n  text-align: justify;\n}\n.text-nowrap {\n  white-space: nowrap;\n}\n.text-lowercase {\n  text-transform: lowercase;\n}\n.text-uppercase {\n  text-transform: uppercase;\n}\n.text-capitalize {\n  text-transform: capitalize;\n}\n.text-muted {\n  color: #777;\n}\n.text-primary {\n  color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n  color: #286090;\n}\n.text-success {\n  color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n  color: #2b542c;\n}\n.text-info {\n  color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n  color: #245269;\n}\n.text-warning {\n  color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n  color: #66512c;\n}\n.text-danger {\n  color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n  color: #843534;\n}\n.bg-primary {\n  color: #fff;\n  background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n  background-color: #286090;\n}\n.bg-success {\n  background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n  background-color: #c1e2b3;\n}\n.bg-info {\n  background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n  background-color: #afd9ee;\n}\n.bg-warning {\n  background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n  background-color: #f7ecb5;\n}\n.bg-danger {\n  background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n  background-color: #e4b9b9;\n}\n.page-header {\n  padding-bottom: 9px;\n  margin: 40px 0 20px;\n  border-bottom: 1px solid #eee;\n}\nul,\nol {\n  margin-top: 0;\n  margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n  margin-bottom: 0;\n}\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n.list-inline {\n  padding-left: 0;\n  margin-left: -5px;\n  list-style: none;\n}\n.list-inline > li {\n  display: inline-block;\n  padding-right: 5px;\n  padding-left: 5px;\n}\ndl {\n  margin-top: 0;\n  margin-bottom: 20px;\n}\ndt,\ndd {\n  line-height: 1.42857143;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .dl-horizontal dt {\n    float: left;\n    width: 160px;\n    overflow: hidden;\n    clear: left;\n    text-align: right;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n  }\n  .dl-horizontal dd {\n    margin-left: 180px;\n  }\n}\nabbr[title],\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted #777;\n}\n.initialism {\n  font-size: 90%;\n  text-transform: uppercase;\n}\nblockquote {\n  padding: 10px 20px;\n  margin: 0 0 20px;\n  font-size: 17.5px;\n  border-left: 5px solid #eee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n  margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n  display: block;\n  font-size: 80%;\n  line-height: 1.42857143;\n  color: #777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n  content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  text-align: right;\n  border-right: 5px solid #eee;\n  border-left: 0;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n  content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n  content: '\\00A0 \\2014';\n}\naddress {\n  margin-bottom: 20px;\n  font-style: normal;\n  line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  border-radius: 4px;\n}\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #fff;\n  background-color: #333;\n  border-radius: 3px;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n}\nkbd kbd {\n  padding: 0;\n  font-size: 100%;\n  font-weight: bold;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\npre {\n  display: block;\n  padding: 9.5px;\n  margin: 0 0 10px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #333;\n  word-break: break-all;\n  word-wrap: break-word;\n  background-color: #f5f5f5;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n}\npre code {\n  padding: 0;\n  font-size: inherit;\n  color: inherit;\n  white-space: pre-wrap;\n  background-color: transparent;\n  border-radius: 0;\n}\n.pre-scrollable {\n  max-height: 340px;\n  overflow-y: scroll;\n}\n.container {\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto;\n}\n@media (min-width: 768px) {\n  .container {\n    width: 750px;\n  }\n}\n@media (min-width: 992px) {\n  .container {\n    width: 970px;\n  }\n}\n@media (min-width: 1200px) {\n  .container {\n    width: 1170px;\n  }\n}\n.container-fluid {\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto;\n}\n.row {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n  position: relative;\n  min-height: 1px;\n  padding-right: 15px;\n  padding-left: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n  float: left;\n}\n.col-xs-12 {\n  width: 100%;\n}\n.col-xs-11 {\n  width: 91.66666667%;\n}\n.col-xs-10 {\n  width: 83.33333333%;\n}\n.col-xs-9 {\n  width: 75%;\n}\n.col-xs-8 {\n  width: 66.66666667%;\n}\n.col-xs-7 {\n  width: 58.33333333%;\n}\n.col-xs-6 {\n  width: 50%;\n}\n.col-xs-5 {\n  width: 41.66666667%;\n}\n.col-xs-4 {\n  width: 33.33333333%;\n}\n.col-xs-3 {\n  width: 25%;\n}\n.col-xs-2 {\n  width: 16.66666667%;\n}\n.col-xs-1 {\n  width: 8.33333333%;\n}\n.col-xs-pull-12 {\n  right: 100%;\n}\n.col-xs-pull-11 {\n  right: 91.66666667%;\n}\n.col-xs-pull-10 {\n  right: 83.33333333%;\n}\n.col-xs-pull-9 {\n  right: 75%;\n}\n.col-xs-pull-8 {\n  right: 66.66666667%;\n}\n.col-xs-pull-7 {\n  right: 58.33333333%;\n}\n.col-xs-pull-6 {\n  right: 50%;\n}\n.col-xs-pull-5 {\n  right: 41.66666667%;\n}\n.col-xs-pull-4 {\n  right: 33.33333333%;\n}\n.col-xs-pull-3 {\n  right: 25%;\n}\n.col-xs-pull-2 {\n  right: 16.66666667%;\n}\n.col-xs-pull-1 {\n  right: 8.33333333%;\n}\n.col-xs-pull-0 {\n  right: auto;\n}\n.col-xs-push-12 {\n  left: 100%;\n}\n.col-xs-push-11 {\n  left: 91.66666667%;\n}\n.col-xs-push-10 {\n  left: 83.33333333%;\n}\n.col-xs-push-9 {\n  left: 75%;\n}\n.col-xs-push-8 {\n  left: 66.66666667%;\n}\n.col-xs-push-7 {\n  left: 58.33333333%;\n}\n.col-xs-push-6 {\n  left: 50%;\n}\n.col-xs-push-5 {\n  left: 41.66666667%;\n}\n.col-xs-push-4 {\n  left: 33.33333333%;\n}\n.col-xs-push-3 {\n  left: 25%;\n}\n.col-xs-push-2 {\n  left: 16.66666667%;\n}\n.col-xs-push-1 {\n  left: 8.33333333%;\n}\n.col-xs-push-0 {\n  left: auto;\n}\n.col-xs-offset-12 {\n  margin-left: 100%;\n}\n.col-xs-offset-11 {\n  margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n  margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n  margin-left: 75%;\n}\n.col-xs-offset-8 {\n  margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n  margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n  margin-left: 50%;\n}\n.col-xs-offset-5 {\n  margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n  margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n  margin-left: 25%;\n}\n.col-xs-offset-2 {\n  margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n  margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n    float: left;\n  }\n  .col-sm-12 {\n    width: 100%;\n  }\n  .col-sm-11 {\n    width: 91.66666667%;\n  }\n  .col-sm-10 {\n    width: 83.33333333%;\n  }\n  .col-sm-9 {\n    width: 75%;\n  }\n  .col-sm-8 {\n    width: 66.66666667%;\n  }\n  .col-sm-7 {\n    width: 58.33333333%;\n  }\n  .col-sm-6 {\n    width: 50%;\n  }\n  .col-sm-5 {\n    width: 41.66666667%;\n  }\n  .col-sm-4 {\n    width: 33.33333333%;\n  }\n  .col-sm-3 {\n    width: 25%;\n  }\n  .col-sm-2 {\n    width: 16.66666667%;\n  }\n  .col-sm-1 {\n    width: 8.33333333%;\n  }\n  .col-sm-pull-12 {\n    right: 100%;\n  }\n  .col-sm-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-sm-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-sm-pull-9 {\n    right: 75%;\n  }\n  .col-sm-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-sm-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-sm-pull-6 {\n    right: 50%;\n  }\n  .col-sm-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-sm-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-sm-pull-3 {\n    right: 25%;\n  }\n  .col-sm-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-sm-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-sm-pull-0 {\n    right: auto;\n  }\n  .col-sm-push-12 {\n    left: 100%;\n  }\n  .col-sm-push-11 {\n    left: 91.66666667%;\n  }\n  .col-sm-push-10 {\n    left: 83.33333333%;\n  }\n  .col-sm-push-9 {\n    left: 75%;\n  }\n  .col-sm-push-8 {\n    left: 66.66666667%;\n  }\n  .col-sm-push-7 {\n    left: 58.33333333%;\n  }\n  .col-sm-push-6 {\n    left: 50%;\n  }\n  .col-sm-push-5 {\n    left: 41.66666667%;\n  }\n  .col-sm-push-4 {\n    left: 33.33333333%;\n  }\n  .col-sm-push-3 {\n    left: 25%;\n  }\n  .col-sm-push-2 {\n    left: 16.66666667%;\n  }\n  .col-sm-push-1 {\n    left: 8.33333333%;\n  }\n  .col-sm-push-0 {\n    left: auto;\n  }\n  .col-sm-offset-12 {\n    margin-left: 100%;\n  }\n  .col-sm-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-sm-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-sm-offset-9 {\n    margin-left: 75%;\n  }\n  .col-sm-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-sm-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-sm-offset-6 {\n    margin-left: 50%;\n  }\n  .col-sm-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-sm-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-sm-offset-3 {\n    margin-left: 25%;\n  }\n  .col-sm-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-sm-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-sm-offset-0 {\n    margin-left: 0;\n  }\n}\n@media (min-width: 992px) {\n  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n    float: left;\n  }\n  .col-md-12 {\n    width: 100%;\n  }\n  .col-md-11 {\n    width: 91.66666667%;\n  }\n  .col-md-10 {\n    width: 83.33333333%;\n  }\n  .col-md-9 {\n    width: 75%;\n  }\n  .col-md-8 {\n    width: 66.66666667%;\n  }\n  .col-md-7 {\n    width: 58.33333333%;\n  }\n  .col-md-6 {\n    width: 50%;\n  }\n  .col-md-5 {\n    width: 41.66666667%;\n  }\n  .col-md-4 {\n    width: 33.33333333%;\n  }\n  .col-md-3 {\n    width: 25%;\n  }\n  .col-md-2 {\n    width: 16.66666667%;\n  }\n  .col-md-1 {\n    width: 8.33333333%;\n  }\n  .col-md-pull-12 {\n    right: 100%;\n  }\n  .col-md-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-md-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-md-pull-9 {\n    right: 75%;\n  }\n  .col-md-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-md-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-md-pull-6 {\n    right: 50%;\n  }\n  .col-md-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-md-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-md-pull-3 {\n    right: 25%;\n  }\n  .col-md-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-md-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-md-pull-0 {\n    right: auto;\n  }\n  .col-md-push-12 {\n    left: 100%;\n  }\n  .col-md-push-11 {\n    left: 91.66666667%;\n  }\n  .col-md-push-10 {\n    left: 83.33333333%;\n  }\n  .col-md-push-9 {\n    left: 75%;\n  }\n  .col-md-push-8 {\n    left: 66.66666667%;\n  }\n  .col-md-push-7 {\n    left: 58.33333333%;\n  }\n  .col-md-push-6 {\n    left: 50%;\n  }\n  .col-md-push-5 {\n    left: 41.66666667%;\n  }\n  .col-md-push-4 {\n    left: 33.33333333%;\n  }\n  .col-md-push-3 {\n    left: 25%;\n  }\n  .col-md-push-2 {\n    left: 16.66666667%;\n  }\n  .col-md-push-1 {\n    left: 8.33333333%;\n  }\n  .col-md-push-0 {\n    left: auto;\n  }\n  .col-md-offset-12 {\n    margin-left: 100%;\n  }\n  .col-md-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-md-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-md-offset-9 {\n    margin-left: 75%;\n  }\n  .col-md-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-md-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-md-offset-6 {\n    margin-left: 50%;\n  }\n  .col-md-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-md-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-md-offset-3 {\n    margin-left: 25%;\n  }\n  .col-md-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-md-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-md-offset-0 {\n    margin-left: 0;\n  }\n}\n@media (min-width: 1200px) {\n  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n    float: left;\n  }\n  .col-lg-12 {\n    width: 100%;\n  }\n  .col-lg-11 {\n    width: 91.66666667%;\n  }\n  .col-lg-10 {\n    width: 83.33333333%;\n  }\n  .col-lg-9 {\n    width: 75%;\n  }\n  .col-lg-8 {\n    width: 66.66666667%;\n  }\n  .col-lg-7 {\n    width: 58.33333333%;\n  }\n  .col-lg-6 {\n    width: 50%;\n  }\n  .col-lg-5 {\n    width: 41.66666667%;\n  }\n  .col-lg-4 {\n    width: 33.33333333%;\n  }\n  .col-lg-3 {\n    width: 25%;\n  }\n  .col-lg-2 {\n    width: 16.66666667%;\n  }\n  .col-lg-1 {\n    width: 8.33333333%;\n  }\n  .col-lg-pull-12 {\n    right: 100%;\n  }\n  .col-lg-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-lg-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-lg-pull-9 {\n    right: 75%;\n  }\n  .col-lg-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-lg-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-lg-pull-6 {\n    right: 50%;\n  }\n  .col-lg-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-lg-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-lg-pull-3 {\n    right: 25%;\n  }\n  .col-lg-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-lg-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-lg-pull-0 {\n    right: auto;\n  }\n  .col-lg-push-12 {\n    left: 100%;\n  }\n  .col-lg-push-11 {\n    left: 91.66666667%;\n  }\n  .col-lg-push-10 {\n    left: 83.33333333%;\n  }\n  .col-lg-push-9 {\n    left: 75%;\n  }\n  .col-lg-push-8 {\n    left: 66.66666667%;\n  }\n  .col-lg-push-7 {\n    left: 58.33333333%;\n  }\n  .col-lg-push-6 {\n    left: 50%;\n  }\n  .col-lg-push-5 {\n    left: 41.66666667%;\n  }\n  .col-lg-push-4 {\n    left: 33.33333333%;\n  }\n  .col-lg-push-3 {\n    left: 25%;\n  }\n  .col-lg-push-2 {\n    left: 16.66666667%;\n  }\n  .col-lg-push-1 {\n    left: 8.33333333%;\n  }\n  .col-lg-push-0 {\n    left: auto;\n  }\n  .col-lg-offset-12 {\n    margin-left: 100%;\n  }\n  .col-lg-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-lg-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-lg-offset-9 {\n    margin-left: 75%;\n  }\n  .col-lg-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-lg-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-lg-offset-6 {\n    margin-left: 50%;\n  }\n  .col-lg-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-lg-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-lg-offset-3 {\n    margin-left: 25%;\n  }\n  .col-lg-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-lg-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-lg-offset-0 {\n    margin-left: 0;\n  }\n}\ntable {\n  background-color: transparent;\n}\ncaption {\n  padding-top: 8px;\n  padding-bottom: 8px;\n  color: #777;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n  padding: 8px;\n  line-height: 1.42857143;\n  vertical-align: top;\n  border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n  vertical-align: bottom;\n  border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n  border-top: 0;\n}\n.table > tbody + tbody {\n  border-top: 2px solid #ddd;\n}\n.table .table {\n  background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n  padding: 5px;\n}\n.table-bordered {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n  border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n  background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n  background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n  position: static;\n  display: table-column;\n  float: none;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n  position: static;\n  display: table-cell;\n  float: none;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n  background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n  background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n  background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n  background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n  background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n  background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n  background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n  background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n  background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n  background-color: #ebcccc;\n}\n.table-responsive {\n  min-height: .01%;\n  overflow-x: auto;\n}\n@media screen and (max-width: 767px) {\n  .table-responsive {\n    width: 100%;\n    margin-bottom: 15px;\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid #ddd;\n  }\n  .table-responsive > .table {\n    margin-bottom: 0;\n  }\n  .table-responsive > .table > thead > tr > th,\n  .table-responsive > .table > tbody > tr > th,\n  .table-responsive > .table > tfoot > tr > th,\n  .table-responsive > .table > thead > tr > td,\n  .table-responsive > .table > tbody > tr > td,\n  .table-responsive > .table > tfoot > tr > td {\n    white-space: nowrap;\n  }\n  .table-responsive > .table-bordered {\n    border: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:first-child,\n  .table-responsive > .table-bordered > tbody > tr > th:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n  .table-responsive > .table-bordered > thead > tr > td:first-child,\n  .table-responsive > .table-bordered > tbody > tr > td:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n    border-left: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:last-child,\n  .table-responsive > .table-bordered > tbody > tr > th:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n  .table-responsive > .table-bordered > thead > tr > td:last-child,\n  .table-responsive > .table-bordered > tbody > tr > td:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n    border-right: 0;\n  }\n  .table-responsive > .table-bordered > tbody > tr:last-child > th,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n  .table-responsive > .table-bordered > tbody > tr:last-child > td,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n    border-bottom: 0;\n  }\n}\nfieldset {\n  min-width: 0;\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: 20px;\n  font-size: 21px;\n  line-height: inherit;\n  color: #333;\n  border: 0;\n  border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n  display: inline-block;\n  max-width: 100%;\n  margin-bottom: 5px;\n  font-weight: bold;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9;\n  line-height: normal;\n}\ninput[type=\"file\"] {\n  display: block;\n}\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\nselect[multiple],\nselect[size] {\n  height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\noutput {\n  display: block;\n  padding-top: 7px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #555;\n}\n.form-control {\n  display: block;\n  width: 100%;\n  height: 34px;\n  padding: 6px 12px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;\n       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);\n          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);\n}\n.form-control::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n  color: #999;\n}\n.form-control::-webkit-input-placeholder {\n  color: #999;\n}\n.form-control::-ms-expand {\n  background-color: transparent;\n  border: 0;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n  background-color: #eee;\n  opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n  cursor: not-allowed;\n}\ntextarea.form-control {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"].form-control,\n  input[type=\"time\"].form-control,\n  input[type=\"datetime-local\"].form-control,\n  input[type=\"month\"].form-control {\n    line-height: 34px;\n  }\n  input[type=\"date\"].input-sm,\n  input[type=\"time\"].input-sm,\n  input[type=\"datetime-local\"].input-sm,\n  input[type=\"month\"].input-sm,\n  .input-group-sm input[type=\"date\"],\n  .input-group-sm input[type=\"time\"],\n  .input-group-sm input[type=\"datetime-local\"],\n  .input-group-sm input[type=\"month\"] {\n    line-height: 30px;\n  }\n  input[type=\"date\"].input-lg,\n  input[type=\"time\"].input-lg,\n  input[type=\"datetime-local\"].input-lg,\n  input[type=\"month\"].input-lg,\n  .input-group-lg input[type=\"date\"],\n  .input-group-lg input[type=\"time\"],\n  .input-group-lg input[type=\"datetime-local\"],\n  .input-group-lg input[type=\"month\"] {\n    line-height: 46px;\n  }\n}\n.form-group {\n  margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n  min-height: 20px;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-top: 4px \\9;\n  margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  vertical-align: middle;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n  cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n  cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n  cursor: not-allowed;\n}\n.form-control-static {\n  min-height: 34px;\n  padding-top: 7px;\n  padding-bottom: 7px;\n  margin-bottom: 0;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n  padding-right: 0;\n  padding-left: 0;\n}\n.input-sm {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.input-sm {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n  height: auto;\n}\n.form-group-sm .form-control {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.form-group-sm select.form-control {\n  height: 30px;\n  line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n  height: auto;\n}\n.form-group-sm .form-control-static {\n  height: 30px;\n  min-height: 32px;\n  padding: 6px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.input-lg {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\nselect.input-lg {\n  height: 46px;\n  line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n  height: auto;\n}\n.form-group-lg .form-control {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\n.form-group-lg select.form-control {\n  height: 46px;\n  line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n  height: auto;\n}\n.form-group-lg .form-control-static {\n  height: 46px;\n  min-height: 38px;\n  padding: 11px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n}\n.has-feedback {\n  position: relative;\n}\n.has-feedback .form-control {\n  padding-right: 42.5px;\n}\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2;\n  display: block;\n  width: 34px;\n  height: 34px;\n  line-height: 34px;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: 46px;\n  height: 46px;\n  line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: 30px;\n  height: 30px;\n  line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n  color: #3c763d;\n}\n.has-success .form-control {\n  border-color: #3c763d;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-success .form-control:focus {\n  border-color: #2b542c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #3c763d;\n}\n.has-success .form-control-feedback {\n  color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n  color: #8a6d3b;\n}\n.has-warning .form-control {\n  border-color: #8a6d3b;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-warning .form-control:focus {\n  border-color: #66512c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #8a6d3b;\n}\n.has-warning .form-control-feedback {\n  color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n  color: #a94442;\n}\n.has-error .form-control {\n  border-color: #a94442;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-error .form-control:focus {\n  border-color: #843534;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #a94442;\n}\n.has-error .form-control-feedback {\n  color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n  top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n  top: 0;\n}\n.help-block {\n  display: block;\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: #737373;\n}\n@media (min-width: 768px) {\n  .form-inline .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .form-inline .form-control-static {\n    display: inline-block;\n  }\n  .form-inline .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .form-inline .input-group .input-group-addon,\n  .form-inline .input-group .input-group-btn,\n  .form-inline .input-group .form-control {\n    width: auto;\n  }\n  .form-inline .input-group > .form-control {\n    width: 100%;\n  }\n  .form-inline .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio,\n  .form-inline .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio label,\n  .form-inline .checkbox label {\n    padding-left: 0;\n  }\n  .form-inline .radio input[type=\"radio\"],\n  .form-inline .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .form-inline .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n  padding-top: 7px;\n  margin-top: 0;\n  margin-bottom: 0;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n  min-height: 27px;\n}\n.form-horizontal .form-group {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .control-label {\n    padding-top: 7px;\n    margin-bottom: 0;\n    text-align: right;\n  }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n  right: 15px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-lg .control-label {\n    padding-top: 11px;\n    font-size: 18px;\n  }\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-sm .control-label {\n    padding-top: 6px;\n    font-size: 12px;\n  }\n}\n.btn {\n  display: inline-block;\n  padding: 6px 12px;\n  margin-bottom: 0;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1.42857143;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: middle;\n  -ms-touch-action: manipulation;\n      touch-action: manipulation;\n  cursor: pointer;\n  -webkit-user-select: none;\n     -moz-user-select: none;\n      -ms-user-select: none;\n          user-select: none;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n/*.btn:hover,*/\n.btn:focus,\n.btn.focus {\n  color: #333;\n  text-decoration: none;\n}\n.btn:active,\n.btn.active {\n  background-image: none;\n  outline: 0;\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n  cursor: not-allowed;\n  filter: alpha(opacity=65);\n  -webkit-box-shadow: none;\n          box-shadow: none;\n  opacity: .65;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n  pointer-events: none;\n}\n.btn-default {\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\n.btn-default:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  background-image: none;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default .badge {\n  color: #fff;\n  background-color: #333;\n}\n.btn-primary {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n  color: #fff;\n  background-color: #286090;\n  border-color: #122b40;\n}\n.btn-primary:hover {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n  color: #fff;\n  background-color: #204d74;\n  border-color: #122b40;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  background-image: none;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.btn-success {\n  color: #fff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #255625;\n}\n.btn-success:hover {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n  color: #fff;\n  background-color: #398439;\n  border-color: #255625;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  background-image: none;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success .badge {\n  color: #5cb85c;\n  background-color: #fff;\n}\n.btn-info {\n  color: #fff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #1b6d85;\n}\n.btn-info:hover {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n  color: #fff;\n  background-color: #269abc;\n  border-color: #1b6d85;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  background-image: none;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info .badge {\n  color: #5bc0de;\n  background-color: #fff;\n}\n.btn-warning {\n  color: #fff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #985f0d;\n}\n.btn-warning:hover {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n  color: #fff;\n  background-color: #d58512;\n  border-color: #985f0d;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  background-image: none;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning .badge {\n  color: #f0ad4e;\n  background-color: #fff;\n}\n.btn-danger {\n  color: #fff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #761c19;\n}\n.btn-danger:hover {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n  color: #fff;\n  background-color: #ac2925;\n  border-color: #761c19;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  background-image: none;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger .badge {\n  color: #d9534f;\n  background-color: #fff;\n}\n.btn-link {\n  font-weight: normal;\n  color: #337ab7;\n  border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n  background-color: transparent;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n  border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n  color: #23527c;\n  text-decoration: underline;\n  background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n  color: #777;\n  text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n  padding: 1px 5px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.btn-block {\n  display: block;\n  width: 100%;\n}\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n  width: 100%;\n}\n.fade {\n  opacity: 0;\n  -webkit-transition: opacity .15s linear;\n       -o-transition: opacity .15s linear;\n          transition: opacity .15s linear;\n}\n.fade.in {\n  opacity: 1;\n}\n.collapse {\n  display: none;\n}\n.collapse.in {\n  display: block;\n}\ntr.collapse.in {\n  display: table-row;\n}\ntbody.collapse.in {\n  display: table-row-group;\n}\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  -webkit-transition-timing-function: ease;\n       -o-transition-timing-function: ease;\n          transition-timing-function: ease;\n  -webkit-transition-duration: .35s;\n       -o-transition-duration: .35s;\n          transition-duration: .35s;\n  -webkit-transition-property: height, visibility;\n       -o-transition-property: height, visibility;\n          transition-property: height, visibility;\n}\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top: 4px dashed;\n  border-top: 4px solid \\9;\n  border-right: 4px solid transparent;\n  border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n  position: relative;\n}\n.dropdown-toggle:focus {\n  outline: 0;\n}\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  display: none;\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0;\n  font-size: 14px;\n  text-align: left;\n  list-style: none;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, .15);\n  border-radius: 4px;\n  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);\n          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);\n}\n.dropdown-menu.pull-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu .divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n  display: block;\n  padding: 3px 20px;\n  clear: both;\n  font-weight: normal;\n  line-height: 1.42857143;\n  color: #333;\n  white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  color: #262626;\n  text-decoration: none;\n  background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  color: #fff;\n  text-decoration: none;\n  background-color: #337ab7;\n  outline: 0;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  color: #777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  text-decoration: none;\n  cursor: not-allowed;\n  background-color: transparent;\n  background-image: none;\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n}\n.open > .dropdown-menu {\n  display: block;\n}\n.open > a {\n  outline: 0;\n}\n.dropdown-menu-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu-left {\n  right: auto;\n  left: 0;\n}\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: 12px;\n  line-height: 1.42857143;\n  color: #777;\n  white-space: nowrap;\n}\n.dropdown-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 990;\n}\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n  content: \"\";\n  border-top: 0;\n  border-bottom: 4px dashed;\n  border-bottom: 4px solid \\9;\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n  top: auto;\n  bottom: 100%;\n  margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n  .navbar-right .dropdown-menu {\n    right: 0;\n    left: auto;\n  }\n  .navbar-right .dropdown-menu-left {\n    right: auto;\n    left: 0;\n  }\n}\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n  position: relative;\n  float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n  z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n  margin-left: -1px;\n}\n.btn-toolbar {\n  margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n  float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n  margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n.btn-group > .btn:first-child {\n  margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n  padding-right: 8px;\n  padding-left: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-right: 12px;\n  padding-left: 12px;\n}\n.btn-group.open .dropdown-toggle {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.btn .caret {\n  margin-left: 0;\n}\n.btn-lg .caret {\n  border-width: 5px 5px 0;\n  border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n  border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n  float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n  margin-top: -1px;\n  margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n  border-top-left-radius: 4px;\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n  display: table-cell;\n  float: none;\n  width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n  width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n  left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n  position: absolute;\n  clip: rect(0, 0, 0, 0);\n  pointer-events: none;\n}\n.input-group {\n  position: relative;\n  display: table;\n  border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n  float: none;\n  padding-right: 0;\n  padding-left: 0;\n}\n.input-group .form-control {\n  position: relative;\n  z-index: 2;\n  float: left;\n  width: 100%;\n  margin-bottom: 0;\n}\n.input-group .form-control:focus {\n  z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n  border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n  height: 46px;\n  line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle;\n}\n.input-group-addon {\n  padding: 6px 12px;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1;\n  color: #555;\n  text-align: center;\n  background-color: #eee;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n}\n.input-group-addon.input-sm {\n  padding: 5px 10px;\n  font-size: 12px;\n  border-radius: 3px;\n}\n.input-group-addon.input-lg {\n  padding: 10px 16px;\n  font-size: 18px;\n  border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n  margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n.input-group-btn {\n  position: relative;\n  font-size: 0;\n  white-space: nowrap;\n}\n.input-group-btn > .btn {\n  position: relative;\n}\n.input-group-btn > .btn + .btn {\n  margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n  z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n  margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n  z-index: 2;\n  margin-left: -1px;\n}\n.nav {\n  padding-left: 0;\n  margin-bottom: 0;\n  list-style: none;\n}\n.nav > li {\n  position: relative;\n  display: block;\n}\n.nav > li > a {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n  text-decoration: none;\n  background-color: #eee;\n}\n.nav > li.disabled > a {\n  color: #777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n  color: #777;\n  text-decoration: none;\n  cursor: not-allowed;\n  background-color: transparent;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n  background-color: #eee;\n  border-color: #337ab7;\n}\n.nav .nav-divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.nav > li > a > img {\n  max-width: none;\n}\n.nav-tabs {\n  border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n  float: left;\n  margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n  margin-right: 2px;\n  line-height: 1.42857143;\n  border: 1px solid transparent;\n  border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n  border-color: #eee #eee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n  color: #555;\n  cursor: default;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-bottom-color: transparent;\n}\n.nav-tabs.nav-justified {\n  width: 100%;\n  border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n  float: none;\n}\n.nav-tabs.nav-justified > li > a {\n  margin-bottom: 5px;\n  text-align: center;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-tabs.nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs.nav-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .nav-tabs.nav-justified > .active > a,\n  .nav-tabs.nav-justified > .active > a:hover,\n  .nav-tabs.nav-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.nav-pills > li {\n  float: left;\n}\n.nav-pills > li > a {\n  border-radius: 4px;\n}\n.nav-pills > li + li {\n  margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n  color: #fff;\n  background-color: #337ab7;\n}\n.nav-stacked > li {\n  float: none;\n}\n.nav-stacked > li + li {\n  margin-top: 2px;\n  margin-left: 0;\n}\n.nav-justified {\n  width: 100%;\n}\n.nav-justified > li {\n  float: none;\n}\n.nav-justified > li > a {\n  margin-bottom: 5px;\n  text-align: center;\n}\n.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs-justified {\n  border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .nav-tabs-justified > .active > a,\n  .nav-tabs-justified > .active > a:hover,\n  .nav-tabs-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.tab-content > .tab-pane {\n  display: none;\n}\n.tab-content > .active {\n  display: block;\n}\n.nav-tabs .dropdown-menu {\n  margin-top: -1px;\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.navbar {\n  position: relative;\n  min-height: 50px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n  .navbar {\n    border-radius: 4px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-header {\n    float: left;\n  }\n}\n.navbar-collapse {\n  padding-right: 15px;\n  padding-left: 15px;\n  overflow-x: visible;\n  -webkit-overflow-scrolling: touch;\n  border-top: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);\n}\n.navbar-collapse.in {\n  overflow-y: auto;\n}\n@media (min-width: 768px) {\n  .navbar-collapse {\n    width: auto;\n    border-top: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n  .navbar-collapse.collapse {\n    display: block !important;\n    height: auto !important;\n    padding-bottom: 0;\n    overflow: visible !important;\n  }\n  .navbar-collapse.in {\n    overflow-y: visible;\n  }\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-static-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    padding-right: 0;\n    padding-left: 0;\n  }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n  max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    max-height: 200px;\n  }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n@media (min-width: 768px) {\n  .container > .navbar-header,\n  .container-fluid > .navbar-header,\n  .container > .navbar-collapse,\n  .container-fluid > .navbar-collapse {\n    margin-right: 0;\n    margin-left: 0;\n  }\n}\n.navbar-static-top {\n  z-index: 1000;\n  border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n  .navbar-static-top {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 1030;\n}\n@media (min-width: 768px) {\n  .navbar-fixed-top,\n  .navbar-fixed-bottom {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0;\n  border-width: 1px 0 0;\n}\n.navbar-brand {\n  float: left;\n  height: 50px;\n  padding: 15px 15px;\n  font-size: 18px;\n  line-height: 20px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n  text-decoration: none;\n}\n.navbar-brand > img {\n  display: block;\n}\n@media (min-width: 768px) {\n  .navbar > .container .navbar-brand,\n  .navbar > .container-fluid .navbar-brand {\n    margin-left: -15px;\n  }\n}\n.navbar-toggle {\n  position: relative;\n  float: right;\n  padding: 9px 10px;\n  margin-top: 8px;\n  margin-right: 15px;\n  margin-bottom: 8px;\n  background-color: transparent;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.navbar-toggle:focus {\n  outline: 0;\n}\n.navbar-toggle .icon-bar {\n  display: block;\n  width: 22px;\n  height: 2px;\n  border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n  margin-top: 4px;\n}\n@media (min-width: 768px) {\n  .navbar-toggle {\n    display: none;\n  }\n}\n.navbar-nav {\n  margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  line-height: 20px;\n}\n@media (max-width: 767px) {\n  .navbar-nav .open .dropdown-menu {\n    position: static;\n    float: none;\n    width: auto;\n    margin-top: 0;\n    background-color: transparent;\n    border: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n  .navbar-nav .open .dropdown-menu > li > a,\n  .navbar-nav .open .dropdown-menu .dropdown-header {\n    padding: 5px 15px 5px 25px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a {\n    line-height: 20px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-nav .open .dropdown-menu > li > a:focus {\n    background-image: none;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-nav {\n    float: left;\n    margin: 0;\n  }\n  .navbar-nav > li {\n    float: left;\n  }\n  .navbar-nav > li > a {\n    padding-top: 15px;\n    padding-bottom: 15px;\n  }\n}\n.navbar-form {\n  padding: 10px 15px;\n  margin-top: 8px;\n  margin-right: -15px;\n  margin-bottom: 8px;\n  margin-left: -15px;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);\n}\n@media (min-width: 768px) {\n  .navbar-form .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control-static {\n    display: inline-block;\n  }\n  .navbar-form .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .navbar-form .input-group .input-group-addon,\n  .navbar-form .input-group .input-group-btn,\n  .navbar-form .input-group .form-control {\n    width: auto;\n  }\n  .navbar-form .input-group > .form-control {\n    width: 100%;\n  }\n  .navbar-form .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio,\n  .navbar-form .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio label,\n  .navbar-form .checkbox label {\n    padding-left: 0;\n  }\n  .navbar-form .radio input[type=\"radio\"],\n  .navbar-form .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .navbar-form .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n@media (max-width: 767px) {\n  .navbar-form .form-group {\n    margin-bottom: 5px;\n  }\n  .navbar-form .form-group:last-child {\n    margin-bottom: 0;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-form {\n    width: auto;\n    padding-top: 0;\n    padding-bottom: 0;\n    margin-right: 0;\n    margin-left: 0;\n    border: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n}\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  border-top-left-radius: 4px;\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.navbar-btn {\n  margin-top: 8px;\n  margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n  margin-top: 14px;\n  margin-bottom: 14px;\n}\n.navbar-text {\n  margin-top: 15px;\n  margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n  .navbar-text {\n    float: left;\n    margin-right: 15px;\n    margin-left: 15px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-left {\n    float: left !important;\n  }\n  .navbar-right {\n    float: right !important;\n    margin-right: -15px;\n  }\n  .navbar-right ~ .navbar-right {\n    margin-right: 0;\n  }\n}\n.navbar-default {\n  background-color: #f8f8f8;\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n  color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n  color: #5e5e5e;\n  background-color: transparent;\n}\n.navbar-default .navbar-text {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n  color: #333;\n  background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n  color: #ccc;\n  background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n  border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n  background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n  background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n@media (max-width: 767px) {\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n    color: #777;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #333;\n    background-color: transparent;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #555;\n    background-color: #e7e7e7;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #ccc;\n    background-color: transparent;\n  }\n}\n.navbar-default .navbar-link {\n  color: #777;\n}\n.navbar-default .navbar-link:hover {\n  color: #333;\n}\n.navbar-default .btn-link {\n  color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n  color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n  color: #ccc;\n}\n.navbar-inverse {\n  background-color: #222;\n  border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n  color: #444;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n  border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n  background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n  background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n  border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n@media (max-width: 767px) {\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n    border-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n    color: #9d9d9d;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #fff;\n    background-color: transparent;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #444;\n    background-color: transparent;\n  }\n}\n.navbar-inverse .navbar-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n  color: #fff;\n}\n.navbar-inverse .btn-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n  color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n  color: #444;\n}\n.breadcrumb {\n  padding: 8px 15px;\n  margin-bottom: 20px;\n  list-style: none;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n}\n.breadcrumb > li {\n  display: inline-block;\n}\n.breadcrumb > li + li:before {\n  padding: 0 5px;\n  color: #ccc;\n  content: \"/\\00a0\";\n}\n.breadcrumb > .active {\n  color: #777;\n}\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: 20px 0;\n  border-radius: 4px;\n}\n.pagination > li {\n  display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n  position: relative;\n  float: left;\n  padding: 6px 12px;\n  margin-left: -1px;\n  line-height: 1.42857143;\n  color: #337ab7;\n  text-decoration: none;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n  margin-left: 0;\n  border-top-left-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n  z-index: 2;\n  color: #23527c;\n  background-color: #eee;\n  border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n  z-index: 3;\n  color: #fff;\n  cursor: default;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #fff;\n  border-color: #ddd;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n  border-top-left-radius: 6px;\n  border-bottom-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n  border-top-right-radius: 6px;\n  border-bottom-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n  border-top-left-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n  border-top-right-radius: 3px;\n  border-bottom-right-radius: 3px;\n}\n.pager {\n  padding-left: 0;\n  margin: 20px 0;\n  text-align: center;\n  list-style: none;\n}\n.pager li {\n  display: inline;\n}\n.pager li > a,\n.pager li > span {\n  display: inline-block;\n  padding: 5px 14px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n  text-decoration: none;\n  background-color: #eee;\n}\n.pager .next > a,\n.pager .next > span {\n  float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n  float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #fff;\n}\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.label:empty {\n  display: none;\n}\n.btn .label {\n  position: relative;\n  top: -1px;\n}\n.label-default {\n  background-color: #777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n  background-color: #5e5e5e;\n}\n.label-primary {\n  background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n  background-color: #286090;\n}\n.label-success {\n  background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n  background-color: #449d44;\n}\n.label-info {\n  background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n  background-color: #31b0d5;\n}\n.label-warning {\n  background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n  background-color: #ec971f;\n}\n.label-danger {\n  background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n  background-color: #c9302c;\n}\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: 12px;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: middle;\n  background-color: #777;\n  border-radius: 10px;\n}\n.badge:empty {\n  display: none;\n}\n.btn .badge {\n  position: relative;\n  top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n  top: 0;\n  padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.list-group-item > .badge {\n  float: right;\n}\n.list-group-item > .badge + .badge {\n  margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n  margin-left: 3px;\n}\n.jumbotron {\n  padding-top: 30px;\n  padding-bottom: 30px;\n  margin-bottom: 30px;\n  color: inherit;\n  background-color: #eee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n  color: inherit;\n}\n.jumbotron p {\n  margin-bottom: 15px;\n  font-size: 21px;\n  font-weight: 200;\n}\n.jumbotron > hr {\n  border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n  padding-right: 15px;\n  padding-left: 15px;\n  border-radius: 6px;\n}\n.jumbotron .container {\n  max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n  .jumbotron {\n    padding-top: 48px;\n    padding-bottom: 48px;\n  }\n  .container .jumbotron,\n  .container-fluid .jumbotron {\n    padding-right: 60px;\n    padding-left: 60px;\n  }\n  .jumbotron h1,\n  .jumbotron .h1 {\n    font-size: 63px;\n  }\n}\n.thumbnail {\n  display: block;\n  padding: 4px;\n  margin-bottom: 20px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n  -webkit-transition: border .2s ease-in-out;\n       -o-transition: border .2s ease-in-out;\n          transition: border .2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n  margin-right: auto;\n  margin-left: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n  border-color: #337ab7;\n}\n.thumbnail .caption {\n  padding: 9px;\n  color: #333;\n}\n.alert {\n  padding: 15px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.alert h4 {\n  margin-top: 0;\n  color: inherit;\n}\n.alert .alert-link {\n  font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n  margin-bottom: 0;\n}\n.alert > p + p {\n  margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n  padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n  position: relative;\n  top: -2px;\n  right: -21px;\n  color: inherit;\n}\n.alert-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.alert-success hr {\n  border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n  color: #2b542c;\n}\n.alert-info {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.alert-info hr {\n  border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n  color: #245269;\n}\n.alert-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.alert-warning hr {\n  border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n  color: #66512c;\n}\n.alert-danger {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.alert-danger hr {\n  border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n  color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@-o-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n.progress {\n  height: 20px;\n  margin-bottom: 20px;\n  overflow: hidden;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);\n          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);\n}\n.progress-bar {\n  float: left;\n  width: 0;\n  height: 100%;\n  font-size: 12px;\n  line-height: 20px;\n  color: #fff;\n  text-align: center;\n  background-color: #337ab7;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);\n  -webkit-transition: width .6s ease;\n       -o-transition: width .6s ease;\n          transition: width .6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  -webkit-background-size: 40px 40px;\n          background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n  -webkit-animation: progress-bar-stripes 2s linear infinite;\n       -o-animation: progress-bar-stripes 2s linear infinite;\n          animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n  background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n  background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n  background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n  background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.media {\n  margin-top: 15px;\n}\n.media:first-child {\n  margin-top: 0;\n}\n.media,\n.media-body {\n  overflow: hidden;\n  zoom: 1;\n}\n.media-body {\n  width: 10000px;\n}\n.media-object {\n  display: block;\n}\n.media-object.img-thumbnail {\n  max-width: none;\n}\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n.media-middle {\n  vertical-align: middle;\n}\n.media-bottom {\n  vertical-align: bottom;\n}\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n.list-group {\n  padding-left: 0;\n  margin-bottom: 20px;\n}\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n  border-top-left-radius: 4px;\n  border-top-right-radius: 4px;\n}\n.list-group-item:last-child {\n  margin-bottom: 0;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\na.list-group-item,\nbutton.list-group-item {\n  color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n  color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n  color: #555;\n  text-decoration: none;\n  background-color: #f5f5f5;\n}\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #eee;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n  color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n  color: #777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  z-index: 2;\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n  color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n  color: #c7ddef;\n}\n.list-group-item-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n  color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n  color: #3c763d;\n  background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n  color: #fff;\n  background-color: #3c763d;\n  border-color: #3c763d;\n}\n.list-group-item-info {\n  color: #31708f;\n  background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n  color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n  color: #31708f;\n  background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n  color: #fff;\n  background-color: #31708f;\n  border-color: #31708f;\n}\n.list-group-item-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n  color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n  color: #8a6d3b;\n  background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n  color: #fff;\n  background-color: #8a6d3b;\n  border-color: #8a6d3b;\n}\n.list-group-item-danger {\n  color: #a94442;\n  background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n  color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n  color: #a94442;\n  background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n  color: #fff;\n  background-color: #a94442;\n  border-color: #a94442;\n}\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n.panel {\n  margin-bottom: 20px;\n  background-color: #fff;\n  border: 1px solid transparent;\n  border-radius: 4px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);\n}\n.panel-body {\n  padding: 15px;\n}\n.panel-heading {\n  padding: 10px 15px;\n  border-bottom: 1px solid transparent;\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n  color: inherit;\n}\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: 16px;\n  color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n  color: inherit;\n}\n.panel-footer {\n  padding: 10px 15px;\n  background-color: #f5f5f5;\n  border-top: 1px solid #ddd;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n  margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n  border-width: 1px 0;\n  border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n  border-top: 0;\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n  border-bottom: 0;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n  border-top-width: 0;\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n  margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n  padding-right: 15px;\n  padding-left: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n  border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n  border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n  border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n  border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n  border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n  border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n  border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n  border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n  border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n  border-bottom: 0;\n}\n.panel > .table-responsive {\n  margin-bottom: 0;\n  border: 0;\n}\n.panel-group {\n  margin-bottom: 20px;\n}\n.panel-group .panel {\n  margin-bottom: 0;\n  border-radius: 4px;\n}\n.panel-group .panel + .panel {\n  margin-top: 5px;\n}\n.panel-group .panel-heading {\n  border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n  border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n  border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n  border-bottom: 1px solid #ddd;\n}\n.panel-default {\n  border-color: #ddd;\n}\n.panel-default > .panel-heading {\n  color: #333;\n  background-color: #f5f5f5;\n  border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n  color: #f5f5f5;\n  background-color: #333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ddd;\n}\n.panel-primary {\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #337ab7;\n}\n.panel-success {\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n  color: #dff0d8;\n  background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #d6e9c6;\n}\n.panel-info {\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n  color: #d9edf7;\n  background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #bce8f1;\n}\n.panel-warning {\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n  color: #fcf8e3;\n  background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #faebcc;\n}\n.panel-danger {\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n  color: #f2dede;\n  background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  border: 0;\n}\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border: 1px solid #e3e3e3;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);\n}\n.well blockquote {\n  border-color: #ddd;\n  border-color: rgba(0, 0, 0, .15);\n}\n.well-lg {\n  padding: 24px;\n  border-radius: 6px;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: 3px;\n}\n.close {\n  float: right;\n  font-size: 21px;\n  font-weight: bold;\n  line-height: 1;\n  color: #000;\n  text-shadow: 0 1px 0 #fff;\n  filter: alpha(opacity=20);\n  opacity: .2;\n}\n.close:hover,\n.close:focus {\n  color: #000;\n  text-decoration: none;\n  cursor: pointer;\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\nbutton.close {\n  -webkit-appearance: none;\n  padding: 0;\n  cursor: pointer;\n  background: transparent;\n  border: 0;\n}\n.modal-open {\n  overflow: hidden;\n}\n.modal {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1050;\n  display: none;\n  overflow: hidden;\n  -webkit-overflow-scrolling: touch;\n  outline: 0;\n}\n.modal.fade .modal-dialog {\n  -webkit-transition: -webkit-transform .3s ease-out;\n       -o-transition:      -o-transform .3s ease-out;\n          transition:         transform .3s ease-out;\n  -webkit-transform: translate(0, -25%);\n      -ms-transform: translate(0, -25%);\n       -o-transform: translate(0, -25%);\n          transform: translate(0, -25%);\n}\n.modal.in .modal-dialog {\n  -webkit-transform: translate(0, 0);\n      -ms-transform: translate(0, 0);\n       -o-transform: translate(0, 0);\n          transform: translate(0, 0);\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n.modal-content {\n  position: relative;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #999;\n  border: 1px solid rgba(0, 0, 0, .2);\n  border-radius: 6px;\n  outline: 0;\n  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);\n          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);\n}\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1040;\n  background-color: #000;\n}\n.modal-backdrop.fade {\n  filter: alpha(opacity=0);\n  opacity: 0;\n}\n.modal-backdrop.in {\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\n.modal-header {\n  padding: 15px;\n  border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n  margin-top: -2px;\n}\n.modal-title {\n  margin: 0;\n  line-height: 1.42857143;\n}\n.modal-body {\n  position: relative;\n  padding: 15px;\n}\n.modal-footer {\n  padding: 15px;\n  text-align: right;\n  border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n  margin-bottom: 0;\n  margin-left: 5px;\n}\n.modal-footer .btn-group .btn + .btn {\n  margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n  margin-left: 0;\n}\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n@media (min-width: 768px) {\n  .modal-dialog {\n    width: 600px;\n    margin: 30px auto;\n  }\n  .modal-content {\n    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);\n            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);\n  }\n  .modal-sm {\n    width: 300px;\n  }\n}\n@media (min-width: 992px) {\n  .modal-lg {\n    width: 900px;\n  }\n}\n.tooltip {\n  position: absolute;\n  z-index: 1070;\n  display: block;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 12px;\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  letter-spacing: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  white-space: normal;\n  filter: alpha(opacity=0);\n  opacity: 0;\n\n  line-break: auto;\n}\n.tooltip.in {\n  filter: alpha(opacity=90);\n  opacity: .9;\n}\n.tooltip.top {\n  padding: 5px 0;\n  margin-top: -3px;\n}\n.tooltip.right {\n  padding: 0 5px;\n  margin-left: 3px;\n}\n.tooltip.bottom {\n  padding: 5px 0;\n  margin-top: 3px;\n}\n.tooltip.left {\n  padding: 0 5px;\n  margin-left: -3px;\n}\n.tooltip-inner {\n  max-width: 200px;\n  padding: 3px 8px;\n  color: #fff;\n  text-align: center;\n  background-color: #000;\n  border-radius: 4px;\n}\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n  bottom: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n  right: 5px;\n  bottom: 0;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n  bottom: 0;\n  left: 5px;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n  top: 50%;\n  left: 0;\n  margin-top: -5px;\n  border-width: 5px 5px 5px 0;\n  border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n  top: 50%;\n  right: 0;\n  margin-top: -5px;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n  top: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n  top: 0;\n  right: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n  top: 0;\n  left: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1060;\n  display: none;\n  max-width: 276px;\n  padding: 1px;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 14px;\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  letter-spacing: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  white-space: normal;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, .2);\n  border-radius: 6px;\n  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);\n          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);\n\n  line-break: auto;\n}\n.popover.top {\n  margin-top: -10px;\n}\n.popover.right {\n  margin-left: 10px;\n}\n.popover.bottom {\n  margin-top: 10px;\n}\n.popover.left {\n  margin-left: -10px;\n}\n.popover-title {\n  padding: 8px 14px;\n  margin: 0;\n  font-size: 14px;\n  background-color: #f7f7f7;\n  border-bottom: 1px solid #ebebeb;\n  border-radius: 5px 5px 0 0;\n}\n.popover-content {\n  padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n  position: absolute;\n  display: block;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.popover > .arrow {\n  border-width: 11px;\n}\n.popover > .arrow:after {\n  content: \"\";\n  border-width: 10px;\n}\n.popover.top > .arrow {\n  bottom: -11px;\n  left: 50%;\n  margin-left: -11px;\n  border-top-color: #999;\n  border-top-color: rgba(0, 0, 0, .25);\n  border-bottom-width: 0;\n}\n.popover.top > .arrow:after {\n  bottom: 1px;\n  margin-left: -10px;\n  content: \" \";\n  border-top-color: #fff;\n  border-bottom-width: 0;\n}\n.popover.right > .arrow {\n  top: 50%;\n  left: -11px;\n  margin-top: -11px;\n  border-right-color: #999;\n  border-right-color: rgba(0, 0, 0, .25);\n  border-left-width: 0;\n}\n.popover.right > .arrow:after {\n  bottom: -10px;\n  left: 1px;\n  content: \" \";\n  border-right-color: #fff;\n  border-left-width: 0;\n}\n.popover.bottom > .arrow {\n  top: -11px;\n  left: 50%;\n  margin-left: -11px;\n  border-top-width: 0;\n  border-bottom-color: #999;\n  border-bottom-color: rgba(0, 0, 0, .25);\n}\n.popover.bottom > .arrow:after {\n  top: 1px;\n  margin-left: -10px;\n  content: \" \";\n  border-top-width: 0;\n  border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n  top: 50%;\n  right: -11px;\n  margin-top: -11px;\n  border-right-width: 0;\n  border-left-color: #999;\n  border-left-color: rgba(0, 0, 0, .25);\n}\n.popover.left > .arrow:after {\n  right: 1px;\n  bottom: -10px;\n  content: \" \";\n  border-right-width: 0;\n  border-left-color: #fff;\n}\n.carousel {\n  position: relative;\n}\n.carousel-inner {\n  position: relative;\n  width: 100%;\n  overflow: hidden;\n}\n.carousel-inner > .item {\n  position: relative;\n  display: none;\n  -webkit-transition: .6s ease-in-out left;\n       -o-transition: .6s ease-in-out left;\n          transition: .6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n  .carousel-inner > .item {\n    -webkit-transition: -webkit-transform .6s ease-in-out;\n         -o-transition:      -o-transform .6s ease-in-out;\n            transition:         transform .6s ease-in-out;\n\n    -webkit-backface-visibility: hidden;\n            backface-visibility: hidden;\n    -webkit-perspective: 1000px;\n            perspective: 1000px;\n  }\n  .carousel-inner > .item.next,\n  .carousel-inner > .item.active.right {\n    left: 0;\n    -webkit-transform: translate3d(100%, 0, 0);\n            transform: translate3d(100%, 0, 0);\n  }\n  .carousel-inner > .item.prev,\n  .carousel-inner > .item.active.left {\n    left: 0;\n    -webkit-transform: translate3d(-100%, 0, 0);\n            transform: translate3d(-100%, 0, 0);\n  }\n  .carousel-inner > .item.next.left,\n  .carousel-inner > .item.prev.right,\n  .carousel-inner > .item.active {\n    left: 0;\n    -webkit-transform: translate3d(0, 0, 0);\n            transform: translate3d(0, 0, 0);\n  }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  display: block;\n}\n.carousel-inner > .active {\n  left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  position: absolute;\n  top: 0;\n  width: 100%;\n}\n.carousel-inner > .next {\n  left: 100%;\n}\n.carousel-inner > .prev {\n  left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n  left: 0;\n}\n.carousel-inner > .active.left {\n  left: -100%;\n}\n.carousel-inner > .active.right {\n  left: 100%;\n}\n.carousel-control {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  width: 15%;\n  font-size: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);\n  background-color: rgba(0, 0, 0, 0);\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\n.carousel-control.left {\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));\n  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n  background-repeat: repeat-x;\n}\n.carousel-control.right {\n  right: 0;\n  left: auto;\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));\n  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n  background-repeat: repeat-x;\n}\n.carousel-control:hover,\n.carousel-control:focus {\n  color: #fff;\n  text-decoration: none;\n  filter: alpha(opacity=90);\n  outline: 0;\n  opacity: .9;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n  position: absolute;\n  top: 50%;\n  z-index: 5;\n  display: inline-block;\n  margin-top: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n  left: 50%;\n  margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n  right: 50%;\n  margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n  width: 20px;\n  height: 20px;\n  font-family: serif;\n  line-height: 1;\n}\n.carousel-control .icon-prev:before {\n  content: '\\2039';\n}\n.carousel-control .icon-next:before {\n  content: '\\203a';\n}\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  padding-left: 0;\n  margin-left: -30%;\n  text-align: center;\n  list-style: none;\n}\n.carousel-indicators li {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin: 1px;\n  text-indent: -999px;\n  cursor: pointer;\n  background-color: #000 \\9;\n  background-color: rgba(0, 0, 0, 0);\n  border: 1px solid #fff;\n  border-radius: 10px;\n}\n.carousel-indicators .active {\n  width: 12px;\n  height: 12px;\n  margin: 0;\n  background-color: #fff;\n}\n.carousel-caption {\n  position: absolute;\n  right: 15%;\n  bottom: 20px;\n  left: 15%;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);\n}\n.carousel-caption .btn {\n  text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-prev,\n  .carousel-control .icon-next {\n    width: 30px;\n    height: 30px;\n    margin-top: -10px;\n    font-size: 30px;\n  }\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .icon-prev {\n    margin-left: -10px;\n  }\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-next {\n    margin-right: -10px;\n  }\n  .carousel-caption {\n    right: 20%;\n    left: 20%;\n    padding-bottom: 30px;\n  }\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after {\n  display: table;\n  content: \" \";\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after {\n  clear: both;\n}\n.center-block {\n  display: block;\n  margin-right: auto;\n  margin-left: auto;\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n.hidden {\n  display: none !important;\n}\n.affix {\n  position: fixed;\n}\n@-ms-viewport {\n  width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-xs {\n    display: block !important;\n  }\n  table.visible-xs {\n    display: table !important;\n  }\n  tr.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-xs,\n  td.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-block {\n    display: block !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline {\n    display: inline !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm {\n    display: block !important;\n  }\n  table.visible-sm {\n    display: table !important;\n  }\n  tr.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-sm,\n  td.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-block {\n    display: block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md {\n    display: block !important;\n  }\n  table.visible-md {\n    display: table !important;\n  }\n  tr.visible-md {\n    display: table-row !important;\n  }\n  th.visible-md,\n  td.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-block {\n    display: block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg {\n    display: block !important;\n  }\n  table.visible-lg {\n    display: table !important;\n  }\n  tr.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-lg,\n  td.visible-lg {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-block {\n    display: block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (max-width: 767px) {\n  .hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-lg {\n    display: none !important;\n  }\n}\n.visible-print {\n  display: none !important;\n}\n@media print {\n  .visible-print {\n    display: block !important;\n  }\n  table.visible-print {\n    display: table !important;\n  }\n  tr.visible-print {\n    display: table-row !important;\n  }\n  th.visible-print,\n  td.visible-print {\n    display: table-cell !important;\n  }\n}\n.visible-print-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-block {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline-block {\n    display: inline-block !important;\n  }\n}\n@media print {\n  .hidden-print {\n    display: none !important;\n  }\n}\n/*# sourceMappingURL=bootstrap.css.map */\n"
  },
  {
    "path": "src/VstsDemoBuilder/Content/custome-style.css",
    "content": "\n\n/*css code for login form*/\n\nbody {\n    padding-top: 120px;\n    /*background: url(../images/wallpaper.png);*/\n    background-size: cover;\n    background-repeat: no-repeat;\n    height: calc(100vh);\n    background: #dfdede;\n}\n.dvProgress\n{\n    position:relative;\n    height:15px;\n    width:100%;\n    border:solid 1px gray;\n    display:none;\n}\n.progressBar\n{\n    position:absolute;\n    top:0;\n    left:0;\n    width:0px;\n    background-color:#68217a;\n    height:14px;\n}\n.panel-login {\n    border-color: #ccc;\n    -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);\n    -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);\n    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);\n}\n\n    .panel-login > .panel-heading {\n        color: #00415d;\n        background-color: #f7f5f5;\n        border-color: #f7f5f5;\n        text-align: center;\n    }\n\n        .panel-login > .panel-heading a {\n            text-decoration: none;\n            color: #666;\n            font-weight: bold;\n            font-size: 15px;\n            -webkit-transition: all 0.1s linear;\n            -moz-transition: all 0.1s linear;\n            transition: all 0.1s linear;\n        }\n\n            .panel-login > .panel-heading a.active {\n                color: #68217a;\n                font-size: 18px;\n            }\n\n        .panel-login > .panel-heading hr {\n            margin-top: 10px;\n            margin-bottom: 0px;\n            clear: both;\n            border: 0;\n            height: 1px;\n            background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));\n            background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));\n            background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));\n            background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));\n        }\n\n    .panel-login input[type=\"text\"], .panel-login input[type=\"email\"], .panel-login input[type=\"password\"] {\n        height: 45px;\n        border: 1px solid #ddd;\n        font-size: 16px;\n        -webkit-transition: all 0.1s linear;\n        -moz-transition: all 0.1s linear;\n        transition: all 0.1s linear;\n    }\n\n    .panel-login input:hover,\n    .panel-login input:focus {\n        outline: none;\n        -webkit-box-shadow: none;\n        -moz-box-shadow: none;\n        box-shadow: none;\n        border-color: #ccc;\n    }\n\n.btn-login {\n    background-color: #0078d7;\n    \n    outline: none;\n    color: #fff;\n    font-size: 14px;\n    height: auto;\n    font-weight: normal;\n    padding: 14px 0;\n    text-transform: uppercase;\n    border-color: #59B2E6;\n}\n\n    .btn-login:hover,\n    .btn-login:focus {\n        color: #fff;\n        background-color: #53A3CD;\n        border-color: #53A3CD;\n    }\n\n.forgot-password {\n    text-decoration: underline;\n    color: #888;\n}\n\n    .forgot-password:hover,\n    .forgot-password:focus {\n        text-decoration: underline;\n        color: #666;\n    }\n\n.btn-register {\n    background-color: #0078d7;\n    outline: none;\n    color: #fff;\n    font-size: 14px;\n    height: auto;\n    font-weight: normal;\n    padding: 14px 0;\n    text-transform: uppercase;\n    border-color: #59B2E6;\n}\n\n    .btn-register:hover,\n    .btn-register:focus {\n        color: #fff;\n        background-color: #53A3CD;\n        border-color: #53A3CD;\n    }\n\n.navbar-inverse {\n    background-color: #68217a;\n    border-color: #4f185d;\n}\n\n    .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {\n        color: #fff;\n        background-color: #52205f;\n    }\n\n.panel-body {\n    padding: 30px;\n    background: #f7f5f5;\n}\n\n\n.navbar-brand {\n    float: left;\n    height: 50px;\n    padding: 5px 15px;\n}\n\n.navbar-nav > li > a {\n    line-height: 15px;\n}\n\n.btn-cancel {\n    color: #fff;\n    background-color: #827f7f;\n    border-color: #ccc;\n}\n\n.logo {\n    color: #fff;\n    font-size: 20px;\n}\n\n.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {\n    border-color: #531b61;\n}\n\n.footer {\n    position: fixed;\n    bottom: 0;\n    width: 100%;\n    height: 50px;\n    background-color: #ccc;\n    text-align: center;\n    line-height: 50px;\n}\n\n.text-muted {\n    color: #333;\n}\n\n.navbar-nav > li > a {\n    line-height: 20px;\n}\n\n.form-horizontal .control-label {\n  text-align: left; \n}\n\n@media (max-width: 768px)\n{\n  .btn-cancel {\n      margin-top: 10px;\n  }\n}\n\n.font-small{\ncolor: #ada5a5; font-weight: normal; font-size: 15px;\n     font-style: italic;\n}\n\n\n/*Progress bar CSS */\n\n.meter {\n\t\t\theight: 14px;  /* Can be anything */\n\t\t\tposition: relative;\n\t\t\t/*margin: 60px 0 20px 0; /* Just for demo spacing */\n\t\t\tbackground: #fff;\n\t\t\t-moz-border-radius: 25px;\n\t\t\t-webkit-border-radius: 25px;\n\t\t\tborder-radius: 25px;\n\t\t\tpadding: 0px;\n\t\t\t-webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);\n\t\t\t-moz-box-shadow   : inset 0 -1px 1px rgba(255,255,255,0.3);\n\t\t\tbox-shadow        : inset 0 -1px 1px rgba(255,255,255,0.3);\n\t\t}\n\t\t.meter > span {\n\t\t\tdisplay: block;\n\t\t\theight: 13px;\n\t\t\t   -webkit-border-top-right-radius: 8px;\n\t\t\t-webkit-border-bottom-right-radius: 8px;\n\t\t\t       -moz-border-radius-topright: 8px;\n\t\t\t    -moz-border-radius-bottomright: 8px;\n\t\t\t           border-top-right-radius: 8px;\n\t\t\t        border-bottom-right-radius: 8px;\n\t\t\t    -webkit-border-top-left-radius: 20px;\n\t\t\t -webkit-border-bottom-left-radius: 20px;\n\t\t\t        -moz-border-radius-topleft: 20px;\n\t\t\t     -moz-border-radius-bottomleft: 20px;\n\t\t\t            border-top-left-radius: 20px;\n\t\t\t         border-bottom-left-radius: 20px;\n\t\t\tbackground-color: rgb(43,194,83);\n\t\t\tbackground-image: -webkit-gradient(\n\t\t\t  linear,\n\t\t\t  left bottom,\n\t\t\t  left top,\n\t\t\t  color-stop(0, rgb(43,194,83)),\n\t\t\t  color-stop(1, rgb(84,240,84))\n\t\t\t );\n\t\t\tbackground-image: -moz-linear-gradient(\n\t\t\t  center bottom,\n\t\t\t  rgb(43,194,83) 37%,\n\t\t\t  rgb(84,240,84) 69%\n\t\t\t );\n\t\t\t-webkit-box-shadow:\n\t\t\t  inset 0 2px 9px  rgba(255,255,255,0.3),\n\t\t\t  inset 0 -2px 6px rgba(0,0,0,0.4);\n\t\t\t-moz-box-shadow:\n\t\t\t  inset 0 2px 9px  rgba(255,255,255,0.3),\n\t\t\t  inset 0 -2px 6px rgba(0,0,0,0.4);\n\t\t\tbox-shadow:\n\t\t\t  inset 0 2px 9px  rgba(255,255,255,0.3),\n\t\t\t  inset 0 -2px 6px rgba(0,0,0,0.4);\n\t\t\tposition: relative;\n\t\t\toverflow: hidden;\n\t\t}\n\t\t.meter > span:after, .animate > span > span {\n\t\t\tcontent: \"\";\n\t\t\tposition: absolute;\n\t\t\ttop: 0; left: 0; bottom: 0; right: 0;\n\t\t\tbackground-image:\n\t\t\t   -webkit-gradient(linear, 0 0, 100% 100%,\n\t\t\t      color-stop(.25, rgba(255, 255, 255, .2)),\n\t\t\t      color-stop(.25, transparent), color-stop(.5, transparent),\n\t\t\t      color-stop(.5, rgba(255, 255, 255, .2)),\n\t\t\t      color-stop(.75, rgba(255, 255, 255, .2)),\n\t\t\t      color-stop(.75, transparent), to(transparent)\n\t\t\t   );\n\t\t\tbackground-image:\n\t\t\t\t-moz-linear-gradient(\n\t\t\t\t  -45deg,\n\t\t\t      rgba(255, 255, 255, .2) 25%,\n\t\t\t      transparent 25%,\n\t\t\t      transparent 50%,\n\t\t\t      rgba(255, 255, 255, .2) 50%,\n\t\t\t      rgba(255, 255, 255, .2) 75%,\n\t\t\t      transparent 75%,\n\t\t\t      transparent\n\t\t\t   );\n\t\t\tz-index: 1;\n\t\t\t-webkit-background-size: 50px 50px;\n\t\t\t-moz-background-size: 50px 50px;\n\t\t\tbackground-size: 50px 50px;\n\t\t\t-webkit-animation: move 2s linear infinite;\n\t\t\t-moz-animation: move 2s linear infinite;\n\t\t\t   -webkit-border-top-right-radius: 8px;\n\t\t\t-webkit-border-bottom-right-radius: 8px;\n\t\t\t       -moz-border-radius-topright: 8px;\n\t\t\t    -moz-border-radius-bottomright: 8px;\n\t\t\t           border-top-right-radius: 8px;\n\t\t\t        border-bottom-right-radius: 8px;\n\t\t\t    -webkit-border-top-left-radius: 20px;\n\t\t\t -webkit-border-bottom-left-radius: 20px;\n\t\t\t        -moz-border-radius-topleft: 20px;\n\t\t\t     -moz-border-radius-bottomleft: 20px;\n\t\t\t            border-top-left-radius: 20px;\n\t\t\t         border-bottom-left-radius: 20px;\n\t\t\toverflow: hidden;\n\t\t}\n\n\t\t.animate > span:after {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t@-webkit-keyframes move {\n\t\t    0% {\n\t\t       background-position: 0 0;\n\t\t    }\n\t\t    100% {\n\t\t       background-position: 50px 50px;\n\t\t    }\n\t\t}\n\n\t\t@-moz-keyframes move {\n\t\t    0% {\n\t\t       background-position: 0 0;\n\t\t    }\n\t\t    100% {\n\t\t       background-position: 50px 50px;\n\t\t    }\n\t\t}\n\n\n\t\t.orange > span {\n\t\t\tbackground-color: #f1a165;\n\t\t\tbackground-image: -moz-linear-gradient(top, #f1a165, #f36d0a);\n\t\t\tbackground-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #f1a165),color-stop(1, #f36d0a));\n\t\t\tbackground-image: -webkit-linear-gradient(#f1a165, #f36d0a);\n\t\t}\n\n\t\t.red > span {\n\t\t\tbackground-color: #68217a;\n\t\t\tbackground-image: -moz-linear-gradient(top, #68217a, #68217a);\n\t\t\tbackground-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #f0a3a3),color-stop(1, #f42323));\n\t\t\tbackground-image: -webkit-linear-gradient(#68217a, #68217a);\n\t\t}\n\n\t\t.nostripes > span > span, .nostripes > span:after {\n\t\t\t-webkit-animation: none;\n\t\t\t-moz-animation: none;\n\t\t\tbackground-image: none;\n\t\t}\n\n\n/*CSS for verify page   */\n.headerNew {\n    background-color: white;\n    height: 50px;\n    color: white;\n    text-align: center;\n    font-size: 22px;\n    padding-top: 8px;\n} \n.login-img {\n\n    background: url(../images/background-verify.png);\n    background-size: cover;\n    background-repeat: no-repeat;\n    background-position: center center;\n    height: calc(100vh);\n}\n\n.note{\npadding: 10px;\n    \n}\n\n.logo1 {\ntext-align: center;\n    margin-top: 10px;\n}\n\n.footer-right {\n  position: fixed;\n  bottom: 0;\n  width: 100%;\n  /* Set the fixed height of the footer here */\n  /*height: 30px;*/\n  background-color: #f5f5f5;\n  padding:8px;\n    \n}\n@media (max-width:576px) {\n    .footer-right {\n        text-align:center;\n    }\n    \n}\n\n.body-verify {\n   \n    font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n    background-color: white;\n    padding:0px;\n    font-size:12px;\n   \n}\n.create-img{\n    background: url(../images/create_img_final1.png);\n    background-size: cover;\n    background-repeat: no-repeat;\n    height: calc(100vh);  \n}\n.lblAccountName {\n    margin-top: -7px;\n    padding: 8px;\n}\n.lblPAT {\n    margin-top: -8px;\n    padding: 6px; \n}\n\n.headerNew{\n    background-color: white;\n    height: 50px;\n    color: white;\n    text-align: center;\n    font-size: 22px;\n    padding-top: 8px;\n}\n.descriptionNew{\n    padding: 5px;\n    background-color: #0078D7;\n    color: white;\n    border-radius: 0px;\n}\n.extensionError{\n    padding: 5px;\n    border: solid 1px;\n    padding: 5px;\n}\n.btnUsers{\n    color: white;\n    background-color: #286090;\n    height: 20px;\n    width: 50px;\n}\n.projParameters\n{\n    border: solid 1px;\n    padding: 10px;\n    margin-top: 15px;\n    display:none;\n}\n.feedback {\n    margin-bottom: 80px;\n    padding: 8px;\n}\n.VSTSFontRadio {\npadding-left:4px;\n}\n.VSTSFontRadio label {\n    margin-left:4px;\n}\n/*\n    ALTERED CSS\n*/\n@media(min-width:768px) {\n    .main-right {\n        height: 95vh;\n        position:relative;\n    }\n        .main-right .VSTSFont2 {\n        position:absolute;\n        bottom:0;\n        padding:0px !important;\n        text-align:left;\n        }\n\n    .main-left-page2 {\n        height: 85vh;\n        position: relative;\n    }\n    .feedback {\n        position: fixed;\n        bottom: 40px;\n        margin-bottom: 0px;\n        width: 34%;\n        padding: 8px;\n    }\n}\n\n\n\n\n@media(max-width:767px) {\n    \n        .main-right .VSTSFont2 {\n           margin-bottom:60px;\n        }\n    .VSTSFontRadio {\n    display:block;\n    padding:8px;\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Content/ddlStyle.css",
    "content": "﻿html, body {\n    width: 100%;\n    height: 100%;\n}\n.searchclear {\n    position: relative;\n    right: 25px;\n    top: 3px;\n    bottom: 0;\n    height: 14px;\n    margin: auto;\n    font-size: 14px;\n    cursor: pointer;\n    color: #ccc;\n    z-index: 5000;\n}\n.noselect {\n    -webkit-touch-callout: none;\n    -webkit-user-select: none;\n    -khtml-user-select: none;\n    -moz-user-select: none;\n    -ms-user-select: none;\n    user-select: none;\n}\n\n.dropdown-container, .instructions {\n        width: 90%;\n    /*margin: -2px 16px;*/\n    font-size: 14px;\n    font-family: sans-serif;\n}\n\n.instructions {\n    width: 100%;\n    text-align: center;\n}\n\n.dropdown-button {\n    float: left;\n    width: 128%;\n    background:white;\n    padding: 10px 12px;\n    cursor: pointer;\n    border: 1px solid lightgray;\n    box-sizing: border-box;\n    .dropdown-label, .dropdown-quantity;\n\n{\n    float: left;\n}\n\n.dropdown-quantity {\n    margin-left: 4px;\n}\n\n.fa-filter {\n    float: right;\n}\n\n}\n\n.radioUser {\n       padding: 4px;\n    /* margin-left: 15px; */\n    width: 32.65%;\n    background: #f5f5f5;\n}\n\n.btnDeselect {\n     width: 120px;\n    height: 32px;\n    padding: 4px;\n    background: lightslategray;\n    color:white;\n}\n\n.user-option-hdr{\n    text-align: center;\n    background: #106EBE;\n    color: #fff;\npadding: 15PX;\nfont-weight: bold;\nmargin-left: 15px;\n}\n\ninput[type=\"radio\"], input[type=\"checkbox\"] {\n        margin: 10px 2px;\n}\n\n\n.dropdown_label{\n    float:left;\n    clear:right;\n}\n\n.dropdown-quantity{\n    float:right;\n\n}\n\n\n\n\n\n.dropdown-list {\n    float: left;\n    width: 128%;\n    border: 1px solid lightgray;\n    border-top: none;\n    box-sizing: border-box;\n    padding: 10px 12px;\n    input [type=\"search\"];\n\n{\n    padding: 5px 0;\n}\n\nulCustom {\n  \n  columns: 2;\n  -webkit-columns: 2;\n  -moz-columns: 2;\n}\n\n{\n    position: relative;\n    top: 2px;\n}\n\n}\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Content/extractor/assets/css/custom.scss",
    "content": "// MAIN SCSS\n@import \"../../node_modules/bootstrap/scss/bootstrap.scss\";\n\n// MAIN PAGE CONTAINER\n.text-small{font-size: 14px}\n.btn.actionChooser img{max-width: 22px;margin-right: 16px;}\n.btn.actionChooser.active{opacity: 1;}\n.btn.actionChooser{opacity: 0.5;max-width: 200px;white-space: normal;}\n.nav-pills a{\n    color: #000 !important;\n    font-size: 12px;\n    &.active{\n        border-bottom: 2px solid #0067b7;\n        color: #0067b7 !important;\n        background: transparent !important\n\n    }\n}\n.actionBtn{background: transparent;\n    img{\n        max-width: 14px;\n    }\n}\n.demo-generator-footer a{\n    color: #999 !important;\n}\n.VSTS-hero-text{flex: 1}\n.btn-primary{\n        background-color: #0067b7 !important;\n    }\n\nhtml,body{\n    height:100% !important;\n}\n.text-sm{\n    font-size: .875rem;\n    font-weight: 400;\n}\n.section-1\n{\n    min-height: 100%;\n    main\n    {\n        flex:1;\n        .VSTS-hero-image\n        {\n            background: url('../images/demoGenBG_2.png'),#0067b7;\n            background-repeat: no-repeat;\n            background-size: 100%;\n            background-position: bottom center;\n\n\n            flex:1;\n            .VSTS-hero\n            {\n                // flex:1;\n                // background:url('../images/VSTS_cover_image_2.png') center center / cover;\n                img{\n                    width:30px;\n                    height: 30px;\n                    margin-right: 16px;\n                }\n            }\n        }\n        .VSTS-details\n        {\n            @media (min-width: 768px)\n            {\n                max-width: 500px;\n            }\n            .demo-generator-details-logo\n            {\n                width:160px;\n            }\n            p\n            {\n                font-size: $spacer/1.142;\n            }\n        }\n    }\n}\n.navbar\n{\n    height: 46px;\n    .nav-item img\n    {\n        width: 18px;\n    }\n}\n.navbar-brand img\n{\n    width: 18px;\n    font-size: inherit;\n}\n.navbar-brand-text\n{\n    font-size: 1rem;\n}\n.jumbotron\n{\n    background: url('../images/vsts_header_image.png'),darken($primary,8%);\n    background-size: 1500px;\n    margin-top: 46px;\n}\n.custom-radio{\n    button\n    {\n        letter-spacing: 2px;\n    }\n}\n.VSTS-mh-100\n{\n    min-height: 100%;\n}\n.VSTS-create-page-feedback {\n    font-size: 0.8rem;\n}\n\n.footer.VSTS-create-page-footer {\n    position: fixed;\n    bottom: 0;\n    width: 100%;\n    /* Set the fixed height of the footer here */\n    height: 60px;\n    line-height: 60px; /* Vertically nter the text there */\n    background-color: #f5f5f5;\n  }\n\n// template selection\n.VSTemplateSelection{\n    position: fixed;\n    width: 100%;\n    height: 100vh;\n    overflow: hidden;\n    top: 0;\n    left: 0;\n    background-color: rgba(#000, 0.5);\n    z-index: 30000;\n    .template-holder{\n        position: absolute;\n        width: calc(100% - 32px);\n        top: 50%;\n        left: 50%;\n        transform: translate3d(-50%, -50%, 0);\n    }\n    .template-group{\n\n        .template-group-container{\n            height: 80px;\n            width: 768px;\n            overflow: auto;\n            margin: 0 auto;\n            a{\n                color: white;\n                display: block;\n                padding: 10px 20px;\n                font-weight: lighter;\n                transition: color 0.3s ease-in-out;\n                &.active{\n                    background: white;\n                    border-radius: 25px;\n                    color: $primary;\n                    font-weight: bolder;\n                }\n                &:hover{\n                    text-decoration: none;\n                }\n            }\n        }\n\n\n    }\n}\n\n.template-body{\n    height:400px;\n    overflow: auto;\n    .templates{\n        max-width: 1100px;\n        margin: 0 auto;\n    }\n    .template{\n        padding: 16px;\n        background-color: #fff;\n        min-width:250px;\n        max-width:350px;\n        margin: 8px;\n        opacity:0;\n        border-radius: 8px;\n        transform: translate3d(0,0,0);\n        box-shadow: 0px 2px 2px rgba(0,0,0,0.1);\n        transition: all 0.3s ease-in-out;\n        cursor: pointer;\n        &:hover{\n            transform: translate3d(0,-5px,0);\n            box-shadow: 0px 10px 20px rgba(0,0,0,0.09);\n        }\n        .description{\n            font-size: 12px;\n            margin-top: 8px;\n        }\n        &.selected{\n            transform: translate3d(0,-5px,0);\n            box-shadow: 0px 20px 30px -20px rgba(0,0,0,0.5), 0px 0px 0px 1px rgba(0,0,0,0.5);\n            // border:1px solid rgba(#000, .5);\n        }\n    }\n    .template-header{\n        display: flex;\n        align-items: center;\n        .title{\n            margin-left: 16px;\n        }\n    }\n}\n\n.VSTemplateSelection{\n    // display: none;\n}\n.template-dialog-title{\n    position: relative;\n}\n.template-close{\n    position: absolute;\n    right: -8px;\n    top: -16px;\n    border: 4px solid #fff;\n    height: 40px;\n    width: 40px;\n    line-height: 32px;\n    font-weight: bold;\n    text-align: center;\n    border-radius: 50%;\n    cursor:pointer;\n    background-color: #222;\n\n    color: #fff;\n}\n.template{\n    animation: down 0.5s 1 ease-in-out forwards;\n}\n\n@media (max-width576px){\n    .template-holder{\n     top: 50%;\n     left: 50%;\n     transform: translate3d(-50%, -50%, 0);\n}\n    }\n\n@keyframes down{\n    0%{\n        transform: translate3d(0,5px,0);\n        opacity: 0;\n    }\n    100%{\n        transform: translate3d(0,0,0);\n        opacity: 1;\n    }\n\n}\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Content/extractor/assets/script/script.js",
    "content": "\n$(function(){\n\n    let length = $(\".template\").length;\n\n    for(let i=0;i<length;i++)\n       {\n          $(\".template\").eq(i).css({\n             animationDelay:\"0.\"+i+\"s\"\n          });\n       };\n\n\n\n    $(\".template-invoke\").on(\"click\", function(){\n        $(\".VSTemplateSelection\").fadeIn('fast');\n    });\n    $(\".template-close\").on(\"click\", function(){\n        $(\".VSTemplateSelection\").fadeOut('fast');\n    });\n\n    $(\".template-group-item\").on('click', function(e){\n        e.preventDefault();\n        $(\".template-group-item\").removeClass('active');\n        $(this).addClass('active');\n    });\n\n    $(\".template\").on(\"click\", function(){\n        $(\".template\").removeClass(\"selected\");\n        $(this).addClass(\"selected\");\n    });\n});"
  },
  {
    "path": "src/VstsDemoBuilder/Controllers/AccountController.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.IO;\nusing System.Web.Hosting;\nusing System.Web.Mvc;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsDemoBuilder.Services;\n\nnamespace VstsDemoBuilder.Controllers\n{\n\n    public class AccountController : Controller\n    {\n        private readonly AccessDetails accessDetails = new AccessDetails();\n        private TemplateSelection.Templates templates = new TemplateSelection.Templates();\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        private IProjectService projectService;\n        private ITemplateService templateService;\n\n        public AccountController(IProjectService _projectService, ITemplateService _templateService)\n        {\n            projectService = _projectService;\n            templateService = _templateService;\n        }\n\n        [HttpGet]\n        [AllowAnonymous]\n        public ActionResult Unsupported_browser()\n        {\n            return View();\n        }\n\n        /// <summary>\n        /// Verify View\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"id\"></param>\n        /// <returns></returns>\n        [HttpGet]\n        [AllowAnonymous]\n        public ActionResult Verify(LoginModel model, string id)\n        {\n            Session.Clear();\n            // check to enable extractor\n            if (string.IsNullOrEmpty(model.EnableExtractor) || model.EnableExtractor.ToLower() == \"false\")\n            {\n                model.EnableExtractor = System.Configuration.ConfigurationManager.AppSettings[\"EnableExtractor\"];\n            }\n            if (!string.IsNullOrEmpty(model.EnableExtractor))\n            {\n                Session[\"EnableExtractor\"] = model.EnableExtractor;\n            }\n\n            var browser = Request.Browser.Type;\n            if (browser.Contains(\"InternetExplorer\"))\n            {\n                return RedirectToAction(\"Unsupported_browser\", \"Account\");\n            }\n            try\n            {\n                if (!string.IsNullOrEmpty(model.name))\n                {\n                    if (System.IO.File.Exists(Server.MapPath(\"~\") + @\"\\Templates\\TemplateSetting.json\"))\n                    {\n                        string privateTemplatesJson = System.IO.File.ReadAllText(Server.MapPath(\"~\") + @\"\\Templates\\TemplateSetting.json\");\n                        templates = Newtonsoft.Json.JsonConvert.DeserializeObject<TemplateSelection.Templates>(privateTemplatesJson);\n                        if (templates != null)\n                        {\n                            bool flag = false;\n                            foreach (var grpTemplate in templates.GroupwiseTemplates)\n                            {\n                                foreach (var template in grpTemplate.Template)\n                                {\n                                    if (template.ShortName != null && template.ShortName.ToLower() == model.name.ToLower())\n                                    {\n                                        flag = true;\n                                        Session[\"templateName\"] = template.Name;\n                                    }\n                                }\n                            }\n                            if (flag == false)\n                            {\n                                Session[\"templateName\"] = null;\n                            }\n                        }\n                    }\n                }\n\n                if (!string.IsNullOrEmpty(model.Event))\n                {\n                    string eventsTemplate = Server.MapPath(\"~\") + @\"\\Templates\\Events.json\";\n                    if (System.IO.File.Exists(eventsTemplate))\n                    {\n                        string eventContent = System.IO.File.ReadAllText(eventsTemplate);\n                        var jItems = JObject.Parse(eventContent);\n                        if (jItems[model.Event] != null)\n                        {\n                            model.Event = jItems[model.Event].ToString();\n                        }\n                        else\n                        {\n                            model.Event = string.Empty;\n                        }\n                    }\n                }\n\n                if (!string.IsNullOrEmpty(model.TemplateURL))\n                {\n                    if (model.TemplateURL.EndsWith(\".zip\"))\n                    {\n                        PrivateTemplate _privateTemplate = UploadPrivateTempalteFromHome(model.TemplateURL);\n                        if (_privateTemplate.IsTemplateValid)\n                        {\n                            Session[\"PrivateTemplateURL\"] = _privateTemplate.privateTemplatePath;\n                            Session[\"PrivateTemplateName\"] = _privateTemplate.privateTemplateName;\n                            Session[\"PrivateTemplateOriginalName\"] = _privateTemplate.privateTemplateOriginalName;\n                        }\n                        else\n                        {\n                            ViewBag.resMessage = _privateTemplate.responseMessage;\n                            return View(new LoginModel());\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(JsonConvert.SerializeObject(ex, Formatting.Indented) + Environment.NewLine);\n            }\n            //return RedirectToAction(\"../account/verify\");\n            return View(model);\n        }\n\n        /// <summary>\n        /// Get Account at the end of project provision\n        /// </summary>\n        /// <returns></returns>\n        [HttpGet]\n        [AllowAnonymous]\n        public string GetAccountName()\n        {\n            if (Session[\"AccountName\"] != null)\n            {\n                string accountName = Session[\"AccountName\"].ToString();\n                return accountName;\n            }\n            else\n            {\n                return string.Empty;\n            }\n        }\n\n        /// <summary>\n        /// Index view which calls VSTS OAuth\n        /// </summary>\n        /// <returns></returns>\n        [HttpGet]\n        [AllowAnonymous]\n        public ActionResult Index()\n        {\n            try\n            {\n                Session[\"visited\"] = \"1\";\n                string url = \"https://app.vssps.visualstudio.com/oauth2/authorize?client_id={0}&response_type=Assertion&state=User1&scope={1}&redirect_uri={2}\";\n                string redirectUrl = System.Configuration.ConfigurationManager.AppSettings[\"RedirectUri\"];\n                string clientId = System.Configuration.ConfigurationManager.AppSettings[\"ClientId\"];\n                string AppScope = System.Configuration.ConfigurationManager.AppSettings[\"appScope\"];\n                url = string.Format(url, clientId, AppScope, redirectUrl);\n                return Redirect(url);\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(JsonConvert.SerializeObject(ex, Formatting.Indented) + Environment.NewLine);\n            }\n            return RedirectToAction(\"../shared/error\");\n        }\n\n        /// <summary>\n        /// Sign out\n        /// </summary>\n        /// <returns></returns>\n        [HttpGet]\n        [AllowAnonymous]\n        public ActionResult SignOut()\n        {\n            Session.Clear();\n            return Redirect(\"https://app.vssps.visualstudio.com/_signout\");\n        }\n\n        [HttpGet]\n        [AllowAnonymous]\n        public ActionResult SessionOutReturn()\n        {\n            return View();\n        }\n\n        public PrivateTemplate UploadPrivateTempalteFromHome(string TemplateURL)\n        {\n            PrivateTemplate privateTemplate = new PrivateTemplate();\n            string templatePath = string.Empty;\n            try\n            {\n                privateTemplate.IsTemplateValid = false;\n                string templateName = \"\";\n                string fileName = Path.GetFileName(TemplateURL);\n                string extension = Path.GetExtension(TemplateURL);\n                privateTemplate.privateTemplateOriginalName = fileName.ToLower().Replace(\".zip\", \"\").Trim();\n                templateName = fileName.ToLower().Replace(\".zip\", \"\").Trim() + \"-\" + Guid.NewGuid().ToString().Substring(0, 6) + extension.ToLower();\n                privateTemplate.privateTemplateName = templateName.ToLower().Replace(\".zip\", \"\").Trim();\n                privateTemplate.privateTemplatePath = templateService.GetTemplateFromPath(TemplateURL, templateName, \"\", \"\", \"\");\n\n                if (privateTemplate.privateTemplatePath != \"\")\n                {\n                    privateTemplate.responseMessage = templateService.checkSelectedTemplateIsPrivate(privateTemplate.privateTemplatePath);\n                    if (privateTemplate.responseMessage != \"SUCCESS\")\n                    {\n                        var templatepath = HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\" + templateName.ToLower().Replace(\".zip\", \"\").Trim();\n                        if (Directory.Exists(templatepath))\n                            Directory.Delete(templatepath, true);\n                    }\n                    if (privateTemplate.responseMessage == \"SUCCESS\")\n                    {\n                        privateTemplate.IsTemplateValid = true;\n                    }\n                }\n                else\n                {\n                    privateTemplate.responseMessage = \"Unable to download file, please check the provided URL\";\n                    privateTemplate.IsTemplateValid = false;\n                }\n\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return privateTemplate;\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Controllers/Apis/ProjectController.cs",
    "content": "﻿using GoogleAnalyticsTracker.WebAPI2;\nusing GoogleAnalyticsTracker.Simple;\nusing Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Linq;\nusing System.Net;\nusing System.Net.Http;\nusing System.Text.RegularExpressions;\nusing System.Web.Hosting;\nusing System.Web.Http;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsDemoBuilder.Services;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\nusing VstsRestAPI.WorkItemAndTracking;\n\nnamespace VstsDemoBuilder.Controllers.Apis\n{\n    [RoutePrefix(\"api/environment\")]\n    public class ProjectController : ApiController\n    {\n        private ITemplateService templateService;\n        private IProjectService projectService;\n        public delegate string[] ProcessEnvironment(Project model);\n        public int usercount = 0;\n\n        public ProjectController()\n        {\n            templateService = new TemplateService();\n            projectService = new ProjectService();\n        }\n\n        [HttpPost]\n        [Route(\"create\")]\n        public HttpResponseMessage create(MultiProjects model)\n        {\n            ProjectService.TrackFeature(\"api/environment/create\");\n\n            ProjectResponse returnObj = new ProjectResponse();\n            returnObj.templatePath = model.templatePath;\n            returnObj.templateName = model.templateName;\n            string PrivateTemplatePath = string.Empty;\n            string extractedTemplate = string.Empty;\n            List<RequestedProject> returnProjects = new List<RequestedProject>();\n            try\n            {\n\n                string ReadErrorMessages = System.IO.File.ReadAllText(string.Format(HostingEnvironment.MapPath(\"~\") + @\"\\JSON\\\" + @\"{0}\", \"ErrorMessages.json\"));\n                var Messages = JsonConvert.DeserializeObject<Messages>(ReadErrorMessages);\n                var errormessages = Messages.ErrorMessages;\n                List<string> ListOfExistedProjects = new List<string>();\n                //check for Organization Name\n                if (string.IsNullOrEmpty(model.organizationName))\n                {\n                    return Request.CreateResponse(HttpStatusCode.BadRequest, errormessages.AccountMessages.InvalidAccountName); //\"Provide a valid Account name\"\n                }\n                //Check for AccessToken\n                if (string.IsNullOrEmpty(model.accessToken))\n                {\n                    return Request.CreateResponse(HttpStatusCode.Unauthorized, errormessages.AccountMessages.InvalidAccessToken); //\"Token of type Basic must be provided\"\n                }\n                else\n                {\n                    HttpResponseMessage response = projectService.GetprojectList(model.organizationName, model.accessToken);\n                    if (response.StatusCode != HttpStatusCode.OK)\n                    {\n                        return Request.CreateResponse(HttpStatusCode.BadRequest, errormessages.AccountMessages.CheckaccountDetails);\n                    }\n                    else\n                    {\n                        var projectResult = response.Content.ReadAsAsync<ProjectsResponse.ProjectResult>().Result;\n                        foreach (var project in projectResult.value)\n                        {\n                            ListOfExistedProjects.Add(project.name); // insert list of existing projects in selected organiszation to dummy list\n                        }\n                    }\n                }\n                if (model.users.Count > 0)\n                {\n                    List<string> ListOfRequestedProjectNames = new List<string>();\n                    foreach (var project in model.users)\n                    {\n                        //check for Email and Validate project name\n                        if (!string.IsNullOrEmpty(project.email) && !string.IsNullOrEmpty(project.projectName))\n                        {\n                            string pattern = @\"^(?!_)(?![.])[a-zA-Z0-9!^\\-`)(]*[a-zA-Z0-9_!^\\.)( ]*[^.\\/\\\\~@#$*%+=[\\]{\\}'\"\",:;?<>|](?:[a-zA-Z!)(][a-zA-Z0-9!^\\-` )(]+)?$\";\n\n                            bool isProjectNameValid = Regex.IsMatch(project.projectName, pattern);\n                            List<string> restrictedNames = new List<string>() { \"COM1\", \"COM2\", \"COM3\", \"COM4\", \"COM5\", \"COM6\", \"COM7\", \"COM8\", \"COM9\", \"COM10\", \"PRN\", \"LPT1\", \"LPT2\", \"LPT3\", \"LPT4\", \"LPT5\", \"LPT6\", \"LTP\", \"LTP8\", \"LTP9\", \"NUL\", \"CON\", \"AUX\", \"SERVER\", \"SignalR\", \"DefaultCollection\", \"Web\", \"App_code\", \"App_Browesers\", \"App_Data\", \"App_GlobalResources\", \"App_LocalResources\", \"App_Themes\", \"App_WebResources\", \"bin\", \"web.config\" };\n\n                            if (!isProjectNameValid)\n                            {\n                                project.status = errormessages.ProjectMessages.InvalidProjectName; //\"Invalid Project name\";\n                                return Request.CreateResponse(HttpStatusCode.BadRequest, project);\n                            }\n                            else if (restrictedNames.ConvertAll(d => d.ToLower()).Contains(project.projectName.Trim().ToLower()))\n                            {\n                                project.status = errormessages.ProjectMessages.ProjectNameWithReservedKeyword;//\"Project name must not be a system-reserved name such as PRN, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, COM10, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9, NUL, CON, AUX, SERVER, SignalR, DefaultCollection, or Web\";\n                                return Request.CreateResponse(HttpStatusCode.BadRequest, project);\n                            }\n                            ListOfRequestedProjectNames.Add(project.projectName.ToLower());\n                        }\n                        else\n                        {\n                            project.status = errormessages.ProjectMessages.ProjectNameOrEmailID;//\"EmailId or ProjectName is not found\";\n                            return Request.CreateResponse(HttpStatusCode.BadRequest, project);\n                        }\n                    }\n                    //check for duplicatte project names from request body\n                    bool anyDuplicateProjects = ListOfRequestedProjectNames.GroupBy(n => n).Any(c => c.Count() > 1);\n                    if (anyDuplicateProjects)\n                    {\n                        return Request.CreateResponse(HttpStatusCode.BadRequest, errormessages.ProjectMessages.DuplicateProject); //\"ProjectName must be unique\"\n                    }\n                    else\n                    {\n                        string templateName = string.Empty;\n                        bool isPrivate = false;\n                        if (string.IsNullOrEmpty(model.templateName) && string.IsNullOrEmpty(model.templatePath))\n                        {\n                            return Request.CreateResponse(HttpStatusCode.BadRequest, errormessages.TemplateMessages.TemplateNameOrTemplatePath); //\"Please provide templateName or templatePath(GitHub)\"\n                        }\n                        else\n                        {\n                            //check for Private template path provided in request body\n                            if (!string.IsNullOrEmpty(model.templatePath))\n                            {\n                                string fileName = Path.GetFileName(model.templatePath);\n                                string extension = Path.GetExtension(model.templatePath);\n\n                                if (extension.ToLower() == \".zip\")\n                                {\n                                    extractedTemplate = fileName.ToLower().Replace(\".zip\", \"\").Trim() + \"-\" + Guid.NewGuid().ToString().Substring(0, 6) + extension.ToLower();\n                                    templateName = extractedTemplate;\n                                    model.templateName = extractedTemplate.ToLower().Replace(\".zip\", \"\").Trim();\n                                    //Get template  by extarcted the template from TemplatePath and returning boolean value for Valid template\n                                    PrivateTemplatePath = templateService.GetTemplateFromPath(model.templatePath, extractedTemplate, model.gitHubToken, model.userId, model.password);\n                                    if (string.IsNullOrEmpty(PrivateTemplatePath))\n                                    {\n                                        return Request.CreateResponse(HttpStatusCode.BadRequest, errormessages.TemplateMessages.FailedTemplate);//\"Failed to load the template from given template path. Check the repository URL and the file name.  If the repository is private then make sure that you have provided a GitHub token(PAT) in the request body\"\n                                    }\n                                    else\n                                    {\n                                        string privateErrorMessage = templateService.checkSelectedTemplateIsPrivate(PrivateTemplatePath);\n                                        if (privateErrorMessage!=\"SUCCESS\")\n                                        {\n                                            var templatepath = HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\" + model.templateName;\n                                            if (Directory.Exists(templatepath))\n                                                Directory.Delete(templatepath, true);\n                                            return Request.CreateResponse(HttpStatusCode.BadRequest, privateErrorMessage);//\"TemplatePath should have .zip extension file name at the end of the url\"\n                                        }\n                                        else\n                                        {\n                                            isPrivate = true;\n                                        }\n                                    }\n                                }\n                                else\n                                {\n                                    return Request.CreateResponse(HttpStatusCode.BadRequest, errormessages.TemplateMessages.PrivateTemplateFileExtension);//\"TemplatePath should have .zip extension file name at the end of the url\"\n                                }\n                            }\n                            else\n                            {\n                                string response = templateService.GetTemplate(model.templateName);\n                                if (response == \"Template Not Found!\")\n                                {\n                                    return Request.CreateResponse(HttpStatusCode.BadRequest, errormessages.TemplateMessages.TemplateNotFound);\n                                }\n                                templateName = model.templateName;\n                            }\n                        }\n                        //check for Extension file from selected template(public or private template)\n                        string extensionJsonFile = projectService.GetJsonFilePath(isPrivate, PrivateTemplatePath, templateName, \"Extensions.json\");//string.Format(templatesFolder + @\"{ 0}\\Extensions.json\", selectedTemplate);\n                        if (File.Exists(extensionJsonFile))\n                        {\n                            //check for Extension installed or not from selected template in selected organization\n                            if (projectService.CheckForInstalledExtensions(extensionJsonFile, model.accessToken, model.organizationName))\n                            {\n                                if (model.installExtensions)\n                                {\n                                    Project pmodel = new Project();\n                                    pmodel.SelectedTemplate = model.templateName;\n                                    pmodel.accessToken = model.accessToken;\n                                    pmodel.accountName = model.organizationName;\n\n                                    bool isextensionInstalled = projectService.InstallExtensions(pmodel, model.organizationName, model.accessToken);\n                                }\n                                else\n                                {\n                                    return Request.CreateResponse(HttpStatusCode.BadRequest, errormessages.ProjectMessages.ExtensionNotInstalled); //\"Extension is not installed for the selected Template, Please provide IsExtensionRequired: true in the request body\"\n                                }\n                            }\n                        }\n                        // continue to create project with async delegate method\n                        foreach (var project in model.users)\n                        {\n                            var result = ListOfExistedProjects.ConvertAll(d => d.ToLower()).Contains(project.projectName.ToLower());\n                            if (result == true)\n                            {\n                                project.status = project.projectName + \" is already exist\";\n                            }\n                            else\n                            {\n                                usercount++;\n                                project.trackId = Guid.NewGuid().ToString().Split('-')[0];\n                                project.status = \"Project creation is initiated..\";\n                                Project pmodel = new Project();\n                                pmodel.SelectedTemplate = model.templateName;\n                                pmodel.accessToken = model.accessToken;\n                                pmodel.accountName = model.organizationName;\n                                pmodel.ProjectName = project.projectName;\n                                pmodel.Email = project.email;\n                                pmodel.id = project.trackId;\n                                pmodel.IsApi = true;\n                                if (model.templatePath != \"\")\n                                {\n                                    pmodel.PrivateTemplatePath = PrivateTemplatePath;\n                                    pmodel.PrivateTemplateName = model.templateName;\n                                    pmodel.IsPrivatePath = true;\n                                }\n\n                                ProcessEnvironment processTask = new ProcessEnvironment(projectService.CreateProjectEnvironment);\n                                processTask.BeginInvoke(pmodel, new AsyncCallback(EndEnvironmentSetupProcess), processTask);\n                            }\n                            returnProjects.Add(project);\n                        }\n                        if (!string.IsNullOrEmpty(model.templatePath) && usercount == 0 && string.IsNullOrEmpty(extractedTemplate))\n                        {\n                            templateService.deletePrivateTemplate(extractedTemplate);\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t BulkProject \\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                return Request.CreateResponse(HttpStatusCode.InternalServerError);\n            }\n            returnObj.users = returnProjects;\n            return Request.CreateResponse(HttpStatusCode.Accepted, returnObj);\n        }\n\n        [HttpGet]\n        [Route(\"GetCurrentProgress\")]\n        public HttpResponseMessage GetCurrentProgress(string TrackId)\n        {\n            ProjectService.TrackFeature(\"api/environment/GetCurrentProgress\");\n            ServicePointManager.Expect100Continue = true;\n            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;\n            // Use SecurityProtocolType.Ssl3 if needed for compatibility reasons\n\n            var currentProgress = projectService.GetStatusMessage(TrackId);\n            return Request.CreateResponse(HttpStatusCode.OK, currentProgress[\"status\"]);\n        }\n\n        /// <summary>\n        /// End the process\n        /// </summary>\n        /// <param name=\"result\"></param>\n        public void EndEnvironmentSetupProcess(IAsyncResult result)\n        {\n            string templateUsed = string.Empty;\n            string ID = string.Empty;\n            string accName = string.Empty;\n            try\n            {\n                ProcessEnvironment processTask = (ProcessEnvironment)result.AsyncState;\n                string[] strResult = processTask.EndInvoke(result);\n                if (strResult != null && strResult.Length > 0)\n                {\n                    ID = strResult[0];\n                    accName = strResult[1];\n                    templateUsed = strResult[2];\n                    projectService.RemoveKey(ID);\n\n                    if (ProjectService.StatusMessages.Keys.Count(x => x == ID + \"_Errors\") == 1)\n                    {\n                        string errorMessages = ProjectService.statusMessages[ID + \"_Errors\"];\n                        if (errorMessages != \"\")\n                        {\n                            //also, log message to file system\n                            string logPath = HostingEnvironment.MapPath(\"~\") + @\"\\Log\";\n                            string accountName = strResult[1];\n                            string fileName = string.Format(\"{0}_{1}.txt\", templateUsed, DateTime.Now.ToString(\"ddMMMyyyy_HHmmss\"));\n\n                            if (!Directory.Exists(logPath))\n                            {\n                                Directory.CreateDirectory(logPath);\n                            }\n\n                            System.IO.File.AppendAllText(Path.Combine(logPath, fileName), errorMessages);\n\n                            //Create ISSUE work item with error details in VSTSProjectgenarator account\n                            string patBase64 = System.Configuration.ConfigurationManager.AppSettings[\"PATBase64\"];\n                            string url = System.Configuration.ConfigurationManager.AppSettings[\"URL\"];\n                            string projectId = System.Configuration.ConfigurationManager.AppSettings[\"PROJECTID\"];\n                            string issueName = string.Format(\"{0}_{1}\", templateUsed, DateTime.Now.ToString(\"ddMMMyyyy_HHmmss\"));\n                            IssueWI objIssue = new IssueWI();\n\n                            errorMessages = errorMessages + Environment.NewLine + \"TemplateUsed: \" + templateUsed;\n                            errorMessages = errorMessages + Environment.NewLine + \"ProjectCreated : \" + ProjectService.projectName;\n\n                            ProjectService.logger.Error(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t  Error: \" + errorMessages);\n\n                            string logWIT = System.Configuration.ConfigurationManager.AppSettings[\"LogWIT\"];\n                            if (logWIT == \"true\")\n                            {\n                                objIssue.CreateIssueWI(patBase64, \"4.1\", url, issueName, errorMessages, projectId, \"Demo Generator\");\n                            }\n                        }\n                    }\n                }\n                usercount--;\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            finally\n            {\n                if (usercount == 0 && !string.IsNullOrEmpty(templateUsed))\n                {\n                    templateService.deletePrivateTemplate(templateUsed);\n                }\n            }\n        }\n    }\n}\n\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Controllers/Apis/TemplateController.cs",
    "content": "﻿using Common.Logging;\nusing Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Linq;\nusing System.Net;\nusing System.Net.Http;\nusing System.Web.Http;\nusing VstsDemoBuilder.Extensions;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsDemoBuilder.Services;\nusing static VstsDemoBuilder.Models.TemplateSelection;\n\nnamespace VstsDemoBuilder.Controllers.Apis\n{\n    [RoutePrefix(\"api/templates\")]\n    public class TemplateController : ApiController\n    {\n    \n        private ITemplateService templateService;\n\n        public TemplateController()\n        {\n            templateService = new TemplateService();\n        }\n\n        [HttpGet]\n        [Route(\"AllTemplates\")]\n        public HttpResponseMessage GetTemplates()\n        {\n            ProjectService.TrackFeature(\"api/templates/Alltemplates\");\n            var templates = templateService.GetAllTemplates();\n            return Request.CreateResponse(HttpStatusCode.OK, templates);\n        }\n\n        [HttpGet]\n        [Route(\"TemplatesByTags\")]\n        public HttpResponseMessage templatesbyTags(string Tags)\n        {\n            ProjectService.TrackFeature(\"api/templates/TemplateByTags\");\n            var templates = templateService.GetTemplatesByTags(Tags);\n            return Request.CreateResponse(HttpStatusCode.OK, templates);\n        }       \n\n\n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Controllers/EnvironmentController.cs",
    "content": "﻿using Microsoft.VisualStudio.Services.ExtensionManagement.WebApi;\nusing Microsoft.VisualStudio.Services.WebApi;\nusing Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Linq;\nusing System.Web;\nusing System.Web.Hosting;\nusing System.Web.Mvc;\nusing VstsDemoBuilder.Extensions;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsDemoBuilder.Services;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\nusing VstsRestAPI.WorkItemAndTracking;\n\nnamespace VstsDemoBuilder.Controllers\n{\n    public class EnvironmentController : Controller\n    {\n        private delegate string[] ProcessEnvironment(Project model);\n        private IProjectService projectService;\n        private ITemplateService templateService;\n        private IAccountService accountService;\n\n        public EnvironmentController(IProjectService _ProjectService, IAccountService _accountService, ITemplateService _templateService)\n        {\n            projectService = _ProjectService;\n            accountService = _accountService;\n            templateService = _templateService;\n        }\n\n        [HttpGet]\n        [AllowAnonymous]\n        [SessonTimeout]\n        public ContentResult GetCurrentProgress(string id)\n        {\n            this.ControllerContext.HttpContext.Response.AddHeader(\"cache-control\", \"no-cache\");\n            var currentProgress = GetStatusMessage(id).ToString();\n            return Content(currentProgress);\n        }\n\n        /// <summary>\n        /// Get status message to reply\n        /// </summary>\n        /// <param name=\"id\"></param>\n        /// <returns></returns>\n        [HttpGet]\n        [AllowAnonymous]\n        [SessonTimeout]\n        public string GetStatusMessage(string id)\n        {\n            lock (ProjectService.objLock)\n            {\n                string message = string.Empty;\n                if (ProjectService.StatusMessages.Keys.Count(x => x == id) == 1)\n                {\n                    message = ProjectService.StatusMessages[id];\n                }\n                else\n                {\n                    return \"100\";\n                }\n\n                if (id.EndsWith(\"_Errors\"))\n                {\n                    projectService.RemoveKey(id);\n                }\n\n                return message;\n            }\n        }\n\n        /// <summary>\n        /// Get Template Name to display\n        /// </summary>\n        /// <param name=\"TemplateName\"></param>\n        /// <returns></returns>\n        [HttpGet]\n        [AllowAnonymous]\n        [SessonTimeout]\n        public ContentResult GetTemplate(string TemplateName)\n        {\n            string templatesPath = Server.MapPath(\"~\") + @\"\\Templates\\\";\n            string template = string.Empty;\n\n            if (System.IO.File.Exists(templatesPath + Path.GetFileName(TemplateName) + @\"\\ProjectTemplate.json\"))\n            {\n                Project objP = new Project();\n                template = objP.ReadJsonFile(templatesPath + Path.GetFileName(TemplateName) + @\"\\ProjectTemplate.json\");\n            }\n            return Content(template);\n        }\n\n        /// <summary>\n        /// Get groups. based on group selection get template\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <returns></returns>\n        [AllowAnonymous]\n        [SessonTimeout]\n        public JsonResult GetGroups()\n        {\n            string groupDetails = \"\";\n            TemplateSelection.Templates templates = new TemplateSelection.Templates();\n            string templatesPath = \"\"; templatesPath = Server.MapPath(\"~\") + @\"\\Templates\\\";\n            string email = Session[\"Email\"].ToString();\n            if (System.IO.File.Exists(templatesPath + \"TemplateSetting.json\"))\n            {\n                groupDetails = System.IO.File.ReadAllText(templatesPath + @\"\\TemplateSetting.json\");\n                templates = JsonConvert.DeserializeObject<TemplateSelection.Templates>(groupDetails);\n                foreach (var Group in templates.GroupwiseTemplates)\n                {\n                    if (Group.Groups != \"Private\" && Group.Groups != \"PrivateTemp\")\n                    {\n                        foreach (var template in Group.Template)\n                        {\n                            string templateFolder = template.TemplateFolder;\n                            if (!string.IsNullOrEmpty(templateFolder))\n                            {\n                            }\n                        }\n                    }\n                }\n                ProjectService.enableExtractor = Session[\"EnableExtractor\"] != null ? Session[\"EnableExtractor\"].ToString() : string.Empty;\n                if (string.IsNullOrEmpty(ProjectService.enableExtractor) || ProjectService.enableExtractor == \"false\")\n                {\n                    TemplateSelection.Templates _templates = new TemplateSelection.Templates();\n                    _templates.Groups = new List<string>();\n                    foreach (var group in templates.Groups)\n                    {\n                        _templates.Groups.Add(group);\n                    }\n                    templates.Groups = _templates.Groups;\n                }\n            }\n            return Json(templates, JsonRequestBehavior.AllowGet);\n        }\n\n        /// <summary>\n        /// View ProjectSetUp\n        /// </summary>\n        /// <returns></returns>\n        [HttpGet]\n        [AllowAnonymous]\n        public ActionResult CreateProject()\n        {\n            try\n            {\n\n                AccessDetails _accessDetails = ProjectService.AccessDetails;\n                string TemplateSelected = string.Empty;\n                if (Session[\"visited\"] != null)\n                {\n                    Project model = new Project();\n                    if (Session[\"EnableExtractor\"] != null)\n                    {\n                        model.EnableExtractor = Session[\"EnableExtractor\"].ToString();\n                        ProjectService.enableExtractor = model.EnableExtractor.ToLower();\n                    }\n                    if (Session[\"templateName\"] != null && Session[\"templateName\"].ToString() != \"\")\n                    {\n                        model.TemplateName = Session[\"templateName\"].ToString();\n                        TemplateSelected = model.TemplateName;\n                    }\n                    else if (Session[\"PrivateTemplateName\"] != null)\n                    {\n                        model.TemplateName = Session[\"PrivateTemplateName\"].ToString();\n                        TemplateSelected = model.TemplateName;\n                    }\n                    else\n                    {\n                        TemplateSelected = System.Configuration.ConfigurationManager.AppSettings[\"DefaultTemplate\"];\n                    }\n                    if (Session[\"PAT\"] != null)\n                    {\n                        _accessDetails.access_token = Session[\"PAT\"].ToString();\n                        ProfileDetails profile = accountService.GetProfile(_accessDetails);\n                        if (profile.displayName != null || profile.emailAddress != null)\n                        {\n                            Session[\"User\"] = profile.displayName ?? string.Empty;\n                            Session[\"Email\"] = profile.emailAddress ?? profile.displayName.ToLower();\n                        }\n                        if (profile.id != null)\n                        {\n                            AccountsResponse.AccountList accountList = accountService.GetAccounts(profile.id, _accessDetails);\n\n                            //New Feature Enabling\n                            model.accessToken = Session[\"PAT\"].ToString();\n                            model.refreshToken = _accessDetails.refresh_token;\n                            Session[\"PAT\"] = _accessDetails.access_token;\n                            model.MemberID = profile.id;\n                            model.profileImage = \"data:image/png;base64, \"+profile.coreAttributes?.Avatar?.value?.value;\n                            List<string> accList = new List<string>();\n                            if (accountList.count > 0)\n                            {\n                                foreach (var account in accountList.value)\n                                {\n                                    accList.Add(account.accountName);\n                                }\n                                accList.Sort();\n                                model.accountsForDropdown = accList;\n                                model.hasAccount = true;\n                            }\n                            else\n                            {\n                                accList.Add(\"Select Organization\");\n                                model.accountsForDropdown = accList;\n                                ViewBag.AccDDError = \"Could not load your organizations. Please check if the logged in Id contains the Azure DevOps Organizations or change the directory in profile page and try again.\";\n                            }\n\n                            model.Templates = new List<string>();\n                            model.accountUsersForDdl = new List<SelectListItem>();\n                            TemplateSelection.Templates templates = new TemplateSelection.Templates();\n                            string[] dirTemplates = Directory.GetDirectories(Server.MapPath(\"~\") + @\"\\Templates\");\n\n                            //Taking all the template folder and adding to list\n                            foreach (string template in dirTemplates)\n                            {\n                                model.Templates.Add(Path.GetFileName(template));\n                            }\n                            // Reading Template setting file to check for private templates\n                            if (System.IO.File.Exists(Server.MapPath(\"~\") + @\"\\Templates\\TemplateSetting.json\"))\n                            {\n                                string templateSetting = model.ReadJsonFile(Server.MapPath(\"~\") + @\"\\Templates\\TemplateSetting.json\");\n                                templates = JsonConvert.DeserializeObject<TemplateSelection.Templates>(templateSetting);\n                            }\n                            //[for direct URLs] if the incoming template name is not null, checking for Template name in Template setting file. \n                            //if exist, will append the template name to Selected template textbox, else will append the SmartHotel360 template\n                            if (!string.IsNullOrEmpty(TemplateSelected))\n                            {\n                                if (Session[\"PrivateTemplateName\"] == null)\n                                {\n                                    foreach (var grpTemplate in templates.GroupwiseTemplates)\n                                    {\n                                        foreach (var template in grpTemplate.Template)\n                                        {\n                                            if (template.Name != null)\n                                            {\n                                                if (template.Name.ToLower() == TemplateSelected.ToLower())\n                                                {\n                                                    model.SelectedTemplate = template.Name;\n                                                    model.Templates.Add(template.Name);\n                                                    model.selectedTemplateDescription = template.Description == null ? string.Empty : template.Description;\n                                                    model.selectedTemplateFolder = template.TemplateFolder == null ? string.Empty : template.TemplateFolder;\n                                                    model.Message = template.Message == null ? string.Empty : template.Message;\n                                                    model.ForkGitHubRepo = template.ForkGitHubRepo.ToString();\n                                                    model.templateImage = template.Image ?? \"/Templates/TemplateImages/CodeFile.png\";\n                                                }\n                                            }\n                                        }\n                                    }\n                                }\n                                else\n                                {\n                                    model.SelectedTemplate = Session[\"PrivateTemplateOriginalName\"].ToString();\n                                    model.Templates.Add(model.SelectedTemplate);\n                                    model.selectedTemplateDescription = \"<p style='color:red;fontsize:10px'><b>Note</b>: Template will be discarded once the process completes. Please refersh the page to select other templates </p>\";\n                                    model.selectedTemplateFolder = Session[\"PrivateTemplateName\"].ToString();\n                                    model.ForkGitHubRepo = \"false\";\n                                    model.templateImage = \"/Templates/TemplateImages/CodeFile.png\";\n                                }\n                            }\n                            return View(model);\n                        }\n                    }\n                    return Redirect(\"../Account/Verify\");\n                }\n                else\n                {\n                    Session.Clear();\n                    return Redirect(\"../Account/Verify\");\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                ViewBag.ErrorMessage = ex.Message;\n                return Redirect(\"../Account/Verify\");\n            }\n        }\n        [AllowAnonymous]\n        [SessonTimeout]\n        public ActionResult PrivateTemplate()\n        {\n            if (Session[\"visited\"] != null)\n            {\n                return View();\n            }\n            else\n            {\n                return Redirect(\"../Account/Verify\");\n            }\n        }\n\n        /// <summary>\n        /// Call to Create View()\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <returns>View()</returns>\n        [HttpGet]\n        [AllowAnonymous]\n        public ActionResult Create(Project model)\n        {\n            try\n            {\n                AccessDetails _accessDetails = ProjectService.AccessDetails;\n                string isCode = Request.QueryString[\"code\"];\n                if (isCode == null)\n                {\n                    return Redirect(\"../Account/Verify\");\n                }\n                if (Session[\"visited\"] != null)\n                {\n                    if (Session[\"templateName\"] != null && Session[\"templateName\"].ToString() != \"\")\n                    {\n                        model.TemplateName = Session[\"templateName\"].ToString();\n                    }\n                    string code = Request.QueryString[\"code\"];\n\n                    string redirectUrl = System.Configuration.ConfigurationManager.AppSettings[\"RedirectUri\"];\n                    string clientId = System.Configuration.ConfigurationManager.AppSettings[\"ClientSecret\"];\n                    string accessRequestBody = accountService.GenerateRequestPostData(clientId, code, redirectUrl);\n                    _accessDetails = accountService.GetAccessToken(accessRequestBody);\n                    if (!string.IsNullOrEmpty(_accessDetails.access_token))\n                    {\n                        // add your access token here for local debugging                 \n                        model.accessToken = _accessDetails.access_token;\n                        Session[\"PAT\"] = _accessDetails.access_token;\n                    }\n                    return RedirectToAction(\"createproject\", \"Environment\");\n                }\n                else\n                {\n                    Session.Clear();\n                    return Redirect(\"../Account/Verify\");\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                return View();\n            }\n        }\n\n        [AllowAnonymous]\n        [HttpPost]\n        [SessonTimeout]\n        public ActionResult UploadFiles()\n        {\n            string[] strResult = new string[2];\n            string templateName = string.Empty;\n            strResult[0] = templateName;\n            strResult[1] = string.Empty;\n            // Checking no of files injected in Request object  \n            if (Request.Files.Count > 0)\n            {\n                try\n                {\n                    if (!Directory.Exists(Server.MapPath(\"~\") + @\"\\ExtractedZipFile\"))\n                    {\n                        Directory.CreateDirectory(Server.MapPath(\"~\") + @\"\\ExtractedZipFile\");\n                    }\n                    //  Get all files from Request object  \n                    HttpFileCollectionBase files = Request.Files;\n                    for (int i = 0; i < files.Count; i++)\n                    {\n\n                        HttpPostedFileBase file = files[i];\n                        string fileName;\n\n                        // Checking for Internet Explorer  \n                        if (Request.Browser.Browser.ToUpper() == \"IE\" || Request.Browser.Browser.ToUpper() == \"INTERNETEXPLORER\")\n                        {\n                            string[] testFiles = file.FileName.Split(new char[] { '\\\\' });\n                            fileName = testFiles[testFiles.Length - 1];\n                            templateName = fileName.ToLower().Replace(\".zip\", \"\").Trim() + \"-\" + Guid.NewGuid().ToString().Substring(0, 6) + \".zip\";\n\n                            if (System.IO.File.Exists(Path.Combine(Server.MapPath(\"~/ExtractedZipFile/\"), templateName)))\n                            {\n                                System.IO.File.Delete(Path.Combine(Server.MapPath(\"~/ExtractedZipFile/\"), templateName));\n                            }\n                        }\n                        else\n                        {\n                            fileName = file.FileName;\n                            templateName = fileName.ToLower().Replace(\".zip\", \"\").Trim() + \"-\" + Guid.NewGuid().ToString().Substring(0, 6) + \".zip\";\n\n                            if (System.IO.File.Exists(Path.Combine(Server.MapPath(\"~/ExtractedZipFile/\"), templateName)))\n                            {\n                                System.IO.File.Delete(Path.Combine(Server.MapPath(\"~/ExtractedZipFile/\"), templateName));\n                            }\n                        }\n\n                        // Get the complete folder path and store the file inside it.  \n                        fileName = Path.Combine(Server.MapPath(\"~/ExtractedZipFile/\"), templateName);\n                        file.SaveAs(fileName);\n                    }\n                    strResult[0] = templateName;\n                    // Returns message that successfully uploaded  \n                    return Json(strResult);\n                }\n                catch (Exception ex)\n                {\n                    ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                    strResult[1] = \"Error occurred. Error details: \" + ex.Message;\n                    return Json(strResult);\n                }\n            }\n            else\n            {\n                strResult[1] = \"No files selected.\";\n                return Json(strResult);\n            }\n        }\n\n        [AllowAnonymous]\n        [HttpPost]\n        [SessonTimeout]\n        public ActionResult UnzipFile(string fineName)\n        {\n            PrivateTemplate privateTemplate = new PrivateTemplate();\n            string extractPath = string.Empty;\n            try\n            {\n                if (!System.IO.Directory.Exists(Server.MapPath(\"~\") + @\"\\Logs\"))\n                {\n                    Directory.CreateDirectory(Server.MapPath(\"~\") + @\"\\Logs\");\n                }\n                if (!Directory.Exists(Server.MapPath(\"~\") + @\"\\PrivateTemplates\"))\n                {\n                    Directory.CreateDirectory(Server.MapPath(\"~\") + @\"\\PrivateTemplates\");\n                }\n                //Deleting uploaded zip files present from last one hour\n                string extractedZipFile = HostingEnvironment.MapPath(\"~\") + @\"ExtractedZipFile\\\";\n                if (Directory.Exists(extractedZipFile))\n                {\n                    string[] subdirs = Directory.GetFiles(extractedZipFile)\n                                   .Select(Path.GetFileName)\n                                   .ToArray();\n                    foreach (string _file in subdirs)\n                    {\n                        FileInfo d = new FileInfo(extractedZipFile + _file);\n                        if (d.CreationTime < DateTime.Now.AddHours(-1))\n                            System.IO.File.Delete(extractedZipFile + _file);\n                    }\n                }\n\n                string zipPath = Server.MapPath(\"~/ExtractedZipFile/\" + fineName);\n                string folder = fineName.Replace(\".zip\", \"\");\n                privateTemplate.privateTemplateName = folder;\n\n                extractPath = Server.MapPath(\"~/PrivateTemplates/\" + folder);\n                System.IO.Compression.ZipFile.ExtractToDirectory(zipPath, extractPath);\n                System.IO.File.Delete(zipPath);\n                privateTemplate.privateTemplatePath = templateService.FindPrivateTemplatePath(extractPath);\n\n                privateTemplate.responseMessage = templateService.checkSelectedTemplateIsPrivate(privateTemplate.privateTemplatePath);\n\n                bool isExtracted = templateService.checkTemplateDirectory(privateTemplate.privateTemplatePath);\n                if (!isExtracted)\n                {\n                    Directory.Delete(extractPath, true);\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                Directory.Delete(extractPath, true);\n                return Json(ex.Message);\n            }\n            return Json(privateTemplate, JsonRequestBehavior.AllowGet);\n        }\n\n        /// <summary>\n        /// Get members of the account- Not using now\n        /// </summary>\n        /// <param name=\"accountName\"></param>\n        /// <param name=\"accessToken\"></param>\n        /// <returns></returns>\n        [HttpPost]\n        [AllowAnonymous]\n        [SessonTimeout]\n        public JsonResult GetMembers(string accountName, string accessToken)\n        {\n            Project mod = new Project();\n            try\n            {\n                AccountMembers.Account accountMembers = new AccountMembers.Account();\n                VstsRestAPI.Configuration _defaultConfiguration = new VstsRestAPI.Configuration() { UriString = \"https://\" + accountName + \".visualstudio.com/DefaultCollection/\", VersionNumber = \"2.2\", PersonalAccessToken = accessToken };\n                VstsRestAPI.ProjectsAndTeams.Accounts objAccount = new VstsRestAPI.ProjectsAndTeams.Accounts(_defaultConfiguration);\n                accountMembers = objAccount.GetAccountMembers(accountName, accessToken);\n                if (accountMembers.count > 0)\n                {\n                    foreach (var user in accountMembers.value)\n                    {\n                        mod.accountUsersForDdl.Add(new SelectListItem\n                        {\n                            Text = user.member.displayName,\n                            Value = user.member.mailAddress\n                        });\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                return null;\n            }\n            return Json(mod, JsonRequestBehavior.AllowGet);\n        }\n\n        /// <summary>\n        /// Start the process\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <returns></returns>\n        [HttpPost]\n        [AllowAnonymous]\n        [SessonTimeout]\n        public bool StartEnvironmentSetupProcess(Project model)\n        {\n            try\n            {\n                if (Session[\"visited\"] != null)\n                {\n                    Session[\"PAT\"] = model.accessToken;\n                    Session[\"AccountName\"] = model.accountName;\n                    if (Session[\"GitHubToken\"] != null && Session[\"GitHubToken\"].ToString() != \"\" && model.GitHubFork)\n                    {\n                        model.GitHubToken = Session[\"GitHubToken\"].ToString();\n                    }\n                    if (Session[\"PrivateTemplateURL\"] != null && Session[\"PrivateTemplateName\"] != null)\n                    {\n                        model.PrivateTemplatePath = Session[\"PrivateTemplateURL\"].ToString();\n                        Session[\"PrivateTemplateURL\"] = null;\n                        Session[\"PrivateTemplateName\"] = null;\n                        Session[\"PrivateTemplateOriginalName\"] = null;\n                        Session[\"templateName\"] = System.Configuration.ConfigurationManager.AppSettings[\"DefaultTemplate\"];\n                    }\n                    projectService.AddMessage(model.id, string.Empty);\n                    projectService.AddMessage(model.id.ErrorId(), string.Empty);\n                    bool whereIsTemplate = projectService.WhereDoseTemplateBelongTo(model.SelectedTemplate); // checking for private template  existance\n                    if (!string.IsNullOrEmpty(model.PrivateTemplatePath) && whereIsTemplate) // if the template path exist and tempalte is present in private fodler\n                    {\n                        model.IsPrivatePath = true;\n                    }\n                    ProcessEnvironment processTask = new ProcessEnvironment(projectService.CreateProjectEnvironment);\n                    processTask.BeginInvoke(model, new AsyncCallback(EndEnvironmentSetupProcess), processTask);\n                }\n                else\n                {\n                    return false;\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return true;\n        }\n\n        /// <summary>\n        /// End the process\n        /// </summary>\n        /// <param name=\"result\"></param>\n        public void EndEnvironmentSetupProcess(IAsyncResult result)\n        {\n            string templateUsed = string.Empty;\n            string ID = string.Empty;\n            string accName = string.Empty;\n            try\n            {\n                ProcessEnvironment processTask = (ProcessEnvironment)result.AsyncState;\n                string[] strResult = processTask.EndInvoke(result);\n                if (strResult != null && strResult.Length > 0)\n                {\n                    ID = strResult[0];\n                    accName = strResult[1];\n                    templateUsed = strResult[2];\n                    projectService.RemoveKey(ID);\n                    if (ProjectService.StatusMessages.Keys.Count(x => x == ID + \"_Errors\") == 1)\n                    {\n                        string errorMessages = ProjectService.statusMessages[ID + \"_Errors\"];\n                        if (errorMessages != \"\")\n                        {\n                            //also, log message to file system\n                            string logPath = Server.MapPath(\"~\") + @\"\\Log\";\n                            string accountName = strResult[1];\n                            string fileName = string.Format(\"{0}_{1}.txt\", templateUsed, DateTime.Now.ToString(\"ddMMMyyyy_HHmmss\"));\n\n                            if (!Directory.Exists(logPath))\n                            {\n                                Directory.CreateDirectory(logPath);\n                            }\n\n                            System.IO.File.AppendAllText(Path.Combine(logPath, fileName), errorMessages);\n\n                            //Create ISSUE work item with error details in VSTSProjectgenarator account\n                            string patBase64 = System.Configuration.ConfigurationManager.AppSettings[\"PATBase64\"];\n                            string url = System.Configuration.ConfigurationManager.AppSettings[\"URL\"];\n                            string projectId = System.Configuration.ConfigurationManager.AppSettings[\"PROJECTID\"];\n                            string issueName = string.Format(\"{0}_{1}\", templateUsed, DateTime.Now.ToString(\"ddMMMyyyy_HHmmss\"));\n                            IssueWI objIssue = new IssueWI();\n\n                            errorMessages = errorMessages + \"\\t\" + \"TemplateUsed: \" + templateUsed;\n                            errorMessages = errorMessages + \"\\t\" + \"ProjectCreated : \" + ProjectService.projectName;\n\n                            ProjectService.logger.Error(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t  Error: \" + errorMessages);\n\n                            string logWIT = System.Configuration.ConfigurationManager.AppSettings[\"LogWIT\"];\n                            if (logWIT == \"true\")\n                            {\n                                objIssue.CreateIssueWI(patBase64, \"4.1\", url, issueName, errorMessages, projectId, \"Demo Generator\");\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            finally\n            {\n                DeletePrivateTemplate(templateUsed);\n            }\n        }\n\n        /// <summary>\n        /// Checking for Extenison in the account\n        /// </summary>\n        /// <param name=\"selectedTemplate\"></param>\n        /// <param name=\"token\"></param>\n        /// <param name=\"account\"></param>\n        /// <returns></returns>\n        [HttpGet]\n        [AllowAnonymous]\n        [SessonTimeout]\n        public JsonResult CheckForInstalledExtensions(string selectedTemplate, string token, string account, string PrivatePath = \"\")\n        {\n            try\n            {\n                bool isTemplateBelongToPrivateFolder = projectService.WhereDoseTemplateBelongTo(selectedTemplate);\n                if (!string.IsNullOrEmpty(selectedTemplate) && !string.IsNullOrEmpty(account) && !string.IsNullOrEmpty(token))\n                {\n                    string accountName = string.Empty;\n                    string pat = string.Empty;\n\n                    accountName = account;\n                    pat = token;\n                    string templatesFolder = string.Empty;\n                    string extensionJsonFile = string.Empty;\n                    if (isTemplateBelongToPrivateFolder)\n                    {\n                        templatesFolder = PrivatePath;//Session[\"PrivateTemplateURL\"].ToString();\n                        extensionJsonFile = string.Format(\"{0}\\\\{1}\", templatesFolder, \"Extensions.json\");\n                    }\n                    else if (string.IsNullOrEmpty(PrivatePath))\n                    {\n                        templatesFolder = Server.MapPath(\"~\") + @\"\\Templates\\\";\n                        extensionJsonFile = string.Format(templatesFolder + @\"\\{0}\\Extensions.json\", selectedTemplate);\n                    }\n                    else\n                    {\n                        templatesFolder = PrivatePath;\n                        extensionJsonFile = string.Format(templatesFolder + @\"\\Extensions.json\");\n                    }\n\n                    if (!(System.IO.File.Exists(extensionJsonFile)))\n                    {\n                        return Json(new { message = \"Template not found\", status = \"false\" }, JsonRequestBehavior.AllowGet);\n                    }\n\n                    RequiredExtensions.Extension template = new RequiredExtensions.Extension();\n                    string listedExtension = System.IO.File.ReadAllText(extensionJsonFile);\n                    if (!string.IsNullOrEmpty(listedExtension))\n                    {\n                        template = JsonConvert.DeserializeObject<RequiredExtensions.Extension>(listedExtension);\n                    }\n                    if (template == null || template.Extensions == null || template.Extensions.Count == 0)\n                    {\n                        return Json(new { message = \"no extensions required\", status = \"false\" }, JsonRequestBehavior.AllowGet);\n                    }\n                    template.Extensions.RemoveAll(x => x.extensionName.ToLower() == \"analytics\");\n                    template.Extensions = template.Extensions.OrderBy(y => y.extensionName).ToList();\n                    string requiresExtensionNames = string.Empty;\n                    string requiredMicrosoftExt = string.Empty;\n                    string requiredThirdPartyExt = string.Empty;\n                    string finalExtensionString = string.Empty;\n\n                    //Check for existing extensions\n                    if (template.Extensions.Count > 0)\n                    {\n                        Dictionary<string, bool> dict = new Dictionary<string, bool>();\n                        foreach (RequiredExtensions.ExtensionWithLink ext in template.Extensions)\n                        {\n                            if (!dict.ContainsKey(ext.extensionName))\n                            {\n                                dict.Add(ext.extensionName, false);\n                            }\n                        }\n\n                        var connection = new VssConnection(new Uri(string.Format(\"https://{0}.visualstudio.com\", accountName)), new Microsoft.VisualStudio.Services.OAuth.VssOAuthAccessTokenCredential(pat));// VssOAuthCredential(PAT));\n\n                        var client = connection.GetClient<ExtensionManagementHttpClient>();\n                        var installed = client.GetInstalledExtensionsAsync().Result;\n                        var extensions = installed.Where(x => x.Flags == 0 && x.ExtensionDisplayName.ToLower() != \"analytics\").ToList();\n\n                        var trustedFlagExtensions = installed.Where(x => x.Flags == ExtensionFlags.Trusted && x.ExtensionDisplayName.ToLower() != \"analytics\").ToList();\n                        var builtInExtensions = installed.Where(x => x.Flags.ToString() == \"BuiltIn, Trusted\" && x.ExtensionDisplayName.ToLower() != \"analytics\").ToList();\n\n                        extensions.AddRange(trustedFlagExtensions);\n                        extensions.AddRange(builtInExtensions);\n                        string askld = JsonConvert.SerializeObject(extensions);\n                        foreach (var ext in extensions)\n                        {\n                            foreach (var extension in template.Extensions)\n                            {\n                                if (extension.extensionName.ToLower() == ext.ExtensionDisplayName.ToLower() && extension.extensionId.ToLower() == ext.ExtensionName.ToLower())\n                                {\n                                    dict[extension.extensionName] = true;\n                                }\n                            }\n                        }\n                        var required = dict.Where(x => x.Value == false).ToList();\n                        if (required.Count > 0)\n                        {\n                            requiresExtensionNames = \"<p style='color:red'>One or more extension(s) is not installed/enabled in your Azure DevOps Organization.</p><p> You will need to install and enable them in order to proceed. If you agree with the terms below, the required extensions will be installed automatically for the selected organization when the project is provisioned, otherwise install them manually and try refreshing the page </p>\";\n                            var installedExtensions = dict.Where(x => x.Value == true).ToList();\n                            if (installedExtensions.Count > 0)\n                            {\n                                foreach (var ins in installedExtensions)\n                                {\n\n                                    string link = \"<i class='fas fa-check-circle'></i> \" + template.Extensions.Where(x => x.extensionName == ins.Key).FirstOrDefault().link;\n                                    string lincense = \"\";\n                                    requiresExtensionNames = requiresExtensionNames + link + lincense + \"<br/><br/>\";\n                                }\n                            }\n                            foreach (var req in required)\n                            {\n                                string publisher = template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().publisherName;\n                                if (publisher == \"Microsoft\")\n                                {\n                                    string link = \"<i class='fa fa-times-circle'></i> \" + template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().link;\n\n                                    string lincense = \"\";\n                                    if (!string.IsNullOrEmpty(template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().License))\n                                    {\n                                        lincense = \" - \" + template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().License;\n                                    }\n                                    requiredMicrosoftExt = requiredMicrosoftExt + link + lincense + \"<br/>\";\n                                }\n                                else\n                                {\n                                    string link = \"<i class='fa fa-times-circle'></i> \" + template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().link;\n                                    string lincense = \"\";\n                                    if (!string.IsNullOrEmpty(template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().License))\n                                    {\n                                        lincense = \" - \" + template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().License;\n                                    }\n                                    requiredThirdPartyExt = requiredThirdPartyExt + link + lincense + \"<br/>\";\n                                }\n                            }\n                            if (!string.IsNullOrEmpty(requiredMicrosoftExt))\n                            {\n                                requiredMicrosoftExt = requiredMicrosoftExt + \"<br/><div id='agreeTerms'><label style='font-weight: 400; text-align: justify; padding-left: 5px;'><input type = 'checkbox' class='terms' id = 'agreeTermsConditions' placeholder='microsoft' /> &nbsp; By checking the box I agree, and also on behalf of all users in the organization, that our use of the extension(s) is governed by the  <a href = 'https://go.microsoft.com/fwlink/?LinkID=266231' target = '_blank'> Microsoft Online Services Terms </a> and <a href = 'https://go.microsoft.com/fwlink/?LinkId=131004&clcid=0x409' target = '_blank'> Microsoft Online Services Privacy Statement</a></label></div>\";\n                            }\n                            if (!string.IsNullOrEmpty(requiredThirdPartyExt))\n                            {\n                                requiredThirdPartyExt = requiredThirdPartyExt + \"<br/><div id='ThirdPartyAgreeTerms'><label style = 'font-weight: 400; text-align: justify; padding-left: 5px;'><input type = 'checkbox' class='terms' id = 'ThirdPartyagreeTermsConditions' placeholder='thirdparty' /> &nbsp; The extension(s) are offered to you for your use by a third party, not Microsoft.  The extension(s) is licensed separately according to its corresponding License Terms.  By continuing and installing those extensions, you also agree to those License Terms.</label></div>\";\n                            }\n                            finalExtensionString = requiresExtensionNames + requiredMicrosoftExt + requiredThirdPartyExt;\n                            return Json(new { message = finalExtensionString, status = \"false\" }, JsonRequestBehavior.AllowGet);\n                        }\n                        else\n                        {\n                            var installedExtensions = dict.Where(x => x.Value == true).ToList();\n                            if (installedExtensions.Count > 0)\n                            {\n                                requiresExtensionNames = \"All required extensions are installed/enabled in your Azure DevOps Organization.<br/><br/><b>\";\n                                foreach (var ins in installedExtensions)\n                                {\n                                    string link = \"<i class='fas fa-check-circle'></i> \" + template.Extensions.Where(x => x.extensionName == ins.Key).FirstOrDefault().link;\n                                    string lincense = \"\";\n                                    requiresExtensionNames = requiresExtensionNames + link + lincense + \"<br/>\";\n                                }\n                                return Json(new { message = requiresExtensionNames, status = \"true\" }, JsonRequestBehavior.AllowGet);\n                            }\n                        }\n\n                    }\n                    else { requiresExtensionNames = \"no extensions required\"; return Json(new { message = \"no extensions required\", status = \"false\" }, JsonRequestBehavior.AllowGet); }\n                    return Json(new { message = requiresExtensionNames, status = \"false\" }, JsonRequestBehavior.AllowGet);\n                }\n                else\n                {\n                    return Json(new { message = \"Error\", status = \"false\" }, JsonRequestBehavior.AllowGet);\n                }\n\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                return Json(new { message = \"Error\", status = \"false\" }, JsonRequestBehavior.AllowGet);\n            }\n        }\n\n        [AllowAnonymous]\n        [SessonTimeout]\n        public string CheckSession()\n        {\n            if (Session[\"GitHubToken\"] != null && Session[\"GitHubToken\"].ToString() != \"\")\n            {\n                return Session[\"GitHubToken\"].ToString();\n            }\n            else\n            {\n                return string.Empty;\n            }\n        }\n\n        [HttpGet]\n        [AllowAnonymous]\n        [SessonTimeout]\n        public JsonResult UploadPrivateTemplateFromURL(string TemplateURL, string token, string userId, string password, string OldPrivateTemplate = \"\")\n        {\n            if (Session[\"visited\"] != null)\n            {\n                if (!string.IsNullOrEmpty(OldPrivateTemplate))\n                {\n                    templateService.deletePrivateTemplate(OldPrivateTemplate);\n                }\n                PrivateTemplate privateTemplate = new PrivateTemplate();\n                string templatePath = string.Empty;\n                try\n                {\n                    string templateName = \"\";\n                    string fileName = Path.GetFileName(TemplateURL);\n                    string extension = Path.GetExtension(TemplateURL);\n                    templateName = fileName.ToLower().Replace(\".zip\", \"\").Trim() + \"-\" + Guid.NewGuid().ToString().Substring(0, 6) + extension.ToLower();\n                    privateTemplate.privateTemplateName = templateName.ToLower().Replace(\".zip\", \"\").Trim();\n                    privateTemplate.privateTemplatePath = templateService.GetTemplateFromPath(TemplateURL, templateName, token, userId, password);\n\n                    if (privateTemplate.privateTemplatePath != \"\")\n                    {\n                        privateTemplate.responseMessage = templateService.checkSelectedTemplateIsPrivate(privateTemplate.privateTemplatePath);\n                        if (privateTemplate.responseMessage != \"SUCCESS\")\n                        {\n                            var templatepath = HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\" + templateName.ToLower().Replace(\".zip\", \"\").Trim();\n                            if (Directory.Exists(templatepath))\n                                Directory.Delete(templatepath, true);\n                        }\n                    }\n                    else\n                    {\n                        privateTemplate.responseMessage = \"Unable to download file, please check the provided URL\";\n                    }\n\n                }\n                catch (Exception ex)\n                {\n                    ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                    return Json(new { message = \"Error\", status = \"false\" }, JsonRequestBehavior.AllowGet);\n                }\n                return Json(privateTemplate, JsonRequestBehavior.AllowGet);\n            }\n            else\n            {\n                return Json(\"Session Expired\", JsonRequestBehavior.AllowGet);\n            }\n\n        }\n\n        [HttpPost]\n        [AllowAnonymous]\n        [SessonTimeout]\n        public void DeletePrivateTemplate(string TemplateName)\n        {\n            templateService.deletePrivateTemplate(TemplateName);\n        }\n    }\n\n}\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Controllers/ExtractorController.cs",
    "content": "﻿using log4net;\nusing System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Linq;\nusing System.Net.Http;\nusing System.Web.Mvc;\nusing VstsDemoBuilder.Extensions;\nusing VstsDemoBuilder.ExtractorModels;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsDemoBuilder.Services;\nusing VstsRestAPI;\nusing VstsRestAPI.Extractor;\nusing VstsRestAPI.ProjectsAndTeams;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\nusing VstsRestAPI.WorkItemAndTracking;\n\nnamespace VstsDemoBuilder.Controllers\n{\n\n    public class ExtractorController : Controller\n    {\n        \n        private delegate string[] ProcessEnvironment(Project model);        \n        private IExtractorService extractorService;\n        private IAccountService accountService;\n        public ExtractorController()\n        {\n            accountService = new AccountService();\n            extractorService = new ExtractorService();\n        }\n\n        [AllowAnonymous]\n        public ActionResult NotFound()\n        {\n            return View();\n        }\n\n        // Get the current progress of work done\n        [HttpGet]\n        [AllowAnonymous]\n        public ContentResult GetCurrentProgress(string id)\n        {\n            this.ControllerContext.HttpContext.Response.AddHeader(\"cache-control\", \"no-cache\");\n            var currentProgress = ExtractorService.GetStatusMessage(id).ToString();\n            return Content(currentProgress);\n        }\n        [AllowAnonymous]\n        public ActionResult Index(ProjectList.ProjectDetails model)\n        {\n            try\n            {\n                AccessDetails accessDetails = new AccessDetails();\n                string pat = \"\";\n                string email = \"\";\n                if (Session[\"PAT\"] != null)\n                {\n                    pat = Session[\"PAT\"].ToString();\n                }\n                if (Session[\"Email\"] != null)\n                {\n                    email = Session[\"PAT\"].ToString();\n                }\n                if (string.IsNullOrEmpty(pat))\n                {\n                    return Redirect(\"../Account/Verify\");\n                }\n                else\n                {\n                    accessDetails.access_token = pat;\n                    ProfileDetails profile = accountService.GetProfile(accessDetails);\n                    if (profile == null)\n                    {\n                        ViewBag.ErrorMessage = \"Could not fetch your profile details, please try to login again\";\n                        return View(model);\n                    }\n                    if (profile.displayName != null && profile.emailAddress != null)\n                    {\n                        Session[\"User\"] = profile.displayName;\n                        Session[\"Email\"] = profile.emailAddress.ToLower();\n                    }\n                    AccountsResponse.AccountList accountList = accountService.GetAccounts(profile.id, accessDetails);\n                    model.accessToken = accessDetails.access_token;\n                    model.accountsForDropdown = new List<string>();\n                    model.profileImage = \"data:image/png;base64, \" + profile.coreAttributes?.Avatar?.value?.value;\n                    if (accountList.count > 0)\n                    {\n                        foreach (var account in accountList.value)\n                        {\n                            model.accountsForDropdown.Add(account.accountName);\n                        }\n                        model.accountsForDropdown.Sort();\n                    }\n                    else\n                    {\n                        model.accountsForDropdown.Add(\"Select Organization\");\n                        ViewBag.AccDDError = \"Could not load your organizations. Please change the directory in profile page of Azure DevOps Organization and try again.\";\n                    }\n                    return View(model);\n                }\n            }\n            catch (Exception ex)\n            {\n                ExtractorService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return View(model);\n        }\n\n        // Get Project List from the selected Organization\n        [AllowAnonymous]\n        public JsonResult GetprojectList(string accname, string pat)\n        {\n            string defaultHost = System.Configuration.ConfigurationManager.AppSettings[\"DefaultHost\"];\n            string ProjectCreationVersion = System.Configuration.ConfigurationManager.AppSettings[\"ProjectCreationVersion\"];\n\n            Configuration config = new Configuration() { AccountName = accname, PersonalAccessToken = pat, UriString = defaultHost + accname, VersionNumber = ProjectCreationVersion };\n            Projects projects = new Projects(config);\n            HttpResponseMessage response = projects.GetListOfProjects();\n            ProjectsResponse.ProjectResult projectResult = new ProjectsResponse.ProjectResult();\n            if (response.IsSuccessStatusCode)\n            {\n                // set the viewmodel from the content in the response\n                projectResult = response.Content.ReadAsAsync<ProjectsResponse.ProjectResult>().Result;\n                projectResult.value = projectResult.value.OrderBy(x => x.name).ToList();\n            }\n            try\n            {\n                if (string.IsNullOrEmpty(projectResult.errmsg))\n                {\n                    if (projectResult.count == 0)\n                    {\n                        projectResult.errmsg = \"No projects found!\";\n                    }\n                    return Json(projectResult, JsonRequestBehavior.AllowGet);\n                }\n            }\n            catch (Exception ex)\n            {\n                ExtractorService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                projectResult.errmsg = ex.Message.ToString();\n                string message = ex.Message.ToString();\n            }\n            return Json(projectResult, JsonRequestBehavior.AllowGet);\n        }\n\n        //Get Project Properties to knwo which process template it is following\n        [AllowAnonymous]\n        public JsonResult GetProjectProperties(string accname, string project, string _credentials)\n        {\n            try\n            {\n                string defaultHost = System.Configuration.ConfigurationManager.AppSettings[\"DefaultHost\"];\n                string ProjectPropertyVersion = System.Configuration.ConfigurationManager.AppSettings[\"ProjectPropertyVersion\"];\n\n                Configuration config = new Configuration() { AccountName = accname, PersonalAccessToken = _credentials, UriString = defaultHost + accname, VersionNumber = ProjectPropertyVersion, ProjectId = project };\n\n                ProjectProperties.Properties load = new ProjectProperties.Properties();\n                Projects projects = new Projects(config);\n                load = projects.GetProjectProperties();\n                if (load.count > 0)\n                {\n                    if (load.TypeClass != null)\n                    {\n                        return Json(load, JsonRequestBehavior.AllowGet);\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                ExtractorService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new JsonResult();\n\n        }\n\n        // End the extraction process\n        public void EndEnvironmentSetupProcess(IAsyncResult result)\n        {\n            ProcessEnvironment processTask = (ProcessEnvironment)result.AsyncState;\n            string[] strResult = processTask.EndInvoke(result);\n\n            ExtractorService.RemoveKey(strResult[0]);\n            if (ExtractorService.StatusMessages.Keys.Count(x => x == strResult[0] + \"_Errors\") == 1)\n            {\n                string errorMessages = ExtractorService.statusMessages[strResult[0] + \"_Errors\"];\n                if (errorMessages != \"\")\n                {\n                    //also, log message to file system\n                    string logPath = Server.MapPath(\"~\") + @\"\\Log\";\n                    string accountName = strResult[1];\n                    string fileName = string.Format(\"{0}_{1}.txt\", \"Extractor_\", DateTime.Now.ToString(\"ddMMMyyyy_HHmmss\"));\n\n                    if (!Directory.Exists(logPath))\n                    {\n                        Directory.CreateDirectory(logPath);\n                    }\n                    System.IO.File.AppendAllText(Path.Combine(logPath, fileName), errorMessages);\n\n                    //Create ISSUE work item with error details in VSTSProjectgenarator account\n                    string patBase64 = System.Configuration.ConfigurationManager.AppSettings[\"PATBase64\"];\n                    string url = System.Configuration.ConfigurationManager.AppSettings[\"URL\"];\n                    string projectId = System.Configuration.ConfigurationManager.AppSettings[\"PROJECTID\"];\n                    string issueName = string.Format(\"{0}_{1}\", \"Extractor_\", DateTime.Now.ToString(\"ddMMMyyyy_HHmmss\"));\n                    IssueWI objIssue = new IssueWI();\n                    ExtractorService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t Extractor_\" + errorMessages + \"\\n\");\n                    string logWIT = \"true\"; //System.Configuration.ConfigurationManager.AppSettings[\"LogWIT\"];\n                    if (logWIT == \"true\")\n                    {\n                        objIssue.CreateIssueWI(patBase64, \"4.1\", url, issueName, errorMessages, projectId, \"Extractor\");\n                    }\n                }\n            }\n        }\n\n        //Analyze the selected project to know what all the artifacts it has\n        public ProjectConfigurations ProjectConfiguration(Project model)\n        {\n            string repoVersion = System.Configuration.ConfigurationManager.AppSettings[\"RepoVersion\"];\n            string buildVersion = System.Configuration.ConfigurationManager.AppSettings[\"BuildVersion\"];\n            string releaseVersion = System.Configuration.ConfigurationManager.AppSettings[\"ReleaseVersion\"];\n            string wikiVersion = System.Configuration.ConfigurationManager.AppSettings[\"WikiVersion\"];\n            string boardVersion = System.Configuration.ConfigurationManager.AppSettings[\"BoardVersion\"];\n            string workItemsVersion = System.Configuration.ConfigurationManager.AppSettings[\"WorkItemsVersion\"];\n            string releaseHost = System.Configuration.ConfigurationManager.AppSettings[\"ReleaseHost\"];\n            string defaultHost = System.Configuration.ConfigurationManager.AppSettings[\"DefaultHost\"];\n            string extensionHost = System.Configuration.ConfigurationManager.AppSettings[\"ExtensionHost\"];\n            string getReleaseVersion = System.Configuration.ConfigurationManager.AppSettings[\"GetRelease\"];\n            string agentQueueVersion = System.Configuration.ConfigurationManager.AppSettings[\"AgentQueueVersion\"];\n            string extensionVersion = System.Configuration.ConfigurationManager.AppSettings[\"ExtensionVersion\"];\n            string endpointVersion = System.Configuration.ConfigurationManager.AppSettings[\"EndPointVersion\"];\n            string queriesVersion = System.Configuration.ConfigurationManager.AppSettings[\"QueriesVersion\"];\n            ProjectConfigurations projectConfig = new ProjectConfigurations();\n\n            projectConfig.AgentQueueConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = wikiVersion };\n            projectConfig.WorkItemConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = wikiVersion };\n            projectConfig.BuildDefinitionConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = buildVersion };\n            projectConfig.ReleaseDefinitionConfig = new Configuration() { UriString = releaseHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = releaseVersion };\n            projectConfig.RepoConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = repoVersion };\n            projectConfig.BoardConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = boardVersion };\n            projectConfig.Config = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id };\n            projectConfig.GetReleaseConfig = new Configuration() { UriString = releaseHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = getReleaseVersion };\n            projectConfig.ExtensionConfig = new Configuration() { UriString = extensionHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = extensionVersion };\n            projectConfig.EndpointConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = endpointVersion };\n            projectConfig.QueriesConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = queriesVersion };\n\n            return projectConfig;\n        }\n\n        #region GetCounts\n        // Start Analysis process\n        [AllowAnonymous]\n        public JsonResult AnalyzeProject(Project model)\n        {\n            ExtractorService es = new ExtractorService();\n            ExtractorAnalysis analysis = new ExtractorAnalysis();\n            ProjectConfigurations appConfig = extractorService.ProjectConfiguration(model);\n            analysis.teamCount = extractorService.GetTeamsCount(appConfig);\n            analysis.IterationCount = extractorService.GetIterationsCount(appConfig);\n            analysis.WorkItemCounts = extractorService.GetWorkItemsCount(appConfig);\n            analysis.BuildDefCount = extractorService.GetBuildDefinitionCount(appConfig);\n            analysis.ReleaseDefCount = extractorService.GetReleaseDefinitionCount(appConfig);\n\n            analysis.ErrorMessages = es.errorMessages;\n            return Json(analysis, JsonRequestBehavior.AllowGet);\n        }\n        #endregion\n\n        #region Extract Template\n        //Initiate the extraction process\n        [HttpPost]\n        [AllowAnonymous]\n        public bool StartEnvironmentSetupProcess(Project model)\n        {\n            System.Web.HttpContext.Current.Session[\"Project\"] = model.ProjectName;\n            ExtractorService.AddMessage(model.id, string.Empty);\n            ExtractorService.AddMessage(model.id.ErrorId(), string.Empty);\n            ProcessEnvironment processTask = new ProcessEnvironment(extractorService.GenerateTemplateArifacts);\n            processTask.BeginInvoke(model, new AsyncCallback(EndEnvironmentSetupProcess), processTask);\n            return true;\n        }\n        #endregion end extract template\n        // Remove the template folder after zipping it\n        [AllowAnonymous]\n        private void RemoveFolder()\n        {\n            string projectName = Session[\"Project\"].ToString();\n            if (projectName != \"\")\n            {\n                System.IO.File.Delete(ExtractorService.extractedTemplatePath + projectName);\n                System.IO.File.Delete(ExtractorService.extractedTemplatePath + projectName + \".zip\");\n            }\n\n        }\n\n        [AllowAnonymous]\n        public ActionResult ZipAndDownloadFiles(string fileName)\n        {\n            string filePath = Server.MapPath(\"~\") + @\"ExtractedTemplate\\\" + fileName;\n            try\n            {\n                CreateZips.SourceDirectoriesFiles sfiles = new CreateZips.SourceDirectoriesFiles();\n                if (System.IO.Directory.Exists(filePath))\n                {\n                    string[] files = Directory.GetFiles(filePath);\n                    string[] subDirs = Directory.GetDirectories(filePath);\n                    if (files.Length > 0)\n                    {\n                        sfiles.Files = new List<CreateZips.FileInfo>();\n\n                        foreach (var f in files)\n                        {\n                            CreateZips.FileInfo fileInfo = new CreateZips.FileInfo();\n\n                            string[] fSplit = f.Split('\\\\');\n                            string splitLength = fSplit[fSplit.Length - 1];\n                            fSplit = splitLength.Split('.');\n\n                            fileInfo.Name = fSplit[0];\n                            fileInfo.Extension = fSplit[1];\n                            fileInfo.FileBytes = System.IO.File.ReadAllBytes(f);\n                            sfiles.Files.Add(fileInfo);\n                        }\n                    }\n\n                    if (subDirs.Length > 0)\n                    {\n                        sfiles.Folder = new List<CreateZips.Folder>();\n\n                        foreach (var dir in subDirs)\n                        {\n                            string[] subDirFiles = System.IO.Directory.GetFiles(dir);\n                            string[] subDirsLevel2 = Directory.GetDirectories(dir);\n\n                            if (subDirFiles.Length > 0)\n                            {\n                                CreateZips.Folder folder = new CreateZips.Folder();\n                                string[] getFolderName = dir.Split('\\\\');\n                                string subFolderName = getFolderName[getFolderName.Length - 1];\n                                folder.FolderName = subFolderName;\n                                folder.FolderItems = new List<CreateZips.FolderItem>();\n\n                                foreach (var sdf in subDirFiles)\n                                {\n                                    CreateZips.FolderItem folderItem = new CreateZips.FolderItem();\n                                    string[] fSplit = sdf.Split('\\\\');\n                                    string splitLength = fSplit[fSplit.Length - 1];\n                                    fSplit = splitLength.Split('.');\n\n                                    folderItem.Name = fSplit[0];\n                                    folderItem.Extension = fSplit[1];\n                                    folderItem.FileBytes = System.IO.File.ReadAllBytes(sdf);\n                                    folder.FolderItems.Add(folderItem);\n                                }\n                                if (subDirsLevel2.Length > 0)\n                                {\n                                    folder.FolderL2 = new List<CreateZips.FolderL2>();\n                                    foreach (var dirL2 in subDirsLevel2)\n                                    {\n                                        string[] subDirFilesL2 = System.IO.Directory.GetFiles(dirL2);\n                                        if (subDirFilesL2.Length > 0)\n                                        {\n                                            CreateZips.FolderL2 folderFL2 = new CreateZips.FolderL2();\n                                            string[] getFolderNameL2 = dirL2.Split('\\\\');\n                                            string subFolderNameL2 = getFolderNameL2[getFolderNameL2.Length - 1];\n                                            folderFL2.FolderName = subFolderNameL2;\n                                            folderFL2.FolderItems = new List<CreateZips.FolderItem>();\n\n                                            foreach (var sdfL2 in subDirFilesL2)\n                                            {\n                                                CreateZips.FolderItem folderItem = new CreateZips.FolderItem();\n                                                string[] fSplit = sdfL2.Split('\\\\');\n                                                string splitLength = fSplit[fSplit.Length - 1];\n                                                fSplit = splitLength.Split('.');\n\n                                                folderItem.Name = fSplit[0];\n                                                folderItem.Extension = fSplit[1];\n                                                folderItem.FileBytes = System.IO.File.ReadAllBytes(sdfL2);\n                                                folderFL2.FolderItems.Add(folderItem);\n                                            }\n                                            folder.FolderL2.Add(folderFL2);\n                                        }\n                                    }\n                                }\n                                sfiles.Folder.Add(folder);\n                            }\n                        }\n                    }\n                }\n                // ...\n\n                // the output bytes of the zip\n                byte[] fileBytes = null;\n\n                //create a working memory stream\n                using (System.IO.MemoryStream memoryStream = new System.IO.MemoryStream())\n                {\n                    // create a zip\n                    using (System.IO.Compression.ZipArchive zip = new System.IO.Compression.ZipArchive(memoryStream, System.IO.Compression.ZipArchiveMode.Create, true))\n                    {\n                        // interate through the source files\n                        if (sfiles.Folder != null && sfiles.Folder.Count > 0)\n                        {\n                            //each folder in source file [depth 1]\n                            foreach (var folder in sfiles.Folder)\n                            {\n                                // add the item name to the zip\n                                // each file in the folder\n                                foreach (var file in folder.FolderItems)\n                                {\n                                    // folder items - file name, extension, and file bytes or content in bytes\n                                    // zip.CreateEntry can create folder or the file. If you just provide a name, it will create a folder (if it doesn't not exist). If you provide with extension, it will create file \n                                    System.IO.Compression.ZipArchiveEntry zipItem = zip.CreateEntry(folder.FolderName + \"/\" + file.Name + \".\" + file.Extension); // Creating folder and create file inside that folder\n\n                                    using (System.IO.MemoryStream originalFileMemoryStream = new System.IO.MemoryStream(file.FileBytes)) // adding file bytes to memory stream object\n                                    {\n                                        using (System.IO.Stream entryStream = zipItem.Open()) // opening the folder/file\n                                        {\n                                            originalFileMemoryStream.CopyTo(entryStream); // copy memory stream dat bytes to file created\n                                        }\n                                    }\n                                    // for second level of folder like /Template/Teams/BoardColums.json\n                                    //each folder in source file [depth 2]\n                                    if (folder.FolderL2 != null && folder.FolderL2.Count > 0)\n                                    {\n                                        foreach (var folder2 in folder.FolderL2)\n                                        {\n                                            foreach (var file2 in folder2.FolderItems)\n                                            {\n                                                System.IO.Compression.ZipArchiveEntry zipItem2 = zip.CreateEntry(folder.FolderName + \"/\" + folder2.FolderName + \"/\" + file2.Name + \".\" + file2.Extension);\n                                                using (System.IO.MemoryStream originalFileMemoryStreamL2 = new System.IO.MemoryStream(file2.FileBytes))\n                                                {\n                                                    using (System.IO.Stream entryStreamL2 = zipItem2.Open())\n                                                    {\n                                                        originalFileMemoryStreamL2.CopyTo(entryStreamL2);\n                                                    }\n                                                }\n                                            }\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                        if (sfiles.Files != null && sfiles.Files.Count > 0)\n                        {\n                            foreach (var outerFile in sfiles.Files)\n                            {\n                                // add the item name to the zip\n                                System.IO.Compression.ZipArchiveEntry zipItem = zip.CreateEntry(outerFile.Name + \".\" + outerFile.Extension);\n                                // add the item bytes to the zip entry by opening the original file and copying the bytes \n                                using (System.IO.MemoryStream originalFileMemoryStream = new System.IO.MemoryStream(outerFile.FileBytes))\n                                {\n                                    using (System.IO.Stream entryStream = zipItem.Open())\n                                    {\n                                        originalFileMemoryStream.CopyTo(entryStream);\n                                    }\n                                }\n                            }\n                        }\n                    }\n                    fileBytes = memoryStream.ToArray();\n                }\n                // download the constructed zip\n                Directory.Delete(filePath, true);\n                Response.AddHeader(\"Content-Disposition\", \"attachment; filename=\" + fileName + \".zip\");\n                return File(fileBytes, \"application/zip\");\n            }\n            catch (Exception ex)\n            {\n                ExtractorService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            finally\n            {\n                if (Directory.Exists(filePath))\n                {\n                    Directory.Delete(filePath, true);\n                }\n            }\n            ViewBag.Error = \"File not found\";\n            return RedirectToAction(\"Index\", \"Extractor\");\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Controllers/GitHubController.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Net;\nusing System.Net.Http;\nusing System.Web.Mvc;\nusing VstsDemoBuilder.Models;\nusing System.Web;\nusing VstsDemoBuilder.Services;\n\nnamespace VstsDemoBuilder.Controllers\n{\n    public class GitHubController : Controller\n    {\n\n        private GitHubAccessDetails accessDetails = new GitHubAccessDetails();\n        public static string state = Guid.NewGuid().ToString().Split('-')[0];\n        [AllowAnonymous]\n        public ActionResult GitOauth()\n        {\n            //Request User GitHub Identity\n            string ClientID = System.Configuration.ConfigurationManager.AppSettings[\"GitHubClientId\"];\n            string ClientSecret = System.Configuration.ConfigurationManager.AppSettings[\"GitHubClientSecret\"];\n            string RedirectUrl = System.Configuration.ConfigurationManager.AppSettings[\"GitHubRedirectUrl\"];\n            string Scope = System.Configuration.ConfigurationManager.AppSettings[\"GitHubScope\"];\n            string url = string.Format(\"https://github.com/login/oauth/authorize?client_id={0}&scope={1}&redirect_uri={2}&state={3}\", ClientID, Scope, RedirectUrl, state);\n            return Redirect(url);\n        }\n        [AllowAnonymous]\n        public ActionResult Redirect()\n        {\n            ServicePointManager.Expect100Continue = true;\n            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;\n            // Here we get the Code in the Query String, using that we can get access token\n            var request = Request;\n            string code = Request.QueryString[\"code\"];\n            if (!string.IsNullOrEmpty(code))\n            {\n\n                string reqUrl = FormatRequestUrl(code);\n                // Getting access token, if access token is null, will return to Index page [relogin takes place]\n                GitHubAccessDetails _accessDetails = GetAccessToken(reqUrl);\n                if (_accessDetails.access_token != null)\n                {\n                    Session[\"GitHubToken\"] = _accessDetails.access_token;\n                    ViewBag.Response = _accessDetails.access_token;\n                    return RedirectToAction(\"Status\");\n                }\n                else\n                {\n                    return RedirectToAction(\"Issue\");\n                }\n            }\n            return RedirectToAction(\"index\", \"home\");\n        }\n\n        public string FormatRequestUrl(string code)\n        {\n            string ClientID = System.Configuration.ConfigurationManager.AppSettings[\"GitHubClientId\"];\n            string ClientSecret = System.Configuration.ConfigurationManager.AppSettings[\"GitHubClientSecret\"];\n            string RedirectUrl = System.Configuration.ConfigurationManager.AppSettings[\"GitHubRedirectUrl\"];\n            string Scope = System.Configuration.ConfigurationManager.AppSettings[\"GitHubScope\"];\n            string requestUrl = string.Format(\"?client_id={0}&client_secret={1}&code={2}&redirect_uri={3}&state={4}\", ClientID, ClientSecret, code, RedirectUrl, state);\n            return requestUrl;\n        }\n\n        // Formatting the POST URL\n        // Get the access token\n        public GitHubAccessDetails GetAccessToken(string body)\n        {\n            try\n            {\n                using (var client = new HttpClient())\n                {\n                    client.DefaultRequestHeaders.Accept.Clear();\n                    client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue(\"application/json\"));\n                    var request = new HttpRequestMessage(HttpMethod.Post, string.Format(\"https://github.com/login/oauth/access_token/{0}\", body));\n                    HttpResponseMessage response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        accessDetails = JsonConvert.DeserializeObject<GitHubAccessDetails>(response.Content.ReadAsStringAsync().Result);\n                        return accessDetails;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GitHubAccessDetails();\n        }\n        [AllowAnonymous]\n        public ActionResult Status()\n        {\n            return View();\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Controllers/SessonTimeoutAttribute.cs",
    "content": "﻿using System;\nusing System.Web;\nusing System.Web.Mvc;\nusing System.Web.Routing;\n\nnamespace VstsDemoBuilder.Controllers\n{\n    public class SessonTimeoutAttribute : ActionFilterAttribute\n    {\n        public override void OnActionExecuting(ActionExecutingContext filterContext)\n        {\n            HttpContext ctx = HttpContext.Current;\n            if (HttpContext.Current.Session[\"visited\"] == null)\n            {\n                //filterContext.Result = new RedirectResult(\"../account/SessionOutReturn\", true);\n                filterContext.Result = new RedirectToRouteResult(new RouteValueDictionary(new { controller = \"account\", action = \"SessionOutReturn\" }));\n                return;\n            }\n            base.OnActionExecuting(filterContext);\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/EmailTemplates/ErrorDetail.html",
    "content": "﻿<!DOCTYPE html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n    \n</head>\n<body>\n    <div style=\"background-color: #0078D7;height: 45px;color: white;text-align: center;font-size: 22px; padding-top: 8px; margin: 0px;\">VSTS Demogenerator</div>\n    <p>Dear&nbsp;Admin,<br /><br />An user sent error details:</p>\n\t<p>$body$</p>\n    <br />\n\t\n\t<b>Sent by:</b>\n    <p>AccountName: $AccountName$</p>\n    <p>Email: $Email$</p><br />\n    <div style=\"width: 100%;\">\n        <span>Regards,</span><br />\n\n        <span>Team VSTS Demogenerator</span>\n    </div>\n\n</body>\n</html>"
  },
  {
    "path": "src/VstsDemoBuilder/ErrorHandler/AiHandleErrorAttribute.cs",
    "content": "using System;\rusing System.Web.Mvc;\rusing Microsoft.ApplicationInsights;\r\rnamespace VstsDemoBuilder.ErrorHandler\r{\r    [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = true)] \r    public class AiHandleErrorAttribute : HandleErrorAttribute\r    {\r        public override void OnException(ExceptionContext filterContext)\r        {\r            if (filterContext != null && filterContext.HttpContext != null && filterContext.Exception != null)\r            {\r                //If customError is Off, then AI HTTPModule will report the exception\r                if (filterContext.HttpContext.IsCustomErrorEnabled)\r                {   \r                    var ai = new TelemetryClient();\r                    ai.TrackException(filterContext.Exception);\r                } \r            }\r            base.OnException(filterContext);\r        }\r    }\r}"
  },
  {
    "path": "src/VstsDemoBuilder/Extensions/Extension.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\nusing System.IO;\nusing VstsDemoBuilder.Models;\n\nnamespace VstsDemoBuilder.Extensions\n{\n    public static class Extension\n    {\n        public static string ReadJsonFile(this Project file, string filePath)\n        {\n            string fileContents = string.Empty;\n\n            using (FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read))\n            {\n                using (StreamReader sr = new StreamReader(fs))\n                {\n                    fileContents = sr.ReadToEnd();\n                }\n            }\n\n            return fileContents;\n        }\n\n        public static string ErrorId(this string str)\n        {\n            str = str + \"_Errors\";\n            return str;\n        } \n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/ExtractorModels/ExtractorAnalysis.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsDemoBuilder.ExtractorModels\n{\n    public class ExtractorAnalysis\n    {\n        public int teamCount { get; set; }\n        public int IterationCount { get; set; }\n        public int BuildDefCount { get; set; }\n        public int ReleaseDefCount { get; set; }\n        public Dictionary<string, int> WorkItemCounts { get; set; }\n        public List<string> ErrorMessages { get; set; }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Global.asax",
    "content": "﻿<%@ Application Codebehind=\"Global.asax.cs\" Inherits=\"VstsDemoBuilder.MvcApplication\" Language=\"C#\" %>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Global.asax.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\nusing System.Web.Http;\nusing System.Web.Mvc;\nusing System.Web.Optimization;\nusing System.Web.Routing;\n\nnamespace VstsDemoBuilder\n{\n    // Note: For instructions on enabling IIS6 or IIS7 classic mode, \n    // visit http://go.microsoft.com/?LinkId=9394801\n\n    public class MvcApplication : System.Web.HttpApplication\n    {\n        protected void Application_Start()\n        {\n            AreaRegistration.RegisterAllAreas();\n            GlobalConfiguration.Configure(WebApiConfig.Register);\n            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);\n            RouteConfig.RegisterRoutes(RouteTable.Routes);\n            BundleConfig.RegisterBundles(BundleTable.Bundles);\n\n            GlobalFilters.Filters.Add(new System.Web.Mvc.AuthorizeAttribute());\n            log4net.Config.XmlConfigurator.Configure();\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/CreateBuildDefination.json",
    "content": "{\n  \"name\": \"myDefinition\",\n  \"type\": \"build\",\n  \"quality\": \"definition\",\n  \"queue\": {\n    \"id\": 1\n  },\n  \"build\": [\n    {\n      \"enabled\": true,\n      \"continueOnError\": false,\n      \"alwaysRun\": false,\n      \"displayName\": \"Build solution **\\\\*.sln\",\n      \"task\": {\n        \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n        \"versionSpec\": \"*\"\n      },\n      \"inputs\": {\n        \"solution\": \"**\\\\*.sln\",\n        \"msbuildArgs\": \"\",\n        \"platform\": \"$(platform)\",\n        \"configuration\": \"$(config)\",\n        \"clean\": \"false\",\n        \"restoreNugetPackages\": \"true\",\n        \"vsLocationMethod\": \"version\",\n        \"vsVersion\": \"latest\",\n        \"vsLocation\": \"\",\n        \"msbuildLocationMethod\": \"version\",\n        \"msbuildVersion\": \"latest\",\n        \"msbuildArchitecture\": \"x86\",\n        \"msbuildLocation\": \"\",\n        \"logProjectEvents\": \"true\"\n      }\n    },\n    {\n      \"enabled\": true,\n      \"continueOnError\": false,\n      \"alwaysRun\": false,\n      \"displayName\": \"Test Assemblies **\\\\*test*.dll;-:**\\\\obj\\\\**\",\n      \"task\": {\n        \"id\": \"ef087383-ee5e-42c7-9a53-ab56c98420f9\",\n        \"versionSpec\": \"*\"\n      },\n      \"inputs\": {\n        \"testAssembly\": \"**\\\\*test*.dll;-:**\\\\obj\\\\**\",\n        \"testFiltercriteria\": \"\",\n        \"runSettingsFile\": \"\",\n        \"codeCoverageEnabled\": \"true\",\n        \"otherConsoleOptions\": \"\",\n        \"vsTestVersion\": \"14.0\",\n        \"pathtoCustomTestAdapters\": \"\"\n      }\n    }\n  ],\n  \"repository\": {\n    \"id\": \"278d5cd2-584d-4b63-824a-2ba458937249\",\n    \"type\": \"tfsgit\",\n    \"name\": \"Fabrikam-Fiber-Git\",\n    \"localPath\": \"$(sys.sourceFolder)/MyGitProject\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"url\": \"https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_git/Fabrikam-Fiber-Git\",\n    \"clean\": \"false\"\n  },\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"7c555368-ca64-4199-add6-9ebaf0b0137d\"\n      },\n      \"inputs\": {\n        \"parallel\": \"false\",\n        \"multipliers\": \"[\\\"config\\\",\\\"platform\\\"]\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"forceClean\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    },\n    \"config\": {\n      \"value\": \"debug, release\",\n      \"allowOverride\": true\n    },\n    \"platform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    }\n  },\n  \"triggers\": [],\n  \"comment\": \"my first definition\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/CreateService.json",
    "content": "{\n  \"name\": \"testService\",\n  \"type\": \"chef\",\n  \"url\": \"https://github.com/srinudhulipalla/\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"abc\",\n      \"password\": \"xyz\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/CreateTeam.json",
    "content": "[\n    {\n      \"name\": \"Team1\",\n      \"description\": \"Team1 description\"\n    },\n    {\n      \"name\": \"Team2\",\n      \"description\": \"Team2 description\"\n    }\n]\n    \n"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/CreateTeamProject.json",
    "content": "{\n  \"name\": \"$projectName$\",\n  \"description\": \"$projectDescription$\",\n  \"capabilities\": {\n    \"versioncontrol\": {\n      \"sourceControlType\": \"Git\"\n    },\n    \"processTemplate\": {\n      \"templateTypeId\": \"$templateId$\"\n    }\n  }"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/ErrorMessages.json",
    "content": "{\n  \"ErrorMessages\": \n    {\n      \"accountMessages\":\n        {\n          \"InvalidAccountName\": \"Provide a valid Organization name\",\n          \"InvalidAccessToken\": \"Token of type Basic must be provided\",\n          \"CheckaccountDetails\" :  \"Please check your account details(Organization Name or Access Token)\"\n        },\n      \"projectMessages\": {\n\n        \"InvalidProjectName\": \"Invalid Project name\",\n        \"ProjectNameWithReservedKeyword\": \"Project name must not be a system-reserved name such as PRN, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, COM10, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9, NUL, CON, AUX, SERVER, SignalR, DefaultCollection, or Web\",\n        \"ProjectNameOrEmailID\": \"EmailId or ProjectName is not found\",\n        \"DuplicateProject\": \"ProjectName must be unique\",\n        \"ExtensionNotInstalled\": \"Extension is not installed for the selected Template, Please provide InstallExtensions : true in the request body\"\n      },\n      \"templateMessages\": \n        {\n          \"TemplateNameOrTemplatePath\": \"Please provide templateName or templatePath(GitHub)\",\n          \"TemplateNotFound\": \"Template Not Found!\",\n          \"FailedTemplate\": \"Failed to load the template from given template path. Check the repository URL and the file name.  If the repository is private then make sure that you have provided a GitHub token(PAT) in the request body\",\n          \"PrivateTemplateFileExtension\": \"TemplatePath should have .zip extension file name at the end of the url\"\n        }\n    } \n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/GetRepository.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://github.com/srinudhulipalla/NotepadPlus.git\"\n        },\n      \"serviceEndpointId\": \"\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/ReleaseDefination.json",
    "content": "{\n  \"name\": \"TestRelease\",\n  \"environments\": [\n    {\n      \"name\": \"Dev\",\n      \"queueId\": 2,\n      \"rank\": 1,\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true\n          }\n        ]\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true\n          }\n        ]\n      },\n      \"deployStep\": {\n        \"tasks\": []\n      }\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/WorkItem.json",
    "content": "[\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.Title\",\n    \"value\": \"New Work Item\"\n  },\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.CreatedDate\",\n    \"value\": \"6/1/2016\"\n  },\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.CreatedBy\",\n    \"value\": \"Bharath ym\"\n  },\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.History\",\n    \"value\": \"Jim has the most context around this.\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/WorkItemNew(onlu US and task with 5 test cases).json",
    "content": "﻿[\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-1\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-2\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-1\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-3\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-3\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-5\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-6\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-5\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-7\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-8\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-7\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-9\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-10\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-9\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/JSON/WorkItemNew(withall3).json",
    "content": "﻿[\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is a new Feature\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the new Feature gonna get implemented\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-1\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Feature?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is the User story which has parent requirement\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-2\"\n      },\n\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-1\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-3\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-2\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is a new Feature\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the new Feature gonna get implemented\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-4\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Feature?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is the User story which has parent requirement\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-5\"\n      },\n\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-4\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-6\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-5\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is a new Feature\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the new Feature gonna get implemented\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-7\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Feature?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is the User story which has parent requirement\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-8\"\n      },\n\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-7\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-9\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-8\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is a new Feature\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the new Feature gonna get implemented\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-10\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Feature?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is the User story which has parent requirement\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-11\"\n      },\n\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-10\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-12\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-11\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is a new Feature\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the new Feature gonna get implemented\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-13\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Feature?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is the User story which has parent requirement\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-14\"\n      },\n\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-13\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 gonna get implemented for parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-15\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-14\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Models/AccessDetails.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class AccessDetails\n    {\n        public string access_token { get; set; }\n        public string token_type { get; set; }\n        public string expires_in { get; set; }\n        public string refresh_token { get; set; }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/Accounts.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class AccountsResponse\n    {\n        public class Properties\n        {\n        }\n        public class Value\n        {\n            public string accountId { get; set; }\n            public string accountUri { get; set; }\n            public string accountName { get; set; }\n            public Properties properties { get; set; }\n        }\n\n        public class AccountList\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/CreateZips.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class CreateZips\n    {\n        public class FileInfo\n        {\n            public string Name { get; set; }\n            public string Extension { get; set; }\n            public Byte[] FileBytes { get; set; }\n        }\n\n        public class FolderItem\n        {\n            public string Name { get; set; }\n            public string Extension { get; set; }\n            public Byte[] FileBytes { get; set; }\n\n        }\n        public class FolderL2\n        {\n            public string FolderName { get; set; }\n            public List<FolderItem> FolderItems { get; set; }\n\n        }\n\n        public class Folder\n        {\n            public string FolderName { get; set; }\n            public List<FolderL2> FolderL2 { get; set; }\n            public List<FolderItem> FolderItems { get; set; }\n        }\n\n        public class SourceDirectoriesFiles\n        {\n            public List<FileInfo> Files { get; set; }\n            public List<Folder> Folder { get; set; }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/Default.cs",
    "content": "﻿namespace VstsDemoBuilder.Models\n{\n    public class Default\n    {\n        public const string Agile = \"adcc42ab-9882-485e-a3ed-7678f01f66bc\";\n\n        public const string SCRUM = \"6b724908-ef14-45cf-84f8-768b5384da45\";\n\n        public const string CMMI = \"27450541-8e31-4150-9947-dc59f998fc01\";\n\n        public const string Queue = \"Hosted\";\n\n        public const string BASIC = \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\";\n    }\n\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/Email.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Configuration;\nusing System.Linq;\nusing System.Net;\nusing System.Net.Mail;\nusing System.Net.Security;\nusing System.Security.Cryptography.X509Certificates;\nusing System.Web;\n\nnamespace VstsDemoBuilder.Models\n{\n\tpublic class Email\n\t{\n\t\tpublic string EmailAddress { get; set; }\n\t\tpublic string AccountName { get; set; }\n\t\tpublic string ErrorLog { get; set; }\n\n\t\tpublic bool SendEmail(string toEmail, string body, string subject)\n\t\t{\n            MailMessage newmsg = new MailMessage(ConfigurationManager.AppSettings[\"from\"], toEmail)\n            {\n                //newmsg.From = new MailAddress(ConfigurationManager.AppSettings[\"from\"]);\n                IsBodyHtml = true,\n                Subject = subject,\n\n                //newmsg.To.Add(toEmail);\n                Body = body\n            };\n            SmtpClient smtp = new SmtpClient\n            {\n\n                //smtp.Host = Convert.ToString(ConfigurationManager.AppSettings[\"mailhost\"]);\n                Host = \"smtp.gmail.com\",\n                Port = 587,\n                //smtp.Port = Convert.ToInt16(ConfigurationManager.AppSettings[\"port\"]);\n                UseDefaultCredentials = false,\n                Credentials = new System.Net.NetworkCredential\n          (Convert.ToString(ConfigurationManager.AppSettings[\"username\"]), Convert.ToString(ConfigurationManager.AppSettings[\"password\"])),\n\n                EnableSsl = Convert.ToBoolean(ConfigurationManager.AppSettings[\"enableSSL\"])\n            };\n            try\n\t\t\t{\n\t\t\t\tServicePointManager.ServerCertificateValidationCallback = delegate (object s, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)\n\t\t\t\t{ return true; };\n\t\t\t\tsmtp.Send(newmsg);\n\t\t\t}\n\t\t\tcatch (Exception)\n\t\t\t{\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/ErrorMessages.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class Messages\n    {\n        public ErrorMessages ErrorMessages { get; set; }\n    }\n\n    public class ErrorMessages\n    {\n        public AccountMessages AccountMessages { get; set; }\n        public ProjectMessages ProjectMessages { get; set; }\n        public TemplateMessages TemplateMessages { get; set; }\n    }\n\n\n    public class AccountMessages\n    {\n        public string InvalidAccountName { get; set; }\n        public string InvalidAccessToken { get; set; }\n\n        public string CheckaccountDetails { get; set; }\n    }\n\n    public class ProjectMessages\n    {\n        public string InvalidProjectName { get; set; }\n        public string ProjectNameWithReservedKeyword { get; set; }\n        public string ProjectNameOrEmailID { get; set; }\n        public string DuplicateProject { get; set; }\n        public string ExtensionNotInstalled { get; set; }\n    }\n\n    public class TemplateMessages\n    {\n        public string TemplateNameOrTemplatePath { get; set; }\n        public string TemplateNotFound { get; set; }\n        public string FailedTemplate { get; set; }\n        public string PrivateTemplateFileExtension { get; set; }\n    }\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/GitHubAccessDetails.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class GitHubAccessDetails\n    {\n        public string access_token { get; set; }\n        public string token_type { get; set; }\n        public string scope { get; set; }\n    }\n    public class GitHubUserDetail\n    {\n        public string login { get; set; }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/LoginModel.cs",
    "content": "﻿namespace VstsDemoBuilder.Models\n{\n    public class LoginModel\n    {\n        public string AccountName { get; set; }\n\n        public string PAT { get; set; }\n\n        public string Message { get; set; }\n\n        public string Event { get; set; }\n\n        public string name { get; set; }\n\n        public string EnableExtractor { get; set; }\n        public string TemplateURL { get; set; }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/ProfileDetails.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class Value\n    {\n        public string value { get; set; }\n        public DateTime timeStamp { get; set; }\n        public string size { get; set; }\n        public bool isAutoGenerated { get; set; }\n    }\n    public class Avatar\n    {\n        public Value value { get; set; }\n    }\n    public class CoreAttributes\n    {\n        public Avatar Avatar { get; set; }\n    }\n    public class ProfileDetails\n    {\n        public CoreAttributes coreAttributes { get; set; }\n        public string displayName { get; set; }\n        public string publicAlias { get; set; }\n        public string emailAddress { get; set; }\n        public string id { get; set; }\n        public string ErrorMessage { get; set; }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/Project.cs",
    "content": "﻿using System.Collections.Generic;\nusing System.Web.Mvc;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class Project\n    {\n        public string id { get; set; }\n        public string MemberID { get; set; }\n        public string ProcessTemplate { get; set; }\n        public string ProjectName { get; set; }\n        public string ProjectId { get; set; }\n        public string SelectedTemplate { get; set; }\n        public string TemplateName { get; set; }\n        public bool IsAuthenticated { get; set; }\n        public string SupportEmail { get; set; }\n        public List<string> Templates { get; set; }\n        public Dictionary<string, string> Parameters { get; set; }\n        public EnvironmentValues Environment { get; set; }\n        public List<BuildDef> BuildDefinitions { get; set; }\n        public List<ReleaseDef> ReleaseDefinitions { get; set; }\n        public string UserMethod { get; set; }\n        public List<SelectListItem> accountUsersForDdl { get; set; }\n        public string selectedUsers { get; set; }\n        public List<string> accountUsersForWi { get; set; }\n        public string SonarQubeDNS { get; set; }\n\n        public bool isExtensionNeeded { get; set; }\n        public bool isAgreeTerms { get; set; }\n\n        public string websiteUrl { get; set; }\n        public string Region { get; set; }\n\n        public string accessToken { get; set; }\n        public string refreshToken { get; set; }\n        public string Email { get; set; }\n        public string Name { get; set; }\n        public List<string> accountsForDropdown { get; set; }\n        public string accountName { get; set; }\n        public bool hasAccount { get; set; }\n        public string selectedTemplateDescription { get; set; }\n        public string selectedTemplateFolder { get; set; }\n        public string Message { get; set; }\n        public string EnableExtractor { get; set; }\n        public string tokenType { get; set; }\n        public string GitHubUserName { get; set; }\n        public string GitHubToken { get; set; }\n        public bool GitHubFork { get; set; }\n        public string GitRepoName { get; set; }\n        public string GitRepoURL { get; set; }\n        public string ForkGitHubRepo { get; set; }\n        public bool IsApi { get; set; }\n        public bool IsPrivatePath { get; set; }\n\n        public string PrivateTemplateName { get; set; }\n        public string PrivateTemplatePath { get; set; }\n        public string templateImage { get; set; }\n        public string profileImage { get; set; }\n    }\n    public class EnvironmentValues\n    {\n        public string UserUniquename { get; set; }\n        public string UserUniqueId { get; set; }\n        public string ProjectId { get; set; }\n        public string ProjectName { get; set; }\n        public Dictionary<string, string> repositoryIdList { get; set; }\n        public Dictionary<string, int> AgentQueues { get; set; }\n        public Dictionary<string, string> serviceEndpoints { get; set; }\n        public Dictionary<string, string> pullRequests { get; set; }\n        public Dictionary<string, string> GitHubRepos { get; set; }\n        public Dictionary<int, string> VariableGroups { get; set; }\n        public Dictionary<string, bool> ReposImported { get; set; }\n        public string BoardRowFieldName { get; set; }\n    }\n    public class BuildDef\n    {\n        public string FilePath { get; set; }\n        public string FileName\n        {\n            get { return string.IsNullOrEmpty(this.FilePath) ? string.Empty : System.IO.Path.GetFileName(this.FilePath); }\n            set { FileName = value; }\n        }\n        public string Id { get; set; }\n        public string Name { get; set; }\n\n    }\n    public class ReleaseDef\n    {\n        public string FilePath { get; set; }\n        public string FileName\n        {\n            get { return string.IsNullOrEmpty(this.FilePath) ? string.Empty : System.IO.Path.GetFileName(this.FilePath); }\n            set { FileName = value; }\n        }\n        public string Id { get; set; }\n        public string Name { get; set; }\n    }\n    public class BuildReleaseMapping\n    {\n        private BuildDef _buildDef = null;\n        public string build { get; set; }\n        public string release { get; set; }\n        public BuildDef BuildDefinition\n        {\n            get\n            {\n                if (_buildDef == null)\n                {\n                    _buildDef = new BuildDef();\n                }\n\n                return _buildDef;\n            }\n            set\n            {\n                _buildDef = value;\n            }\n        }\n    }\n\n    public class ProjectTemplate\n    {\n        public string Teams { get; set; }\n        public string BoardColumns { get; set; }\n        public string ProjectSettings { get; set; }\n        public string CardStyle { get; set; }\n        public string CardField { get; set; }\n        public string PBIfromTemplate { get; set; }\n        public string BugfromTemplate { get; set; }\n        public string EpicfromTemplate { get; set; }\n        public string TaskfromTemplate { get; set; }\n        public string TestCasefromTemplate { get; set; }\n        public string FeaturefromTemplate { get; set; }\n        public string UserStoriesFromTemplate { get; set; }\n        public string SetEpic { get; set; }\n        public string BoardRows { get; set; }\n        public string TeamArea { get; set; }\n        public string TestPlanfromTemplate { get; set; }\n        public string TestSuitefromTemplate { get; set; }\n        public string IncludeSubAreas { get; set; }\n    }\n\n    public class ProjectSettings\n    {\n        public string type { get; set; }\n        public string id { get; set; }\n        public List<string> users { get; set; }\n        public List<string> tags { get; set; }\n        public List<string> queues { get; set; }\n        public Dictionary<string, string> renameIterations { get; set; }\n    }\n\n    public class RequiredExtensions\n    {\n        public class ExtensionWithLink\n        {\n            public string extensionName { get; set; }\n            public string link { get; set; }\n            public string publisherId { get; set; }\n            public string extensionId { get; set; }\n            public string publisherName { get; set; }\n            public string License { get; set; }\n        }\n        public class Extension\n        {\n            public List<ExtensionWithLink> Extensions { get; set; }\n        }\n        public class listExtension\n        {\n            public List<ExtensionWithLink> Extensions { get; set; }\n        }\n    }\n    public class TestSuite\n    {\n        public class Plan\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n        public class Value\n        {\n            public string name { get; set; }\n            public Plan plan { get; set; }\n            public string suiteType { get; set; }\n            public bool inheritDefaultConfigurations { get; set; }\n            public string state { get; set; }\n            public IList<string> TestCases { get; set; }\n            public IList<string> requirementIds { get; set; }\n            public int? revision { get; set; }\n        }\n        public class TestSuites\n        {\n            public IList<Value> value { get; set; }\n            public int count { get; set; }\n        }\n    }\n\n    public class RequestedProject\n    {\n        public string email { get; set; }\n        public string projectName { get; set; }\n        public string trackId { get; set; }\n        public string status { get; set; }\n    }\n\n    public class MultiProjects\n    {\n        public string accessToken { get; set; }\n        public string organizationName { get; set; }\n        public string templateName { get; set; }\n        public string templatePath { get; set; }\n        public string gitHubToken { get; set; }\n        public string userId { get; set; }\n        public string password { get; set; }\n        public bool installExtensions { get; set; }\n        public IList<RequestedProject> users { get; set; }\n    }\n\n    public class ProjectResponse\n    {\n        public string templateName { get; set; }\n        public string templatePath { get; set; }\n        public IList<RequestedProject> users { get; set; }\n    }\n\n    public class PrivateTemplate\n    {\n        public string privateTemplateName { get; set; }\n        public string privateTemplateOriginalName { get; set; }\n        public string privateTemplatePath { get; set; }\n        public string responseMessage { get; set; }\n        public bool IsTemplateValid { get; set; }\n    }\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/ProjectList.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class ProjectList\n    {\n        public class Authentication\n        {\n            public string accname { get; set; }\n            public string pat { get; set; }\n        }\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string description { get; set; }\n            public string url { get; set; }\n            public string state { get; set; }\n        }\n\n        public class ProjectDetails\n        {\n            public int count { get; set; }\n            public string profileImage { get; set; }\n            public IList<Value> value { get; set; }\n            public string errmsg { get; set; }\n            public string accessToken { get; set; }\n            public string accountName { get; set; }\n            public List<string> accountsForDropdown { get; set; }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/Query.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class Query\n    {\n        public string name { get; set; }\n        public string wiql { get; set; }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/ReadUser.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class ReadUser\n    {\n        public class User\n        {\n            public IList<string> Users { get; set; }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Models/TemplateSelection.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsDemoBuilder.Models\n{\n    public class TemplateSelection\n    {\n        public class Template\n        {\n            public string Key { get; set; }\n            public string Name { get; set; }\n            public string ShortName { get; set; }\n            public string Description { get; set; }\n            public string[] Tags { get; set; }\n            public string Image { get; set; }\n            public string TemplateFolder { get; set; }\n            public string Message { get; set; }\n            public List<string> PreviewImages { get; set; }\n            public string Author { get; set; }\n            public string LastUpdatedDate { get; set; }\n            public bool ForkGitHubRepo { get; set; }\n        }\n\n        public class GroupwiseTemplate\n        {\n            public string Groups { get; set; }\n            public IList<Template> Template { get; set; }\n        }\n        public class Templates\n        {\n            public IList<string> Groups { get; set; }\n            public IList<string> PrivateGroups { get; set; }\n            public IList<GroupwiseTemplate> GroupwiseTemplates { get; set; }\n            public IList<string> privateTemplates { get; set; }\n        }\n\n        public class TemplateDetails\n        {\n\n            public string Name { get; set; }\n            public string ShortName { get; set; }\n            public string Description { get; set; }\n            public string[] Tags { get; set; }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/NewFeature/RegisteredUsers.json",
    "content": "﻿{\n  \"User\": [\"H.akshay@outlook.com\"]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/BoardColumns.json",
    "content": "[\n  {\n    \"description\": \"\",\n    \"name\": \"New\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"New\",\n      \"Bug\": \"New\"\n    },\n    \"columnType\": \"incoming\",\n    \"isSplit\": null\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Approved\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Approved\",\n      \"Bug\": \"Approved\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Committed\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Committed\",\n      \"Bug\": \"Committed\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Done\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Done\",\n      \"Bug\": \"Done\"\n    },\n    \"columnType\": \"outgoing\",\n    \"isSplit\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/CreateQueryFolder.json",
    "content": "{\n  \"name\": \"$TeamName$\",\n  \"isFolder\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/DemoExtensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"NAME_OF_THE_EXTENSION_AS_IT_IS_THERE_IN_THE_MARKETPLACE\",\n      \"link\": \"<a href='URL_OF_THE_EXTENSIONS' target='_blank'><b>NAME_OF_THE_EXTENSION_AS_IT_IS_THERE_IN_THE_MARKETPLACE</b></a>\",\n      \"publisherId\": \"PUBLISHER_NAME THIS WILL BE THE FIRST PART IN THE EXTENSION URL QUERY STRING i.e BEFORE DOT(.)\",\n      \"extensionId\": \"EXTENSION_ID THIS WILL BE THE SECOND PART IN THE EXTENSION URL QUERY STRING i.e AFTER THE DOT(.)\",\n      \"publisherName\": \"PUBLISHER_NAME, IT WILL BE GIVEN BELOW THE EXTENSION NAME IN THE MARKETPLACE, SHOULD BE IN LOWER CASE\",\n      \"License\": \"<a href='IF THERE ARE ANY LICENCING TERMS, ADD THE URL' target='_blank'>License Terms</a>\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/GitHubEndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"$Name$\",\n  \"type\": \"git\",\n  \"url\": \"$GitHubURL$\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/ImportSourceCode.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"$Host$/_git/$Repo$\"\n    },\n    \"serviceEndpointId\": \"$$Repo$-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/ProjectSettings.json",
    "content": "﻿{\n  \"type\": \"$type$\",\n  \"id\": \"$id$\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"IsPrivate\": \"true\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/ServiceEndPoint.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"$Repo$-code\",\n  \"type\": \"git\",\n  \"url\": \"$Host$/_git/$Repo$\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/UpdateCardFields.json",
    "content": "{\n  \"cards\": {\n    \"Bug\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Common.Severity\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AreaPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Id\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"true\"\n      }\n    ],\n    \"Product Backlog Item\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AreaPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Id\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"true\"\n      }\n    ]\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/PreSetting/UpdateCardStyles.json",
    "content": "{\n  \"rules\": {\n    \"fill\": [\n      {\n        \"name\": \"Priority 1\",\n        \"isEnabled\": \"True\",\n        \"filter\": \"[Microsoft.VSTS.Common.Priority] = '1'\",\n        \"settings\": {\n          \"title-color\": \"#000000\",\n          \"background-color\": \"#fdeadb\"\n        }\n      },\n      {\n        \"name\": \"High Effort\",\n        \"isEnabled\": \"True\",\n        \"filter\": \"[Microsoft.VSTS.Scheduling.Effort] >= '10'\",\n        \"settings\": {\n          \"title-color\": \"#000000\",\n          \"background-color\": \"#c5d6fd\"\n        }\n      },\n      {\n        \"name\": \"Blocked\",\n        \"isEnabled\": \"True\",\n        \"filter\": \"[System.Tags] contains 'Blocked'\",\n        \"settings\": {\n          \"title-color\": \"#000000\",\n          \"background-color\": \"#dffdff\"\n        }\n      },\n      {\n        \"name\": \"Assigned To Empty\",\n        \"isEnabled\": \"True\",\n        \"filter\": \"[System.AssignedTo] = ''\",\n        \"settings\": {\n          \"title-color\": \"#000000\",\n          \"background-color\": \"#b0b0b0\"\n        }\n      }\n    ],\n    \"tagStyle\": [\n      {\n        \"name\": \"Blocked\",\n        \"isEnabled\": \"True\",\n        \"settings\": {\n          \"title-color\": \"\",\n          \"background-color\": \"#FBFD52\"\n        }\n      }\n    ]\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Properties/AssemblyInfo.cs",
    "content": "﻿using System.Reflection;\nusing System.Runtime.CompilerServices;\nusing System.Runtime.InteropServices;\n\n// General Information about an assembly is controlled through the following \n// set of attributes. Change these attribute values to modify the information\n// associated with an assembly.\n[assembly: AssemblyTitle(\"VstsDemoBuilder\")]\n[assembly: AssemblyDescription(\"\")]\n[assembly: AssemblyConfiguration(\"\")]\n[assembly: AssemblyCompany(\"\")]\n[assembly: AssemblyProduct(\"VstsDemoBuilder\")]\n[assembly: AssemblyCopyright(\"Copyright ©  2016\")]\n[assembly: AssemblyTrademark(\"\")]\n[assembly: AssemblyCulture(\"\")]\n\n// Setting ComVisible to false makes the types in this assembly not visible \n// to COM components.  If you need to access a type in this assembly from \n// COM, set the ComVisible attribute to true on that type.\n[assembly: ComVisible(false)]\n\n// The following GUID is for the ID of the typelib if this project is exposed to COM\n[assembly: Guid(\"0e0775df-775e-4f4d-8e00-85c7ea9404a4\")]\n\n// Version information for an assembly consists of the following four values:\n//\n//      Major Version\n//      Minor Version \n//      Build Number\n//      Revision\n//\n// You can specify all the values or you can default the Revision and Build Numbers \n// by using the '*' as shown below:\n[assembly: AssemblyVersion(\"1.0.0.0\")]\n[assembly: AssemblyFileVersion(\"1.0.0.0\")]\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/AppScripts/Extractor.js",
    "content": "﻿\nvar ID = function () {\n    return '_' + Math.random().toString(36).substr(2, 9);\n};\nvar uniqueId = \"\";\nvar messagesCount = 2;\nvar percentForMessage = Math.floor(100 / messagesCount);\nvar ErrorData = '';\nvar statusCount = 0;\nvar messageList = [];\nvar currentPercentage = 0;\nvar finalprojectName = \"\";\n\n$(document).ready(function () {\n    $('#Analyse').removeClass('btn-primary').attr('disabled', 'disabled');\n\n    window.onbeforeunload = WindowCloseHanlder;\n    function WindowCloseHanlder() {\n        var fso = new ActiveXObject('Scripting.FileSystemObject');\n        return fso.DeleteFile(\"../ExtractedTemplate/\" + finalprojectName + \".zip\", true);\n    }\n\n    uniqueId = ID();\n    $('.rmverror').click(function () {\n        var errID = this.nextElementSibling.getAttribute('id');\n        $('#' + errID).removeClass(\"d-block\").addClass(\"d-none\");\n    });\n    $(window).scroll(function () {\n        var scroll = $(window).scrollTop();\n        if (scroll > 50) {\n            $(\".navbar\").css(\"background-color\", \"#2279C3\");\n        }\n        else {\n            $(\".navbar\").css(\"background-color\", \"transparent\");\n        }\n    });\n\n    $('#info').hover(function () {\n        $('#infoData').removeClass('d-none');\n    });\n    $('#info').mouseout(function () {\n        $('#infoData').addClass('d-none');\n    });\n\n    $('#close').click(function () {\n        $(\"#msgSource\").hide();\n        return;\n    });\n\n    $('#ddlAcccountName').change(function () {\n        $('#analyseDiv').addClass('d-none'); $('#analytics').html(\"\");\n\n        $('#Analyse').removeClass('btn-primary').attr('disabled', 'disabled');\n        $(\"#errorNotify\").hide();\n        var accSelected = $('#ddlAcccountName').val();\n        var projectName = $(\"#projectSelect option:selected\").text();\n        $('#projectSelect').empty();\n        var options = $(\"#projectSelect option\");\n        options.appendTo(\"#projectSelect\", \"Select Project\");\n        options.appendTo(\"#projectSelect\");\n        if (accSelected === '' || accSelected === 'Select Organization') {\n            $(\"#ddlAcccountName_Error\").text(\"Please select an organization\");\n            $(\"#ddlAcccountName_Error\").removeClass('d-none');\n            return;\n        }\n        else {\n            $('#projecctDiv').addClass('lodergif_div');\n            //$('#projectloader').removeClass('d-none');\n            $('#analyseDiv').addClass('d-none'); $('#analytics').html(\"\");\n            $('#genArtDiv').addClass('d-none'); $('#artifactProgress').html(\"\");\n            $('#GenerateArtifact').addClass('d-none');\n            $('#finalLink').addClass('d-none');\n            $('#Analyse').attr('disabled', 'disabled');\n            $('#Analyse').removeClass('btn-primary');\n\n            var token = $('#key').val();\n            $.ajax({\n                url: '../Extractor/GetprojectList',\n                type: 'POST',\n                data: { accname: accSelected, pat: token },\n                success: function (da) {\n                    if (da.count > 0) {\n                        $('#Analyse').addClass('btn-primary').attr('disabled', false);\n                        $('#projectSelect').empty();\n                        var opt = \"\";\n                        opt += ' <option value=\"0\" selected=\"selected\">Select Project</option>';\n                        for (var i = 0; i < da.count; i++) {\n                            opt += ' <option value=\"' + da.value[i].id + '\">' + da.value[i].name + '</option>';\n                        }\n                        $(\"#projectSelect\").append(opt);\n                        var options = $(\"#projectSelect option\");\n                        $('#projecctDiv').removeClass('lodergif_div');\n                        //$('#projectloader').addClass('d-none');\n                    }\n                    else {\n                        $('#projecctDiv').removeClass('lodergif_div');\n                        //$('#projectloader').addClass('d-none');\n                        $(\"#projectSelect_Error\").text(da.errmsg);\n                        $(\"#projectSelect_Error\").removeClass('d-none');\n                        return;\n                    }\n                },\n                error: function () {\n                    $('#projecctDiv').removeClass('lodergif_div');\n                    //$('#projectloader').addClass('d-none');\n                    $('#Analyse').attr('disabled', false);\n                    $('#Analyse').addClass('btn-primary');\n                }\n            });\n        }\n    });\n\n    $('#projectSelect').change(function () {\n        $('#projecctDiv').addClass('lodergif_div');\n        //$('#projectloader').removeClass('d-none');\n        $('#analyseDiv').addClass('d-none'); $('#analytics').html(\"\");\n        $('#genArtDiv').addClass('d-none'); $('#artifactProgress').html(\"\");\n        $('#GenerateArtifact').addClass('d-none');\n        $(\"#errorNotify\").hide();\n        $(\"#msgSource\").hide();\n        var project = $('#projectSelect option:selected').val();\n        var accSelected = $('#ddlAcccountName').val();\n        var key = $('#key').val();\n        $('#processtemplate').empty();\n        $('#processTemplateLoader').removeClass('d-none');\n        if (project === \"0\" || project === \"\" || project === 'Select Project') {\n            $('#Analyse').attr('disabled', 'disabled');\n            $('#Analyse').removeClass('btn-primary');\n            $('#projecctDiv').removeClass('lodergif_div');\n            //$('#projectloader').addClass('d-none');\n            return;\n        }\n        if (accSelected === '' || accSelected === 'Select Organization') {\n            $('#Analyse').attr('disabled', 'disabled');\n            $('#Analyse').removeClass('btn-primary');\n            $('#projecctDiv').removeClass('lodergif_div');\n            //$('#projectloader').addClass('d-none');\n            return;\n        }\n        else {\n            $('#Analyse').attr('disabled', 'disabled');\n            $('#Analyse').removeClass('btn-primary');\n\n            $.ajax({\n                url: '../Extractor/GetProjectProperties',\n                type: 'GET',\n                data: { accname: accSelected, project: project, _credentials: key },\n                success: function (res) {\n                    $('#projecctDiv').removeClass('lodergif_div');\n                    //$('#projectloader').addClass('d-none');\n                    $('#processtemplate').empty().val(res.value[4].value);\n                    $('#TemplateClass').empty().val(res.TypeClass);\n                    $('#processTemplateLoader').addClass('d-none');\n                    var p = res.value[4].value;\n                    //if (p !== \"Scrum\" && p !== \"Agile\" && p !== \"Basic\") {\n                    //    $('#processTemplateLoader').addClass('d-none');\n                    //    $(\"#projectSelect_Error\").text(\"Note: Please select a project that uses the standard Scrum, Agile or Basic process template.\");\n                    //    $('#Analyse').removeClass('btn-primary').attr('disabled', 'disabled');\n                    //    $(\"#projectSelect_Error\").removeClass('d-none');\n                    //    return;\n                    //}\n                    $('#Analyse').addClass('btn-primary').attr('disabled', false);\n                },\n                error: function (e) {\n                    $('#processTemplateLoader').addClass('d-none');\n                    $(\"#projectSelect_Error\").text(e);\n                    $(\"#projectSelect_Error\").removeClass('d-none');\n                    $('#projecctDiv').removeClass('lodergif_div');\n                    //$('#projectloader').addClass('d-none');\n                    $('#Analyse').addClass('btn-primary').attr('disabled', false);\n                }\n            });\n        }\n    });\n\n    $('#Analyse').click(function () {\n        gtag('event', 'Analyze', {\n            'event_category': 'Analyze Button',\n            'event_label': 'Analyze Button',\n            'event_action': 'clicked',\n            'send_to': '__GAKEY__'\n        });\n        var SourceAcc = $(\"#ddlAcccountName\").val();\n        var project = $(\"#projectSelect\").val();\n        var projectName = $(\"#projectSelect option:selected\").text();\n        finalprojectName = projectName;\n        var key = $('#key').val();\n        if (SourceAcc === \"\" || SourceAcc === \"Select Organization\") {\n            $(\"#ddlAcccountName_Error\").text(\"Please select an organization\");\n            $(\"#ddlAcccountName_Error\").removeClass('d-none');\n            return;\n        }\n        if (project === \"\" || projectName === 'Select Project' || project === \"0\" || typeof project === undefined) {\n            $(\"#projectSelect_Error\").text(\"Please select a Project\");\n            $(\"#projectSelect_Error\").removeClass('d-none');\n            return;\n        }\n        var projectN = {\n            ProjectName: projectName,\n            accountName: SourceAcc, accessToken: key\n        };\n        $('#Analyse').removeClass('btn-primary').attr('disabled', 'disabled');\n        //$('#imgLoading').removeClass('d-none');\n        $('#Analyse').addClass('lodergif');\n\n        $('#genArtDiv').addClass('d-none');\n        $('#GenerateArtifacts').removeClass('btn-primary').attr('disabled', 'disabled');\n        $('#GenerateArtifacts').removeClass('btn-primary').attr('disabled', 'disabled');\n        $('#ExStatus-messages').empty();\n        //$('#accountLink').empty();\n        $('#finalLink').addClass('d-none');\n        $(\"#ddlAcccountName\").prop('disabled', true);\n        $(\"#projectSelect\").prop('disabled', true);\n\n        $.ajax({\n            url: '../Extractor/AnalyzeProject',\n            type: 'POST',\n            contentType: 'application/json',\n            data: JSON.stringify(projectN),\n            success: function (res) {\n                var row = \"\";\n                if (res !== \"\") {\n                    var processTemplate = $('#processtemplate').val();\n                    var templaetClass = $('#TemplateClass').val();\n                    if (templaetClass !== \"system\") {\n                        //$('#GenerateArtifacts').hide();\n                        //$('#templateError').empty().append(\"Tool doesn't support for projects based on custom or derived process templates\");\n                    }\n                    else {\n                        $('#templateError').empty().append(\"Everything looks good.Click the button below to proceed.\");\n                        $('#GenerateArtifacts').show();\n                    }\n                    row += ' Selected Project: ' + projectName + ', &nbsp; Process Template: ' + processTemplate + ' (' + templaetClass + ') <br />';\n\n                    if (res.teamCount !== 0 && res.teamCount !== null)\n                        row += '<i class=\"fas fa-check-circle\"></i>' + ' Teams: ' + res.teamCount + '<br />';\n\n                    if (res.IterationCount !== 0 && res.IterationCount !== null)\n                        row += '<i class=\"fas fa-check-circle\" ></i >' + ' Iteration: ' + res.IterationCount + '<br />';\n\n                    if (res.BuildDefCount !== 0 && res.BuildDefCount !== null)\n                        row += '<i class=\"fas fa-check-circle\" ></i >' + ' Build Definitions: ' + res.BuildDefCount + '<br />';\n\n                    if (res.ReleaseDefCount !== 0 && res.ReleaseDefCount !== null)\n                        row += '<i class=\"fas fa-check-circle\" ></i >' + ' Release Definitions: ' + res.ReleaseDefCount + '<br />';\n\n                    $.each(res.WorkItemCounts, function (x, y) {\n                        row += '<i class=\"fas fa-check-circle\" ></i >' + x + ': ' + y + ' <br /> ';\n                    });\n                    var er = \"\";\n                    $.each(res.ErrorMessages, function (x, y) {\n                        er += '<p>' + y + '</p >';\n                    });\n                    $('#templateError').empty().append(er);\n                }\n                $('#analyseDiv').removeClass('d-none');\n                $('#collapseOne').addClass('show');\n                $('#analytics').empty().append(row);\n                //$('#imgLoading').addClass('d-none');\n                $('#Analyse').removeClass('lodergif');\n                $('#Analyse').addClass('btn-primary').attr('disabled', false);\n\n                $('#genArtDiv').removeClass('d-none');\n                $('#GenerateArtifacts').addClass('btn-primary').attr('disabled', false);\n                $(\"#ddlAcccountName\").prop('disabled', false);\n                $(\"#projectSelect\").prop('disabled', false);\n\n            },\n            error: function (er) {\n                $('#Analyse').addClass('btn-primary').attr('disabled', false);\n                //$('#imgLoading').addClass('d-none');\n                $('#Analyse').removeClass('lodergif');\n                $(\"#ddlAcccountName\").prop('disabled', false);\n                $(\"#projectSelect\").prop('disabled', false);\n            }\n        });\n        $('#generatebtnloader').removeClass('d-none');\n\n    });\n\n    $('#GenerateArtifacts').click(function () {\n        gtag('event', 'Generate Artifact', {\n            'event_category': 'Generate Artifact',\n            'event_label': 'Generate Artifact',\n            'event_action': 'clicked',\n            'send_to': '__GAKEY__'\n        });\n        $('.accorDetails').removeClass('show');\n        var SourceAcc = $(\"#ddlAcccountName\").val();\n        var project = $(\"#projectSelect\").val();\n        var projectName = $(\"#projectSelect option:selected\").text();\n        $('#hdnProjecName').val(projectName);\n        var key = $('#key').val();\n        var processTemplate = $('#processtemplate').val();\n        if (SourceAcc === \"\" || SourceAcc === \"Select Organization\") {\n            $(\"#ddlAcccountName_Error\").text(\"Please select Source Account Name\");\n            $(\"#ddlAcccountName_Error\").removeClass('d-none');\n            return;\n        }\n        if (project === \"\" || projectName === 'Select Project' || project === \"0\") {\n            $(\"#projectSelect_Error\").text(\"Please select Source Project\");\n            $(\"#projectSelect_Error\").removeClass('d-none');\n            return;\n        }\n        var projects = {\n            ProjectName: projectName,\n            accountName: SourceAcc, accessToken: key, id: uniqueId, ProcessTemplate: processTemplate, ProjectId: project\n        };\n        $('#ExStatus-messages').html('');\n        $('#ExStatus-messages').show();\n        $('#GenerateArtifact').removeClass('d-none');\n        //$('#ExdvProgress').removeClass('d-none');\n        $('#GenerateArtifacts').addClass('lodergif');\n        $('#GenerateArtifacts').removeClass('btn-primary').attr('disabled', 'disabled');\n        $('#Analyse').removeClass('btn-primary').attr('disabled', 'disabled');\n        $('#collapseTwo').addClass('show');\n        $(\"#ddlAcccountName\").prop('disabled', true);\n        $(\"#projectSelect\").prop('disabled', true);\n        $.ajax({\n            url: '../Extractor/StartEnvironmentSetupProcess',\n            type: 'POST',\n            contentType: 'application/json',\n            data: JSON.stringify(projects),\n            success: function (res) {\n                if (res === \"True\") {\n                    getStatus();\n                }\n            },\n            error: function (er) {\n                $('#GenerateArtifacts').addClass('btn-primary').attr('disabled', false);\n                $('#Analyse').addClass('btn-primary').attr('disabled', false);\n                $(\"#ddlAcccountName\").prop('disabled', false);\n                $(\"#projectSelect\").prop('disabled', false);\n            }\n        });\n    });\n    $('#fileDownload').click(function () {\n        gtag('event', 'fileDownload', {\n            'event_category': 'fileDownload',\n            'event_label': 'fileDownload',\n            'event_action': 'clicked',\n            'send_to': '__GAKEY__'\n        });\n    });\n\n    $('#switch').click(function () {\n        $('#notify').removeClass('d-none');\n    })\n});\n\nfunction getStatus() {\n    $.ajax({\n        url: 'GetCurrentProgress/' + uniqueId,\n        type: 'GET',\n        success: function (data) {\n            var isMessageShown = true;\n\n            if (jQuery.inArray(data, messageList) === -1) {\n                messageList.push(data);\n                isMessageShown = false;\n            }\n            if (data !== \"100\") {\n                if (isMessageShown === false) {\n                    if (messageList.length === 1) {\n                        $('#ExtractorProgressBar').width(currentPercentage++ + '%');\n                        if (data.length > 0) {\n                            $('#ExStatus-messages').append('<i class=\"fas fa-check-circle\"></i> &nbsp;' + data + '<br/>');\n                        }\n                    }\n                    else {\n                        $('#ExStatus-messages').append('<i class=\"fas fa-check-circle\"></i> &nbsp;' + data + '<br/>');\n                    }\n                }\n                else if (currentPercentage <= ((messageList.length + 1) * percentForMessage) && currentPercentage <= 100) {\n                    $('#ExtractorProgressBar').width(currentPercentage++ + '%');\n                }\n                window.setTimeout(\"getStatus()\", 1000);\n            }\n            else {\n                if (messageList.length !== 3) {\n                    var ID = uniqueId + \"_Errors\";\n                    var url2 = 'GetCurrentProgress/' + ID;\n                    $.get(url2, function (response) {\n                        console.log(response);\n                        if (response === \"100\" || response === \"\") {\n                            $('#artifactProgress').removeClass('d-none');\n                            $('#GenerateArtifacts').removeClass('lodergif');\n                            //$('#ExdvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n                            $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n                            currentPercentage = 0;\n                            $('#GenerateArtifacts').addClass('btn-primary').attr('disabled', false);\n                            $('#Analyse').addClass('btn-primary').attr('disabled', false);\n                            $('.genArtifacts').removeClass('show');\n\n                            $('#ExtractorProgressBar').width(currentPercentage++ + '%');\n                            $(\"#finalLink\").removeClass(\"d-none\").addClass(\"d-block\");\n                            $(\"#btnSubmit\").prop(\"disabled\", false);\n                            $(\"#txtProjectName\").val(\"\");\n\n                            $('#ddlAcccountName').prop('selectedIndex', 0);\n                            $(\"#templateselection\").prop(\"disabled\", false);\n\n                            $('#ddlGroups').removeAttr(\"disabled\");\n                            $(\"#ddlAcccountName\").removeAttr(\"disabled\");\n                            $(\"#txtProjectName\").removeAttr(\"disabled\");\n                            $(\"#ddlAcccountName\").prop('disabled', false);\n                            $(\"#projectSelect\").prop('disabled', false);\n                        }\n                        else {\n                            ErrorData = response;\n                            if (ErrorData !== '') {\n                                $('#artifactProgress').removeClass('d-none');\n                                currentPercentage = 0;\n                                $('#GenerateArtifacts').addClass('btn-primary').attr('disabled', false);\n                                $('#Analyse').addClass('btn-primary').attr('disabled', false);\n                                $('.genArtifacts').removeClass('show');\n\n                                $(\"#projCreateMsg\").hide();\n                                $('<b style=\"display: block;\">We ran into some issues and we are sorry about that!</b><p> The log below will provide you insights into why the provisioning failed. You can raise an issue with the error logs <a id=\"EmailPopup\" href=\"https://github.com/microsoft/AzureDevOpsDemoGenerator/issues/new\" target=\"_blank\">here</a> and we will try to help you.</p><p>Click on View Diagnostics button to share logs with us.</p>').appendTo(\"#errorDescription\");\n                                $('#GenerateArtifacts').removeClass('lodergif');\n                                //$('#ExdvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n                                $(\"#errorNotify\").removeClass(\"d-none\").addClass(\"d-block\");\n                                $(\"#finalLink\").removeClass(\"d-none\").addClass(\"d-block\");\n\n                                $(\"#errorMail\").empty().append(ErrorData);\n                                $(\"#errorNotify\").show();\n\n                                $(\"#btnSubmit\").prop(\"disabled\", false);\n                                $(\"#txtProjectName\").val(\"\");\n                                $('#ddlAcccountName').prop('selectedIndex', 0);\n                                $('#ddlGroups').removeAttr(\"disabled\");\n                                $(\"#ddlAcccountName\").removeAttr(\"disabled\");\n                                $(\"#ddlAcccountName\").prop('disabled', false);\n                                $(\"#projectSelect\").prop('disabled', false);\n                            }\n                        }\n                    });\n                    messageList = [];\n                }\n            }\n        },\n        error: function (xhr) {\n            getStatus();\n        }\n    });\n}\n\nfunction DeleteFolder() {\n    $.ajax({\n        url: '../Extractor/RemoveFolder',\n        type: 'GET',\n        success: function () {\n\n        },\n        error: function () {\n        }\n\n    });\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/AppScripts/FileUpload.js",
    "content": "﻿$(document).ready(function () {\n    $('body').on('click', '#btnUpload', function () {\n        $(\"#fileError\").remove();\n        var controlID = this.id;\n        disableButton(controlID);\n        // Checking whether FormData is available in browser\n        if (window.FormData !== undefined) {\n            $(\"#urlerror\").empty();\n            var fileUpload = $(\"#FileUpload1\").get(0);\n            var files = fileUpload.files;\n            if (files.length === 0) {\n                $(\"#btnContainer\").append('<span id=\"fileError\" class=\"msgColor\">Please select a zip file.</span>');\n                enableButton(controlID);\n                return;\n            }\n            else {\n                $(\"#fileError\").html('');\n            }\n            // Create FormData object\n            var fileData = new FormData();\n\n            // Looping over all files and add it to FormData object\n            for (var i = 0; i < files.length; i++) {\n                fileData.append(files[i].name, files[i]);\n            }\n\n            //$('#gitHubCheckboxDiv').addClass('d-none');\n            //$('input[id=\"gitHubCheckbox\"]').prop('checked', false);\n\n            $.ajax({\n                url: '/Environment/UploadFiles',\n                type: \"POST\",\n                contentType: false, // Not to set any content header\n                processData: false, // Not to process data\n                data: fileData,\n                success: function (result) {\n\n                    if (result[0] !== \"\") {\n                        console.log(\"succesfully uploaded file: \" + result[0]);\n                        $.post(\"UnzipFile\", { \"fineName\": result[0] }, function (Data) {\n                            if (Data.responseMessage === \"SUCCESS\") {\n                                console.log(\"succesfully unzipped file: \" + files[0].name);\n\n                                var NewTemplateName = files[0].name.replace(\".zip\", \"\");\n\n                                $('#ddlTemplates', parent.document).val(NewTemplateName);\n                                $('#selectedTemplateFolder', parent.document).val(Data.privateTemplateName);\n                                $(\".template-close\", parent.document).click();\n                                $(\".VSTemplateSelection\", parent.document).removeClass('d-block').addClass('d-none');\n                                $(\"#lblextensionError\", parent.document).removeClass('d-block').addClass('d-none');\n                                $(\"#lblDefaultDescription\", parent.document).removeClass('d-block').addClass('d-none');\n                                $(\"#lblDescription\", parent.document).removeClass('d-block').addClass('d-none');\n                                $(\"#ddlAcccountName\", parent.document).prop('selectedIndex', 0);\n                                //$('#gitHubCheckboxDiv', parent.document).addClass('d-none');\n\n                                $('#PrivateTemplateName', parent.document).val(Data.privateTemplateName);\n                                $('#PrivateTemplatePath', parent.document).val(Data.privateTemplatePath);\n                                enableButton(controlID);\n                                $('#FileUpload1').val('');\n                            }\n                            else if (Data.responseMessage !== null && Data.responseMessage !== \"\") {\n\n                                $(\"#urlerror\").empty().append(Data.responseMessage);\n                                enableButton(controlID);\n                                $('#FileUpload1').val('');\n                                return;\n                            }\n                        });\n                    }\n                },\n                error: function (err) {\n                }\n            });\n        } else {\n            alert(\"FormData is not supported.\");\n        }\n    });\n\n    $('body').on('click', '#btnURLUpload, #btnGitHubUpload', function () {\n        var isUrlValid = false;\n        var URL = '';\n        if ($('#GitHubUrl').val() !== '') {\n            URL = $('#GitHubUrl').val().trim();\n        } else if ($('#FileURL').val() !== '') {\n            URL = $('#FileURL').val().trim();\n        }\n        if (URL === '') {\n            $(\"#urlerror\").empty().append('URL should not be empty');\n            return false;\n        }\n        var controlID = this.id;\n\n        var GitHubtoken = $('#GitHubToken').val().trim();\n        var userId = $('#UserId').val().trim();\n        var password = $('#Password').val().trim();\n        $(\"#urlerror\").empty();\n        var fileurlSplit = URL.split('/');\n        var filename = fileurlSplit[fileurlSplit.length - 1];\n\n        filename = filename.split('.');\n        if (filename.length > 1) {\n            if (filename[filename.length - 1].toLowerCase().trim() !== \"zip\") {\n                $(\"#urlerror\").empty().append('Invalid URL, please provide the URL which ends with .zip extension'); isUrlValid = false;\n            } else {\n                isUrlValid = true;\n            }\n        }\n        else {\n            $(\"#urlerror\").empty().append('Invalid URL, please provide the URL which ends with .zip extension'); isUrlValid = false;\n        }\n        if (controlID === 'btnGitHubUpload') {\n\n            if (fileurlSplit[2].toLowerCase() !== \"raw.githubusercontent.com\" && fileurlSplit[2].toLowerCase() !== \"github.com\") {\n                $(\"#urlerror\").empty().append('Please provide GitHub URL, which should starts with domain name raw.githubusercontent.com or github.com '); isUrlValid = false;\n            }\n            else if ($('#privateGitHubRepo').prop(\"checked\") === true && GitHubtoken === '') {\n                $(\"#urlerror\").empty().append('Please provide GitHub access token for authentication'); isUrlValid = false;\n            }\n        }\n        else if (controlID === 'btnURLUpload' && $('#privateurl').prop(\"checked\") === true && (userId === '' || password === '')) {\n            $(\"#urlerror\").empty().append('Please provide username and password for authentication'); isUrlValid = false;\n        }\n\n        if (isUrlValid) {\n            var OldprivateTemplate = \"\";\n            var oldTemplate = $('#PrivateTemplatePath', parent.document).val().split(\"\\\\\");\n            if (oldTemplate.length > 0) {\n                OldprivateTemplate = oldTemplate[oldTemplate.indexOf('PrivateTemplates') + 1];\n            }\n            disableButton(controlID);\n            $.ajax({\n                url: \"../Environment/UploadPrivateTemplateFromURL\",\n                type: \"GET\",\n                data: { TemplateURL: URL, token: GitHubtoken, userId: userId, password: password, OldPrivateTemplate: OldprivateTemplate },\n                success: function (Data) {\n                    if (Data.privateTemplatePath !== \"\" && Data.privateTemplatePath !== undefined) {\n                        console.log(Data);\n                        var msg = '';\n                        if (Data.responseMessage === \"SUCCESS\") {\n                            $('#PrivateTemplateName', parent.document).val(Data.privateTemplateName);\n                            $('#PrivateTemplatePath', parent.document).val(Data.privateTemplatePath);\n                            var NewTemplateName = filename[0];\n                            $('#ddlTemplates', parent.document).val(NewTemplateName);\n                            $('#selectedTemplateFolder', parent.document).val(NewTemplateName);\n                            $(\".template-close\", parent.document).click();\n                            $(\".VSTemplateSelection\", parent.document).removeClass('d-block').addClass('d-none');\n                            $(\"#lblextensionError\", parent.document).removeClass('d-block').addClass('d-none');\n                            $(\"#lblDefaultDescription\", parent.document).removeClass('d-block').addClass('d-none');\n                            $(\"#lblDescription\", parent.document).removeClass('d-block').addClass('d-none');\n                            $(\"#ddlAcccountName\", parent.document).prop('selectedIndex', 0);\n                            enableButton(controlID);\n                            //$('#gitHubCheckboxDiv', parent.document).addClass('d-none');\n                        }\n                        else if (Data.responseMessage !== '' && Data.responseMessage !== 'SUCCESS') {\n                            $(\"#urlerror\").empty().append(Data.responseMessage);\n                            enableButton(controlID);\n                            return;\n                        }\n                    }\n                    else {\n                        if (Data.responseMessage !== null && Data.responseMessage !== 'SUCCESS') {\n                            $(\"#urlerror\").empty().append(Data.responseMessage);\n                            enableButton(controlID);\n                            return;\n                        }\n                    }\n\n                }\n\n            });\n        }\n\n    });\n});\nfunction disableButton(button) {\n    $('#' + button).attr('disabled', 'disabled').removeClass('btn-primary');\n}\nfunction enableButton(button) {\n    $('#' + button).attr('disabled', false).addClass('btn-primary');\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/AppScripts/GitHubAuth.js",
    "content": "﻿var mywindown;\n$(document).ready(function () {\n    $('#githubAuth').click(function () {\n        var reqorigon = window.location.origin;\n        mywindown = window.open(reqorigon + \"/GitHub/GitOauth\", \"Azure DevOps Demo Generator\", \"width=500,height=500\",\n            \"width=300,height=400,scrollbars=yes\");\n        checkSession();\n        gtag('event', 'GitHubAuthorize', {\n            'event_category': 'GitHubAuthorize',\n            'event_label': 'GitHubAuthorize',\n            'event_action': 'clicked',\n            'send_to': '__GAKEY__'\n        });\n    });\n    $('input[id=\"gitHubCheckbox\"]').click(function () {\n        if ($(this).prop(\"checked\") === true) {\n            $('#btnSubmit').prop('disabled', true).removeClass('btn-primary');\n            //$('#gitHubAuthDiv').removeClass('d-none');\n            $('#githubAuth').addClass('btn-primary').prop('disabled', false);\n        }\n        if ($(this).prop(\"checked\") === false) {\n            $('#btnSubmit').prop('disabled', false).addClass('btn-primary');\n            //$('#gitHubAuthDiv').addClass('d-none');\n            $('#githubAuth').removeClass('btn-primary').prop('disabled', true);\n        }\n    });\n\n    //setTimeout(function () {\n    //    $('#buildYourTemplate').removeClass('icon2');\n    //}, 10000);\n\n    $('#buildYourTemplate').hover(function () {\n        $('#buildYourTemplate').removeClass('icon2');\n    });\n});\n\nfunction checkSession() {\n    $.ajax({\n        url: '../Environment/CheckSession',\n        type: \"GET\",\n        async: false,\n        cache: false,\n        success: function (res) {\n            if (res !== \"\") {\n                $('#hdnGToken').val(res);\n                $('input[id=\"gitHubCheckbox\"]').prop('checked', true).prop('disabled', true);\n                $('#githubAuth').removeClass('btn-primary').prop('disabled', true);\n                $('#btnSubmit').prop('disabled', false).addClass('btn-primary');\n                mywindown.close();\n                $('#githubAuth').css('border-color', 'initial');\n            }\n            else {\n                window.setTimeout(\"checkSession()\", 500);\n                //$('input[id=\"gitHubCheckbox\"]').prop('checked', false).prop('disabled', false);\n                //$('#gitHubAuthDiv').addClass('d-none');\n                //$('#githubAuth').addClass('btn-primary').prop('disabled', false);\n            }\n        },\n        error: function (er) {\n        }\n    });\n}\nfunction checkTokenInSession() {\n    $.ajax({\n        url: '../Environment/CheckSession',\n        type: \"GET\",\n        async: false,\n        cache: false,\n        success: function (res) {\n            if (res !== \"\") {\n                $('input[id=\"gitHubCheckbox\"]').prop('checked', true).prop('disabled', true);\n                $('#githubAuth').removeClass('btn-primary').prop('disabled', true);\n                $('#btnSubmit').prop('disabled', false).addClass('btn-primary');\n                $('#githubAuth').css('border-color', 'initial');\n            }\n            else {\n                $('#btnSubmit').prop('disabled', true).removeClass('btn-primary');\n            }\n        },\n        error: function (er) {\n        }\n    });\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/AppScripts/create.js",
    "content": "﻿/// <reference path=\"../jquery-1.12.4.min.js\" />\n$(document).ready(function () {\n\n    $(\"#privateTemplatepop\").removeClass('d-block').addClass('d-none');\n\n    $('#buildYourTemplate').click(function () {\n        gtag('event', 'Build Your Template', {\n            'event_category': 'Build Your Template',\n            'event_label': 'Build Your Template',\n            'event_action': 'visited',\n            'send_to': '__GAKEY__'\n        });\n    });\n\n    $(window).scroll(function () {\n        var scroll = $(window).scrollTop();\n        if (scroll > 50) {\n            $(\".navbar\").css(\"background-color\", \"#2279C3\");\n        }\n        else {\n            $(\".navbar\").css(\"background-color\", \"transparent\");\n        }\n    });\n\n    $(\"input[id=Random]\").attr('disabled', true);\n    $(\"input[id=Select]\").attr('disabled', true);\n    $(\"#btnUserShow\").attr('disabled', true);\n\n    gtag('event', 'Create page', {\n        'event_category': 'Create page',\n        'event_label': 'Create page',\n        'event_action': 'visited',\n        'send_to': '__GAKEY__'\n    });\n    $('#switch').click(function () {\n        $('#notify').removeClass('d-none');\n    })\n});\nvar messageList = [];\n/**/\n/**/\nvar ID = function () {\n    return '_' + Math.random().toString(36).substr(2, 9);\n};\nvar uniqueId = \"\";\n/**/\n/**/\nvar ErrorData = '';\nvar statusCount = 0;\nvar selectedTemplate = \"\";\nvar messagesCount = 8;\nvar percentForMessage = Math.floor(100 / messagesCount);\nvar currentPercentage = 0;\nvar projectNameForLink = '';\nvar isExtensionNeeded = false;\nvar isAgreedTerms = false;\nvar microsoft = \"\";\nvar ThirdParty = \"\";\nvar AccountNameForLink;\nvar templateFolder = \"\";\nvar publicTemplateMsg = \"\";\nvar privateTemplateMsg = \"\";\nvar gitFork = \"\";\n\n$(document).ready(function (event) {\n    uniqueId = ID();\n    $('.rmverror').click(function () {\n        var errID = this.nextElementSibling.getAttribute('id');\n        $('#' + errID).removeClass(\"d-block\").addClass(\"d-none\");\n    });\n    $('body').on('click', '.rmverrorOn', function () {\n        var errID = this.nextElementSibling.getAttribute('id');\n        $('#' + errID).removeClass(\"d-block\").addClass(\"d-none\");\n    });\n\n    $('#templateselection').click(function () {\n        $('.VSTemplateSelection').removeClass('d-none').addClass('d-block');\n        $('#ddlTemplates_Error').removeClass(\"d-block\").addClass(\"d-none\");\n        gtag('event', 'Choose Template', {\n            'event_category': 'Choose Template Button',\n            'event_label': 'Choose Template Button',\n            'event_action': 'clicked',\n            'send_to': '__GAKEY__'\n        });\n    });\n\n    //ON CHANGE OF ACCOUNT- VALIDATE EXTENSION\n    $('#ddlAcccountName').change(function () {\n        $('#status-messages').empty().hide();\n        $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n        $('#dvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n        $('#accountLink').empty();\n        $('#finalLink').removeClass(\"d-block\").addClass(\"d-none\");\n        $('#errorNotify').removeClass(\"d-block\").addClass(\"d-none\");\n\n        var accountNameToCheckExtension = $('#ddlAcccountName option:selected').val();\n        var checkExtensionForSelectedTemplate = templateFolder;\n\n        if (accountNameToCheckExtension === \"\" || accountNameToCheckExtension === \"Select Organization\") {\n            return false;\n        }\n        else if (checkExtensionForSelectedTemplate === \"\") {\n            return;\n        }\n        else {\n            GetRequiredExtension();\n        }\n    });\n\n    //ON CHANGE OF TEMPLATE- VALIDATE EXTENSION\n    $('#selecttmplate').click(function () {\n        $('input[id=\"gitHubCheckbox\"]').prop('checked', false).prop('disabled', false);\n\n        var privateTemplate = $('#PrivateTemplatePath', parent.document).val();\n        var priTemplate = privateTemplate.split(\"\\\\\");\n        if (privateTemplate !== \"\") {\n            $.ajax({\n                url: \"../Environment/DeletePrivateTemplate\",\n                type: \"POST\",\n                data: { TemplateName: priTemplate[priTemplate.indexOf('PrivateTemplates') + 1] },\n                success: function (Data) {\n                }\n            });\n        }\n        $('#PrivateTemplateName', parent.document).val('');\n        $('#PrivateTemplatePath', parent.document).val('');\n        $('#githubAuth').removeClass('btn-primary').prop('disabled', true);\n        $('#githubAuth').css('border-color', 'initial');\n        $('#btnSubmit').addClass('btn-primary').prop('disabled', false);\n        $('#lblDefaultDescription').hide();\n        var templateFolderSelected = $(\".template.selected\").data('folder');\n        var groputempSelected = $(\".template.selected\").data('template');\n        var selectedTemplateDescription = $(\".description.descSelected\").data('description');\n\n        var selectedTemplateName = $('.template.selected').data('template');\n        $('#templatePreviewName')[0].innerHTML = selectedTemplateName;\n        var selectedTemplateImage = $('.template.selected').data('templateimage');\n        $('#templatePreviewImage').prop('src', selectedTemplateImage);\n\n        var infoMsg = $(\".description.descSelected\").data('message');\n        //If the template enabled for GitHub fork\n        var forkGitHub = $(\".template.selected\").data('gitfork');\n        if (forkGitHub === true) {\n            $('#gitHubCheckboxDiv').removeClass('d-none');\n            $('#gitHubLabelDiv').removeClass('d-none');\n            $('input[id=\"gitHubCheckbox\"]').prop('checked', false);\n        }\n        else {\n            $('#gitHubCheckboxDiv').addClass('d-none');\n            $('#gitHubLabelDiv').addClass('d-none');\n\n        }\n        //\n        if (infoMsg === \"\" || typeof infoMsg === \"undefined\" || infoMsg === null) {\n            $('#InfoMessage').html('');\n            $('#InfoMessage').removeClass('d-block').addClass('d-none');\n        }\n        else {\n            $('#InfoMessage').html(infoMsg);\n            $('#InfoMessage').removeClass('d-none').addClass('d-block');\n        }\n        if (selectedTemplateDescription !== \"\") {\n            $('#descContainer').html(selectedTemplateDescription);\n        }\n        else {\n            $('#descContainer').html(\"Azure DevOps Demo Generator\");\n        }\n        if (groputempSelected !== \"\") {\n            templateFolder = templateFolderSelected;\n            $('#ddlTemplates').val(groputempSelected);\n            $(\".VSTemplateSelection\").fadeOut('fast');\n        }\n        $(\".VSTemplateSelection\").removeClass('d-block').addClass('d-none');\n        //till here\n        $('#status-messages').empty().hide();\n        $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n        $('#dvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n        $('#accountLink').empty();\n        $('#finalLink').removeClass(\"d-block\").addClass(\"d-none\");\n        $('#errorNotify').removeClass(\"d-block\").addClass(\"d-none\");\n        //Added\n        $(\"#projectParameters\").hide();\n        $(\"#projectParameters\").html('');\n        $(\"#extensionError\").html('');\n        $(\"#extensionError\").hide();\n        $(\"#lblextensionError\").removeClass(\"d-block\").addClass(\"d-none\");\n        var TemplateName = templateFolder;\n        if ($('#PrivateTemplateName').val() !== \"\") {\n            TemplateName = $('#PrivateTemplateName').val();\n        }\n        if (TemplateName === \"MyShuttle-Java\") {\n            $(\"#NotificationModal\").modal('show');\n        }\n        var Url = 'GetTemplate/';\n        $.get(Url, { \"TemplateName\": TemplateName }, function (data) {\n            if (data !== \"\") {\n                var ParsedData = JSON.parse(data);\n                var Description = ParsedData.Description;\n                var parameters = ParsedData.Parameters;\n\n                if (typeof parameters !== \"undefined\") {\n                    if (parameters.length > 0) {\n                        $.each(parameters, function (key, value) {\n                            $('<div class=\"form-group row projParameters\"><label for=\"sonarqubeurl\" class=\"col-lg-3 col-form-label\" style=\"font-weight:400\">' + value.label + ':</label><div class=\"col-lg-8\"><input type=\"text\" class=\"form-control project-parameters rmverrorOn\" id=\"txt' + value.fieldName + '\"  proj-parameter-name=\"' + value.fieldName + '\" placeholder=\"' + value.fieldName + '\"><div class=\"alert alert-danger d-none\" role=\"alert\" id=\"txt' + value.fieldName + '_Error\"></div></div>').appendTo(\"#projectParameters\");\n                        });\n                        $(\"#projectParameters\").show();\n                    }\n                    else { $(\"#projectParameters\").html(''); }\n                }\n            }\n        });\n        if (TemplateName !== \"\") {\n            checkForInstalledExtensions(TemplateName, function callBack(extensions) {\n                if (extensions.message !== \"no extensions required\" && extensions.message !== \"\" && typeof extensions.message !== undefined && extensions.message.indexOf(\"Error\") === -1 && extensions.message !== \"Template not found\") {\n\n                    $(\"#extensionError\").empty().append(extensions.message);\n                    $(\"#extensionError\").show();\n                    $(\"#lblextensionError\").removeClass(\"d-none\").addClass(\"d-block\");\n\n                    if (extensions.status !== \"true\") {\n                        $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n                        isExtensionNeeded = true;\n                        microsoft = $('#agreeTermsConditions').attr('placeholder');\n                        if (microsoft !== \"microsoft\") {\n                            microsoft = \"\";\n                        }\n                        ThirdParty = $('#ThirdPartyagreeTermsConditions').attr('placeholder');\n                        if (ThirdParty !== \"thirdparty\") {\n                            ThirdParty = \"\";\n                        }\n                    } else {\n                        $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                        $(\"#templateselection\").addClass('btn-primary').prop(\"disabled\", false);\n                    }\n                }\n                else {\n                    $(\"#extensionError\").html('');\n                    $(\"#extensionError\").hide();\n                    $(\"#lblextensionError\").removeClass(\"d-block\").addClass(\"d-none\");\n                    $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                    $(\"#templateselection\").addClass('btn-primary').prop(\"disabled\", false);\n                }\n\n            });\n        }\n        //Till here\n\n        var accountNameToCheckExtension = $('#ddlAcccountName option:selected').val();\n        var checkExtensionsForSelectedTemplate = templateFolder;\n        gtag('event', checkExtensionsForSelectedTemplate, {\n            'event_category': 'Selected Template',\n            'event_label': checkExtensionsForSelectedTemplate,\n            'event_action': 'selected',\n            'send_to': '__GAKEY__'\n        });\n        if (accountNameToCheckExtension === \"\" || accountNameToCheckExtension === \"--select organiaztion--\") {\n            return false;\n        }\n        else if (checkExtensionsForSelectedTemplate === \"\") {\n            return;\n        }\n        else {\n            GetRequiredExtension();\n        }\n\n    });\n\n    $('#selecttmplateCommunity').click(function () {\n        var URL = $(\".template.selected\").data('folder');\n        $(\"#urlerror\").empty();\n        if (URL !== \"\") {\n            $.ajax({\n                url: \"../Environment/UploadPrivateTemplateFromURL\",\n                type: \"GET\",\n                data: { TemplateURL: URL, token: \"\", userId: \"\", password: \"\", OldPrivateTemplate: \"\" },\n                success: function (Data) {\n                    if (Data.privateTemplatePath !== \"\" && Data.privateTemplatePath !== undefined) {\n                        console.log(Data);\n                        var msg = '';\n                        if (Data.responseMessage === \"SUCCESS\") {\n                            $('#ddlTemplates').val(Data.privateTemplateName);\n                            $('#PrivateTemplateName').val(Data.privateTemplateName);\n                            $('#PrivateTemplatePath').val(Data.privateTemplatePath);\n                            $('#selectedTemplateFolder').val(Data.privateTemplateName);\n                            $(\".template-close\").click();\n                            $(\".VSTemplateSelection\").removeClass('d-block').addClass('d-none');\n                            $(\"#lblextensionError\").removeClass('d-block').addClass('d-none');\n                            $(\"#lblDefaultDescription\").removeClass('d-block').addClass('d-none');\n                            $(\"#lblDescription\").removeClass('d-block').addClass('d-none');\n                            $(\"#ddlAcccountName\").prop('selectedIndex', 0);\n                            //enableButton(controlID);\n                            //$('#gitHubCheckboxDiv', parent.document).addClass('d-none');\n                        }\n                        else if (Data.responseMessage !== '' && Data.responseMessage !== 'SUCCESS') {\n                            $(\"#urlerror\").empty().append(Data.responseMessage);\n                            enableButton(controlID);\n                            return;\n                        }\n                    }\n                    else {\n                        if (Data.responseMessage !== null && Data.responseMessage !== 'SUCCESS') {\n                            $(\"#urlerror\").empty().append(Data.responseMessage);\n                            enableButton(controlID);\n                            return;\n                        }\n                    }\n                },\n                error: function (er) {\n                    console.log(er);\n                }\n\n            });\n        }\n        else {\n            $(\"#urlerror\").empty().append(\"Template URL is missing!\");\n        }\n    });\n\n    $(\"body\").on(\"click\", \"#EmailPopup\", function () {\n        $(\"#EmailModal\").modal('show');\n    });\n\n    //checking for extenisoin start\n    var isMicrosoftAgreement = \"\";\n    var isThirdparty = \"\";\n    $('#extensionError').click(function () {\n        if (microsoft === \"microsoft\" && ThirdParty === \"thirdparty\") {\n            isMicrosoftAgreement = $('input[id=agreeTermsConditions]:checked').val();\n            isThirdparty = $('input[id=ThirdPartyagreeTermsConditions]:checked').val();\n            if (isMicrosoftAgreement === \"on\" && isThirdparty === \"on\") {\n                $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                isAgreedTerms = true;\n                checkGitAuth();\n            }\n            else {\n                $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n                isAgreedTerms = false;\n            }\n        }\n        else if (microsoft === \"microsoft\" && ThirdParty === \"\") {\n            isMicrosoftAgreement = $('input[id=agreeTermsConditions]:checked').val();\n            isThirdparty = $('input[id=ThirdPartyagreeTermsConditions]:checked').val();\n            if (isMicrosoftAgreement === \"on\") {\n                $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                isAgreedTerms = true;\n                checkGitAuth();\n            }\n            else {\n                $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n                isAgreedTerms = false;\n\n            }\n        }\n        else if (microsoft === \"\" && ThirdParty === \"thirdparty\") {\n            isMicrosoftAgreement = $('input[id=agreeTermsConditions]:checked').val();\n            isThirdparty = $('input[id=ThirdPartyagreeTermsConditions]:checked').val();\n            if (isThirdparty === \"on\") {\n                $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                isAgreedTerms = true;\n                checkGitAuth();\n            }\n            else {\n                $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n                isAgreedTerms = false;\n            }\n        }\n    });\n\n    $(\"#projectParameters\").html('');\n    var selectedTemplate = templateFolder;\n    if (selectedTemplate !== \"\") {\n        $(\"#extensionError\").html(''); $(\"#extensionError\").hide(); $(\"#lblextensionError\").hide();\n        var Url = 'GetTemplate/';\n        $.get(Url, { \"TemplateName\": selectedTemplate }, function (data) {\n            if (data !== \"\") {\n                var ParsedData = JSON.parse(data);\n                var Description = ParsedData.Description;\n                var parameters = ParsedData.Parameters;\n                $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                if (typeof parameters !== \"undefined\") {\n                    if (parameters.length > 0) {\n                        $.each(parameters, function (key, value) {\n                            $('<div class=\"form-group row projParameters\"><label for=\"sonarqubeurl\" class=\"col-lg-3 col-form-label\" style=\"font-weight:400\">' + value.label + ':</label><div class=\"col-lg-8\"><input type=\"text\" class=\"form-control project-parameters rmverrorOn\" id=\"txt' + value.fieldName + '\"  proj-parameter-name=\"' + value.fieldName + '\" placeholder=\"' + value.fieldName + '\"><div class=\"alert alert-danger d-none\" role=\"alert\" id=\"txt' + value.fieldName + '_Error\"></div></div>').appendTo(\"#projectParameters\");\n                        });\n                        $(\"#projectParameters\").show();\n                    }\n                    else { $(\"#projectParameters\").html(''); }\n                }\n            }\n        });\n        if (selectedTemplate !== \"\" && typeof selectedTemplate !== \"undefined\") {\n            checkForInstalledExtensions(selectedTemplate, function callBack(extensions) {\n\n                if (extensions.message !== \"no extensions required\" && extensions.message !== \"\" && typeof extensions.message !== \"undefined\" && extensions.message.indexOf(\"Error\") === -1 && extensions.message !== \"Template not found\") {\n\n                    $(\"#extensionError\").empty().append(extensions.message);\n                    $(\"#extensionError\").show();\n                    $(\"#lblextensionError\").removeClass(\"d-none\").addClass(\"d-block\");\n\n                    if (extensions.status !== \"true\") {\n\n                        $(\"#btnSubmit\").prop(\"disabled\", true).addClass('btn-primary');\n                        isExtensionNeeded = true;\n                        microsoft = $('#agreeTermsConditions').attr('placeholder');\n                        if (microsoft !== \"microsoft\") {\n                            microsoft = \"\";\n                        }\n                        ThirdParty = $('#ThirdPartyagreeTermsConditions').attr('placeholder');\n                        if (ThirdParty !== \"thirdparty\") {\n                            ThirdParty = \"\";\n                        }\n\n                    } else { $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary'); $(\"#templateselection\").addClass('btn-primary').prop(\"disabled\", false); }\n                }\n                else {\n                    $(\"#extensionError\").html('');\n                    $(\"#extensionError\").hide();\n                    $(\"#lblextensionError\").removeClass(\"d-block\").addClass(\"d-none\");\n                    $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                    $(\"#templateselection\").addClass('btn-primary').prop(\"disabled\", false);\n                }\n\n            });\n        }\n    }\n\n    $(document).keypress(function (e) {\n        if (e.which === 13) {\n            $('#btnSubmit').click();\n            return false;\n        }\n    });\n\n    //Call create templates \n    createTemplates();\n\n    // load other templates on tab click\n    $(document.body).on('click', '.nav-link', function () {\n        grpSelected = this.text;\n        if (grpSelected === \"Community\") {\n            $('#selecttmplate').addClass('d-none');\n            $('#selecttmplateCommunity').removeClass('d-none');\n        }\n        else {\n            $('#selecttmplate').removeClass('d-none');\n            $('#selecttmplateCommunity').addClass('d-none');\n        }\n        $('#urlerror').empty();\n        getGroups(grpSelected);\n    });\n\n    //Group load\n    $.ajax({\n        url: \"../Environment/GetGroups\",\n        type: \"GET\",\n        success: function (groups) {\n            var grp = \"\";\n            if (typeof groups.Groups !== \"undefined\") {\n                if (groups.Groups.length > 0) {\n                    for (var g = 0; g < groups.Groups.length; g++) {\n                        if (g === 0)\n                            grp += '<li class=\"nav-item\"><a class=\"nav-link active text-white\" id=\"pills-' + groups.Groups[g] + '-tab\" id=\"pills-' + groups.Groups[g] + '-tab\" data-toggle=\"pill\" href=\"#' + groups.Groups[g] + '\" role=\"tab\" aria-selected=\"true\">' + groups.Groups[g] + '</a></li>'\n                        else\n                            grp += '<li class=\"nav-item\"><a class=\"nav-link text-white\" id=\"pills-' + groups.Groups[g] + '-tab\" data-toggle=\"pill\" href=\"#' + groups.Groups[g] + '\" role=\"tab\" aria-controls=\"pills-' + groups.Groups[g] + '\" aria-selected=\"false\">' + groups.Groups[g] + '</a></li>'\n                    }\n                    $('#modtemplateGroup').empty().append(grp);\n\n                }\n            }\n            else {\n                if (confirm(\"Session expired! click OK to reload\")) {\n                    window.location.href = \"../account/index\";\n                }\n                else {\n                    window.location.href = \"../\";\n                }\n            }\n        },\n        error: function (er) {\n            console.log(er);\n        }\n    });\n\n    // appending selected template name, description and icon to the info section\n    var privateTemplateDescription = $('#selectedTemplateDescription').val();\n    if (privateTemplateDescription !== \"\") {\n        var templateTxt = $('#descContainer').text();\n        if (templateTxt !== \"\")\n            $(\"#descContainer\").html(privateTemplateDescription);\n    }\n\n    var selectedTemplateIcon = $('#selectedTemplateImage').val();\n    var selectedTemplate_Name = $('#selectedTemplate').val();\n    $('#templatePreviewName')[0].innerHTML = selectedTemplate_Name;\n    $('#templatePreviewImage').prop('src', selectedTemplateIcon);\n    //If User comes with lab url(private), we will check for PrivatetemplateFolderName in the field\n    var publicTemplate = $('#ddlTemplates').val();\n    var privateTemplate = $('#selectedTemplateFolder').val();\n    if (privateTemplate !== \"\" || typeof privateTemplate !== \"undefined\") {\n        templateFolder = privateTemplate;\n    }\n    else {\n        templateFolder = publicTemplate;\n    }\n\n    AppendMessage();\n    var defaultTemplate = $('#selectedTemplate').val();\n    $('#ddlTemplates').val(defaultTemplate);\n});\n$('#btnSubmit').click(function () {\n    var forkGitHub = false;\n    var gitHubFork = $('input[id=\"gitHubCheckbox\"]').prop('checked');\n    if (gitHubFork === true) {\n        forkGitHub = true;\n    }\n    statusCount = 0;\n    $(\"#txtALertContainer\").hide();\n    $('#status-messages').hide();\n    $(\"#finalLink\").removeClass(\"d-block\").addClass(\"d-none\");\n\n    var projectName = $.trim($(\"#txtProjectName\").val());\n    var template = templateFolder;\n    var accountName = $('#ddlAcccountName option:selected').val();\n    var token = $('#hiddenAccessToken').val();\n    var email = $('#emailID').val();\n    var regex = /^[A-Za-z0-9 -_]*[A-Za-z0-9][A-Za-z0-9 -_]*$/;\n    if (accountName === \"\" || accountName === \"Select Organization\") {\n        $(\"#ddlAcccountName_Error\").text(\"Please choose an organization first!\");\n        $(\"#ddlAcccountName_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n        $(\"#ddlAcccountName\").focus();\n        return false;\n    }\n    //checking for session templatename and templateID\n    if (projectName === \"\") {\n        $(\"#txtProjectName_Error\").text(\"Please provide a project name\");\n        $(\"#txtProjectName_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n        return false;\n    }\n    if (!(regex.test(projectName))) {\n        $(\"#txtAlert\").text(\"Special characters are not allowed for project name\");\n        $(\"#txtALertContainer\").show();\n        $(\"#txtProjectName\").focus();\n        return false;\n    }\n    if (template === \"\") {\n        $(\"#ddlTemplates_Error\").text(\"Please select Project template\");\n        $(\"#ddlTemplates_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n        return false;\n    }\n\n    if (template === \"Octopus\") {\n        var octopusURL = $('#txtOctopusURL').val();\n        var octopusAPIkey = $('#txtAPIkey').val();\n        if (octopusURL !== \"\") {\n            var pattern = /^(?:http(s)?:\\/\\/)?[\\w.-]+(?:\\.[\\w\\.-]+)+[\\w\\-\\._~:/?#[\\]\\$&'\\(\\)\\*\\+,;=.]+$/;\n\n            if (!(pattern.test(octopusURL))) {\n                $(\"#txtOctopusURL_Error\").text(\"Please enter a valid URL.\");\n                $(\"#txtOctopusURL_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n                return false;\n            }\n        }\n        else {\n            $(\"#txtOctopusURL_Error\").text(\"Please enter a valid URL.\");\n            $(\"#txtOctopusURL_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n            return false;\n        }\n        if (octopusAPIkey === \"\") {\n            $(\"#txtAPIkey_Error\").text(\"Please enter a valid Octopus Key.\");\n            $(\"#txtAPIkey_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n            return false;\n        }\n    }\n\n    if (template === \"SonarQube\") {\n        var ServerDNS = $(\"#txtSonarServerDNSName\").val();\n        if (ServerDNS === \"\") {\n            $(\"#txtSonarServerDNSName_Error\").text(\"Please enter sonar server DNS name\");\n            $(\"#txtSonarServerDNSName_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n            return false;\n        }\n    }\n\n    //get userMethod and selected users\n    var SelectedUsers = '';\n    var userMethod = $(\"input[type='radio']:checked\").val();\n    if (userMethod === \"Select\") {\n        $(\".checkbox\").each(function () {\n            if (this.checked) {\n                SelectedUsers = SelectedUsers + this.value + ',';\n            }\n        });\n\n        if (SelectedUsers.length === 0) {\n            $(\"#txtAlert\").text(\"Please select organiaztion users\");\n            $(\"#txtALertContainer\").show();\n            return false;\n        }\n    }\n\n    $('#status-messages').html('');\n    $('#status-messages').show();\n    $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n    $(\"#templateselection\").prop(\"disabled\", true).removeClass('btn-primary');\n    var Parameters = {};\n    $.each($('.project-parameters'), function (index, item) {\n        Parameters[$(\"#\" + item['id']).attr('proj-parameter-name')] = item[\"value\"];\n    });\n\n    var privateTemplateName = $('#PrivateTemplateName').val();\n    var privateTemplatePath = $('#PrivateTemplatePath').val();\n    if (privateTemplatePath !== '') {\n        selectedTemplate = privateTemplateName;\n    } else {\n        selectedTemplate = template;\n    }\n\n    var websiteUrl = window.location.href;\n    var projData = {\n        \"ProjectName\": projectName, \"SelectedTemplate\": selectedTemplate, \"id\": uniqueId, \"Parameters\": Parameters, \"selectedUsers\": SelectedUsers, \"UserMethod\": userMethod, \"SonarQubeDNS\": ServerDNS, \"isExtensionNeeded\": isExtensionNeeded, \"isAgreeTerms\": isAgreedTerms, \"websiteUrl\": websiteUrl, \"accountName\": accountName, \"accessToken\": token, \"email\": email, \"GitHubFork\": forkGitHub, \"PrivateTemplateName\": privateTemplateName, \"PrivateTemplatePath\": privateTemplatePath\n    };\n    $.post(\"StartEnvironmentSetupProcess\", projData, function (data) {\n        if (data !== \"True\") {\n            //var queryTemplate = '@Request.QueryString[\"queryTemplate\"]';\n            //window.location.href = \"~/Account/Verify?template=\" + queryTemplate;\n            //return;\n            if (confirm(\"Session expired! click OK to reload\")) {\n                window.location.href = \"../account/index\";\n            }\n            else {\n                window.location.href = \"../\";\n            }\n        }\n        else if (data === false) {\n            if (confirm(\"Session expired! click OK to reload\")) {\n                window.location.href = \"../account/index\";\n            }\n            else {\n                window.location.href = \"../\";\n            }\n        }\n        $('input[id=\"gitHubCheckbox\"]').prop('disabled', true);\n        appInsights.trackEvent(\"Create button clicked\");\n        appInsights.trackEvent(\"Created project using\" + selectedTemplate + \" template\");\n        gtag('event', selectedTemplate, {\n            'event_category': 'Selected Template',\n            'event_label': selectedTemplate,\n            'event_action': 'selected',\n            'send_to': '__GAKEY__'\n        });\n        appInsights.trackEvent(\"User method\" + userMethod);\n\n        $('#ddlGroups').attr(\"disabled\", \"disabled\");\n\n        $(\"#ddlAcccountName\").attr(\"disabled\", \"disabled\");\n        $(\"#txtProjectName\").attr(\"disabled\", \"disabled\");\n        $(\"#templateselection\").prop(\"disabled\", true);\n        $(\"input.terms\").attr(\"disabled\", true);\n        $(\"#txtALertContainer\").hide();\n        $(\"#accountLink\").html('');\n        $(\"#errorNotify\").removeClass(\"d-block\").addClass(\"d-none\");\n        projectNameForLink = projectName;\n        AccountNameForLink = accountName;\n        ErrorData = '';\n        getStatus();\n        $('#dvProgress').removeClass(\"d-none\").addClass(\"d-block\");\n        $('#textMuted').removeClass(\"d-none\").addClass(\"d-block\");\n    });\n    event.preventDefault;\n});\n\n// if the user uploading his exported template (zip file), we will take that template name as folder name\n//$('#myiFrame body').on('click', '#btnUpload', function () {\n//    alert();\n//    debugger;\n//    var fileUpload = $(\"#FileUpload1\").get(0);\n//    var files = fileUpload.files;\n//    $('#InfoMessage').removeClass('d-block').addClass('d-none');\n//    // Create FormData object\n//    var fileData = new FormData();\n//    // Looping over all files and add it to FormData object\n//    for (var i = 0; i < files.length; i++) {\n//        fileData.append(files[i].name, files[i]);\n//    }\n//    templateFolder = files[0].name.replace(\".zip\", \"\");\n//});\n\nfunction getStatus() {\n\n    $.ajax({\n        url: 'GetCurrentProgress/' + uniqueId,\n        type: 'GET',\n        success: function (data) {\n\n            if (data === \"OAUTHACCESSDENIED\") {\n                $('#progressBar').width(currentPercentage++ + '%');\n                $('#status-messages').append('<i class=\"fas fa-forward\"></i> &nbsp;Third Party application access via OAuth is disabled for this Organization,please change OAuth access setting and try again!<br/>');\n                $(\"#ddlAcccountName\").removeAttr(\"disabled\");\n                $(\"#txtProjectName\").removeAttr(\"disabled\");\n                $(\"#txtProjectName\").val(\"\");\n                $('#ddlAcccountName').prop('selectedIndex', 0);\n\n                $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary');\n                $('#dvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n                $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n                return;\n\n            }\n            var isMessageShown = true;\n\n            if (jQuery.inArray(data, messageList) === -1) {\n                messageList.push(data);\n                isMessageShown = false;\n            }\n\n            if (data !== \"100\") {\n\n                if (isMessageShown === false) {\n                    if (messageList.length === 1) {\n                        $('#progressBar').width(currentPercentage++ + '%');\n                        if (data.length > 0) {\n                            $('#status-messages').append('<i class=\"fas fa-check-circle\" style=\"color:green\"></i> &nbsp;' + data + '<br/>');\n                        }\n                    }\n                    else {\n                        if (data.indexOf(\"TF50309\") === 0) {\n                            $('#progressBar').width(currentPercentage++ + '%');\n                            $('#status-messages').append('<i class=\"fas fa-check-circle\" style=\"color:green\"></i> &nbsp;' + data + '<br/>');\n                            $(\"#ddlAcccountName\").removeAttr(\"disabled\");\n                            $(\"#txtProjectName\").removeAttr(\"disabled\");\n                            $(\"#txtProjectName\").val(\"\");\n                            $('#ddlAcccountName').prop('selectedIndex', 0);\n\n                            $(\"#btnSubmit\").prop(\"disabled\", false);\n                            $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary');\n                            $('#dvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n                            $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n                            return;\n                        }\n                        else if (data.indexOf(\"TF200019\") === 0) {\n                            $('#progressBar').width(currentPercentage++ + '%');\n                            $('#status-messages').append('<i class=\"fas fa-check-circle\" style=\"color:green\"></i> &nbsp;' + data + '<br/>');\n                            $(\"#ddlAcccountName\").removeAttr(\"disabled\");\n                            $(\"#txtProjectName\").removeAttr(\"disabled\");\n                            $(\"#txtProjectName\").val(\"\");\n                            $('#ddlAcccountName').prop('selectedIndex', 0);\n\n                            $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                            $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary');\n                            $('#dvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n                            $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n                            return;\n\n                        }\n                        else if (data.indexOf(\"TF200019\") === -1) {\n                            $('#progressBar').width(currentPercentage++ + '%');\n                            $('#status-messages').append('<i class=\"fas fa-check-circle\" style=\"color:green\"></i> &nbsp;' + data + '<br/>');\n                        }\n                        else {\n                            $('#status-messages').append('<i class=\"fas fa-check-circle\" style=\"color:green\"></i> &nbsp;' + data + '<br/>');\n                            $(\"#ddlAcccountName\").removeAttr(\"disabled\");\n                            $(\"#txtProjectName\").removeAttr(\"disabled\");\n                            $(\"#txtProjectName\").val(\"\");\n                            $('#ddlAcccountName').prop('selectedIndex', 0);\n\n                            $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                            $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary');\n                            $('#dvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n                            $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n\n                        }\n\n                    }\n\n                }\n                else if (currentPercentage <= ((messageList.length + 1) * percentForMessage) && currentPercentage <= 100) {\n                    $('#progressBar').width(currentPercentage++ + '%');\n                }\n                window.setTimeout(\"getStatus()\", 500);\n            }\n            else {\n                if (messageList.length !== 3) {\n                    var ID = uniqueId + \"_Errors\";\n                    var url2 = 'GetCurrentProgress/' + ID;\n                    $.get(url2, function (response) {\n                        if (response === \"100\" || response === \"\") {\n                            $.ajax({\n                                url: \"../Account/GetAccountName/\",\n                                type: \"GET\",\n                                async: false,\n                                success: function (data) {\n                                    var accountName = $('#ddlAcccountName option:selected').val();\n                                    var projectNameForLink = $(\"#txtProjectName\").val();\n                                    var link = \"https://dev.azure.com/\" + accountName + \"/\" + projectNameForLink;\n                                    var proceedOrg = \"<a href='\" + link + \"' target='_blank'><button type = 'button' class='btn btn-primary btn-sm' id = 'proceedOrg' style = 'margin: 5px;'> Navigate to project</button></a>\";\n                                    var social = \"<p style='color: black; font-weight: 500; margin: 0px;'>Like the tool? Share your feedback &nbsp;\";\n                                    social += \"<script>function fbs_click() { u = 'https://azuredevopsdemogenerator.azurewebsites.net/'; t = +Azure + DevOps + Demo + Generator & window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'sharer', 'toolbar=0,status=0,width=626,height=436'); return false; }</script>\";\n                                    var twitter = \"<a href='https://twitter.com/intent/tweet?url=https://azuredevopsdemogenerator.azurewebsites.net/&amp;text=Azure+DevOps+Demo+Generator&amp;hashtags=azuredevopsdemogenerator' target='_blank'><img src='/Images/twitter.png' style='width:20px;'></a>&nbsp;&nbsp;\";\n                                    social += twitter;\n                                    $('<b style=\"display: block;\">Congratulations! Your project is successfully provisioned.</b>' + proceedOrg + social).appendTo(\"#accountLink\");\n                                    $('#dvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n                                    $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n                                    currentPercentage = 0;\n\n                                    $('#progressBar').width(currentPercentage++ + '%');\n                                    $(\"#finalLink\").removeClass(\"d-none\").addClass(\"d-block\");\n                                    $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                                    $(\"#txtProjectName\").val(\"\");\n\n                                    $('#ddlAcccountName').prop('selectedIndex', 0);\n                                    $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary');\n\n                                    $('#ddlGroups').removeAttr(\"disabled\");\n                                    $(\"#ddlAcccountName\").removeAttr(\"disabled\");\n                                    $(\"#txtProjectName\").removeAttr(\"disabled\");\n                                    $('input[id=\"gitHubCheckbox\"]').prop('disabled', false);\n\n                                }\n                            });\n                        }\n                        else {\n                            ErrorData = response;\n                            var accountName = $('#ddlAcccountName option:selected').val();\n                            $(\"#projCreateMsg\").hide();\n\n                            $('#dvProgress').removeClass(\"d-block\").addClass(\"d-none\");\n                            $('#textMuted').removeClass(\"d-block\").addClass(\"d-none\");\n                            currentPercentage = 0;\n                            $('#status-messages').empty().hide();\n                            $('#progressBar').width(currentPercentage++ + '%');\n                            $(\"#finalLink\").addClass(\"d-none\").removeClass(\"d-block\");\n                            $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n                            $(\"#txtProjectName\").val(\"\");\n\n                            $('#ddlAcccountName').prop('selectedIndex', 0);\n                            $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary');\n                            $('#ddlGroups').removeAttr(\"disabled\");\n                            $(\"#ddlAcccountName\").removeAttr(\"disabled\");\n                            $(\"#txtProjectName\").removeAttr(\"disabled\");\n                            $('input[id=\"gitHubCheckbox\"]').prop('disabled', false);\n                            if (ErrorData !== '') {\n                                $(\"#projCreateMsg\").hide(); $(\"#errorDescription\").html(\"\");\n                                $('<b style=\"display: block;\">We ran into some issues and we are sorry about that!</b><p> The log below will provide you insights into why the provisioning failed. You can raise and issue with the logs <a id=\"EmailPopup\" href=\"https://github.com/microsoft/AzureDevOpsDemoGenerator/issues/new\" target=\"_blank\"><i>here</i></a> and we will try to help you.</p><p>Click on View Diagnostics button to share logs with us.</p>').appendTo(\"#errorDescription\");\n                                $(\"#errorMail\").empty().append(ErrorData);\n                                $(\"#errorNotify\").show();\n                                $(\"#errorNotify\").removeClass(\"d-none\").addClass(\"d-block\");\n                            }\n                        }\n                    });\n                    messageList = [];\n                }\n            }\n        },\n        error: function (xhr) {\n            getStatus();\n        }\n    });\n}\n\nfunction DisplayErrors() {\n    $(\"#errorBody\").html('<pre>' + ErrorData + '</pre>');\n    $(\"#errorModal\").modal('show');\n}\n\n\nfunction checkForInstalledExtensions(selectedTemplate, callBack) {\n    var accountNam = $('#ddlAcccountName option:selected').val();\n    var privatePath = $('#PrivateTemplatePath').val();\n    var Oauthtoken = $('#hiddenAccessToken').val();\n    if (accountNam !== \"\" && selectedTemplate !== \"\") {\n        $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n\n        $.ajax({\n            url: \"../Environment/CheckForInstalledExtensions\",\n            type: \"GET\",\n            data: { selectedTemplate: selectedTemplate, token: Oauthtoken, Account: accountNam, PrivatePath: privatePath },\n            success: function (InstalledExtensions) {\n                if (typeof (InstalledExtensions) === \"object\") {\n                    if (InstalledExtensions.message.indexOf(\"All required\") === 0) {\n                        callBack(InstalledExtensions);\n                    }\n                    else if (InstalledExtensions.message.indexOf(\"Template not found\") === 0) {\n                        callBack(InstalledExtensions);\n                    }\n                    callBack(InstalledExtensions);\n                }\n                else {\n                    if (confirm(\"Session expired! click OK to reload\")) {\n                        window.location.href = \"../account/index\";\n                    }\n                    else {\n                        window.location.href = \"../\";\n                    }\n                }\n            },\n            error: function (er) {\n                if (confirm(\"Something went wrong! click OK to reload\")) {\n                    window.location.href = \"../account/index\";\n                }\n                else {\n                    window.location.href = \"../\";\n                }\n            }\n        });\n    }\n\n}\n\nfunction checkForExtensions(callBack) {\n    var accountNam = $('#ddlAcccountName option:selected').val();\n    var Oauthtoken = $('#hiddenAccessToken').val();\n    var privatePath = $('#PrivateTemplatePath').val();\n    var selectedTemplate = templateFolder;\n    if ($('#PrivateTemplateName').val() !== \"\") {\n        selectedTemplate = $('#PrivateTemplateName').val();\n    }\n    if (selectedTemplate !== \"\" && accountNam !== \"\") {\n        $('#btnSubmit').addClass('lodergif');\n        //$(\"#imgLoading\").show();\n        $(\"#btnSubmit\").removeClass('btn-primary').prop(\"disabled\", true);\n        $(\"#templateselection\").removeClass('btn-primary').prop(\"disabled\", true);\n        $(\"#ddlAcccountName\").prop(\"disabled\", true);\n        $(\"#txtProjectName\").prop('disabled', 'disabled');\n\n        $.ajax({\n            url: \"../Environment/CheckForInstalledExtensions\",\n            type: \"GET\",\n            data: { selectedTemplate: selectedTemplate, token: Oauthtoken, Account: accountNam, PrivatePath: privatePath },\n            success: function (InstalledExtensions) {\n                if (typeof (InstalledExtensions) === \"object\") {\n                    if (InstalledExtensions.message.indexOf(\"All required\") === 0) {\n                        callBack(InstalledExtensions);\n                    }\n                    else if (InstalledExtensions.message.indexOf(\"Template not found\") === 0) {\n                        callBack(InstalledExtensions);\n                    }\n                    callBack(InstalledExtensions);\n                }\n                else {\n                    if (confirm(\"Session expired! click OK to reload\")) {\n                        window.location.href = \"../account/index\";\n                    }\n                    else {\n                        window.location.href = \"../\";\n                    }\n                }\n            },\n            error: function (er) {\n                if (confirm(\"Something went wrong! click OK to reload\")) {\n                    window.location.href = \"../account/index\";\n                }\n                else {\n                    window.location.href = \"../\";\n                }\n            }\n        });\n    }\n\n}\n\nfunction GetRequiredExtension() {\n    checkForExtensions(function callBack(extensions) {\n        if (extensions.message !== \"no extensions required\" && extensions.message !== \"\" && typeof extensions.message !== \"undefined\" && extensions.message.indexOf(\"Error\") === -1 && extensions.message !== \"Template not found\") {\n            $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary');\n            $('#btnSubmit').removeClass('lodergif');\n            //$(\"#imgLoading\").hide();\n            $(\"#ddlAcccountName\").prop(\"disabled\", false);\n            $(\"#extensionError\").empty().append(extensions.message);\n            $(\"#extensionError\").show();\n            $(\"#lblextensionError\").removeClass(\"d-none\").addClass(\"d-block\");\n            $(\"#txtProjectName\").prop('disabled', false);\n            if (extensions.status !== \"true\") {\n                $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n\n                isExtensionNeeded = true;\n                microsoft = $('#agreeTermsConditions').attr('placeholder');\n                if (microsoft !== \"microsoft\") {\n                    microsoft = \"\";\n                }\n                ThirdParty = $('#ThirdPartyagreeTermsConditions').attr('placeholder');\n                if (ThirdParty !== \"thirdparty\") {\n                    ThirdParty = \"\";\n                }\n            } else {\n                $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary'); $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary'); microsoft = \"\"; ThirdParty = \"\";\n                checkGitAuth();\n            }\n        }\n        else {\n            /*$(\"#imgLoading\").hide();*/ $('#btnSubmit').removeClass('lodergif');\n            $(\"#ddlAcccountName\").prop(\"disabled\", false); $(\"#extensionError\").html(''); $(\"#extensionError\").hide(); $(\"#lblextensionError\").removeClass(\"d-block\").addClass(\"d-none\"); $(\"#btnSubmit\").addClass('btn-primary').prop(\"disabled\", false); $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary'); $(\"#txtProjectName\").prop('disabled', false); microsoft = \"\"; ThirdParty = \"\";\n            checkGitAuth();\n        }\n    });\n}\n\n//TEMPLATE GROUP CREATION\n\n$(function () {\n\n    // SHOW MODAL ON EVENT\n    $(\".template-invoke\").on(\"click\", function () {\n        $(\".VSTemplateSelection\").fadeIn('fast');\n    });\n\n    // CLOSE MODAL ON EVENT\n    $(\".template-close\").on(\"click\", function () {\n        $(\".VSTemplateSelection\").removeClass('d-block').addClass('d-none');\n        templateFolder = $('#selectedTemplateFolder').val();\n    });\n\n    // TOGGLING ACTIVE CLASS TO TEMPLATE GROUP\n    $(\".template-group-item\").on('click', function (e) {\n        e.preventDefault();\n        $(\".template-group-item\").removeClass('active');\n        $(this).addClass('active');\n    });\n\n    // TOGGLING SELECTED CLASS TO TEMPLATE\n\n    $(document.body).on(\"click\", '.template', function () {\n        $(\".template\").removeClass(\"selected\");\n        $(this).addClass(\"selected\");\n        $('.description').removeClass('descSelected');\n        $(this.lastElementChild).addClass('descSelected');\n    });\n\n    // GET ID TO BE SHOWN\n    let showId = $(\".template-group-item.active\").attr('href');\n    $(`.template-body .templates${showId}`).show();\n});\n\nfunction createTemplates() {\n    var grpSelected = \"General\";\n    getGroups(grpSelected);\n}\n\n//Project name validtaion on keyup\n\n$(\"#txtProjectName\").keyup(function () {\n    var projectName = $.trim(this.value);\n    var regex = /^(?!_.)[a-zA-Z0-9!^\\-`)(]*[a-zA-Z0-9_!^\\.)( ]*[^.\\/\\\\~@#$*%+=[\\]{\\}'\",:;?<>|](?:[a-zA-Z!)(][a-zA-Z0-9!^\\-` )(]+)?$/;\n    if (projectName !== \"\") {\n        var restrictedNames = [\"COM1\", \"COM2\", \"COM3\", \"COM4\", \"COM5\", \"COM6\", \"COM7\", \"COM8\", \"COM9\", \"COM10\", \"PRN\", \"LPT1\", \"LPT2\", \"LPT3\", \"LPT4\", \"LPT5\", \"LPT6\", \"LTP\", \"LTP8\", \"LTP9\", \"NUL\", \"CON\", \"AUX\", \"SERVER\", \"SignalR\", \"DefaultCollection\", \"Web\", \"App_code\", \"App_Browesers\", \"App_Data\", \"App_GlobalResources\", \"App_LocalResources\", \"App_Themes\", \"App_WebResources\", \"bin\", \"web.config\"];\n        if (restrictedNames.find(x => x.toLowerCase() === projectName.toLowerCase())) {\n            var link = \"<a href='https://go.microsoft.com/fwlink/?linkid=842564' target='_blank'>Learn more</a>\";\n            $(\"#txtProjectName_Error\").html(\"The project name '\" + projectName + \"' is invalid \" + link);\n            $(\"#txtProjectName_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n            $(\"#txtProjectName\").focus();\n            $('#btnSubmit').removeClass('btn-primary').attr('disabled', 'disabled');\n            //return false;\n        }\n        else {\n            validateExtensionCheckbox();\n        }\n        if (!(regex.test(projectName))) {\n            var links = \"<a href='https://go.microsoft.com/fwlink/?linkid=842564' target='_blank'>Learn more</a>\";\n            $(\"#txtProjectName_Error\").html(\"The project name '\" + projectName + \"' is invalid \" + links);\n            $(\"#txtProjectName_Error\").removeClass(\"d-none\").addClass(\"d-block\");\n            $(\"#txtProjectName\").focus();\n            $('#btnSubmit').removeClass('btn-primary').attr('disabled', 'disabled');\n            //return false;\n        }\n        else {\n            validateExtensionCheckbox();\n            //return false;\n        }\n        checkGitAuth();\n    }\n    else {\n        $(\"#txtProjectName_Error\").text(\"\");\n        $(\"#txtProjectName_Error\").removeClass(\"d-block\").addClass(\"d-none\");\n        $('#btnSubmit').addClass('btn-primary').attr('disabled', false);\n\n        checkGitAuth();\n        return false;\n    }\n});\n\nfunction validateExtensionCheckbox() {\n    $(\"#templateselection\").prop(\"disabled\", false).addClass('btn-primary');\n    var checkboxMicrosoft = \"\";\n    var checkboxTrirdparty = \"\";\n\n    $(\"#txtProjectName_Error\").text(\"\");\n    $(\"#txtProjectName_Error\").removeClass(\"d-block\").addClass(\"d-none\");\n\n    if (microsoft === \"microsoft\" && ThirdParty === \"thirdparty\") {\n        checkboxMicrosoft = $('input[id=agreeTermsConditions]:checked').val();\n        checkboxTrirdparty = $('input[id=ThirdPartyagreeTermsConditions]:checked').val();\n        if (checkboxMicrosoft === \"on\" && checkboxTrirdparty === \"on\") {\n            $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n            isAgreedTerms = true;\n        }\n        else {\n            $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n            isAgreedTerms = false;\n        }\n    }\n    else if (microsoft === \"microsoft\" && ThirdParty === \"\") {\n        checkboxMicrosoft = $('input[id=agreeTermsConditions]:checked').val();\n        checkboxTrirdparty = $('input[id=ThirdPartyagreeTermsConditions]:checked').val();\n        if (checkboxMicrosoft === \"on\") {\n            $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n            isAgreedTerms = true;\n        }\n        else {\n            $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n            isAgreedTerms = false;\n\n        }\n    }\n    else if (microsoft === \"\" && ThirdParty === \"thirdparty\") {\n        checkboxMicrosoft = $('input[id=agreeTermsConditions]:checked').val();\n        checkboxTrirdparty = $('input[id=ThirdPartyagreeTermsConditions]:checked').val();\n        if (checkboxTrirdparty === \"on\") {\n            $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n            isAgreedTerms = true;\n        }\n        else {\n            $(\"#btnSubmit\").prop(\"disabled\", true).removeClass('btn-primary');\n            isAgreedTerms = false;\n        }\n    }\n    else {\n        $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n    }\n    checkGitAuth();\n}\n\nfunction GetTemplates(selectedTemplate) {\n    var Url = 'GetTemplate/';\n    $.get(Url, { \"TemplateName\": selectedTemplate }, function (data) {\n        if (data !== \"\") {\n            var ParsedData = JSON.parse(data);\n            var Description = ParsedData.Description;\n            var parameters = ParsedData.Parameters;\n            $(\"#btnSubmit\").prop(\"disabled\", false).addClass('btn-primary');\n            if (typeof parameters !== \"undefined\") {\n                if (parameters.length > 0) {\n                    $.each(parameters, function (key, value) {\n                        $('<div class=\"form-group row projParameters\"><label for=\"sonarqubeurl\" class=\"col-lg-3 col-form-label\" style=\"font-weight:400\">' + value.label + ':</label><div class=\"col-lg-8\"><input type=\"text\" class=\"form-control project-parameters rmverrorOn\" id=\"txt' + value.fieldName + '\"  proj-parameter-name=\"' + value.fieldName + '\" placeholder=\"' + value.fieldName + '\"><div class=\"alert alert-danger d-none\" role=\"alert\" id=\"txt' + value.fieldName + '_Error\"></div></div>').appendTo(\"#projectParameters\");\n                    });\n                    $(\"#projectParameters\").show();\n                }\n                else { $(\"#projectParameters\").html(''); }\n            }\n        }\n    });\n}\n\nfunction openImportPopUp() {\n    $(\"#privateTemplatepop\").removeClass('d-none').addClass('d-block');\n}\n\nfunction AppendMessage() {\n    privateTemplateMsg = $('#infoMessageTxt').val();\n    gitFork = $('#forkGitRepo').val();\n    if (privateTemplateMsg !== \"\" && privateTemplateMsg !== null && typeof privateTemplateMsg !== \"undefined\") {\n        $('#InfoMessage').html(privateTemplateMsg);\n        $('#InfoMessage').removeClass('d-none').addClass('d-block');\n    }\n    else {\n        $('#InfoMessage').html('');\n        $('#InfoMessage').removeClass('d-block').addClass('d-none');\n    }\n    if (gitFork === \"True\") {\n        $('#gitHubCheckboxDiv').removeClass('d-none');\n        $('#gitHubLabelDiv').removeClass('d-none');\n        $('input[id=\"gitHubCheckbox\"]').prop('checked', false);\n    }\n    else {\n        $('#gitHubCheckboxDiv').addClass('d-none');\n        $('#gitHubLabelDiv').addClass('d-none');\n    }\n}\n\nfunction getGroups(grpSelected) {\n    $.ajax({\n        url: \"../Environment/GetGroups\",\n        type: \"GET\",\n        success: function (groups) {\n            var grp = \"\";\n            var isPrivate = \"\";\n            if (typeof groups.GroupwiseTemplates !== \"undefined\") {\n                if (groups.GroupwiseTemplates.length > 0) {\n                    grp += '<div class=\"tab-pane show active\" id=\"' + grpSelected + '\" role=\"tabpanel\" aria-labelledby=\"pills-' + grpSelected + '-tab\">';\n                    grp += '<div class=\"templates d-flex align-items-center flex-wrap\">';\n                    for (var g = 0; g < groups.GroupwiseTemplates.length; g++) {\n                        if (groups.GroupwiseTemplates[g].Groups === grpSelected) {\n                            var MatchedGroup = groups.GroupwiseTemplates[g];\n                            if (MatchedGroup.Template[0].Name === \"Private\") {\n                                $('#selecttmplate').hide();\n                                isPrivate += MatchedGroup.Template[0].TemplateFolder;\n                                $('#pills-tabContent').html('').html(isPrivate);\n                            }\n                            else {\n                                for (var i = 0; i < MatchedGroup.Template.length; i++) {\n                                    if (i === 0) {\n                                        var templateImg = MatchedGroup.Template[i].Image;\n                                        if (templateImg === \"\" || templateImg === null) {\n                                            templateImg = \"/Templates/TemplateImages/CodeFile.png\";\n                                        }\n                                        grp += '<div class=\"template selected\" data-template=\"' + MatchedGroup.Template[i].Name + '\" data-folder=\"' + MatchedGroup.Template[i].TemplateFolder + '\" data-gitfork=\"' + MatchedGroup.Template[i].ForkGitHubRepo + '\" data-templateimage=\"' + templateImg + '\">';\n                                        grp += '<div class=\"template-header\">';\n                                        grp += '<img class=\"templateImage\" src=\"' + templateImg + '\"/>';\n                                        grp += '<strong class=\"title\">' + MatchedGroup.Template[i].Name + '</strong></div >';\n                                        if (MatchedGroup.Template[i].Tags !== null) {\n                                            grp += '<p></p>';\n                                            grp += '<p>';\n                                            for (var rx = 0; rx < MatchedGroup.Template[i].Tags.length; rx++) {\n                                                grp += '<i>' + MatchedGroup.Template[i].Tags[rx] + '</i>';\n                                            }\n                                            grp += '</p>';\n                                        }\n                                        grp += '<p class=\"description descSelected\" data-description=\"' + MatchedGroup.Template[i].Description + '\" data-message=\"' + MatchedGroup.Template[i].Message + '\">' + MatchedGroup.Template[i].Description + '</p>';\n                                        grp += '</div>';\n                                    }\n                                    else {\n                                        var templateImgs = MatchedGroup.Template[i].Image;\n                                        if (templateImgs === \"\" || templateImgs === null) {\n                                            templateImgs = \"/Templates/TemplateImages/CodeFile.png\";\n                                        }\n                                        grp += '<div class=\"template\" data-template=\"' + MatchedGroup.Template[i].Name + '\" data-folder=\"' + MatchedGroup.Template[i].TemplateFolder + '\" data-gitfork=\"' + MatchedGroup.Template[i].ForkGitHubRepo + '\" data-templateimage=\"' + templateImgs + '\">';\n                                        grp += '<div class=\"template-header\">';\n                                        grp += '<img class=\"templateImage\" src=\"' + templateImgs + '\"/>';\n                                        grp += '<strong class=\"title\">' + MatchedGroup.Template[i].Name + '</strong></div >';\n                                        if (MatchedGroup.Template[i].Tags !== null) {\n                                            grp += '<p></p>';\n                                            grp += '<p>';\n                                            for (var x = 0; x < MatchedGroup.Template[i].Tags.length; x++) {\n                                                grp += '<i>' + MatchedGroup.Template[i].Tags[x] + '</i>';\n                                            }\n                                            grp += '</p>';\n                                        }\n                                        grp += '<p class=\"description\" data-description=\"' + MatchedGroup.Template[i].Description + '\" data-message=\"' + MatchedGroup.Template[i].Message + '\">' + MatchedGroup.Template[i].Description + '</p>';\n                                        grp += '</div>';\n                                    }\n                                }\n                                $('#selecttmplate').show();\n\n                                grp += '</div></div>';\n                                $('#pills-tabContent').html('').html(grp);\n                            }\n                        }\n                    }\n\n                }\n                if (grpSelected === \"Private\") {\n                    var iframe = $(\"#myiFrame\");\n                    iframe.attr(\"src\", iframe.data(\"src\"));\n                }\n            }\n            else {\n                if (confirm(\"Session expired! click OK to reload\")) {\n                    window.location.href = \"../account/index\";\n                }\n                else {\n                    window.location.href = \"../\";\n                }\n            }\n        }\n    });\n}\n\nfunction checkGitAuth() {\n    var gToken = $('#hdnGToken').val();\n    var isChecked = $('input[id=\"gitHubCheckbox\"]').prop('checked');\n    if (gToken === \"\" && isChecked === true) {\n        $('#btnSubmit').removeClass('btn-primary').prop('disabled', true);\n        $('#githubAuth').css('border-color', 'red');\n    }\n    else {\n        $('#githubAuth').css('border-color', 'initial');\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/_references.js",
    "content": "﻿/// <reference path=\"modernizr-2.6.2.js\" />\n/// <reference path=\"jquery-1.12.4.js\" />\n/// <reference path=\"jquery.validate.js\" />\n/// <reference path=\"jquery.validate.unobtrusive.js\" />\n/// <reference path=\"knockout-2.2.0.debug.js\" />\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/bootstrap.js",
    "content": "/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under the MIT license\n */\n\nif (typeof jQuery === 'undefined') {\n  throw new Error('Bootstrap\\'s JavaScript requires jQuery')\n}\n\n+function ($) {\n  'use strict';\n  var version = $.fn.jquery.split(' ')[0].split('.')\n  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 3)) {\n    throw new Error('Bootstrap\\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4')\n  }\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: transition.js v3.3.7\n * http://getbootstrap.com/javascript/#transitions\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)\n  // ============================================================\n\n  function transitionEnd() {\n    var el = document.createElement('bootstrap')\n\n    var transEndEventNames = {\n      WebkitTransition : 'webkitTransitionEnd',\n      MozTransition    : 'transitionend',\n      OTransition      : 'oTransitionEnd otransitionend',\n      transition       : 'transitionend'\n    }\n\n    for (var name in transEndEventNames) {\n      if (el.style[name] !== undefined) {\n        return { end: transEndEventNames[name] }\n      }\n    }\n\n    return false // explicit for ie8 (  ._.)\n  }\n\n  // http://blog.alexmaccaw.com/css-transitions\n  $.fn.emulateTransitionEnd = function (duration) {\n    var called = false\n    var $el = this\n    $(this).one('bsTransitionEnd', function () { called = true })\n    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }\n    setTimeout(callback, duration)\n    return this\n  }\n\n  $(function () {\n    $.support.transition = transitionEnd()\n\n    if (!$.support.transition) return\n\n    $.event.special.bsTransitionEnd = {\n      bindType: $.support.transition.end,\n      delegateType: $.support.transition.end,\n      handle: function (e) {\n        if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)\n      }\n    }\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: alert.js v3.3.7\n * http://getbootstrap.com/javascript/#alerts\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // ALERT CLASS DEFINITION\n  // ======================\n\n  var dismiss = '[data-dismiss=\"alert\"]'\n  var Alert   = function (el) {\n    $(el).on('click', dismiss, this.close)\n  }\n\n  Alert.VERSION = '3.3.7'\n\n  Alert.TRANSITION_DURATION = 150\n\n  Alert.prototype.close = function (e) {\n    var $this    = $(this)\n    var selector = $this.attr('data-target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    var $parent = $(selector === '#' ? [] : selector)\n\n    if (e) e.preventDefault()\n\n    if (!$parent.length) {\n      $parent = $this.closest('.alert')\n    }\n\n    $parent.trigger(e = $.Event('close.bs.alert'))\n\n    if (e.isDefaultPrevented()) return\n\n    $parent.removeClass('in')\n\n    function removeElement() {\n      // detach from parent, fire event then clean up data\n      $parent.detach().trigger('closed.bs.alert').remove()\n    }\n\n    $.support.transition && $parent.hasClass('fade') ?\n      $parent\n        .one('bsTransitionEnd', removeElement)\n        .emulateTransitionEnd(Alert.TRANSITION_DURATION) :\n      removeElement()\n  }\n\n\n  // ALERT PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.alert')\n\n      if (!data) $this.data('bs.alert', (data = new Alert(this)))\n      if (typeof option == 'string') data[option].call($this)\n    })\n  }\n\n  var old = $.fn.alert\n\n  $.fn.alert             = Plugin\n  $.fn.alert.Constructor = Alert\n\n\n  // ALERT NO CONFLICT\n  // =================\n\n  $.fn.alert.noConflict = function () {\n    $.fn.alert = old\n    return this\n  }\n\n\n  // ALERT DATA-API\n  // ==============\n\n  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: button.js v3.3.7\n * http://getbootstrap.com/javascript/#buttons\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // BUTTON PUBLIC CLASS DEFINITION\n  // ==============================\n\n  var Button = function (element, options) {\n    this.$element  = $(element)\n    this.options   = $.extend({}, Button.DEFAULTS, options)\n    this.isLoading = false\n  }\n\n  Button.VERSION  = '3.3.7'\n\n  Button.DEFAULTS = {\n    loadingText: 'loading...'\n  }\n\n  Button.prototype.setState = function (state) {\n    var d    = 'disabled'\n    var $el  = this.$element\n    var val  = $el.is('input') ? 'val' : 'html'\n    var data = $el.data()\n\n    state += 'Text'\n\n    if (data.resetText == null) $el.data('resetText', $el[val]())\n\n    // push to event loop to allow forms to submit\n    setTimeout($.proxy(function () {\n      $el[val](data[state] == null ? this.options[state] : data[state])\n\n      if (state == 'loadingText') {\n        this.isLoading = true\n        $el.addClass(d).attr(d, d).prop(d, true)\n      } else if (this.isLoading) {\n        this.isLoading = false\n        $el.removeClass(d).removeAttr(d).prop(d, false)\n      }\n    }, this), 0)\n  }\n\n  Button.prototype.toggle = function () {\n    var changed = true\n    var $parent = this.$element.closest('[data-toggle=\"buttons\"]')\n\n    if ($parent.length) {\n      var $input = this.$element.find('input')\n      if ($input.prop('type') == 'radio') {\n        if ($input.prop('checked')) changed = false\n        $parent.find('.active').removeClass('active')\n        this.$element.addClass('active')\n      } else if ($input.prop('type') == 'checkbox') {\n        if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false\n        this.$element.toggleClass('active')\n      }\n      $input.prop('checked', this.$element.hasClass('active'))\n      if (changed) $input.trigger('change')\n    } else {\n      this.$element.attr('aria-pressed', !this.$element.hasClass('active'))\n      this.$element.toggleClass('active')\n    }\n  }\n\n\n  // BUTTON PLUGIN DEFINITION\n  // ========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.button')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.button', (data = new Button(this, options)))\n\n      if (option == 'toggle') data.toggle()\n      else if (option) data.setState(option)\n    })\n  }\n\n  var old = $.fn.button\n\n  $.fn.button             = Plugin\n  $.fn.button.Constructor = Button\n\n\n  // BUTTON NO CONFLICT\n  // ==================\n\n  $.fn.button.noConflict = function () {\n    $.fn.button = old\n    return this\n  }\n\n\n  // BUTTON DATA-API\n  // ===============\n\n  $(document)\n    .on('click.bs.button.data-api', '[data-toggle^=\"button\"]', function (e) {\n      var $btn = $(e.target).closest('.btn')\n      Plugin.call($btn, 'toggle')\n      if (!($(e.target).is('input[type=\"radio\"], input[type=\"checkbox\"]'))) {\n        // Prevent double click on radios, and the double selections (so cancellation) on checkboxes\n        e.preventDefault()\n        // The target component still receive the focus\n        if ($btn.is('input,button')) $btn.trigger('focus')\n        else $btn.find('input:visible,button:visible').first().trigger('focus')\n      }\n    })\n    .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^=\"button\"]', function (e) {\n      $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))\n    })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: carousel.js v3.3.7\n * http://getbootstrap.com/javascript/#carousel\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // CAROUSEL CLASS DEFINITION\n  // =========================\n\n  var Carousel = function (element, options) {\n    this.$element    = $(element)\n    this.$indicators = this.$element.find('.carousel-indicators')\n    this.options     = options\n    this.paused      = null\n    this.sliding     = null\n    this.interval    = null\n    this.$active     = null\n    this.$items      = null\n\n    this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))\n\n    this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element\n      .on('mouseenter.bs.carousel', $.proxy(this.pause, this))\n      .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))\n  }\n\n  Carousel.VERSION  = '3.3.7'\n\n  Carousel.TRANSITION_DURATION = 600\n\n  Carousel.DEFAULTS = {\n    interval: 5000,\n    pause: 'hover',\n    wrap: true,\n    keyboard: true\n  }\n\n  Carousel.prototype.keydown = function (e) {\n    if (/input|textarea/i.test(e.target.tagName)) return\n    switch (e.which) {\n      case 37: this.prev(); break\n      case 39: this.next(); break\n      default: return\n    }\n\n    e.preventDefault()\n  }\n\n  Carousel.prototype.cycle = function (e) {\n    e || (this.paused = false)\n\n    this.interval && clearInterval(this.interval)\n\n    this.options.interval\n      && !this.paused\n      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))\n\n    return this\n  }\n\n  Carousel.prototype.getItemIndex = function (item) {\n    this.$items = item.parent().children('.item')\n    return this.$items.index(item || this.$active)\n  }\n\n  Carousel.prototype.getItemForDirection = function (direction, active) {\n    var activeIndex = this.getItemIndex(active)\n    var willWrap = (direction == 'prev' && activeIndex === 0)\n                || (direction == 'next' && activeIndex == (this.$items.length - 1))\n    if (willWrap && !this.options.wrap) return active\n    var delta = direction == 'prev' ? -1 : 1\n    var itemIndex = (activeIndex + delta) % this.$items.length\n    return this.$items.eq(itemIndex)\n  }\n\n  Carousel.prototype.to = function (pos) {\n    var that        = this\n    var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))\n\n    if (pos > (this.$items.length - 1) || pos < 0) return\n\n    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, \"slid\"\n    if (activeIndex == pos) return this.pause().cycle()\n\n    return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))\n  }\n\n  Carousel.prototype.pause = function (e) {\n    e || (this.paused = true)\n\n    if (this.$element.find('.next, .prev').length && $.support.transition) {\n      this.$element.trigger($.support.transition.end)\n      this.cycle(true)\n    }\n\n    this.interval = clearInterval(this.interval)\n\n    return this\n  }\n\n  Carousel.prototype.next = function () {\n    if (this.sliding) return\n    return this.slide('next')\n  }\n\n  Carousel.prototype.prev = function () {\n    if (this.sliding) return\n    return this.slide('prev')\n  }\n\n  Carousel.prototype.slide = function (type, next) {\n    var $active   = this.$element.find('.item.active')\n    var $next     = next || this.getItemForDirection(type, $active)\n    var isCycling = this.interval\n    var direction = type == 'next' ? 'left' : 'right'\n    var that      = this\n\n    if ($next.hasClass('active')) return (this.sliding = false)\n\n    var relatedTarget = $next[0]\n    var slideEvent = $.Event('slide.bs.carousel', {\n      relatedTarget: relatedTarget,\n      direction: direction\n    })\n    this.$element.trigger(slideEvent)\n    if (slideEvent.isDefaultPrevented()) return\n\n    this.sliding = true\n\n    isCycling && this.pause()\n\n    if (this.$indicators.length) {\n      this.$indicators.find('.active').removeClass('active')\n      var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])\n      $nextIndicator && $nextIndicator.addClass('active')\n    }\n\n    var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, \"slid\"\n    if ($.support.transition && this.$element.hasClass('slide')) {\n      $next.addClass(type)\n      $next[0].offsetWidth // force reflow\n      $active.addClass(direction)\n      $next.addClass(direction)\n      $active\n        .one('bsTransitionEnd', function () {\n          $next.removeClass([type, direction].join(' ')).addClass('active')\n          $active.removeClass(['active', direction].join(' '))\n          that.sliding = false\n          setTimeout(function () {\n            that.$element.trigger(slidEvent)\n          }, 0)\n        })\n        .emulateTransitionEnd(Carousel.TRANSITION_DURATION)\n    } else {\n      $active.removeClass('active')\n      $next.addClass('active')\n      this.sliding = false\n      this.$element.trigger(slidEvent)\n    }\n\n    isCycling && this.cycle()\n\n    return this\n  }\n\n\n  // CAROUSEL PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.carousel')\n      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)\n      var action  = typeof option == 'string' ? option : options.slide\n\n      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))\n      if (typeof option == 'number') data.to(option)\n      else if (action) data[action]()\n      else if (options.interval) data.pause().cycle()\n    })\n  }\n\n  var old = $.fn.carousel\n\n  $.fn.carousel             = Plugin\n  $.fn.carousel.Constructor = Carousel\n\n\n  // CAROUSEL NO CONFLICT\n  // ====================\n\n  $.fn.carousel.noConflict = function () {\n    $.fn.carousel = old\n    return this\n  }\n\n\n  // CAROUSEL DATA-API\n  // =================\n\n  var clickHandler = function (e) {\n    var href\n    var $this   = $(this)\n    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '')) // strip for ie7\n    if (!$target.hasClass('carousel')) return\n    var options = $.extend({}, $target.data(), $this.data())\n    var slideIndex = $this.attr('data-slide-to')\n    if (slideIndex) options.interval = false\n\n    Plugin.call($target, options)\n\n    if (slideIndex) {\n      $target.data('bs.carousel').to(slideIndex)\n    }\n\n    e.preventDefault()\n  }\n\n  $(document)\n    .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)\n    .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)\n\n  $(window).on('load', function () {\n    $('[data-ride=\"carousel\"]').each(function () {\n      var $carousel = $(this)\n      Plugin.call($carousel, $carousel.data())\n    })\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: collapse.js v3.3.7\n * http://getbootstrap.com/javascript/#collapse\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n/* jshint latedef: false */\n\n+function ($) {\n  'use strict';\n\n  // COLLAPSE PUBLIC CLASS DEFINITION\n  // ================================\n\n  var Collapse = function (element, options) {\n    this.$element      = $(element)\n    this.options       = $.extend({}, Collapse.DEFAULTS, options)\n    this.$trigger      = $('[data-toggle=\"collapse\"][href=\"#' + element.id + '\"],' +\n                           '[data-toggle=\"collapse\"][data-target=\"#' + element.id + '\"]')\n    this.transitioning = null\n\n    if (this.options.parent) {\n      this.$parent = this.getParent()\n    } else {\n      this.addAriaAndCollapsedClass(this.$element, this.$trigger)\n    }\n\n    if (this.options.toggle) this.toggle()\n  }\n\n  Collapse.VERSION  = '3.3.7'\n\n  Collapse.TRANSITION_DURATION = 350\n\n  Collapse.DEFAULTS = {\n    toggle: true\n  }\n\n  Collapse.prototype.dimension = function () {\n    var hasWidth = this.$element.hasClass('width')\n    return hasWidth ? 'width' : 'height'\n  }\n\n  Collapse.prototype.show = function () {\n    if (this.transitioning || this.$element.hasClass('in')) return\n\n    var activesData\n    var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')\n\n    if (actives && actives.length) {\n      activesData = actives.data('bs.collapse')\n      if (activesData && activesData.transitioning) return\n    }\n\n    var startEvent = $.Event('show.bs.collapse')\n    this.$element.trigger(startEvent)\n    if (startEvent.isDefaultPrevented()) return\n\n    if (actives && actives.length) {\n      Plugin.call(actives, 'hide')\n      activesData || actives.data('bs.collapse', null)\n    }\n\n    var dimension = this.dimension()\n\n    this.$element\n      .removeClass('collapse')\n      .addClass('collapsing')[dimension](0)\n      .attr('aria-expanded', true)\n\n    this.$trigger\n      .removeClass('collapsed')\n      .attr('aria-expanded', true)\n\n    this.transitioning = 1\n\n    var complete = function () {\n      this.$element\n        .removeClass('collapsing')\n        .addClass('collapse in')[dimension]('')\n      this.transitioning = 0\n      this.$element\n        .trigger('shown.bs.collapse')\n    }\n\n    if (!$.support.transition) return complete.call(this)\n\n    var scrollSize = $.camelCase(['scroll', dimension].join('-'))\n\n    this.$element\n      .one('bsTransitionEnd', $.proxy(complete, this))\n      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])\n  }\n\n  Collapse.prototype.hide = function () {\n    if (this.transitioning || !this.$element.hasClass('in')) return\n\n    var startEvent = $.Event('hide.bs.collapse')\n    this.$element.trigger(startEvent)\n    if (startEvent.isDefaultPrevented()) return\n\n    var dimension = this.dimension()\n\n    this.$element[dimension](this.$element[dimension]())[0].offsetHeight\n\n    this.$element\n      .addClass('collapsing')\n      .removeClass('collapse in')\n      .attr('aria-expanded', false)\n\n    this.$trigger\n      .addClass('collapsed')\n      .attr('aria-expanded', false)\n\n    this.transitioning = 1\n\n    var complete = function () {\n      this.transitioning = 0\n      this.$element\n        .removeClass('collapsing')\n        .addClass('collapse')\n        .trigger('hidden.bs.collapse')\n    }\n\n    if (!$.support.transition) return complete.call(this)\n\n    this.$element\n      [dimension](0)\n      .one('bsTransitionEnd', $.proxy(complete, this))\n      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)\n  }\n\n  Collapse.prototype.toggle = function () {\n    this[this.$element.hasClass('in') ? 'hide' : 'show']()\n  }\n\n  Collapse.prototype.getParent = function () {\n    return $(this.options.parent)\n      .find('[data-toggle=\"collapse\"][data-parent=\"' + this.options.parent + '\"]')\n      .each($.proxy(function (i, element) {\n        var $element = $(element)\n        this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)\n      }, this))\n      .end()\n  }\n\n  Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {\n    var isOpen = $element.hasClass('in')\n\n    $element.attr('aria-expanded', isOpen)\n    $trigger\n      .toggleClass('collapsed', !isOpen)\n      .attr('aria-expanded', isOpen)\n  }\n\n  function getTargetFromTrigger($trigger) {\n    var href\n    var target = $trigger.attr('data-target')\n      || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '') // strip for ie7\n\n    return $(target)\n  }\n\n\n  // COLLAPSE PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.collapse')\n      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n      if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false\n      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.collapse\n\n  $.fn.collapse             = Plugin\n  $.fn.collapse.Constructor = Collapse\n\n\n  // COLLAPSE NO CONFLICT\n  // ====================\n\n  $.fn.collapse.noConflict = function () {\n    $.fn.collapse = old\n    return this\n  }\n\n\n  // COLLAPSE DATA-API\n  // =================\n\n  $(document).on('click.bs.collapse.data-api', '[data-toggle=\"collapse\"]', function (e) {\n    var $this   = $(this)\n\n    if (!$this.attr('data-target')) e.preventDefault()\n\n    var $target = getTargetFromTrigger($this)\n    var data    = $target.data('bs.collapse')\n    var option  = data ? 'toggle' : $this.data()\n\n    Plugin.call($target, option)\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: dropdown.js v3.3.7\n * http://getbootstrap.com/javascript/#dropdowns\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // DROPDOWN CLASS DEFINITION\n  // =========================\n\n  var backdrop = '.dropdown-backdrop'\n  var toggle   = '[data-toggle=\"dropdown\"]'\n  var Dropdown = function (element) {\n    $(element).on('click.bs.dropdown', this.toggle)\n  }\n\n  Dropdown.VERSION = '3.3.7'\n\n  function getParent($this) {\n    var selector = $this.attr('data-target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    var $parent = selector && $(selector)\n\n    return $parent && $parent.length ? $parent : $this.parent()\n  }\n\n  function clearMenus(e) {\n    if (e && e.which === 3) return\n    $(backdrop).remove()\n    $(toggle).each(function () {\n      var $this         = $(this)\n      var $parent       = getParent($this)\n      var relatedTarget = { relatedTarget: this }\n\n      if (!$parent.hasClass('open')) return\n\n      if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return\n\n      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))\n\n      if (e.isDefaultPrevented()) return\n\n      $this.attr('aria-expanded', 'false')\n      $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget))\n    })\n  }\n\n  Dropdown.prototype.toggle = function (e) {\n    var $this = $(this)\n\n    if ($this.is('.disabled, :disabled')) return\n\n    var $parent  = getParent($this)\n    var isActive = $parent.hasClass('open')\n\n    clearMenus()\n\n    if (!isActive) {\n      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {\n        // if mobile we use a backdrop because click events don't delegate\n        $(document.createElement('div'))\n          .addClass('dropdown-backdrop')\n          .insertAfter($(this))\n          .on('click', clearMenus)\n      }\n\n      var relatedTarget = { relatedTarget: this }\n      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))\n\n      if (e.isDefaultPrevented()) return\n\n      $this\n        .trigger('focus')\n        .attr('aria-expanded', 'true')\n\n      $parent\n        .toggleClass('open')\n        .trigger($.Event('shown.bs.dropdown', relatedTarget))\n    }\n\n    return false\n  }\n\n  Dropdown.prototype.keydown = function (e) {\n    if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return\n\n    var $this = $(this)\n\n    e.preventDefault()\n    e.stopPropagation()\n\n    if ($this.is('.disabled, :disabled')) return\n\n    var $parent  = getParent($this)\n    var isActive = $parent.hasClass('open')\n\n    if (!isActive && e.which != 27 || isActive && e.which == 27) {\n      if (e.which == 27) $parent.find(toggle).trigger('focus')\n      return $this.trigger('click')\n    }\n\n    var desc = ' li:not(.disabled):visible a'\n    var $items = $parent.find('.dropdown-menu' + desc)\n\n    if (!$items.length) return\n\n    var index = $items.index(e.target)\n\n    if (e.which == 38 && index > 0)                 index--         // up\n    if (e.which == 40 && index < $items.length - 1) index++         // down\n    if (!~index)                                    index = 0\n\n    $items.eq(index).trigger('focus')\n  }\n\n\n  // DROPDOWN PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.dropdown')\n\n      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))\n      if (typeof option == 'string') data[option].call($this)\n    })\n  }\n\n  var old = $.fn.dropdown\n\n  $.fn.dropdown             = Plugin\n  $.fn.dropdown.Constructor = Dropdown\n\n\n  // DROPDOWN NO CONFLICT\n  // ====================\n\n  $.fn.dropdown.noConflict = function () {\n    $.fn.dropdown = old\n    return this\n  }\n\n\n  // APPLY TO STANDARD DROPDOWN ELEMENTS\n  // ===================================\n\n  $(document)\n    .on('click.bs.dropdown.data-api', clearMenus)\n    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })\n    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)\n    .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)\n    .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: modal.js v3.3.7\n * http://getbootstrap.com/javascript/#modals\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // MODAL CLASS DEFINITION\n  // ======================\n\n  var Modal = function (element, options) {\n    this.options             = options\n    this.$body               = $(document.body)\n    this.$element            = $(element)\n    this.$dialog             = this.$element.find('.modal-dialog')\n    this.$backdrop           = null\n    this.isShown             = null\n    this.originalBodyPad     = null\n    this.scrollbarWidth      = 0\n    this.ignoreBackdropClick = false\n\n    if (this.options.remote) {\n      this.$element\n        .find('.modal-content')\n        .load(this.options.remote, $.proxy(function () {\n          this.$element.trigger('loaded.bs.modal')\n        }, this))\n    }\n  }\n\n  Modal.VERSION  = '3.3.7'\n\n  Modal.TRANSITION_DURATION = 300\n  Modal.BACKDROP_TRANSITION_DURATION = 150\n\n  Modal.DEFAULTS = {\n    backdrop: true,\n    keyboard: true,\n    show: true\n  }\n\n  Modal.prototype.toggle = function (_relatedTarget) {\n    return this.isShown ? this.hide() : this.show(_relatedTarget)\n  }\n\n  Modal.prototype.show = function (_relatedTarget) {\n    var that = this\n    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })\n\n    this.$element.trigger(e)\n\n    if (this.isShown || e.isDefaultPrevented()) return\n\n    this.isShown = true\n\n    this.checkScrollbar()\n    this.setScrollbar()\n    this.$body.addClass('modal-open')\n\n    this.escape()\n    this.resize()\n\n    this.$element.on('click.dismiss.bs.modal', '[data-dismiss=\"modal\"]', $.proxy(this.hide, this))\n\n    this.$dialog.on('mousedown.dismiss.bs.modal', function () {\n      that.$element.one('mouseup.dismiss.bs.modal', function (e) {\n        if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true\n      })\n    })\n\n    this.backdrop(function () {\n      var transition = $.support.transition && that.$element.hasClass('fade')\n\n      if (!that.$element.parent().length) {\n        that.$element.appendTo(that.$body) // don't move modals dom position\n      }\n\n      that.$element\n        .show()\n        .scrollTop(0)\n\n      that.adjustDialog()\n\n      if (transition) {\n        that.$element[0].offsetWidth // force reflow\n      }\n\n      that.$element.addClass('in')\n\n      that.enforceFocus()\n\n      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })\n\n      transition ?\n        that.$dialog // wait for modal to slide in\n          .one('bsTransitionEnd', function () {\n            that.$element.trigger('focus').trigger(e)\n          })\n          .emulateTransitionEnd(Modal.TRANSITION_DURATION) :\n        that.$element.trigger('focus').trigger(e)\n    })\n  }\n\n  Modal.prototype.hide = function (e) {\n    if (e) e.preventDefault()\n\n    e = $.Event('hide.bs.modal')\n\n    this.$element.trigger(e)\n\n    if (!this.isShown || e.isDefaultPrevented()) return\n\n    this.isShown = false\n\n    this.escape()\n    this.resize()\n\n    $(document).off('focusin.bs.modal')\n\n    this.$element\n      .removeClass('in')\n      .off('click.dismiss.bs.modal')\n      .off('mouseup.dismiss.bs.modal')\n\n    this.$dialog.off('mousedown.dismiss.bs.modal')\n\n    $.support.transition && this.$element.hasClass('fade') ?\n      this.$element\n        .one('bsTransitionEnd', $.proxy(this.hideModal, this))\n        .emulateTransitionEnd(Modal.TRANSITION_DURATION) :\n      this.hideModal()\n  }\n\n  Modal.prototype.enforceFocus = function () {\n    $(document)\n      .off('focusin.bs.modal') // guard against infinite focus loop\n      .on('focusin.bs.modal', $.proxy(function (e) {\n        if (document !== e.target &&\n            this.$element[0] !== e.target &&\n            !this.$element.has(e.target).length) {\n          this.$element.trigger('focus')\n        }\n      }, this))\n  }\n\n  Modal.prototype.escape = function () {\n    if (this.isShown && this.options.keyboard) {\n      this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {\n        e.which == 27 && this.hide()\n      }, this))\n    } else if (!this.isShown) {\n      this.$element.off('keydown.dismiss.bs.modal')\n    }\n  }\n\n  Modal.prototype.resize = function () {\n    if (this.isShown) {\n      $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))\n    } else {\n      $(window).off('resize.bs.modal')\n    }\n  }\n\n  Modal.prototype.hideModal = function () {\n    var that = this\n    this.$element.hide()\n    this.backdrop(function () {\n      that.$body.removeClass('modal-open')\n      that.resetAdjustments()\n      that.resetScrollbar()\n      that.$element.trigger('hidden.bs.modal')\n    })\n  }\n\n  Modal.prototype.removeBackdrop = function () {\n    this.$backdrop && this.$backdrop.remove()\n    this.$backdrop = null\n  }\n\n  Modal.prototype.backdrop = function (callback) {\n    var that = this\n    var animate = this.$element.hasClass('fade') ? 'fade' : ''\n\n    if (this.isShown && this.options.backdrop) {\n      var doAnimate = $.support.transition && animate\n\n      this.$backdrop = $(document.createElement('div'))\n        .addClass('modal-backdrop ' + animate)\n        .appendTo(this.$body)\n\n      this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {\n        if (this.ignoreBackdropClick) {\n          this.ignoreBackdropClick = false\n          return\n        }\n        if (e.target !== e.currentTarget) return\n        this.options.backdrop == 'static'\n          ? this.$element[0].focus()\n          : this.hide()\n      }, this))\n\n      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow\n\n      this.$backdrop.addClass('in')\n\n      if (!callback) return\n\n      doAnimate ?\n        this.$backdrop\n          .one('bsTransitionEnd', callback)\n          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :\n        callback()\n\n    } else if (!this.isShown && this.$backdrop) {\n      this.$backdrop.removeClass('in')\n\n      var callbackRemove = function () {\n        that.removeBackdrop()\n        callback && callback()\n      }\n      $.support.transition && this.$element.hasClass('fade') ?\n        this.$backdrop\n          .one('bsTransitionEnd', callbackRemove)\n          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :\n        callbackRemove()\n\n    } else if (callback) {\n      callback()\n    }\n  }\n\n  // these following methods are used to handle overflowing modals\n\n  Modal.prototype.handleUpdate = function () {\n    this.adjustDialog()\n  }\n\n  Modal.prototype.adjustDialog = function () {\n    var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight\n\n    this.$element.css({\n      paddingLeft:  !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',\n      paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''\n    })\n  }\n\n  Modal.prototype.resetAdjustments = function () {\n    this.$element.css({\n      paddingLeft: '',\n      paddingRight: ''\n    })\n  }\n\n  Modal.prototype.checkScrollbar = function () {\n    var fullWindowWidth = window.innerWidth\n    if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8\n      var documentElementRect = document.documentElement.getBoundingClientRect()\n      fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left)\n    }\n    this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth\n    this.scrollbarWidth = this.measureScrollbar()\n  }\n\n  Modal.prototype.setScrollbar = function () {\n    var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)\n    this.originalBodyPad = document.body.style.paddingRight || ''\n    if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)\n  }\n\n  Modal.prototype.resetScrollbar = function () {\n    this.$body.css('padding-right', this.originalBodyPad)\n  }\n\n  Modal.prototype.measureScrollbar = function () { // thx walsh\n    var scrollDiv = document.createElement('div')\n    scrollDiv.className = 'modal-scrollbar-measure'\n    this.$body.append(scrollDiv)\n    var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth\n    this.$body[0].removeChild(scrollDiv)\n    return scrollbarWidth\n  }\n\n\n  // MODAL PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option, _relatedTarget) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.modal')\n      var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n      if (!data) $this.data('bs.modal', (data = new Modal(this, options)))\n      if (typeof option == 'string') data[option](_relatedTarget)\n      else if (options.show) data.show(_relatedTarget)\n    })\n  }\n\n  var old = $.fn.modal\n\n  $.fn.modal             = Plugin\n  $.fn.modal.Constructor = Modal\n\n\n  // MODAL NO CONFLICT\n  // =================\n\n  $.fn.modal.noConflict = function () {\n    $.fn.modal = old\n    return this\n  }\n\n\n  // MODAL DATA-API\n  // ==============\n\n  $(document).on('click.bs.modal.data-api', '[data-toggle=\"modal\"]', function (e) {\n    var $this   = $(this)\n    var href    = $this.attr('href')\n    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\\s]+$)/, ''))) // strip for ie7\n    var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())\n\n    if ($this.is('a')) e.preventDefault()\n\n    $target.one('show.bs.modal', function (showEvent) {\n      if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown\n      $target.one('hidden.bs.modal', function () {\n        $this.is(':visible') && $this.trigger('focus')\n      })\n    })\n    Plugin.call($target, option, this)\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: tooltip.js v3.3.7\n * http://getbootstrap.com/javascript/#tooltip\n * Inspired by the original jQuery.tipsy by Jason Frame\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // TOOLTIP PUBLIC CLASS DEFINITION\n  // ===============================\n\n  var Tooltip = function (element, options) {\n    this.type       = null\n    this.options    = null\n    this.enabled    = null\n    this.timeout    = null\n    this.hoverState = null\n    this.$element   = null\n    this.inState    = null\n\n    this.init('tooltip', element, options)\n  }\n\n  Tooltip.VERSION  = '3.3.7'\n\n  Tooltip.TRANSITION_DURATION = 150\n\n  Tooltip.DEFAULTS = {\n    animation: true,\n    placement: 'top',\n    selector: false,\n    template: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n    trigger: 'hover focus',\n    title: '',\n    delay: 0,\n    html: false,\n    container: false,\n    viewport: {\n      selector: 'body',\n      padding: 0\n    }\n  }\n\n  Tooltip.prototype.init = function (type, element, options) {\n    this.enabled   = true\n    this.type      = type\n    this.$element  = $(element)\n    this.options   = this.getOptions(options)\n    this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport))\n    this.inState   = { click: false, hover: false, focus: false }\n\n    if (this.$element[0] instanceof document.constructor && !this.options.selector) {\n      throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')\n    }\n\n    var triggers = this.options.trigger.split(' ')\n\n    for (var i = triggers.length; i--;) {\n      var trigger = triggers[i]\n\n      if (trigger == 'click') {\n        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))\n      } else if (trigger != 'manual') {\n        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'\n        var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'\n\n        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))\n        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))\n      }\n    }\n\n    this.options.selector ?\n      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :\n      this.fixTitle()\n  }\n\n  Tooltip.prototype.getDefaults = function () {\n    return Tooltip.DEFAULTS\n  }\n\n  Tooltip.prototype.getOptions = function (options) {\n    options = $.extend({}, this.getDefaults(), this.$element.data(), options)\n\n    if (options.delay && typeof options.delay == 'number') {\n      options.delay = {\n        show: options.delay,\n        hide: options.delay\n      }\n    }\n\n    return options\n  }\n\n  Tooltip.prototype.getDelegateOptions = function () {\n    var options  = {}\n    var defaults = this.getDefaults()\n\n    this._options && $.each(this._options, function (key, value) {\n      if (defaults[key] != value) options[key] = value\n    })\n\n    return options\n  }\n\n  Tooltip.prototype.enter = function (obj) {\n    var self = obj instanceof this.constructor ?\n      obj : $(obj.currentTarget).data('bs.' + this.type)\n\n    if (!self) {\n      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())\n      $(obj.currentTarget).data('bs.' + this.type, self)\n    }\n\n    if (obj instanceof $.Event) {\n      self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true\n    }\n\n    if (self.tip().hasClass('in') || self.hoverState == 'in') {\n      self.hoverState = 'in'\n      return\n    }\n\n    clearTimeout(self.timeout)\n\n    self.hoverState = 'in'\n\n    if (!self.options.delay || !self.options.delay.show) return self.show()\n\n    self.timeout = setTimeout(function () {\n      if (self.hoverState == 'in') self.show()\n    }, self.options.delay.show)\n  }\n\n  Tooltip.prototype.isInStateTrue = function () {\n    for (var key in this.inState) {\n      if (this.inState[key]) return true\n    }\n\n    return false\n  }\n\n  Tooltip.prototype.leave = function (obj) {\n    var self = obj instanceof this.constructor ?\n      obj : $(obj.currentTarget).data('bs.' + this.type)\n\n    if (!self) {\n      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())\n      $(obj.currentTarget).data('bs.' + this.type, self)\n    }\n\n    if (obj instanceof $.Event) {\n      self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false\n    }\n\n    if (self.isInStateTrue()) return\n\n    clearTimeout(self.timeout)\n\n    self.hoverState = 'out'\n\n    if (!self.options.delay || !self.options.delay.hide) return self.hide()\n\n    self.timeout = setTimeout(function () {\n      if (self.hoverState == 'out') self.hide()\n    }, self.options.delay.hide)\n  }\n\n  Tooltip.prototype.show = function () {\n    var e = $.Event('show.bs.' + this.type)\n\n    if (this.hasContent() && this.enabled) {\n      this.$element.trigger(e)\n\n      var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])\n      if (e.isDefaultPrevented() || !inDom) return\n      var that = this\n\n      var $tip = this.tip()\n\n      var tipId = this.getUID(this.type)\n\n      this.setContent()\n      $tip.attr('id', tipId)\n      this.$element.attr('aria-describedby', tipId)\n\n      if (this.options.animation) $tip.addClass('fade')\n\n      var placement = typeof this.options.placement == 'function' ?\n        this.options.placement.call(this, $tip[0], this.$element[0]) :\n        this.options.placement\n\n      var autoToken = /\\s?auto?\\s?/i\n      var autoPlace = autoToken.test(placement)\n      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'\n\n      $tip\n        .detach()\n        .css({ top: 0, left: 0, display: 'block' })\n        .addClass(placement)\n        .data('bs.' + this.type, this)\n\n      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)\n      this.$element.trigger('inserted.bs.' + this.type)\n\n      var pos          = this.getPosition()\n      var actualWidth  = $tip[0].offsetWidth\n      var actualHeight = $tip[0].offsetHeight\n\n      if (autoPlace) {\n        var orgPlacement = placement\n        var viewportDim = this.getPosition(this.$viewport)\n\n        placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top'    :\n                    placement == 'top'    && pos.top    - actualHeight < viewportDim.top    ? 'bottom' :\n                    placement == 'right'  && pos.right  + actualWidth  > viewportDim.width  ? 'left'   :\n                    placement == 'left'   && pos.left   - actualWidth  < viewportDim.left   ? 'right'  :\n                    placement\n\n        $tip\n          .removeClass(orgPlacement)\n          .addClass(placement)\n      }\n\n      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)\n\n      this.applyPlacement(calculatedOffset, placement)\n\n      var complete = function () {\n        var prevHoverState = that.hoverState\n        that.$element.trigger('shown.bs.' + that.type)\n        that.hoverState = null\n\n        if (prevHoverState == 'out') that.leave(that)\n      }\n\n      $.support.transition && this.$tip.hasClass('fade') ?\n        $tip\n          .one('bsTransitionEnd', complete)\n          .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :\n        complete()\n    }\n  }\n\n  Tooltip.prototype.applyPlacement = function (offset, placement) {\n    var $tip   = this.tip()\n    var width  = $tip[0].offsetWidth\n    var height = $tip[0].offsetHeight\n\n    // manually read margins because getBoundingClientRect includes difference\n    var marginTop = parseInt($tip.css('margin-top'), 10)\n    var marginLeft = parseInt($tip.css('margin-left'), 10)\n\n    // we must check for NaN for ie 8/9\n    if (isNaN(marginTop))  marginTop  = 0\n    if (isNaN(marginLeft)) marginLeft = 0\n\n    offset.top  += marginTop\n    offset.left += marginLeft\n\n    // $.fn.offset doesn't round pixel values\n    // so we use setOffset directly with our own function B-0\n    $.offset.setOffset($tip[0], $.extend({\n      using: function (props) {\n        $tip.css({\n          top: Math.round(props.top),\n          left: Math.round(props.left)\n        })\n      }\n    }, offset), 0)\n\n    $tip.addClass('in')\n\n    // check to see if placing tip in new offset caused the tip to resize itself\n    var actualWidth  = $tip[0].offsetWidth\n    var actualHeight = $tip[0].offsetHeight\n\n    if (placement == 'top' && actualHeight != height) {\n      offset.top = offset.top + height - actualHeight\n    }\n\n    var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)\n\n    if (delta.left) offset.left += delta.left\n    else offset.top += delta.top\n\n    var isVertical          = /top|bottom/.test(placement)\n    var arrowDelta          = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight\n    var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'\n\n    $tip.offset(offset)\n    this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)\n  }\n\n  Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) {\n    this.arrow()\n      .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')\n      .css(isVertical ? 'top' : 'left', '')\n  }\n\n  Tooltip.prototype.setContent = function () {\n    var $tip  = this.tip()\n    var title = this.getTitle()\n\n    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)\n    $tip.removeClass('fade in top bottom left right')\n  }\n\n  Tooltip.prototype.hide = function (callback) {\n    var that = this\n    var $tip = $(this.$tip)\n    var e    = $.Event('hide.bs.' + this.type)\n\n    function complete() {\n      if (that.hoverState != 'in') $tip.detach()\n      if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary.\n        that.$element\n          .removeAttr('aria-describedby')\n          .trigger('hidden.bs.' + that.type)\n      }\n      callback && callback()\n    }\n\n    this.$element.trigger(e)\n\n    if (e.isDefaultPrevented()) return\n\n    $tip.removeClass('in')\n\n    $.support.transition && $tip.hasClass('fade') ?\n      $tip\n        .one('bsTransitionEnd', complete)\n        .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :\n      complete()\n\n    this.hoverState = null\n\n    return this\n  }\n\n  Tooltip.prototype.fixTitle = function () {\n    var $e = this.$element\n    if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') {\n      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')\n    }\n  }\n\n  Tooltip.prototype.hasContent = function () {\n    return this.getTitle()\n  }\n\n  Tooltip.prototype.getPosition = function ($element) {\n    $element   = $element || this.$element\n\n    var el     = $element[0]\n    var isBody = el.tagName == 'BODY'\n\n    var elRect    = el.getBoundingClientRect()\n    if (elRect.width == null) {\n      // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093\n      elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })\n    }\n    var isSvg = window.SVGElement && el instanceof window.SVGElement\n    // Avoid using $.offset() on SVGs since it gives incorrect results in jQuery 3.\n    // See https://github.com/twbs/bootstrap/issues/20280\n    var elOffset  = isBody ? { top: 0, left: 0 } : (isSvg ? null : $element.offset())\n    var scroll    = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }\n    var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null\n\n    return $.extend({}, elRect, scroll, outerDims, elOffset)\n  }\n\n  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {\n    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2 } :\n           placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :\n           placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :\n        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }\n\n  }\n\n  Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {\n    var delta = { top: 0, left: 0 }\n    if (!this.$viewport) return delta\n\n    var viewportPadding = this.options.viewport && this.options.viewport.padding || 0\n    var viewportDimensions = this.getPosition(this.$viewport)\n\n    if (/right|left/.test(placement)) {\n      var topEdgeOffset    = pos.top - viewportPadding - viewportDimensions.scroll\n      var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight\n      if (topEdgeOffset < viewportDimensions.top) { // top overflow\n        delta.top = viewportDimensions.top - topEdgeOffset\n      } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow\n        delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset\n      }\n    } else {\n      var leftEdgeOffset  = pos.left - viewportPadding\n      var rightEdgeOffset = pos.left + viewportPadding + actualWidth\n      if (leftEdgeOffset < viewportDimensions.left) { // left overflow\n        delta.left = viewportDimensions.left - leftEdgeOffset\n      } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow\n        delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset\n      }\n    }\n\n    return delta\n  }\n\n  Tooltip.prototype.getTitle = function () {\n    var title\n    var $e = this.$element\n    var o  = this.options\n\n    title = $e.attr('data-original-title')\n      || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)\n\n    return title\n  }\n\n  Tooltip.prototype.getUID = function (prefix) {\n    do prefix += ~~(Math.random() * 1000000)\n    while (document.getElementById(prefix))\n    return prefix\n  }\n\n  Tooltip.prototype.tip = function () {\n    if (!this.$tip) {\n      this.$tip = $(this.options.template)\n      if (this.$tip.length != 1) {\n        throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!')\n      }\n    }\n    return this.$tip\n  }\n\n  Tooltip.prototype.arrow = function () {\n    return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))\n  }\n\n  Tooltip.prototype.enable = function () {\n    this.enabled = true\n  }\n\n  Tooltip.prototype.disable = function () {\n    this.enabled = false\n  }\n\n  Tooltip.prototype.toggleEnabled = function () {\n    this.enabled = !this.enabled\n  }\n\n  Tooltip.prototype.toggle = function (e) {\n    var self = this\n    if (e) {\n      self = $(e.currentTarget).data('bs.' + this.type)\n      if (!self) {\n        self = new this.constructor(e.currentTarget, this.getDelegateOptions())\n        $(e.currentTarget).data('bs.' + this.type, self)\n      }\n    }\n\n    if (e) {\n      self.inState.click = !self.inState.click\n      if (self.isInStateTrue()) self.enter(self)\n      else self.leave(self)\n    } else {\n      self.tip().hasClass('in') ? self.leave(self) : self.enter(self)\n    }\n  }\n\n  Tooltip.prototype.destroy = function () {\n    var that = this\n    clearTimeout(this.timeout)\n    this.hide(function () {\n      that.$element.off('.' + that.type).removeData('bs.' + that.type)\n      if (that.$tip) {\n        that.$tip.detach()\n      }\n      that.$tip = null\n      that.$arrow = null\n      that.$viewport = null\n      that.$element = null\n    })\n  }\n\n\n  // TOOLTIP PLUGIN DEFINITION\n  // =========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.tooltip')\n      var options = typeof option == 'object' && option\n\n      if (!data && /destroy|hide/.test(option)) return\n      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.tooltip\n\n  $.fn.tooltip             = Plugin\n  $.fn.tooltip.Constructor = Tooltip\n\n\n  // TOOLTIP NO CONFLICT\n  // ===================\n\n  $.fn.tooltip.noConflict = function () {\n    $.fn.tooltip = old\n    return this\n  }\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: popover.js v3.3.7\n * http://getbootstrap.com/javascript/#popovers\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // POPOVER PUBLIC CLASS DEFINITION\n  // ===============================\n\n  var Popover = function (element, options) {\n    this.init('popover', element, options)\n  }\n\n  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')\n\n  Popover.VERSION  = '3.3.7'\n\n  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {\n    placement: 'right',\n    trigger: 'click',\n    content: '',\n    template: '<div class=\"popover\" role=\"tooltip\"><div class=\"arrow\"></div><h3 class=\"popover-title\"></h3><div class=\"popover-content\"></div></div>'\n  })\n\n\n  // NOTE: POPOVER EXTENDS tooltip.js\n  // ================================\n\n  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)\n\n  Popover.prototype.constructor = Popover\n\n  Popover.prototype.getDefaults = function () {\n    return Popover.DEFAULTS\n  }\n\n  Popover.prototype.setContent = function () {\n    var $tip    = this.tip()\n    var title   = this.getTitle()\n    var content = this.getContent()\n\n    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)\n    $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events\n      this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'\n    ](content)\n\n    $tip.removeClass('fade top bottom left right in')\n\n    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do\n    // this manually by checking the contents.\n    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()\n  }\n\n  Popover.prototype.hasContent = function () {\n    return this.getTitle() || this.getContent()\n  }\n\n  Popover.prototype.getContent = function () {\n    var $e = this.$element\n    var o  = this.options\n\n    return $e.attr('data-content')\n      || (typeof o.content == 'function' ?\n            o.content.call($e[0]) :\n            o.content)\n  }\n\n  Popover.prototype.arrow = function () {\n    return (this.$arrow = this.$arrow || this.tip().find('.arrow'))\n  }\n\n\n  // POPOVER PLUGIN DEFINITION\n  // =========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.popover')\n      var options = typeof option == 'object' && option\n\n      if (!data && /destroy|hide/.test(option)) return\n      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.popover\n\n  $.fn.popover             = Plugin\n  $.fn.popover.Constructor = Popover\n\n\n  // POPOVER NO CONFLICT\n  // ===================\n\n  $.fn.popover.noConflict = function () {\n    $.fn.popover = old\n    return this\n  }\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: scrollspy.js v3.3.7\n * http://getbootstrap.com/javascript/#scrollspy\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // SCROLLSPY CLASS DEFINITION\n  // ==========================\n\n  function ScrollSpy(element, options) {\n    this.$body          = $(document.body)\n    this.$scrollElement = $(element).is(document.body) ? $(window) : $(element)\n    this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)\n    this.selector       = (this.options.target || '') + ' .nav li > a'\n    this.offsets        = []\n    this.targets        = []\n    this.activeTarget   = null\n    this.scrollHeight   = 0\n\n    this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this))\n    this.refresh()\n    this.process()\n  }\n\n  ScrollSpy.VERSION  = '3.3.7'\n\n  ScrollSpy.DEFAULTS = {\n    offset: 10\n  }\n\n  ScrollSpy.prototype.getScrollHeight = function () {\n    return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)\n  }\n\n  ScrollSpy.prototype.refresh = function () {\n    var that          = this\n    var offsetMethod  = 'offset'\n    var offsetBase    = 0\n\n    this.offsets      = []\n    this.targets      = []\n    this.scrollHeight = this.getScrollHeight()\n\n    if (!$.isWindow(this.$scrollElement[0])) {\n      offsetMethod = 'position'\n      offsetBase   = this.$scrollElement.scrollTop()\n    }\n\n    this.$body\n      .find(this.selector)\n      .map(function () {\n        var $el   = $(this)\n        var href  = $el.data('target') || $el.attr('href')\n        var $href = /^#./.test(href) && $(href)\n\n        return ($href\n          && $href.length\n          && $href.is(':visible')\n          && [[$href[offsetMethod]().top + offsetBase, href]]) || null\n      })\n      .sort(function (a, b) { return a[0] - b[0] })\n      .each(function () {\n        that.offsets.push(this[0])\n        that.targets.push(this[1])\n      })\n  }\n\n  ScrollSpy.prototype.process = function () {\n    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset\n    var scrollHeight = this.getScrollHeight()\n    var maxScroll    = this.options.offset + scrollHeight - this.$scrollElement.height()\n    var offsets      = this.offsets\n    var targets      = this.targets\n    var activeTarget = this.activeTarget\n    var i\n\n    if (this.scrollHeight != scrollHeight) {\n      this.refresh()\n    }\n\n    if (scrollTop >= maxScroll) {\n      return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)\n    }\n\n    if (activeTarget && scrollTop < offsets[0]) {\n      this.activeTarget = null\n      return this.clear()\n    }\n\n    for (i = offsets.length; i--;) {\n      activeTarget != targets[i]\n        && scrollTop >= offsets[i]\n        && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])\n        && this.activate(targets[i])\n    }\n  }\n\n  ScrollSpy.prototype.activate = function (target) {\n    this.activeTarget = target\n\n    this.clear()\n\n    var selector = this.selector +\n      '[data-target=\"' + target + '\"],' +\n      this.selector + '[href=\"' + target + '\"]'\n\n    var active = $(selector)\n      .parents('li')\n      .addClass('active')\n\n    if (active.parent('.dropdown-menu').length) {\n      active = active\n        .closest('li.dropdown')\n        .addClass('active')\n    }\n\n    active.trigger('activate.bs.scrollspy')\n  }\n\n  ScrollSpy.prototype.clear = function () {\n    $(this.selector)\n      .parentsUntil(this.options.target, '.active')\n      .removeClass('active')\n  }\n\n\n  // SCROLLSPY PLUGIN DEFINITION\n  // ===========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.scrollspy')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.scrollspy\n\n  $.fn.scrollspy             = Plugin\n  $.fn.scrollspy.Constructor = ScrollSpy\n\n\n  // SCROLLSPY NO CONFLICT\n  // =====================\n\n  $.fn.scrollspy.noConflict = function () {\n    $.fn.scrollspy = old\n    return this\n  }\n\n\n  // SCROLLSPY DATA-API\n  // ==================\n\n  $(window).on('load.bs.scrollspy.data-api', function () {\n    $('[data-spy=\"scroll\"]').each(function () {\n      var $spy = $(this)\n      Plugin.call($spy, $spy.data())\n    })\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: tab.js v3.3.7\n * http://getbootstrap.com/javascript/#tabs\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // TAB CLASS DEFINITION\n  // ====================\n\n  var Tab = function (element) {\n    // jscs:disable requireDollarBeforejQueryAssignment\n    this.element = $(element)\n    // jscs:enable requireDollarBeforejQueryAssignment\n  }\n\n  Tab.VERSION = '3.3.7'\n\n  Tab.TRANSITION_DURATION = 150\n\n  Tab.prototype.show = function () {\n    var $this    = this.element\n    var $ul      = $this.closest('ul:not(.dropdown-menu)')\n    var selector = $this.data('target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    if ($this.parent('li').hasClass('active')) return\n\n    var $previous = $ul.find('.active:last a')\n    var hideEvent = $.Event('hide.bs.tab', {\n      relatedTarget: $this[0]\n    })\n    var showEvent = $.Event('show.bs.tab', {\n      relatedTarget: $previous[0]\n    })\n\n    $previous.trigger(hideEvent)\n    $this.trigger(showEvent)\n\n    if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return\n\n    var $target = $(selector)\n\n    this.activate($this.closest('li'), $ul)\n    this.activate($target, $target.parent(), function () {\n      $previous.trigger({\n        type: 'hidden.bs.tab',\n        relatedTarget: $this[0]\n      })\n      $this.trigger({\n        type: 'shown.bs.tab',\n        relatedTarget: $previous[0]\n      })\n    })\n  }\n\n  Tab.prototype.activate = function (element, container, callback) {\n    var $active    = container.find('> .active')\n    var transition = callback\n      && $.support.transition\n      && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length)\n\n    function next() {\n      $active\n        .removeClass('active')\n        .find('> .dropdown-menu > .active')\n          .removeClass('active')\n        .end()\n        .find('[data-toggle=\"tab\"]')\n          .attr('aria-expanded', false)\n\n      element\n        .addClass('active')\n        .find('[data-toggle=\"tab\"]')\n          .attr('aria-expanded', true)\n\n      if (transition) {\n        element[0].offsetWidth // reflow for transition\n        element.addClass('in')\n      } else {\n        element.removeClass('fade')\n      }\n\n      if (element.parent('.dropdown-menu').length) {\n        element\n          .closest('li.dropdown')\n            .addClass('active')\n          .end()\n          .find('[data-toggle=\"tab\"]')\n            .attr('aria-expanded', true)\n      }\n\n      callback && callback()\n    }\n\n    $active.length && transition ?\n      $active\n        .one('bsTransitionEnd', next)\n        .emulateTransitionEnd(Tab.TRANSITION_DURATION) :\n      next()\n\n    $active.removeClass('in')\n  }\n\n\n  // TAB PLUGIN DEFINITION\n  // =====================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.tab')\n\n      if (!data) $this.data('bs.tab', (data = new Tab(this)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.tab\n\n  $.fn.tab             = Plugin\n  $.fn.tab.Constructor = Tab\n\n\n  // TAB NO CONFLICT\n  // ===============\n\n  $.fn.tab.noConflict = function () {\n    $.fn.tab = old\n    return this\n  }\n\n\n  // TAB DATA-API\n  // ============\n\n  var clickHandler = function (e) {\n    e.preventDefault()\n    Plugin.call($(this), 'show')\n  }\n\n  $(document)\n    .on('click.bs.tab.data-api', '[data-toggle=\"tab\"]', clickHandler)\n    .on('click.bs.tab.data-api', '[data-toggle=\"pill\"]', clickHandler)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: affix.js v3.3.7\n * http://getbootstrap.com/javascript/#affix\n * ========================================================================\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // AFFIX CLASS DEFINITION\n  // ======================\n\n  var Affix = function (element, options) {\n    this.options = $.extend({}, Affix.DEFAULTS, options)\n\n    this.$target = $(this.options.target)\n      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))\n      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))\n\n    this.$element     = $(element)\n    this.affixed      = null\n    this.unpin        = null\n    this.pinnedOffset = null\n\n    this.checkPosition()\n  }\n\n  Affix.VERSION  = '3.3.7'\n\n  Affix.RESET    = 'affix affix-top affix-bottom'\n\n  Affix.DEFAULTS = {\n    offset: 0,\n    target: window\n  }\n\n  Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {\n    var scrollTop    = this.$target.scrollTop()\n    var position     = this.$element.offset()\n    var targetHeight = this.$target.height()\n\n    if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false\n\n    if (this.affixed == 'bottom') {\n      if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'\n      return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'\n    }\n\n    var initializing   = this.affixed == null\n    var colliderTop    = initializing ? scrollTop : position.top\n    var colliderHeight = initializing ? targetHeight : height\n\n    if (offsetTop != null && scrollTop <= offsetTop) return 'top'\n    if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'\n\n    return false\n  }\n\n  Affix.prototype.getPinnedOffset = function () {\n    if (this.pinnedOffset) return this.pinnedOffset\n    this.$element.removeClass(Affix.RESET).addClass('affix')\n    var scrollTop = this.$target.scrollTop()\n    var position  = this.$element.offset()\n    return (this.pinnedOffset = position.top - scrollTop)\n  }\n\n  Affix.prototype.checkPositionWithEventLoop = function () {\n    setTimeout($.proxy(this.checkPosition, this), 1)\n  }\n\n  Affix.prototype.checkPosition = function () {\n    if (!this.$element.is(':visible')) return\n\n    var height       = this.$element.height()\n    var offset       = this.options.offset\n    var offsetTop    = offset.top\n    var offsetBottom = offset.bottom\n    var scrollHeight = Math.max($(document).height(), $(document.body).height())\n\n    if (typeof offset != 'object')         offsetBottom = offsetTop = offset\n    if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)\n    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)\n\n    var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)\n\n    if (this.affixed != affix) {\n      if (this.unpin != null) this.$element.css('top', '')\n\n      var affixType = 'affix' + (affix ? '-' + affix : '')\n      var e         = $.Event(affixType + '.bs.affix')\n\n      this.$element.trigger(e)\n\n      if (e.isDefaultPrevented()) return\n\n      this.affixed = affix\n      this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null\n\n      this.$element\n        .removeClass(Affix.RESET)\n        .addClass(affixType)\n        .trigger(affixType.replace('affix', 'affixed') + '.bs.affix')\n    }\n\n    if (affix == 'bottom') {\n      this.$element.offset({\n        top: scrollHeight - height - offsetBottom\n      })\n    }\n  }\n\n\n  // AFFIX PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.affix')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.affix', (data = new Affix(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.affix\n\n  $.fn.affix             = Plugin\n  $.fn.affix.Constructor = Affix\n\n\n  // AFFIX NO CONFLICT\n  // =================\n\n  $.fn.affix.noConflict = function () {\n    $.fn.affix = old\n    return this\n  }\n\n\n  // AFFIX DATA-API\n  // ==============\n\n  $(window).on('load', function () {\n    $('[data-spy=\"affix\"]').each(function () {\n      var $spy = $(this)\n      var data = $spy.data()\n\n      data.offset = data.offset || {}\n\n      if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom\n      if (data.offsetTop    != null) data.offset.top    = data.offsetTop\n\n      Plugin.call($spy, data)\n    })\n  })\n\n}(jQuery);\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/jquery-1.12.4.intellisense.js",
    "content": "﻿intellisense.annotate(jQuery, {\n  'ajax': function() {\n    /// <signature>\n    ///   <summary>Perform an asynchronous HTTP (Ajax) request.</summary>\n    ///   <param name=\"url\" type=\"String\">A string containing the URL to which the request is sent.</param>\n    ///   <param name=\"settings\" type=\"PlainObject\">A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) below for a complete list of all settings.</param>\n    ///   <returns type=\"jqXHR\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Perform an asynchronous HTTP (Ajax) request.</summary>\n    ///   <param name=\"settings\" type=\"PlainObject\">A set of key/value pairs that configure the Ajax request. All settings are optional. A default can be set for any option with $.ajaxSetup().</param>\n    ///   <returns type=\"jqXHR\" />\n    /// </signature>\n  },\n  'ajaxPrefilter': function() {\n    /// <signature>\n    ///   <summary>Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax().</summary>\n    ///   <param name=\"dataTypes\" type=\"String\">An optional string containing one or more space-separated dataTypes</param>\n    ///   <param name=\"handler(options, originalOptions, jqXHR)\" type=\"Function\">A handler to set default values for future Ajax requests.</param>\n    /// </signature>\n  },\n  'ajaxSetup': function() {\n    /// <signature>\n    ///   <summary>Set default values for future Ajax requests.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A set of key/value pairs that configure the default Ajax request. All options are optional.</param>\n    /// </signature>\n  },\n  'ajaxTransport': function() {\n    /// <signature>\n    ///   <summary>Creates an object that handles the actual transmission of Ajax data.</summary>\n    ///   <param name=\"dataType\" type=\"String\">A string identifying the data type to use</param>\n    ///   <param name=\"handler(options, originalOptions, jqXHR)\" type=\"Function\">A handler to return the new transport object to use with the data type provided in the first argument.</param>\n    /// </signature>\n  },\n  'boxModel': function() {\n    /// <summary>Deprecated in jQuery 1.3 (see jQuery.support). States if the current page, in the user's browser, is being rendered using the W3C CSS Box Model.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'browser': function() {\n    /// <summary>Contains flags for the useragent, read from navigator.userAgent. We recommend against using this property; please try to use feature detection instead (see jQuery.support). jQuery.browser may be moved to a plugin in a future release of jQuery.</summary>\n    /// <returns type=\"PlainObject\" />\n  },\n  'browser.version': function() {\n    /// <summary>The version number of the rendering engine for the user's browser.</summary>\n    /// <returns type=\"String\" />\n  },\n  'Callbacks': function() {\n    /// <signature>\n    ///   <summary>A multi-purpose callbacks list object that provides a powerful way to manage callback lists.</summary>\n    ///   <param name=\"flags\" type=\"String\">An optional list of space-separated flags that change how the callback list behaves.</param>\n    ///   <returns type=\"Callbacks\" />\n    /// </signature>\n  },\n  'contains': function() {\n    /// <signature>\n    ///   <summary>Check to see if a DOM element is a descendant of another DOM element.</summary>\n    ///   <param name=\"container\" type=\"Element\">The DOM element that may contain the other element.</param>\n    ///   <param name=\"contained\" type=\"Element\">The DOM element that may be contained by (a descendant of) the other element.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'cssHooks': function() {\n    /// <summary>Hook directly into jQuery to override how particular CSS properties are retrieved or set, normalize CSS property naming, or create custom properties.</summary>\n    /// <returns type=\"Object\" />\n  },\n  'data': function() {\n    /// <signature>\n    ///   <summary>Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element.</summary>\n    ///   <param name=\"element\" type=\"Element\">The DOM element to query for the data.</param>\n    ///   <param name=\"key\" type=\"String\">Name of the data stored.</param>\n    ///   <returns type=\"Object\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element.</summary>\n    ///   <param name=\"element\" type=\"Element\">The DOM element to query for the data.</param>\n    ///   <returns type=\"Object\" />\n    /// </signature>\n  },\n  'Deferred': function() {\n    /// <signature>\n    ///   <summary>A constructor function that returns a chainable utility object with methods to register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function.</summary>\n    ///   <param name=\"beforeStart\" type=\"Function\">A function that is called just before the constructor returns.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'dequeue': function() {\n    /// <signature>\n    ///   <summary>Execute the next function on the queue for the matched element.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM element from which to remove and execute a queued function.</param>\n    ///   <param name=\"queueName\" type=\"String\">A string containing the name of the queue. Defaults to fx, the standard effects queue.</param>\n    /// </signature>\n  },\n  'each': function() {\n    /// <signature>\n    ///   <summary>A generic iterator function, which can be used to seamlessly iterate over both objects and arrays. Arrays and array-like objects with a length property (such as a function's arguments object) are iterated by numeric index, from 0 to length-1. Other objects are iterated via their named properties.</summary>\n    ///   <param name=\"collection\" type=\"Object\">The object or array to iterate over.</param>\n    ///   <param name=\"callback(indexInArray, valueOfElement)\" type=\"Function\">The function that will be executed on every object.</param>\n    ///   <returns type=\"Object\" />\n    /// </signature>\n  },\n  'error': function() {\n    /// <signature>\n    ///   <summary>Takes a string and throws an exception containing it.</summary>\n    ///   <param name=\"message\" type=\"String\">The message to send out.</param>\n    /// </signature>\n  },\n  'extend': function() {\n    /// <signature>\n    ///   <summary>Merge the contents of two or more objects together into the first object.</summary>\n    ///   <param name=\"target\" type=\"Object\">An object that will receive the new properties if additional objects are passed in or that will extend the jQuery namespace if it is the sole argument.</param>\n    ///   <param name=\"object1\" type=\"Object\">An object containing additional properties to merge in.</param>\n    ///   <param name=\"objectN\" type=\"Object\">Additional objects containing properties to merge in.</param>\n    ///   <returns type=\"Object\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Merge the contents of two or more objects together into the first object.</summary>\n    ///   <param name=\"deep\" type=\"Boolean\">If true, the merge becomes recursive (aka. deep copy).</param>\n    ///   <param name=\"target\" type=\"Object\">The object to extend. It will receive the new properties.</param>\n    ///   <param name=\"object1\" type=\"Object\">An object containing additional properties to merge in.</param>\n    ///   <param name=\"objectN\" type=\"Object\">Additional objects containing properties to merge in.</param>\n    ///   <returns type=\"Object\" />\n    /// </signature>\n  },\n  'get': function() {\n    /// <signature>\n    ///   <summary>Load data from the server using a HTTP GET request.</summary>\n    ///   <param name=\"url\" type=\"String\">A string containing the URL to which the request is sent.</param>\n    ///   <param name=\"data\" type=\"String\">A plain object or string that is sent to the server with the request.</param>\n    ///   <param name=\"success(data, textStatus, jqXHR)\" type=\"Function\">A callback function that is executed if the request succeeds.</param>\n    ///   <param name=\"dataType\" type=\"String\">The type of data expected from the server. Default: Intelligent Guess (xml, json, script, or html).</param>\n    ///   <returns type=\"jqXHR\" />\n    /// </signature>\n  },\n  'getJSON': function() {\n    /// <signature>\n    ///   <summary>Load JSON-encoded data from the server using a GET HTTP request.</summary>\n    ///   <param name=\"url\" type=\"String\">A string containing the URL to which the request is sent.</param>\n    ///   <param name=\"data\" type=\"PlainObject\">A plain object or string that is sent to the server with the request.</param>\n    ///   <param name=\"success(data, textStatus, jqXHR)\" type=\"Function\">A callback function that is executed if the request succeeds.</param>\n    ///   <returns type=\"jqXHR\" />\n    /// </signature>\n  },\n  'getScript': function() {\n    /// <signature>\n    ///   <summary>Load a JavaScript file from the server using a GET HTTP request, then execute it.</summary>\n    ///   <param name=\"url\" type=\"String\">A string containing the URL to which the request is sent.</param>\n    ///   <param name=\"success(script, textStatus, jqXHR)\" type=\"Function\">A callback function that is executed if the request succeeds.</param>\n    ///   <returns type=\"jqXHR\" />\n    /// </signature>\n  },\n  'globalEval': function() {\n    /// <signature>\n    ///   <summary>Execute some JavaScript code globally.</summary>\n    ///   <param name=\"code\" type=\"String\">The JavaScript code to execute.</param>\n    /// </signature>\n  },\n  'grep': function() {\n    /// <signature>\n    ///   <summary>Finds the elements of an array which satisfy a filter function. The original array is not affected.</summary>\n    ///   <param name=\"array\" type=\"Array\">The array to search through.</param>\n    ///   <param name=\"function(elementOfArray, indexInArray)\" type=\"Function\">The function to process each item against.  The first argument to the function is the item, and the second argument is the index.  The function should return a Boolean value.  this will be the global window object.</param>\n    ///   <param name=\"invert\" type=\"Boolean\">If \"invert\" is false, or not provided, then the function returns an array consisting of all elements for which \"callback\" returns true.  If \"invert\" is true, then the function returns an array consisting of all elements for which \"callback\" returns false.</param>\n    ///   <returns type=\"Array\" />\n    /// </signature>\n  },\n  'hasData': function() {\n    /// <signature>\n    ///   <summary>Determine whether an element has any jQuery data associated with it.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM element to be checked for data.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'holdReady': function() {\n    /// <signature>\n    ///   <summary>Holds or releases the execution of jQuery's ready event.</summary>\n    ///   <param name=\"hold\" type=\"Boolean\">Indicates whether the ready hold is being requested or released</param>\n    /// </signature>\n  },\n  'inArray': function() {\n    /// <signature>\n    ///   <summary>Search for a specified value within an array and return its index (or -1 if not found).</summary>\n    ///   <param name=\"value\" type=\"Anything\">The value to search for.</param>\n    ///   <param name=\"array\" type=\"Array\">An array through which to search.</param>\n    ///   <param name=\"fromIndex\" type=\"Number\">The index of the array at which to begin the search. The default is 0, which will search the whole array.</param>\n    ///   <returns type=\"Number\" />\n    /// </signature>\n  },\n  'isArray': function() {\n    /// <signature>\n    ///   <summary>Determine whether the argument is an array.</summary>\n    ///   <param name=\"obj\" type=\"Object\">Object to test whether or not it is an array.</param>\n    ///   <returns type=\"boolean\" />\n    /// </signature>\n  },\n  'isEmptyObject': function() {\n    /// <signature>\n    ///   <summary>Check to see if an object is empty (contains no enumerable properties).</summary>\n    ///   <param name=\"object\" type=\"Object\">The object that will be checked to see if it's empty.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'isFunction': function() {\n    /// <signature>\n    ///   <summary>Determine if the argument passed is a Javascript function object.</summary>\n    ///   <param name=\"obj\" type=\"PlainObject\">Object to test whether or not it is a function.</param>\n    ///   <returns type=\"boolean\" />\n    /// </signature>\n  },\n  'isNumeric': function() {\n    /// <signature>\n    ///   <summary>Determines whether its argument is a number.</summary>\n    ///   <param name=\"value\" type=\"PlainObject\">The value to be tested.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'isPlainObject': function() {\n    /// <signature>\n    ///   <summary>Check to see if an object is a plain object (created using \"{}\" or \"new Object\").</summary>\n    ///   <param name=\"object\" type=\"PlainObject\">The object that will be checked to see if it's a plain object.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'isWindow': function() {\n    /// <signature>\n    ///   <summary>Determine whether the argument is a window.</summary>\n    ///   <param name=\"obj\" type=\"PlainObject\">Object to test whether or not it is a window.</param>\n    ///   <returns type=\"boolean\" />\n    /// </signature>\n  },\n  'isXMLDoc': function() {\n    /// <signature>\n    ///   <summary>Check to see if a DOM node is within an XML document (or is an XML document).</summary>\n    ///   <param name=\"node\" type=\"Element\">The DOM node that will be checked to see if it's in an XML document.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'makeArray': function() {\n    /// <signature>\n    ///   <summary>Convert an array-like object into a true JavaScript array.</summary>\n    ///   <param name=\"obj\" type=\"PlainObject\">Any object to turn into a native Array.</param>\n    ///   <returns type=\"Array\" />\n    /// </signature>\n  },\n  'map': function() {\n    /// <signature>\n    ///   <summary>Translate all items in an array or object to new array of items.</summary>\n    ///   <param name=\"array\" type=\"Array\">The Array to translate.</param>\n    ///   <param name=\"callback(elementOfArray, indexInArray)\" type=\"Function\">The function to process each item against.  The first argument to the function is the array item, the second argument is the index in array The function can return any value. Within the function, this refers to the global (window) object.</param>\n    ///   <returns type=\"Array\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Translate all items in an array or object to new array of items.</summary>\n    ///   <param name=\"arrayOrObject\" type=\"Object\">The Array or Object to translate.</param>\n    ///   <param name=\"callback( value, indexOrKey )\" type=\"Function\">The function to process each item against.  The first argument to the function is the value; the second argument is the index or key of the array or object property. The function can return any value to add to the array. A returned array will be flattened into the resulting array. Within the function, this refers to the global (window) object.</param>\n    ///   <returns type=\"Array\" />\n    /// </signature>\n  },\n  'merge': function() {\n    /// <signature>\n    ///   <summary>Merge the contents of two arrays together into the first array.</summary>\n    ///   <param name=\"first\" type=\"Array\">The first array to merge, the elements of second added.</param>\n    ///   <param name=\"second\" type=\"Array\">The second array to merge into the first, unaltered.</param>\n    ///   <returns type=\"Array\" />\n    /// </signature>\n  },\n  'noConflict': function() {\n    /// <signature>\n    ///   <summary>Relinquish jQuery's control of the $ variable.</summary>\n    ///   <param name=\"removeAll\" type=\"Boolean\">A Boolean indicating whether to remove all jQuery variables from the global scope (including jQuery itself).</param>\n    ///   <returns type=\"Object\" />\n    /// </signature>\n  },\n  'noop': function() {\n    /// <summary>An empty function.</summary>\n  },\n  'now': function() {\n    /// <summary>Return a number representing the current time.</summary>\n    /// <returns type=\"Number\" />\n  },\n  'param': function() {\n    /// <signature>\n    ///   <summary>Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.</summary>\n    ///   <param name=\"obj\" type=\"Object\">An array or object to serialize.</param>\n    ///   <returns type=\"String\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.</summary>\n    ///   <param name=\"obj\" type=\"Object\">An array or object to serialize.</param>\n    ///   <param name=\"traditional\" type=\"Boolean\">A Boolean indicating whether to perform a traditional \"shallow\" serialization.</param>\n    ///   <returns type=\"String\" />\n    /// </signature>\n  },\n  'parseHTML': function() {\n    /// <signature>\n    ///   <summary>Parses a string into an array of DOM nodes.</summary>\n    ///   <param name=\"data\" type=\"String\">HTML string to be parsed</param>\n    ///   <param name=\"context\" type=\"Element\">DOM element to serve as the context in which the HTML fragment will be created</param>\n    ///   <param name=\"keepScripts\" type=\"Boolean\">A Boolean indicating whether to include scripts passed in the HTML string</param>\n    ///   <returns type=\"Array\" />\n    /// </signature>\n  },\n  'parseJSON': function() {\n    /// <signature>\n    ///   <summary>Takes a well-formed JSON string and returns the resulting JavaScript object.</summary>\n    ///   <param name=\"json\" type=\"String\">The JSON string to parse.</param>\n    ///   <returns type=\"Object\" />\n    /// </signature>\n  },\n  'parseXML': function() {\n    /// <signature>\n    ///   <summary>Parses a string into an XML document.</summary>\n    ///   <param name=\"data\" type=\"String\">a well-formed XML string to be parsed</param>\n    ///   <returns type=\"XMLDocument\" />\n    /// </signature>\n  },\n  'post': function() {\n    /// <signature>\n    ///   <summary>Load data from the server using a HTTP POST request.</summary>\n    ///   <param name=\"url\" type=\"String\">A string containing the URL to which the request is sent.</param>\n    ///   <param name=\"data\" type=\"String\">A plain object or string that is sent to the server with the request.</param>\n    ///   <param name=\"success(data, textStatus, jqXHR)\" type=\"Function\">A callback function that is executed if the request succeeds.</param>\n    ///   <param name=\"dataType\" type=\"String\">The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html).</param>\n    ///   <returns type=\"jqXHR\" />\n    /// </signature>\n  },\n  'proxy': function() {\n    /// <signature>\n    ///   <summary>Takes a function and returns a new one that will always have a particular context.</summary>\n    ///   <param name=\"function\" type=\"Function\">The function whose context will be changed.</param>\n    ///   <param name=\"context\" type=\"PlainObject\">The object to which the context (this) of the function should be set.</param>\n    ///   <returns type=\"Function\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Takes a function and returns a new one that will always have a particular context.</summary>\n    ///   <param name=\"context\" type=\"PlainObject\">The object to which the context of the function should be set.</param>\n    ///   <param name=\"name\" type=\"String\">The name of the function whose context will be changed (should be a property of the context object).</param>\n    ///   <returns type=\"Function\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Takes a function and returns a new one that will always have a particular context.</summary>\n    ///   <param name=\"function\" type=\"Function\">The function whose context will be changed.</param>\n    ///   <param name=\"context\" type=\"PlainObject\">The object to which the context (this) of the function should be set.</param>\n    ///   <param name=\"additionalArguments\" type=\"Anything\">Any number of arguments to be passed to the function referenced in the function argument.</param>\n    ///   <returns type=\"Function\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Takes a function and returns a new one that will always have a particular context.</summary>\n    ///   <param name=\"context\" type=\"PlainObject\">The object to which the context of the function should be set.</param>\n    ///   <param name=\"name\" type=\"String\">The name of the function whose context will be changed (should be a property of the context object).</param>\n    ///   <param name=\"additionalArguments\" type=\"Anything\">Any number of arguments to be passed to the function named in the name argument.</param>\n    ///   <returns type=\"Function\" />\n    /// </signature>\n  },\n  'queue': function() {\n    /// <signature>\n    ///   <summary>Manipulate the queue of functions to be executed on the matched element.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM element where the array of queued functions is attached.</param>\n    ///   <param name=\"queueName\" type=\"String\">A string containing the name of the queue. Defaults to fx, the standard effects queue.</param>\n    ///   <param name=\"newQueue\" type=\"Array\">An array of functions to replace the current queue contents.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Manipulate the queue of functions to be executed on the matched element.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM element on which to add a queued function.</param>\n    ///   <param name=\"queueName\" type=\"String\">A string containing the name of the queue. Defaults to fx, the standard effects queue.</param>\n    ///   <param name=\"callback()\" type=\"Function\">The new function to add to the queue.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'removeData': function() {\n    /// <signature>\n    ///   <summary>Remove a previously-stored piece of data.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM element from which to remove data.</param>\n    ///   <param name=\"name\" type=\"String\">A string naming the piece of data to remove.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'sub': function() {\n    /// <summary>Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object.</summary>\n    /// <returns type=\"jQuery\" />\n  },\n  'support': function() {\n    /// <summary>A collection of properties that represent the presence of different browser features or bugs. Primarily intended for jQuery's internal use; specific properties may be removed when they are no longer needed internally to improve page startup performance.</summary>\n    /// <returns type=\"Object\" />\n  },\n  'trim': function() {\n    /// <signature>\n    ///   <summary>Remove the whitespace from the beginning and end of a string.</summary>\n    ///   <param name=\"str\" type=\"String\">The string to trim.</param>\n    ///   <returns type=\"String\" />\n    /// </signature>\n  },\n  'type': function() {\n    /// <signature>\n    ///   <summary>Determine the internal JavaScript [[Class]] of an object.</summary>\n    ///   <param name=\"obj\" type=\"PlainObject\">Object to get the internal JavaScript [[Class]] of.</param>\n    ///   <returns type=\"String\" />\n    /// </signature>\n  },\n  'unique': function() {\n    /// <signature>\n    ///   <summary>Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.</summary>\n    ///   <param name=\"array\" type=\"Array\">The Array of DOM elements.</param>\n    ///   <returns type=\"Array\" />\n    /// </signature>\n  },\n  'when': function() {\n    /// <signature>\n    ///   <summary>Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.</summary>\n    ///   <param name=\"deferreds\" type=\"Deferred\">One or more Deferred objects, or plain JavaScript objects.</param>\n    ///   <returns type=\"Promise\" />\n    /// </signature>\n  },\n});\n\nvar _1228819969 = jQuery.Callbacks;\njQuery.Callbacks = function(flags) {\nvar _object = _1228819969(flags);\nintellisense.annotate(_object, {\n  'add': function() {\n    /// <signature>\n    ///   <summary>Add a callback or a collection of callbacks to a callback list.</summary>\n    ///   <param name=\"callbacks\" type=\"Array\">A function, or array of functions, that are to be added to the callback list.</param>\n    ///   <returns type=\"Callbacks\" />\n    /// </signature>\n  },\n  'disable': function() {\n    /// <summary>Disable a callback list from doing anything more.</summary>\n    /// <returns type=\"Callbacks\" />\n  },\n  'disabled': function() {\n    /// <summary>Determine if the callbacks list has been disabled.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'empty': function() {\n    /// <summary>Remove all of the callbacks from a list.</summary>\n    /// <returns type=\"Callbacks\" />\n  },\n  'fire': function() {\n    /// <signature>\n    ///   <summary>Call all of the callbacks with the given arguments</summary>\n    ///   <param name=\"arguments\" type=\"Anything\">The argument or list of arguments to pass back to the callback list.</param>\n    ///   <returns type=\"Callbacks\" />\n    /// </signature>\n  },\n  'fired': function() {\n    /// <summary>Determine if the callbacks have already been called at least once.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'fireWith': function() {\n    /// <signature>\n    ///   <summary>Call all callbacks in a list with the given context and arguments.</summary>\n    ///   <param name=\"context\" type=\"\">A reference to the context in which the callbacks in the list should be fired.</param>\n    ///   <param name=\"args\" type=\"\">An argument, or array of arguments, to pass to the callbacks in the list.</param>\n    ///   <returns type=\"Callbacks\" />\n    /// </signature>\n  },\n  'has': function() {\n    /// <signature>\n    ///   <summary>Determine whether a supplied callback is in a list</summary>\n    ///   <param name=\"callback\" type=\"Function\">The callback to search for.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'lock': function() {\n    /// <summary>Lock a callback list in its current state.</summary>\n    /// <returns type=\"Callbacks\" />\n  },\n  'locked': function() {\n    /// <summary>Determine if the callbacks list has been locked.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'remove': function() {\n    /// <signature>\n    ///   <summary>Remove a callback or a collection of callbacks from a callback list.</summary>\n    ///   <param name=\"callbacks\" type=\"Array\">A function, or array of functions, that are to be removed from the callback list.</param>\n    ///   <returns type=\"Callbacks\" />\n    /// </signature>\n  },\n});\n\nreturn _object;\n};\nintellisense.redirectDefinition(jQuery.Callbacks, _1228819969);\n\nvar _731531622 = jQuery.Deferred;\njQuery.Deferred = function(func) {\nvar _object = _731531622(func);\nintellisense.annotate(_object, {\n  'always': function() {\n    /// <signature>\n    ///   <summary>Add handlers to be called when the Deferred object is either resolved or rejected.</summary>\n    ///   <param name=\"alwaysCallbacks\" type=\"Function\">A function, or array of functions, that is called when the Deferred is resolved or rejected.</param>\n    ///   <param name=\"alwaysCallbacks\" type=\"Function\">Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'done': function() {\n    /// <signature>\n    ///   <summary>Add handlers to be called when the Deferred object is resolved.</summary>\n    ///   <param name=\"doneCallbacks\" type=\"Function\">A function, or array of functions, that are called when the Deferred is resolved.</param>\n    ///   <param name=\"doneCallbacks\" type=\"Function\">Optional additional functions, or arrays of functions, that are called when the Deferred is resolved.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'fail': function() {\n    /// <signature>\n    ///   <summary>Add handlers to be called when the Deferred object is rejected.</summary>\n    ///   <param name=\"failCallbacks\" type=\"Function\">A function, or array of functions, that are called when the Deferred is rejected.</param>\n    ///   <param name=\"failCallbacks\" type=\"Function\">Optional additional functions, or arrays of functions, that are called when the Deferred is rejected.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'isRejected': function() {\n    /// <summary>Determine whether a Deferred object has been rejected.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'isResolved': function() {\n    /// <summary>Determine whether a Deferred object has been resolved.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'notify': function() {\n    /// <signature>\n    ///   <summary>Call the progressCallbacks on a Deferred object with the given args.</summary>\n    ///   <param name=\"args\" type=\"Object\">Optional arguments that are passed to the progressCallbacks.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'notifyWith': function() {\n    /// <signature>\n    ///   <summary>Call the progressCallbacks on a Deferred object with the given context and args.</summary>\n    ///   <param name=\"context\" type=\"Object\">Context passed to the progressCallbacks as the this object.</param>\n    ///   <param name=\"args\" type=\"Object\">Optional arguments that are passed to the progressCallbacks.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'pipe': function() {\n    /// <signature>\n    ///   <summary>Utility method to filter and/or chain Deferreds.</summary>\n    ///   <param name=\"doneFilter\" type=\"Function\">An optional function that is called when the Deferred is resolved.</param>\n    ///   <param name=\"failFilter\" type=\"Function\">An optional function that is called when the Deferred is rejected.</param>\n    ///   <returns type=\"Promise\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Utility method to filter and/or chain Deferreds.</summary>\n    ///   <param name=\"doneFilter\" type=\"Function\">An optional function that is called when the Deferred is resolved.</param>\n    ///   <param name=\"failFilter\" type=\"Function\">An optional function that is called when the Deferred is rejected.</param>\n    ///   <param name=\"progressFilter\" type=\"Function\">An optional function that is called when progress notifications are sent to the Deferred.</param>\n    ///   <returns type=\"Promise\" />\n    /// </signature>\n  },\n  'progress': function() {\n    /// <signature>\n    ///   <summary>Add handlers to be called when the Deferred object generates progress notifications.</summary>\n    ///   <param name=\"progressCallbacks\" type=\"Function\">A function, or array of functions, that is called when the Deferred generates progress notifications.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'promise': function() {\n    /// <signature>\n    ///   <summary>Return a Deferred's Promise object.</summary>\n    ///   <param name=\"target\" type=\"Object\">Object onto which the promise methods have to be attached</param>\n    ///   <returns type=\"Promise\" />\n    /// </signature>\n  },\n  'reject': function() {\n    /// <signature>\n    ///   <summary>Reject a Deferred object and call any failCallbacks with the given args.</summary>\n    ///   <param name=\"args\" type=\"Object\">Optional arguments that are passed to the failCallbacks.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'rejectWith': function() {\n    /// <signature>\n    ///   <summary>Reject a Deferred object and call any failCallbacks with the given context and args.</summary>\n    ///   <param name=\"context\" type=\"Object\">Context passed to the failCallbacks as the this object.</param>\n    ///   <param name=\"args\" type=\"Array\">An optional array of arguments that are passed to the failCallbacks.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'resolve': function() {\n    /// <signature>\n    ///   <summary>Resolve a Deferred object and call any doneCallbacks with the given args.</summary>\n    ///   <param name=\"args\" type=\"Object\">Optional arguments that are passed to the doneCallbacks.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'resolveWith': function() {\n    /// <signature>\n    ///   <summary>Resolve a Deferred object and call any doneCallbacks with the given context and args.</summary>\n    ///   <param name=\"context\" type=\"Object\">Context passed to the doneCallbacks as the this object.</param>\n    ///   <param name=\"args\" type=\"Array\">An optional array of arguments that are passed to the doneCallbacks.</param>\n    ///   <returns type=\"Deferred\" />\n    /// </signature>\n  },\n  'state': function() {\n    /// <summary>Determine the current state of a Deferred object.</summary>\n    /// <returns type=\"String\" />\n  },\n  'then': function() {\n    /// <signature>\n    ///   <summary>Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.</summary>\n    ///   <param name=\"doneFilter\" type=\"Function\">A function that is called when the Deferred is resolved.</param>\n    ///   <param name=\"failFilter\" type=\"Function\">An optional function that is called when the Deferred is rejected.</param>\n    ///   <param name=\"progressFilter\" type=\"Function\">An optional function that is called when progress notifications are sent to the Deferred.</param>\n    ///   <returns type=\"Promise\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.</summary>\n    ///   <param name=\"doneCallbacks\" type=\"Function\">A function, or array of functions, called when the Deferred is resolved.</param>\n    ///   <param name=\"failCallbacks\" type=\"Function\">A function, or array of functions, called when the Deferred is rejected.</param>\n    ///   <returns type=\"Promise\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.</summary>\n    ///   <param name=\"doneCallbacks\" type=\"Function\">A function, or array of functions, called when the Deferred is resolved.</param>\n    ///   <param name=\"failCallbacks\" type=\"Function\">A function, or array of functions, called when the Deferred is rejected.</param>\n    ///   <param name=\"progressCallbacks\" type=\"Function\">A function, or array of functions, called when the Deferred notifies progress.</param>\n    ///   <returns type=\"Promise\" />\n    /// </signature>\n  },\n});\n\nreturn _object;\n};\nintellisense.redirectDefinition(jQuery.Callbacks, _731531622);\n\nintellisense.annotate(jQuery.Event.prototype, {\n  'currentTarget': function() {\n    /// <summary>The current DOM element within the event bubbling phase.</summary>\n    /// <returns type=\"Element\" />\n  },\n  'data': function() {\n    /// <summary>An optional object of data passed to an event method when the current executing handler is bound.</summary>\n    /// <returns type=\"Object\" />\n  },\n  'delegateTarget': function() {\n    /// <summary>The element where the currently-called jQuery event handler was attached.</summary>\n    /// <returns type=\"Element\" />\n  },\n  'isDefaultPrevented': function() {\n    /// <summary>Returns whether event.preventDefault() was ever called on this event object.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'isImmediatePropagationStopped': function() {\n    /// <summary>Returns whether event.stopImmediatePropagation() was ever called on this event object.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'isPropagationStopped': function() {\n    /// <summary>Returns whether event.stopPropagation() was ever called on this event object.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'metaKey': function() {\n    /// <summary>Indicates whether the META key was pressed when the event fired.</summary>\n    /// <returns type=\"Boolean\" />\n  },\n  'namespace': function() {\n    /// <summary>The namespace specified when the event was triggered.</summary>\n    /// <returns type=\"String\" />\n  },\n  'pageX': function() {\n    /// <summary>The mouse position relative to the left edge of the document.</summary>\n    /// <returns type=\"Number\" />\n  },\n  'pageY': function() {\n    /// <summary>The mouse position relative to the top edge of the document.</summary>\n    /// <returns type=\"Number\" />\n  },\n  'preventDefault': function() {\n    /// <summary>If this method is called, the default action of the event will not be triggered.</summary>\n  },\n  'relatedTarget': function() {\n    /// <summary>The other DOM element involved in the event, if any.</summary>\n    /// <returns type=\"Element\" />\n  },\n  'result': function() {\n    /// <summary>The last value returned by an event handler that was triggered by this event, unless the value was undefined.</summary>\n    /// <returns type=\"Object\" />\n  },\n  'stopImmediatePropagation': function() {\n    /// <summary>Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree.</summary>\n  },\n  'stopPropagation': function() {\n    /// <summary>Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.</summary>\n  },\n  'target': function() {\n    /// <summary>The DOM element that initiated the event.</summary>\n    /// <returns type=\"Element\" />\n  },\n  'timeStamp': function() {\n    /// <summary>The difference in milliseconds between the time the browser created the event and January 1, 1970.</summary>\n    /// <returns type=\"Number\" />\n  },\n  'type': function() {\n    /// <summary>Describes the nature of the event.</summary>\n    /// <returns type=\"String\" />\n  },\n  'which': function() {\n    /// <summary>For key or mouse events, this property indicates the specific key or button that was pressed.</summary>\n    /// <returns type=\"Number\" />\n  },\n});\n\nintellisense.annotate(jQuery.fn, {\n  'add': function() {\n    /// <signature>\n    ///   <summary>Add elements to the set of matched elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string representing a selector expression to find additional elements to add to the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add elements to the set of matched elements.</summary>\n    ///   <param name=\"elements\" type=\"Array\">One or more elements to add to the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add elements to the set of matched elements.</summary>\n    ///   <param name=\"html\" type=\"String\">An HTML fragment to add to the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add elements to the set of matched elements.</summary>\n    ///   <param name=\"jQuery object\" type=\"jQuery object \">An existing jQuery object to add to the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add elements to the set of matched elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string representing a selector expression to find additional elements to add to the set of matched elements.</param>\n    ///   <param name=\"context\" type=\"Element\">The point in the document at which the selector should begin matching; similar to the context argument of the $(selector, context) method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'addBack': function() {\n    /// <signature>\n    ///   <summary>Add the previous set of elements on the stack to the current set, optionally filtered by a selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match the current set of elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'addClass': function() {\n    /// <signature>\n    ///   <summary>Adds the specified class(es) to each of the set of matched elements.</summary>\n    ///   <param name=\"className\" type=\"String\">One or more space-separated classes to be added to the class attribute of each matched element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Adds the specified class(es) to each of the set of matched elements.</summary>\n    ///   <param name=\"function(index, currentClass)\" type=\"Function\">A function returning one or more space-separated class names to be added to the existing class name(s). Receives the index position of the element in the set and the existing class name(s) as arguments. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'after': function() {\n    /// <signature>\n    ///   <summary>Insert content, specified by the parameter, after each element in the set of matched elements.</summary>\n    ///   <param name=\"content\" type=\"jQuery\">HTML string, DOM element, or jQuery object to insert after each element in the set of matched elements.</param>\n    ///   <param name=\"content\" type=\"jQuery\">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert after each element in the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Insert content, specified by the parameter, after each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index)\" type=\"Function\">A function that returns an HTML string, DOM element(s), or jQuery object to insert after each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'ajaxComplete': function() {\n    /// <signature>\n    ///   <summary>Register a handler to be called when Ajax requests complete. This is an AjaxEvent.</summary>\n    ///   <param name=\"handler(event, XMLHttpRequest, ajaxOptions)\" type=\"Function\">The function to be invoked.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'ajaxError': function() {\n    /// <signature>\n    ///   <summary>Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.</summary>\n    ///   <param name=\"handler(event, jqXHR, ajaxSettings, thrownError)\" type=\"Function\">The function to be invoked.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'ajaxSend': function() {\n    /// <signature>\n    ///   <summary>Attach a function to be executed before an Ajax request is sent. This is an Ajax Event.</summary>\n    ///   <param name=\"handler(event, jqXHR, ajaxOptions)\" type=\"Function\">The function to be invoked.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'ajaxStart': function() {\n    /// <signature>\n    ///   <summary>Register a handler to be called when the first Ajax request begins. This is an Ajax Event.</summary>\n    ///   <param name=\"handler()\" type=\"Function\">The function to be invoked.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'ajaxStop': function() {\n    /// <signature>\n    ///   <summary>Register a handler to be called when all Ajax requests have completed. This is an Ajax Event.</summary>\n    ///   <param name=\"handler()\" type=\"Function\">The function to be invoked.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'ajaxSuccess': function() {\n    /// <signature>\n    ///   <summary>Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event.</summary>\n    ///   <param name=\"handler(event, XMLHttpRequest, ajaxOptions)\" type=\"Function\">The function to be invoked.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'all': function() {\n    /// <summary>Selects all elements.</summary>\n  },\n  'andSelf': function() {\n    /// <summary>Add the previous set of elements on the stack to the current set.</summary>\n    /// <returns type=\"jQuery\" />\n  },\n  'animate': function() {\n    /// <signature>\n    ///   <summary>Perform a custom animation of a set of CSS properties.</summary>\n    ///   <param name=\"properties\" type=\"PlainObject\">An object of CSS properties and values that the animation will move toward.</param>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Perform a custom animation of a set of CSS properties.</summary>\n    ///   <param name=\"properties\" type=\"PlainObject\">An object of CSS properties and values that the animation will move toward.</param>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'animated': function() {\n    /// <summary>Select all elements that are in the progress of an animation at the time the selector is run.</summary>\n  },\n  'append': function() {\n    /// <signature>\n    ///   <summary>Insert content, specified by the parameter, to the end of each element in the set of matched elements.</summary>\n    ///   <param name=\"content\" type=\"jQuery\">DOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements.</param>\n    ///   <param name=\"content\" type=\"jQuery\">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the end of each element in the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Insert content, specified by the parameter, to the end of each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index, html)\" type=\"Function\">A function that returns an HTML string, DOM element(s), or jQuery object to insert at the end of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'appendTo': function() {\n    /// <signature>\n    ///   <summary>Insert every element in the set of matched elements to the end of the target.</summary>\n    ///   <param name=\"target\" type=\"jQuery\">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted at the end of the element(s) specified by this parameter.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'attr': function() {\n    /// <signature>\n    ///   <summary>Set one or more attributes for the set of matched elements.</summary>\n    ///   <param name=\"attributeName\" type=\"String\">The name of the attribute to set.</param>\n    ///   <param name=\"value\" type=\"Number\">A value to set for the attribute.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set one or more attributes for the set of matched elements.</summary>\n    ///   <param name=\"attributes\" type=\"PlainObject\">An object of attribute-value pairs to set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set one or more attributes for the set of matched elements.</summary>\n    ///   <param name=\"attributeName\" type=\"String\">The name of the attribute to set.</param>\n    ///   <param name=\"function(index, attr)\" type=\"Function\">A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old attribute value as arguments.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'attributeContains': function() {\n    /// <signature>\n    ///   <summary>Selects elements that have the specified attribute with a value containing the a given substring.</summary>\n    ///   <param name=\"attribute\" type=\"String\">An attribute name.</param>\n    ///   <param name=\"value\" type=\"String\">An attribute value. Can be either an unquoted single word or a quoted string.</param>\n    /// </signature>\n  },\n  'attributeContainsPrefix': function() {\n    /// <signature>\n    ///   <summary>Selects elements that have the specified attribute with a value either equal to a given string or starting with that string followed by a hyphen (-).</summary>\n    ///   <param name=\"attribute\" type=\"String\">An attribute name.</param>\n    ///   <param name=\"value\" type=\"String\">An attribute value. Can be either an unquoted single word or a quoted string.</param>\n    /// </signature>\n  },\n  'attributeContainsWord': function() {\n    /// <signature>\n    ///   <summary>Selects elements that have the specified attribute with a value containing a given word, delimited by spaces.</summary>\n    ///   <param name=\"attribute\" type=\"String\">An attribute name.</param>\n    ///   <param name=\"value\" type=\"String\">An attribute value. Can be either an unquoted single word or a quoted string.</param>\n    /// </signature>\n  },\n  'attributeEndsWith': function() {\n    /// <signature>\n    ///   <summary>Selects elements that have the specified attribute with a value ending exactly with a given string. The comparison is case sensitive.</summary>\n    ///   <param name=\"attribute\" type=\"String\">An attribute name.</param>\n    ///   <param name=\"value\" type=\"String\">An attribute value. Can be either an unquoted single word or a quoted string.</param>\n    /// </signature>\n  },\n  'attributeEquals': function() {\n    /// <signature>\n    ///   <summary>Selects elements that have the specified attribute with a value exactly equal to a certain value.</summary>\n    ///   <param name=\"attribute\" type=\"String\">An attribute name.</param>\n    ///   <param name=\"value\" type=\"String\">An attribute value. Can be either an unquoted single word or a quoted string.</param>\n    /// </signature>\n  },\n  'attributeHas': function() {\n    /// <signature>\n    ///   <summary>Selects elements that have the specified attribute, with any value.</summary>\n    ///   <param name=\"attribute\" type=\"String\">An attribute name.</param>\n    /// </signature>\n  },\n  'attributeMultiple': function() {\n    /// <signature>\n    ///   <summary>Matches elements that match all of the specified attribute filters.</summary>\n    ///   <param name=\"attributeFilter1\" type=\"String\">An attribute filter.</param>\n    ///   <param name=\"attributeFilter2\" type=\"String\">Another attribute filter, reducing the selection even more</param>\n    ///   <param name=\"attributeFilterN\" type=\"String\">As many more attribute filters as necessary</param>\n    /// </signature>\n  },\n  'attributeNotEqual': function() {\n    /// <signature>\n    ///   <summary>Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.</summary>\n    ///   <param name=\"attribute\" type=\"String\">An attribute name.</param>\n    ///   <param name=\"value\" type=\"String\">An attribute value. Can be either an unquoted single word or a quoted string.</param>\n    /// </signature>\n  },\n  'attributeStartsWith': function() {\n    /// <signature>\n    ///   <summary>Selects elements that have the specified attribute with a value beginning exactly with a given string.</summary>\n    ///   <param name=\"attribute\" type=\"String\">An attribute name.</param>\n    ///   <param name=\"value\" type=\"String\">An attribute value. Can be either an unquoted single word or a quoted string.</param>\n    /// </signature>\n  },\n  'before': function() {\n    /// <signature>\n    ///   <summary>Insert content, specified by the parameter, before each element in the set of matched elements.</summary>\n    ///   <param name=\"content\" type=\"jQuery\">HTML string, DOM element, or jQuery object to insert before each element in the set of matched elements.</param>\n    ///   <param name=\"content\" type=\"jQuery\">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert before each element in the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Insert content, specified by the parameter, before each element in the set of matched elements.</summary>\n    ///   <param name=\"function\" type=\"Function\">A function that returns an HTML string, DOM element(s), or jQuery object to insert before each element in the set of matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'bind': function() {\n    /// <signature>\n    ///   <summary>Attach a handler to an event for the elements.</summary>\n    ///   <param name=\"eventType\" type=\"String\">A string containing one or more DOM event types, such as \"click\" or \"submit,\" or custom event names.</param>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach a handler to an event for the elements.</summary>\n    ///   <param name=\"eventType\" type=\"String\">A string containing one or more DOM event types, such as \"click\" or \"submit,\" or custom event names.</param>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"preventBubble\" type=\"Boolean\">Setting the third argument to false will attach a function that prevents the default action from occurring and stops the event from bubbling. The default is true.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach a handler to an event for the elements.</summary>\n    ///   <param name=\"events\" type=\"Object\">An object containing one or more DOM event types and functions to execute for them.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'blur': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"blur\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"blur\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'button': function() {\n    /// <summary>Selects all button elements and elements of type button.</summary>\n  },\n  'change': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"change\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"change\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'checkbox': function() {\n    /// <summary>Selects all elements of type checkbox.</summary>\n  },\n  'checked': function() {\n    /// <summary>Matches all elements that are checked.</summary>\n  },\n  'child': function() {\n    /// <signature>\n    ///   <summary>Selects all direct child elements specified by \"child\" of elements specified by \"parent\".</summary>\n    ///   <param name=\"parent\" type=\"String\">Any valid selector.</param>\n    ///   <param name=\"child\" type=\"String\">A selector to filter the child elements.</param>\n    /// </signature>\n  },\n  'children': function() {\n    /// <signature>\n    ///   <summary>Get the children of each element in the set of matched elements, optionally filtered by a selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'class': function() {\n    /// <signature>\n    ///   <summary>Selects all elements with the given class.</summary>\n    ///   <param name=\"class\" type=\"String\">A class to search for. An element can have multiple classes; only one of them must match.</param>\n    /// </signature>\n  },\n  'clearQueue': function() {\n    /// <signature>\n    ///   <summary>Remove from the queue all items that have not yet been run.</summary>\n    ///   <param name=\"queueName\" type=\"String\">A string containing the name of the queue. Defaults to fx, the standard effects queue.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'click': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"click\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"click\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'clone': function() {\n    /// <signature>\n    ///   <summary>Create a deep copy of the set of matched elements.</summary>\n    ///   <param name=\"withDataAndEvents\" type=\"Boolean\">A Boolean indicating whether event handlers should be copied along with the elements. As of jQuery 1.4, element data will be copied as well.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Create a deep copy of the set of matched elements.</summary>\n    ///   <param name=\"withDataAndEvents\" type=\"Boolean\">A Boolean indicating whether event handlers and data should be copied along with the elements. The default value is false. *In jQuery 1.5.0 the default value was incorrectly true; it was changed back to false in 1.5.1 and up.</param>\n    ///   <param name=\"deepWithDataAndEvents\" type=\"Boolean\">A Boolean indicating whether event handlers and data for all children of the cloned element should be copied. By default its value matches the first argument's value (which defaults to false).</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'closest': function() {\n    /// <signature>\n    ///   <summary>For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <param name=\"context\" type=\"Element\">A DOM element within which a matching element may be found. If no context is passed in then the context of the jQuery set will be used instead.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.</summary>\n    ///   <param name=\"jQuery object\" type=\"jQuery\">A jQuery object to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.</summary>\n    ///   <param name=\"element\" type=\"Element\">An element to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'contains': function() {\n    /// <signature>\n    ///   <summary>Select all elements that contain the specified text.</summary>\n    ///   <param name=\"text\" type=\"String\">A string of text to look for. It's case sensitive.</param>\n    /// </signature>\n  },\n  'contents': function() {\n    /// <summary>Get the children of each element in the set of matched elements, including text and comment nodes.</summary>\n    /// <returns type=\"jQuery\" />\n  },\n  'context': function() {\n    /// <summary>The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.</summary>\n    /// <returns type=\"Element\" />\n  },\n  'css': function() {\n    /// <signature>\n    ///   <summary>Set one or more CSS properties for the set of matched elements.</summary>\n    ///   <param name=\"propertyName\" type=\"String\">A CSS property name.</param>\n    ///   <param name=\"value\" type=\"Number\">A value to set for the property.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set one or more CSS properties for the set of matched elements.</summary>\n    ///   <param name=\"propertyName\" type=\"String\">A CSS property name.</param>\n    ///   <param name=\"function(index, value)\" type=\"Function\">A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set one or more CSS properties for the set of matched elements.</summary>\n    ///   <param name=\"properties\" type=\"PlainObject\">An object of property-value pairs to set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'data': function() {\n    /// <signature>\n    ///   <summary>Store arbitrary data associated with the matched elements.</summary>\n    ///   <param name=\"key\" type=\"String\">A string naming the piece of data to set.</param>\n    ///   <param name=\"value\" type=\"Object\">The new data value; it can be any Javascript type including Array or Object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Store arbitrary data associated with the matched elements.</summary>\n    ///   <param name=\"obj\" type=\"Object\">An object of key-value pairs of data to update.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'dblclick': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"dblclick\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"dblclick\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'delay': function() {\n    /// <signature>\n    ///   <summary>Set a timer to delay execution of subsequent items in the queue.</summary>\n    ///   <param name=\"duration\" type=\"Number\">An integer indicating the number of milliseconds to delay execution of the next item in the queue.</param>\n    ///   <param name=\"queueName\" type=\"String\">A string containing the name of the queue. Defaults to fx, the standard effects queue.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'delegate': function() {\n    /// <signature>\n    ///   <summary>Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector to filter the elements that trigger the event.</param>\n    ///   <param name=\"eventType\" type=\"String\">A string containing one or more space-separated JavaScript event types, such as \"click\" or \"keydown,\" or custom event names.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute at the time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector to filter the elements that trigger the event.</param>\n    ///   <param name=\"eventType\" type=\"String\">A string containing one or more space-separated JavaScript event types, such as \"click\" or \"keydown,\" or custom event names.</param>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute at the time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector to filter the elements that trigger the event.</param>\n    ///   <param name=\"events\" type=\"PlainObject\">A plain object of one or more event types and functions to execute for them.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'dequeue': function() {\n    /// <signature>\n    ///   <summary>Execute the next function on the queue for the matched elements.</summary>\n    ///   <param name=\"queueName\" type=\"String\">A string containing the name of the queue. Defaults to fx, the standard effects queue.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'descendant': function() {\n    /// <signature>\n    ///   <summary>Selects all elements that are descendants of a given ancestor.</summary>\n    ///   <param name=\"ancestor\" type=\"String\">Any valid selector.</param>\n    ///   <param name=\"descendant\" type=\"String\">A selector to filter the descendant elements.</param>\n    /// </signature>\n  },\n  'detach': function() {\n    /// <signature>\n    ///   <summary>Remove the set of matched elements from the DOM.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector expression that filters the set of matched elements to be removed.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'die': function() {\n    /// <signature>\n    ///   <summary>Remove event handlers previously attached using .live() from the elements.</summary>\n    ///   <param name=\"eventType\" type=\"String\">A string containing a JavaScript event type, such as click or keydown.</param>\n    ///   <param name=\"handler\" type=\"String\">The function that is no longer to be executed.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove event handlers previously attached using .live() from the elements.</summary>\n    ///   <param name=\"events\" type=\"PlainObject\">A plain object of one or more event types, such as click or keydown and their corresponding functions that are no longer to be executed.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'disabled': function() {\n    /// <summary>Selects all elements that are disabled.</summary>\n  },\n  'each': function() {\n    /// <signature>\n    ///   <summary>Iterate over a jQuery object, executing a function for each matched element.</summary>\n    ///   <param name=\"function(index, Element)\" type=\"Function\">A function to execute for each matched element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'element': function() {\n    /// <signature>\n    ///   <summary>Selects all elements with the given tag name.</summary>\n    ///   <param name=\"element\" type=\"String\">An element to search for. Refers to the tagName of DOM nodes.</param>\n    /// </signature>\n  },\n  'empty': function() {\n    /// <summary>Select all elements that have no children (including text nodes).</summary>\n  },\n  'enabled': function() {\n    /// <summary>Selects all elements that are enabled.</summary>\n  },\n  'end': function() {\n    /// <summary>End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.</summary>\n    /// <returns type=\"jQuery\" />\n  },\n  'eq': function() {\n    /// <signature>\n    ///   <summary>Select the element at index n within the matched set.</summary>\n    ///   <param name=\"index\" type=\"Number\">Zero-based index of the element to match.</param>\n    /// </signature>\n    /// <signature>\n    ///   <summary>Select the element at index n within the matched set.</summary>\n    ///   <param name=\"-index\" type=\"Number\">Zero-based index of the element to match, counting backwards from the last element.</param>\n    /// </signature>\n  },\n  'error': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"error\" JavaScript event.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute when the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"error\" JavaScript event.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'even': function() {\n    /// <summary>Selects even elements, zero-indexed.  See also odd.</summary>\n  },\n  'fadeIn': function() {\n    /// <signature>\n    ///   <summary>Display the matched elements by fading them to opaque.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display the matched elements by fading them to opaque.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display the matched elements by fading them to opaque.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'fadeOut': function() {\n    /// <signature>\n    ///   <summary>Hide the matched elements by fading them to transparent.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Hide the matched elements by fading them to transparent.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Hide the matched elements by fading them to transparent.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'fadeTo': function() {\n    /// <signature>\n    ///   <summary>Adjust the opacity of the matched elements.</summary>\n    ///   <param name=\"duration\" type=\"Number\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"opacity\" type=\"Number\">A number between 0 and 1 denoting the target opacity.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Adjust the opacity of the matched elements.</summary>\n    ///   <param name=\"duration\" type=\"Number\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"opacity\" type=\"Number\">A number between 0 and 1 denoting the target opacity.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'fadeToggle': function() {\n    /// <signature>\n    ///   <summary>Display or hide the matched elements by animating their opacity.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display or hide the matched elements by animating their opacity.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'file': function() {\n    /// <summary>Selects all elements of type file.</summary>\n  },\n  'filter': function() {\n    /// <signature>\n    ///   <summary>Reduce the set of matched elements to those that match the selector or pass the function's test.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match the current set of elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Reduce the set of matched elements to those that match the selector or pass the function's test.</summary>\n    ///   <param name=\"function(index)\" type=\"Function\">A function used as a test for each element in the set. this is the current DOM element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Reduce the set of matched elements to those that match the selector or pass the function's test.</summary>\n    ///   <param name=\"element\" type=\"Element\">An element to match the current set of elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Reduce the set of matched elements to those that match the selector or pass the function's test.</summary>\n    ///   <param name=\"jQuery object\" type=\"Object\">An existing jQuery object to match the current set of elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'find': function() {\n    /// <signature>\n    ///   <summary>Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.</summary>\n    ///   <param name=\"jQuery object\" type=\"Object\">A jQuery object to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.</summary>\n    ///   <param name=\"element\" type=\"Element\">An element to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'finish': function() {\n    /// <signature>\n    ///   <summary>Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements.</summary>\n    ///   <param name=\"queue\" type=\"String\">The name of the queue in which to stop animations.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'first': function() {\n    /// <summary>Selects the first matched element.</summary>\n  },\n  'first-child': function() {\n    /// <summary>Selects all elements that are the first child of their parent.</summary>\n  },\n  'first-of-type': function() {\n    /// <summary>Selects all elements that are the first among siblings of the same element name.</summary>\n  },\n  'focus': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"focus\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"focus\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'focusin': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"focusin\" event.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"focusin\" event.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'focusout': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"focusout\" JavaScript event.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"focusout\" JavaScript event.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'get': function() {\n    /// <signature>\n    ///   <summary>Retrieve the DOM elements matched by the jQuery object.</summary>\n    ///   <param name=\"index\" type=\"Number\">A zero-based integer indicating which element to retrieve.</param>\n    ///   <returns type=\"Element, Array\" />\n    /// </signature>\n  },\n  'gt': function() {\n    /// <signature>\n    ///   <summary>Select all elements at an index greater than index within the matched set.</summary>\n    ///   <param name=\"index\" type=\"Number\">Zero-based index.</param>\n    /// </signature>\n  },\n  'has': function() {\n    /// <signature>\n    ///   <summary>Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element.</summary>\n    ///   <param name=\"contained\" type=\"Element\">A DOM element to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'hasClass': function() {\n    /// <signature>\n    ///   <summary>Determine whether any of the matched elements are assigned the given class.</summary>\n    ///   <param name=\"className\" type=\"String\">The class name to search for.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'header': function() {\n    /// <summary>Selects all elements that are headers, like h1, h2, h3 and so on.</summary>\n  },\n  'height': function() {\n    /// <signature>\n    ///   <summary>Set the CSS height of every matched element.</summary>\n    ///   <param name=\"value\" type=\"Number\">An integer representing the number of pixels, or an integer with an optional unit of measure appended (as a string).</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set the CSS height of every matched element.</summary>\n    ///   <param name=\"function(index, height)\" type=\"Function\">A function returning the height to set. Receives the index position of the element in the set and the old height as arguments. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'hidden': function() {\n    /// <summary>Selects all elements that are hidden.</summary>\n  },\n  'hide': function() {\n    /// <signature>\n    ///   <summary>Hide the matched elements.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Hide the matched elements.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Hide the matched elements.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'hover': function() {\n    /// <signature>\n    ///   <summary>Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.</summary>\n    ///   <param name=\"handlerIn(eventObject)\" type=\"Function\">A function to execute when the mouse pointer enters the element.</param>\n    ///   <param name=\"handlerOut(eventObject)\" type=\"Function\">A function to execute when the mouse pointer leaves the element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'html': function() {\n    /// <signature>\n    ///   <summary>Set the HTML contents of each element in the set of matched elements.</summary>\n    ///   <param name=\"htmlString\" type=\"String\">A string of HTML to set as the content of each matched element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set the HTML contents of each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index, oldhtml)\" type=\"Function\">A function returning the HTML content to set. Receives the           index position of the element in the set and the old HTML value as arguments.           jQuery empties the element before calling the function;           use the oldhtml argument to reference the previous content.           Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'id': function() {\n    /// <signature>\n    ///   <summary>Selects a single element with the given id attribute.</summary>\n    ///   <param name=\"id\" type=\"String\">An ID to search for, specified via the id attribute of an element.</param>\n    /// </signature>\n  },\n  'image': function() {\n    /// <summary>Selects all elements of type image.</summary>\n  },\n  'index': function() {\n    /// <signature>\n    ///   <summary>Search for a given element from among the matched elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector representing a jQuery collection in which to look for an element.</param>\n    ///   <returns type=\"Number\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Search for a given element from among the matched elements.</summary>\n    ///   <param name=\"element\" type=\"jQuery\">The DOM element or first element within the jQuery object to look for.</param>\n    ///   <returns type=\"Number\" />\n    /// </signature>\n  },\n  'init': function() {\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression</param>\n    ///   <param name=\"context\" type=\"jQuery\">A DOM Element, Document, or jQuery to use as context</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM element to wrap in a jQuery object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"elementArray\" type=\"Array\">An array containing a set of DOM elements to wrap in a jQuery object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"object\" type=\"PlainObject\">A plain object to wrap in a jQuery object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"jQuery object\" type=\"PlainObject\">An existing jQuery object to clone.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'innerHeight': function() {\n    /// <summary>Get the current computed height for the first element in the set of matched elements, including padding but not border.</summary>\n    /// <returns type=\"Integer\" />\n  },\n  'innerWidth': function() {\n    /// <summary>Get the current computed width for the first element in the set of matched elements, including padding but not border.</summary>\n    /// <returns type=\"Integer\" />\n  },\n  'input': function() {\n    /// <summary>Selects all input, textarea, select and button elements.</summary>\n  },\n  'insertAfter': function() {\n    /// <signature>\n    ///   <summary>Insert every element in the set of matched elements after the target.</summary>\n    ///   <param name=\"target\" type=\"jQuery\">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted after the element(s) specified by this parameter.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'insertBefore': function() {\n    /// <signature>\n    ///   <summary>Insert every element in the set of matched elements before the target.</summary>\n    ///   <param name=\"target\" type=\"jQuery\">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted before the element(s) specified by this parameter.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'is': function() {\n    /// <signature>\n    ///   <summary>Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.</summary>\n    ///   <param name=\"function(index)\" type=\"Function\">A function used as a test for the set of elements. It accepts one argument, index, which is the element's index in the jQuery collection.Within the function, this refers to the current DOM element.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.</summary>\n    ///   <param name=\"jQuery object\" type=\"Object\">An existing jQuery object to match the current set of elements against.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.</summary>\n    ///   <param name=\"element\" type=\"Element\">An element to match the current set of elements against.</param>\n    ///   <returns type=\"Boolean\" />\n    /// </signature>\n  },\n  'jquery': function() {\n    /// <summary>A string containing the jQuery version number.</summary>\n    /// <returns type=\"String\" />\n  },\n  'keydown': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"keydown\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"keydown\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'keypress': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"keypress\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"keypress\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'keyup': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"keyup\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"keyup\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'lang': function() {\n    /// <signature>\n    ///   <summary>Selects all elements of the specified language.</summary>\n    ///   <param name=\"language\" type=\"String\">A language code.</param>\n    /// </signature>\n  },\n  'last': function() {\n    /// <summary>Selects the last matched element.</summary>\n  },\n  'last-child': function() {\n    /// <summary>Selects all elements that are the last child of their parent.</summary>\n  },\n  'last-of-type': function() {\n    /// <summary>Selects all elements that are the last among siblings of the same element name.</summary>\n  },\n  'length': function() {\n    /// <summary>The number of elements in the jQuery object.</summary>\n    /// <returns type=\"Number\" />\n  },\n  'live': function() {\n    /// <signature>\n    ///   <summary>Attach an event handler for all elements which match the current selector, now and in the future.</summary>\n    ///   <param name=\"events\" type=\"String\">A string containing a JavaScript event type, such as \"click\" or \"keydown.\" As of jQuery 1.4 the string can contain multiple, space-separated event types or custom event names.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute at the time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach an event handler for all elements which match the current selector, now and in the future.</summary>\n    ///   <param name=\"events\" type=\"String\">A string containing a JavaScript event type, such as \"click\" or \"keydown.\" As of jQuery 1.4 the string can contain multiple, space-separated event types or custom event names.</param>\n    ///   <param name=\"data\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute at the time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach an event handler for all elements which match the current selector, now and in the future.</summary>\n    ///   <param name=\"events\" type=\"PlainObject\">A plain object of one or more JavaScript event types and functions to execute for them.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'load': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"load\" JavaScript event.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute when the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"load\" JavaScript event.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'lt': function() {\n    /// <signature>\n    ///   <summary>Select all elements at an index less than index within the matched set.</summary>\n    ///   <param name=\"index\" type=\"Number\">Zero-based index.</param>\n    /// </signature>\n  },\n  'map': function() {\n    /// <signature>\n    ///   <summary>Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.</summary>\n    ///   <param name=\"callback(index, domElement)\" type=\"Function\">A function object that will be invoked for each element in the current set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'mousedown': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mousedown\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mousedown\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'mouseenter': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'mouseleave': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'mousemove': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mousemove\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mousemove\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'mouseout': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mouseout\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mouseout\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'mouseover': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mouseover\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mouseover\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'mouseup': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mouseup\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"mouseup\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'multiple': function() {\n    /// <signature>\n    ///   <summary>Selects the combined results of all the specified selectors.</summary>\n    ///   <param name=\"selector1\" type=\"String\">Any valid selector.</param>\n    ///   <param name=\"selector2\" type=\"String\">Another valid selector.</param>\n    ///   <param name=\"selectorN\" type=\"String\">As many more valid selectors as you like.</param>\n    /// </signature>\n  },\n  'next': function() {\n    /// <signature>\n    ///   <summary>Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'next adjacent': function() {\n    /// <signature>\n    ///   <summary>Selects all next elements matching \"next\" that are immediately preceded by a sibling \"prev\".</summary>\n    ///   <param name=\"prev\" type=\"String\">Any valid selector.</param>\n    ///   <param name=\"next\" type=\"String\">A selector to match the element that is next to the first selector.</param>\n    /// </signature>\n  },\n  'next siblings': function() {\n    /// <signature>\n    ///   <summary>Selects all sibling elements that follow after the \"prev\" element, have the same parent, and match the filtering \"siblings\" selector.</summary>\n    ///   <param name=\"prev\" type=\"String\">Any valid selector.</param>\n    ///   <param name=\"siblings\" type=\"String\">A selector to filter elements that are the following siblings of the first selector.</param>\n    /// </signature>\n  },\n  'nextAll': function() {\n    /// <signature>\n    ///   <summary>Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'nextUntil': function() {\n    /// <signature>\n    ///   <summary>Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to indicate where to stop matching following sibling elements.</param>\n    ///   <param name=\"filter\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM node or jQuery object indicating where to stop matching following sibling elements.</param>\n    ///   <param name=\"filter\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'not': function() {\n    /// <signature>\n    ///   <summary>Remove elements from the set of matched elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove elements from the set of matched elements.</summary>\n    ///   <param name=\"elements\" type=\"Array\">One or more DOM elements to remove from the matched set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove elements from the set of matched elements.</summary>\n    ///   <param name=\"function(index)\" type=\"Function\">A function used as a test for each element in the set. this is the current DOM element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove elements from the set of matched elements.</summary>\n    ///   <param name=\"jQuery object\" type=\"PlainObject\">An existing jQuery object to match the current set of elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'nth-child': function() {\n    /// <signature>\n    ///   <summary>Selects all elements that are the nth-child of their parent.</summary>\n    ///   <param name=\"index\" type=\"String\">The index of each child to match, starting with 1, the string even or odd, or an equation ( eg. :nth-child(even), :nth-child(4n) )</param>\n    /// </signature>\n  },\n  'nth-last-child': function() {\n    /// <signature>\n    ///   <summary>Selects all elements that are the nth-child of their parent, counting from the last element to the first.</summary>\n    ///   <param name=\"index\" type=\"String\">The index of each child to match, starting with the last one (1), the string even or odd, or an equation ( eg. :nth-last-child(even), :nth-last-child(4n) )</param>\n    /// </signature>\n  },\n  'nth-last-of-type': function() {\n    /// <signature>\n    ///   <summary>Selects all elements that are the nth-child of their parent, counting from the last element to the first.</summary>\n    ///   <param name=\"index\" type=\"String\">The index of each child to match, starting with the last one (1), the string even or odd, or an equation ( eg. :nth-last-of-type(even), :nth-last-of-type(4n) )</param>\n    /// </signature>\n  },\n  'nth-of-type': function() {\n    /// <signature>\n    ///   <summary>Selects all elements that are the nth child of their parent in relation to siblings with the same element name.</summary>\n    ///   <param name=\"index\" type=\"String\">The index of each child to match, starting with 1, the string even or odd, or an equation ( eg. :nth-of-type(even), :nth-of-type(4n) )</param>\n    /// </signature>\n  },\n  'odd': function() {\n    /// <summary>Selects odd elements, zero-indexed.  See also even.</summary>\n  },\n  'off': function() {\n    /// <signature>\n    ///   <summary>Remove an event handler.</summary>\n    ///   <param name=\"events\" type=\"String\">One or more space-separated event types and optional namespaces, or just namespaces, such as \"click\", \"keydown.myPlugin\", or \".myPlugin\".</param>\n    ///   <param name=\"selector\" type=\"String\">A selector which should match the one originally passed to .on() when attaching event handlers.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A handler function previously attached for the event(s), or the special value false.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove an event handler.</summary>\n    ///   <param name=\"events\" type=\"PlainObject\">An object where the string keys represent one or more space-separated event types and optional namespaces, and the values represent handler functions previously attached for the event(s).</param>\n    ///   <param name=\"selector\" type=\"String\">A selector which should match the one originally passed to .on() when attaching event handlers.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'offset': function() {\n    /// <signature>\n    ///   <summary>Set the current coordinates of every element in the set of matched elements, relative to the document.</summary>\n    ///   <param name=\"coordinates\" type=\"PlainObject\">An object containing the properties top and left, which are integers indicating the new top and left coordinates for the elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set the current coordinates of every element in the set of matched elements, relative to the document.</summary>\n    ///   <param name=\"function(index, coords)\" type=\"Function\">A function to return the coordinates to set. Receives the index of the element in the collection as the first argument and the current coordinates as the second argument. The function should return an object with the new top and left properties.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'offsetParent': function() {\n    /// <summary>Get the closest ancestor element that is positioned.</summary>\n    /// <returns type=\"jQuery\" />\n  },\n  'on': function() {\n    /// <signature>\n    ///   <summary>Attach an event handler function for one or more events to the selected elements.</summary>\n    ///   <param name=\"events\" type=\"String\">One or more space-separated event types and optional namespaces, such as \"click\" or \"keydown.myPlugin\".</param>\n    ///   <param name=\"selector\" type=\"String\">A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.</param>\n    ///   <param name=\"data\" type=\"Anything\">Data to be passed to the handler in event.data when an event is triggered.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach an event handler function for one or more events to the selected elements.</summary>\n    ///   <param name=\"events\" type=\"PlainObject\">An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s).</param>\n    ///   <param name=\"selector\" type=\"String\">A selector string to filter the descendants of the selected elements that will call the handler. If the selector is null or omitted, the handler is always called when it reaches the selected element.</param>\n    ///   <param name=\"data\" type=\"Anything\">Data to be passed to the handler in event.data when an event occurs.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'one': function() {\n    /// <signature>\n    ///   <summary>Attach a handler to an event for the elements. The handler is executed at most once per element.</summary>\n    ///   <param name=\"events\" type=\"String\">A string containing one or more JavaScript event types, such as \"click\" or \"submit,\" or custom event names.</param>\n    ///   <param name=\"data\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute at the time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach a handler to an event for the elements. The handler is executed at most once per element.</summary>\n    ///   <param name=\"events\" type=\"String\">One or more space-separated event types and optional namespaces, such as \"click\" or \"keydown.myPlugin\".</param>\n    ///   <param name=\"selector\" type=\"String\">A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.</param>\n    ///   <param name=\"data\" type=\"Anything\">Data to be passed to the handler in event.data when an event is triggered.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Attach a handler to an event for the elements. The handler is executed at most once per element.</summary>\n    ///   <param name=\"events\" type=\"PlainObject\">An object in which the string keys represent one or more space-separated event types and optional namespaces, and the values represent a handler function to be called for the event(s).</param>\n    ///   <param name=\"selector\" type=\"String\">A selector string to filter the descendants of the selected elements that will call the handler. If the selector is null or omitted, the handler is always called when it reaches the selected element.</param>\n    ///   <param name=\"data\" type=\"Anything\">Data to be passed to the handler in event.data when an event occurs.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'only-child': function() {\n    /// <summary>Selects all elements that are the only child of their parent.</summary>\n  },\n  'only-of-type': function() {\n    /// <summary>Selects all elements that have no siblings with the same element name.</summary>\n  },\n  'outerHeight': function() {\n    /// <signature>\n    ///   <summary>Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns an integer (without \"px\") representation of the value or null if called on an empty set of elements.</summary>\n    ///   <param name=\"includeMargin\" type=\"Boolean\">A Boolean indicating whether to include the element's margin in the calculation.</param>\n    ///   <returns type=\"Integer\" />\n    /// </signature>\n  },\n  'outerWidth': function() {\n    /// <signature>\n    ///   <summary>Get the current computed width for the first element in the set of matched elements, including padding and border.</summary>\n    ///   <param name=\"includeMargin\" type=\"Boolean\">A Boolean indicating whether to include the element's margin in the calculation.</param>\n    ///   <returns type=\"Integer\" />\n    /// </signature>\n  },\n  'parent': function() {\n    /// <signature>\n    ///   <summary>Get the parent of each element in the current set of matched elements, optionally filtered by a selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'parents': function() {\n    /// <signature>\n    ///   <summary>Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'parentsUntil': function() {\n    /// <signature>\n    ///   <summary>Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to indicate where to stop matching ancestor elements.</param>\n    ///   <param name=\"filter\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM node or jQuery object indicating where to stop matching ancestor elements.</param>\n    ///   <param name=\"filter\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'password': function() {\n    /// <summary>Selects all elements of type password.</summary>\n  },\n  'position': function() {\n    /// <summary>Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.</summary>\n    /// <returns type=\"Object\" />\n  },\n  'prepend': function() {\n    /// <signature>\n    ///   <summary>Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.</summary>\n    ///   <param name=\"content\" type=\"jQuery\">DOM element, array of elements, HTML string, or jQuery object to insert at the beginning of each element in the set of matched elements.</param>\n    ///   <param name=\"content\" type=\"jQuery\">One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index, html)\" type=\"Function\">A function that returns an HTML string, DOM element(s), or jQuery object to insert at the beginning of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'prependTo': function() {\n    /// <signature>\n    ///   <summary>Insert every element in the set of matched elements to the beginning of the target.</summary>\n    ///   <param name=\"target\" type=\"jQuery\">A selector, element, HTML string, or jQuery object; the matched set of elements will be inserted at the beginning of the element(s) specified by this parameter.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'prev': function() {\n    /// <signature>\n    ///   <summary>Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'prevAll': function() {\n    /// <signature>\n    ///   <summary>Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'prevUntil': function() {\n    /// <signature>\n    ///   <summary>Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to indicate where to stop matching preceding sibling elements.</param>\n    ///   <param name=\"filter\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM node or jQuery object indicating where to stop matching preceding sibling elements.</param>\n    ///   <param name=\"filter\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'promise': function() {\n    /// <signature>\n    ///   <summary>Return a Promise object to observe when all actions of a certain type bound to the collection, queued or not, have finished.</summary>\n    ///   <param name=\"type\" type=\"String\">The type of queue that needs to be observed.</param>\n    ///   <param name=\"target\" type=\"PlainObject\">Object onto which the promise methods have to be attached</param>\n    ///   <returns type=\"Promise\" />\n    /// </signature>\n  },\n  'prop': function() {\n    /// <signature>\n    ///   <summary>Set one or more properties for the set of matched elements.</summary>\n    ///   <param name=\"propertyName\" type=\"String\">The name of the property to set.</param>\n    ///   <param name=\"value\" type=\"Boolean\">A value to set for the property.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set one or more properties for the set of matched elements.</summary>\n    ///   <param name=\"properties\" type=\"PlainObject\">An object of property-value pairs to set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set one or more properties for the set of matched elements.</summary>\n    ///   <param name=\"propertyName\" type=\"String\">The name of the property to set.</param>\n    ///   <param name=\"function(index, oldPropertyValue)\" type=\"Function\">A function returning the value to set. Receives the index position of the element in the set and the old property value as arguments. Within the function, the keyword this refers to the current element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'pushStack': function() {\n    /// <signature>\n    ///   <summary>Add a collection of DOM elements onto the jQuery stack.</summary>\n    ///   <param name=\"elements\" type=\"Array\">An array of elements to push onto the stack and make into a new jQuery object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add a collection of DOM elements onto the jQuery stack.</summary>\n    ///   <param name=\"elements\" type=\"Array\">An array of elements to push onto the stack and make into a new jQuery object.</param>\n    ///   <param name=\"name\" type=\"String\">The name of a jQuery method that generated the array of elements.</param>\n    ///   <param name=\"arguments\" type=\"Array\">The arguments that were passed in to the jQuery method (for serialization).</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'queue': function() {\n    /// <signature>\n    ///   <summary>Manipulate the queue of functions to be executed, once for each matched element.</summary>\n    ///   <param name=\"queueName\" type=\"String\">A string containing the name of the queue. Defaults to fx, the standard effects queue.</param>\n    ///   <param name=\"newQueue\" type=\"Array\">An array of functions to replace the current queue contents.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Manipulate the queue of functions to be executed, once for each matched element.</summary>\n    ///   <param name=\"queueName\" type=\"String\">A string containing the name of the queue. Defaults to fx, the standard effects queue.</param>\n    ///   <param name=\"callback( next )\" type=\"Function\">The new function to add to the queue, with a function to call that will dequeue the next item.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'radio': function() {\n    /// <summary>Selects all  elements of type radio.</summary>\n  },\n  'ready': function() {\n    /// <signature>\n    ///   <summary>Specify a function to execute when the DOM is fully loaded.</summary>\n    ///   <param name=\"handler\" type=\"Function\">A function to execute after the DOM is ready.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'remove': function() {\n    /// <signature>\n    ///   <summary>Remove the set of matched elements from the DOM.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector expression that filters the set of matched elements to be removed.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'removeAttr': function() {\n    /// <signature>\n    ///   <summary>Remove an attribute from each element in the set of matched elements.</summary>\n    ///   <param name=\"attributeName\" type=\"String\">An attribute to remove; as of version 1.7, it can be a space-separated list of attributes.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'removeClass': function() {\n    /// <signature>\n    ///   <summary>Remove a single class, multiple classes, or all classes from each element in the set of matched elements.</summary>\n    ///   <param name=\"className\" type=\"String\">One or more space-separated classes to be removed from the class attribute of each matched element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove a single class, multiple classes, or all classes from each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index, class)\" type=\"Function\">A function returning one or more space-separated class names to be removed. Receives the index position of the element in the set and the old class value as arguments.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'removeData': function() {\n    /// <signature>\n    ///   <summary>Remove a previously-stored piece of data.</summary>\n    ///   <param name=\"name\" type=\"String\">A string naming the piece of data to delete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove a previously-stored piece of data.</summary>\n    ///   <param name=\"list\" type=\"String\">An array or space-separated string naming the pieces of data to delete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'removeProp': function() {\n    /// <signature>\n    ///   <summary>Remove a property for the set of matched elements.</summary>\n    ///   <param name=\"propertyName\" type=\"String\">The name of the property to remove.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'replaceAll': function() {\n    /// <signature>\n    ///   <summary>Replace each target element with the set of matched elements.</summary>\n    ///   <param name=\"target\" type=\"String\">A selector expression indicating which element(s) to replace.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'replaceWith': function() {\n    /// <signature>\n    ///   <summary>Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.</summary>\n    ///   <param name=\"newContent\" type=\"jQuery\">The content to insert. May be an HTML string, DOM element, or jQuery object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.</summary>\n    ///   <param name=\"function\" type=\"Function\">A function that returns content with which to replace the set of matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'reset': function() {\n    /// <summary>Selects all elements of type reset.</summary>\n  },\n  'resize': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"resize\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"resize\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'root': function() {\n    /// <signature>\n    ///   <summary>Selects the element that is the root of the document.</summary>\n    ///   <param name=\"index\" type=\"String\">The index of each child to match, starting with 1, the string even or odd, or an equation ( eg. :nth-last-child(even), :nth-last-child(4n) )</param>\n    /// </signature>\n  },\n  'scroll': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"scroll\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"scroll\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'scrollLeft': function() {\n    /// <signature>\n    ///   <summary>Set the current horizontal position of the scroll bar for each of the set of matched elements.</summary>\n    ///   <param name=\"value\" type=\"Number\">An integer indicating the new position to set the scroll bar to.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'scrollTop': function() {\n    /// <signature>\n    ///   <summary>Set the current vertical position of the scroll bar for each of the set of matched elements.</summary>\n    ///   <param name=\"value\" type=\"Number\">An integer indicating the new position to set the scroll bar to.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'select': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"select\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"select\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'selected': function() {\n    /// <summary>Selects all elements that are selected.</summary>\n  },\n  'selector': function() {\n    /// <summary>A selector representing selector originally passed to jQuery().</summary>\n    /// <returns type=\"String\" />\n  },\n  'serialize': function() {\n    /// <summary>Encode a set of form elements as a string for submission.</summary>\n    /// <returns type=\"String\" />\n  },\n  'serializeArray': function() {\n    /// <summary>Encode a set of form elements as an array of names and values.</summary>\n    /// <returns type=\"Array\" />\n  },\n  'show': function() {\n    /// <signature>\n    ///   <summary>Display the matched elements.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display the matched elements.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display the matched elements.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'siblings': function() {\n    /// <signature>\n    ///   <summary>Get the siblings of each element in the set of matched elements, optionally filtered by a selector.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression to match elements against.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'size': function() {\n    /// <summary>Return the number of elements in the jQuery object.</summary>\n    /// <returns type=\"Number\" />\n  },\n  'slice': function() {\n    /// <signature>\n    ///   <summary>Reduce the set of matched elements to a subset specified by a range of indices.</summary>\n    ///   <param name=\"start\" type=\"Number\">An integer indicating the 0-based position at which the elements begin to be selected. If negative, it indicates an offset from the end of the set.</param>\n    ///   <param name=\"end\" type=\"Number\">An integer indicating the 0-based position at which the elements stop being selected. If negative, it indicates an offset from the end of the set. If omitted, the range continues until the end of the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'slideDown': function() {\n    /// <signature>\n    ///   <summary>Display the matched elements with a sliding motion.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display the matched elements with a sliding motion.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display the matched elements with a sliding motion.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'slideToggle': function() {\n    /// <signature>\n    ///   <summary>Display or hide the matched elements with a sliding motion.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display or hide the matched elements with a sliding motion.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display or hide the matched elements with a sliding motion.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'slideUp': function() {\n    /// <signature>\n    ///   <summary>Hide the matched elements with a sliding motion.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Hide the matched elements with a sliding motion.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Hide the matched elements with a sliding motion.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'stop': function() {\n    /// <signature>\n    ///   <summary>Stop the currently-running animation on the matched elements.</summary>\n    ///   <param name=\"clearQueue\" type=\"Boolean\">A Boolean indicating whether to remove queued animation as well. Defaults to false.</param>\n    ///   <param name=\"jumpToEnd\" type=\"Boolean\">A Boolean indicating whether to complete the current animation immediately. Defaults to false.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Stop the currently-running animation on the matched elements.</summary>\n    ///   <param name=\"queue\" type=\"String\">The name of the queue in which to stop animations.</param>\n    ///   <param name=\"clearQueue\" type=\"Boolean\">A Boolean indicating whether to remove queued animation as well. Defaults to false.</param>\n    ///   <param name=\"jumpToEnd\" type=\"Boolean\">A Boolean indicating whether to complete the current animation immediately. Defaults to false.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'submit': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"submit\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"submit\" JavaScript event, or trigger that event on an element.</summary>\n    ///   <param name=\"eventData\" type=\"PlainObject\">An object containing data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'target': function() {\n    /// <summary>Selects the target element indicated by the fragment identifier of the document's URI.</summary>\n  },\n  'text': function() {\n    /// <signature>\n    ///   <summary>Set the content of each element in the set of matched elements to the specified text.</summary>\n    ///   <param name=\"textString\" type=\"String\">A string of text to set as the content of each matched element.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set the content of each element in the set of matched elements to the specified text.</summary>\n    ///   <param name=\"function(index, text)\" type=\"Function\">A function returning the text content to set. Receives the index position of the element in the set and the old text value as arguments.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'toArray': function() {\n    /// <summary>Retrieve all the DOM elements contained in the jQuery set, as an array.</summary>\n    /// <returns type=\"Array\" />\n  },\n  'toggle': function() {\n    /// <signature>\n    ///   <summary>Display or hide the matched elements.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display or hide the matched elements.</summary>\n    ///   <param name=\"options\" type=\"PlainObject\">A map of additional options to pass to the method.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display or hide the matched elements.</summary>\n    ///   <param name=\"duration\" type=\"\">A string or number determining how long the animation will run.</param>\n    ///   <param name=\"easing\" type=\"String\">A string indicating which easing function to use for the transition.</param>\n    ///   <param name=\"complete\" type=\"Function\">A function to call once the animation is complete.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Display or hide the matched elements.</summary>\n    ///   <param name=\"showOrHide\" type=\"Boolean\">A Boolean indicating whether to show or hide the elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'toggleClass': function() {\n    /// <signature>\n    ///   <summary>Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument.</summary>\n    ///   <param name=\"className\" type=\"String\">One or more class names (separated by spaces) to be toggled for each element in the matched set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument.</summary>\n    ///   <param name=\"className\" type=\"String\">One or more class names (separated by spaces) to be toggled for each element in the matched set.</param>\n    ///   <param name=\"switch\" type=\"Boolean\">A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument.</summary>\n    ///   <param name=\"switch\" type=\"Boolean\">A boolean value to determine whether the class should be added or removed.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument.</summary>\n    ///   <param name=\"function(index, class, switch)\" type=\"Function\">A function that returns class names to be toggled in the class attribute of each element in the matched set. Receives the index position of the element in the set, the old class value, and the switch as arguments.</param>\n    ///   <param name=\"switch\" type=\"Boolean\">A boolean value to determine whether the class should be added or removed.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'trigger': function() {\n    /// <signature>\n    ///   <summary>Execute all handlers and behaviors attached to the matched elements for the given event type.</summary>\n    ///   <param name=\"eventType\" type=\"String\">A string containing a JavaScript event type, such as click or submit.</param>\n    ///   <param name=\"extraParameters\" type=\"PlainObject\">Additional parameters to pass along to the event handler.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Execute all handlers and behaviors attached to the matched elements for the given event type.</summary>\n    ///   <param name=\"event\" type=\"Event\">A jQuery.Event object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'triggerHandler': function() {\n    /// <signature>\n    ///   <summary>Execute all handlers attached to an element for an event.</summary>\n    ///   <param name=\"eventType\" type=\"String\">A string containing a JavaScript event type, such as click or submit.</param>\n    ///   <param name=\"extraParameters\" type=\"Array\">An array of additional parameters to pass along to the event handler.</param>\n    ///   <returns type=\"Object\" />\n    /// </signature>\n  },\n  'unbind': function() {\n    /// <signature>\n    ///   <summary>Remove a previously-attached event handler from the elements.</summary>\n    ///   <param name=\"eventType\" type=\"String\">A string containing a JavaScript event type, such as click or submit.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">The function that is to be no longer executed.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove a previously-attached event handler from the elements.</summary>\n    ///   <param name=\"eventType\" type=\"String\">A string containing a JavaScript event type, such as click or submit.</param>\n    ///   <param name=\"false\" type=\"Boolean\">Unbinds the corresponding 'return false' function that was bound using .bind( eventType, false ).</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove a previously-attached event handler from the elements.</summary>\n    ///   <param name=\"event\" type=\"Object\">A JavaScript event object as passed to an event handler.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'undelegate': function() {\n    /// <signature>\n    ///   <summary>Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector which will be used to filter the event results.</param>\n    ///   <param name=\"eventType\" type=\"String\">A string containing a JavaScript event type, such as \"click\" or \"keydown\"</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector which will be used to filter the event results.</param>\n    ///   <param name=\"eventType\" type=\"String\">A string containing a JavaScript event type, such as \"click\" or \"keydown\"</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute at the time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A selector which will be used to filter the event results.</param>\n    ///   <param name=\"events\" type=\"PlainObject\">An object of one or more event types and previously bound functions to unbind from them.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.</summary>\n    ///   <param name=\"namespace\" type=\"String\">A string containing a namespace to unbind all events from.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'unload': function() {\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"unload\" JavaScript event.</summary>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute when the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Bind an event handler to the \"unload\" JavaScript event.</summary>\n    ///   <param name=\"eventData\" type=\"Object\">A plain object of data that will be passed to the event handler.</param>\n    ///   <param name=\"handler(eventObject)\" type=\"Function\">A function to execute each time the event is triggered.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'unwrap': function() {\n    /// <summary>Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place.</summary>\n    /// <returns type=\"jQuery\" />\n  },\n  'val': function() {\n    /// <signature>\n    ///   <summary>Set the value of each element in the set of matched elements.</summary>\n    ///   <param name=\"value\" type=\"Array\">A string of text or an array of strings corresponding to the value of each matched element to set as selected/checked.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set the value of each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index, value)\" type=\"Function\">A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'visible': function() {\n    /// <summary>Selects all elements that are visible.</summary>\n  },\n  'width': function() {\n    /// <signature>\n    ///   <summary>Set the CSS width of each element in the set of matched elements.</summary>\n    ///   <param name=\"value\" type=\"Number\">An integer representing the number of pixels, or an integer along with an optional unit of measure appended (as a string).</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Set the CSS width of each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index, width)\" type=\"Function\">A function returning the width to set. Receives the index position of the element in the set and the old width as arguments. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'wrap': function() {\n    /// <signature>\n    ///   <summary>Wrap an HTML structure around each element in the set of matched elements.</summary>\n    ///   <param name=\"wrappingElement\" type=\"jQuery\">An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Wrap an HTML structure around each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index)\" type=\"Function\">A callback function returning the HTML content or jQuery object to wrap around the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'wrapAll': function() {\n    /// <signature>\n    ///   <summary>Wrap an HTML structure around all elements in the set of matched elements.</summary>\n    ///   <param name=\"wrappingElement\" type=\"jQuery\">An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n  'wrapInner': function() {\n    /// <signature>\n    ///   <summary>Wrap an HTML structure around the content of each element in the set of matched elements.</summary>\n    ///   <param name=\"wrappingElement\" type=\"String\">An HTML snippet, selector expression, jQuery object, or DOM element specifying the structure to wrap around the content of the matched elements.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Wrap an HTML structure around the content of each element in the set of matched elements.</summary>\n    ///   <param name=\"function(index)\" type=\"Function\">A callback function which generates a structure to wrap around the content of the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n});\n\nintellisense.annotate(window, {\n  '$': function() {\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"selector\" type=\"String\">A string containing a selector expression</param>\n    ///   <param name=\"context\" type=\"jQuery\">A DOM Element, Document, or jQuery to use as context</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"element\" type=\"Element\">A DOM element to wrap in a jQuery object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"elementArray\" type=\"Array\">An array containing a set of DOM elements to wrap in a jQuery object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"object\" type=\"PlainObject\">A plain object to wrap in a jQuery object.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n    /// <signature>\n    ///   <summary>Accepts a string containing a CSS selector which is then used to match a set of elements.</summary>\n    ///   <param name=\"jQuery object\" type=\"PlainObject\">An existing jQuery object to clone.</param>\n    ///   <returns type=\"jQuery\" />\n    /// </signature>\n  },\n});\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/jquery-1.12.4.js",
    "content": "/*!\n * jQuery JavaScript Library v1.12.4\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2016-05-20T17:17Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Support: Firefox 18+\n// Can't be in strict mode, several libs including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n//\"use strict\";\nvar deletedIds = [];\n\nvar document = window.document;\n\nvar slice = deletedIds.slice;\n\nvar concat = deletedIds.concat;\n\nvar push = deletedIds.push;\n\nvar indexOf = deletedIds.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"1.12.4\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1, IE<9\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: deletedIds.sort,\n\tsplice: deletedIds.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar src, copyIsArray, copy, name, options, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = jQuery.isArray( copy ) ) ) ) {\n\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray( src ) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject( src ) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\t// See test/unit/core.js for details concerning isFunction.\n\t// Since version 1.3, DOM methods and functions like alert\n\t// aren't supported. They return false on IE (#2968).\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type( obj ) === \"function\";\n\t},\n\n\tisArray: Array.isArray || function( obj ) {\n\t\treturn jQuery.type( obj ) === \"array\";\n\t},\n\n\tisWindow: function( obj ) {\n\t\t/* jshint eqeqeq: false */\n\t\treturn obj != null && obj == obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\tvar realStringObj = obj && obj.toString();\n\t\treturn !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Must be an Object.\n\t\t// Because of IE, we also have to check the presence of the constructor property.\n\t\t// Make sure that DOM nodes and window objects don't pass through, as well\n\t\tif ( !obj || jQuery.type( obj ) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\ttry {\n\n\t\t\t// Not own constructor property must be Object\n\t\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call( obj, \"constructor\" ) &&\n\t\t\t\t!hasOwn.call( obj.constructor.prototype, \"isPrototypeOf\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} catch ( e ) {\n\n\t\t\t// IE8,9 Will throw exceptions on certain host objects #9897\n\t\t\treturn false;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Handle iteration over inherited properties before own properties.\n\t\tif ( !support.ownFirst ) {\n\t\t\tfor ( key in obj ) {\n\t\t\t\treturn hasOwn.call( obj, key );\n\t\t\t}\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own.\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Workarounds based on findings by Jim Driscoll\n\t// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context\n\tglobalEval: function( data ) {\n\t\tif ( data && jQuery.trim( data ) ) {\n\n\t\t\t// We use execScript on Internet Explorer\n\t\t\t// We use an anonymous function so that context is window\n\t\t\t// rather than jQuery in Firefox\n\t\t\t( window.execScript || function( data ) {\n\t\t\t\twindow[ \"eval\" ].call( window, data ); // jscs:ignore requireDotNotation\n\t\t\t} )( data );\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1, IE<9\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\tvar len;\n\n\t\tif ( arr ) {\n\t\t\tif ( indexOf ) {\n\t\t\t\treturn indexOf.call( arr, elem, i );\n\t\t\t}\n\n\t\t\tlen = arr.length;\n\t\t\ti = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;\n\n\t\t\tfor ( ; i < len; i++ ) {\n\n\t\t\t\t// Skip accessing in sparse arrays\n\t\t\t\tif ( i in arr && arr[ i ] === elem ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn -1;\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\twhile ( j < len ) {\n\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists)\n\t\tif ( len !== len ) {\n\t\t\twhile ( second[ j ] !== undefined ) {\n\t\t\t\tfirst[ i++ ] = second[ j++ ];\n\t\t\t}\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar args, proxy, tmp;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: function() {\n\t\treturn +( new Date() );\n\t},\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\n// JSHint would error on this code due to the Symbol not being defined in ES5.\n// Defining this global in .jshintrc would create a danger of using the global\n// unguarded in another place, it seems safer to just disable JSHint for these\n// three lines.\n/* jshint ignore: start */\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = deletedIds[ Symbol.iterator ];\n}\n/* jshint ignore: end */\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.1\n * http://sizzlejs.com/\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-10-17\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, nidselect, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\n\t\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\t\tsetDocument( context );\n\t\t}\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( (m = match[1]) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( (elem = context.getElementById( m )) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && (elem = newContext.getElementById( m )) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[2] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!compilerCache[ selector + \" \" ] &&\n\t\t\t\t(!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\n\t\t\t\tif ( nodeType !== 1 ) {\n\t\t\t\t\tnewContext = context;\n\t\t\t\t\tnewSelector = selector;\n\n\t\t\t\t// qSA looks outside Element context, which is not what we want\n\t\t\t\t// Thanks to Andrew Dupont for this workaround technique\n\t\t\t\t// Support: IE <=8\n\t\t\t\t// Exclude object elements\n\t\t\t\t} else if ( context.nodeName.toLowerCase() !== \"object\" ) {\n\n\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\tif ( (nid = context.getAttribute( \"id\" )) ) {\n\t\t\t\t\t\tnid = nid.replace( rescape, \"\\\\$&\" );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tcontext.setAttribute( \"id\", (nid = expando) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\tnidselect = ridentifier.test( nid ) ? \"#\" + nid : \"[id='\" + nid + \"']\";\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[i] = nidselect + \" \" + toSelector( groups[i] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\t\t\t\t}\n\n\t\t\t\tif ( newSelector ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t\t);\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9-11, Edge\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\tif ( (parent = document.defaultView) && parent.top !== parent ) {\n\t\t// Support: IE 11\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( document.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\treturn m ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( document.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === document ? -1 :\n\t\t\t\tb === document ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!compilerCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});\n\n\t\t\t\t\t\tif ( (oldCache = uniqueCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context === document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\tif ( !context && elem.ownerDocument !== document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = ( /^<([\\w-]+)\\s*\\/?>(?:<\\/\\1>|)$/ );\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( jQuery.inArray( elem, qualifier ) > -1 ) !== not;\n\t} );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tret = [],\n\t\t\tself = this,\n\t\t\tlen = self.length;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// init accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector.charAt( 0 ) === \"<\" &&\n\t\t\t\tselector.charAt( selector.length - 1 ) === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\t// Check parentNode to catch when Blackberry 4.6 returns\n\t\t\t\t\t// nodes that are no longer in the document #6963\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\n\t\t\t\t\t\t// Handle the case where IE and Opera return items\n\t\t\t\t\t\t// by name instead of ID\n\t\t\t\t\t\tif ( elem.id !== match[ 2 ] ) {\n\t\t\t\t\t\t\treturn rootjQuery.find( selector );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, we inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn typeof root.ready !== \"undefined\" ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar i,\n\t\t\ttargets = jQuery( target, this ),\n\t\t\tlen = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && ( pos ?\n\t\t\t\t\tpos.index( cur ) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within\n\t// the matched set of elements\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn jQuery.inArray( this[ 0 ], jQuery( elem ) );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn jQuery.inArray(\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem, this );\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\tdo {\n\t\tcur = cur[ dir ];\n\t} while ( cur && cur.nodeType !== 1 );\n\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn jQuery.nodeName( elem, \"iframe\" ) ?\n\t\t\telem.contentDocument || elem.contentWindow.document :\n\t\t\tjQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar ret = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tret = jQuery.filter( selector, ret );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tret = jQuery.uniqueSort( ret );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tret = ret.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\nvar rnotwhite = ( /\\S+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( jQuery.isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && jQuery.type( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = true;\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tself.disable();\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ) ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis === promise ? newDefer.promise() : this,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add( function() {\n\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 ||\n\t\t\t\t( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred.\n\t\t\t// If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\n\t\t\t\t\t} else if ( !( --remaining ) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) )\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// if we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n} );\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n} );\n\n/**\n * Clean-up method for dom ready events\n */\nfunction detach() {\n\tif ( document.addEventListener ) {\n\t\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\t\twindow.removeEventListener( \"load\", completed );\n\n\t} else {\n\t\tdocument.detachEvent( \"onreadystatechange\", completed );\n\t\twindow.detachEvent( \"onload\", completed );\n\t}\n}\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\n\t// readyState === \"complete\" is good enough for us to call the dom ready in oldIE\n\tif ( document.addEventListener ||\n\t\twindow.event.type === \"load\" ||\n\t\tdocument.readyState === \"complete\" ) {\n\n\t\tdetach();\n\t\tjQuery.ready();\n\t}\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called\n\t\t// after the browser event has already occurred.\n\t\t// Support: IE6-10\n\t\t// Older IE sometimes signals \"interactive\" too soon\n\t\tif ( document.readyState === \"complete\" ||\n\t\t\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\twindow.setTimeout( jQuery.ready );\n\n\t\t// Standards-based browsers support DOMContentLoaded\n\t\t} else if ( document.addEventListener ) {\n\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed );\n\n\t\t// If IE event model is used\n\t\t} else {\n\n\t\t\t// Ensure firing before onload, maybe late but safe also for iframes\n\t\t\tdocument.attachEvent( \"onreadystatechange\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.attachEvent( \"onload\", completed );\n\n\t\t\t// If IE and not a frame\n\t\t\t// continually check to see if the document is ready\n\t\t\tvar top = false;\n\n\t\t\ttry {\n\t\t\t\ttop = window.frameElement == null && document.documentElement;\n\t\t\t} catch ( e ) {}\n\n\t\t\tif ( top && top.doScroll ) {\n\t\t\t\t( function doScrollCheck() {\n\t\t\t\t\tif ( !jQuery.isReady ) {\n\n\t\t\t\t\t\ttry {\n\n\t\t\t\t\t\t\t// Use the trick by Diego Perini\n\t\t\t\t\t\t\t// http://javascript.nwbox.com/IEContentLoaded/\n\t\t\t\t\t\t\ttop.doScroll( \"left\" );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn window.setTimeout( doScrollCheck, 50 );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// detach all dom ready events\n\t\t\t\t\t\tdetach();\n\n\t\t\t\t\t\t// and execute any waiting functions\n\t\t\t\t\t\tjQuery.ready();\n\t\t\t\t\t}\n\t\t\t\t} )();\n\t\t\t}\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n// Kick off the DOM ready check even if the user does not\njQuery.ready.promise();\n\n\n\n\n// Support: IE<9\n// Iteration over object's inherited properties before its own\nvar i;\nfor ( i in jQuery( support ) ) {\n\tbreak;\n}\nsupport.ownFirst = i === \"0\";\n\n// Note: most support tests are defined in their respective modules.\n// false until the test is run\nsupport.inlineBlockNeedsLayout = false;\n\n// Execute ASAP in case we need to set body.style.zoom\njQuery( function() {\n\n\t// Minified: var a,b,c,d\n\tvar val, div, body, container;\n\n\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\tif ( !body || !body.style ) {\n\n\t\t// Return for frameset docs that don't have a body\n\t\treturn;\n\t}\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\tbody.appendChild( container ).appendChild( div );\n\n\tif ( typeof div.style.zoom !== \"undefined\" ) {\n\n\t\t// Support: IE<8\n\t\t// Check if natively block-level elements act like inline-block\n\t\t// elements when setting their display to 'inline' and giving\n\t\t// them layout\n\t\tdiv.style.cssText = \"display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1\";\n\n\t\tsupport.inlineBlockNeedsLayout = val = div.offsetWidth === 3;\n\t\tif ( val ) {\n\n\t\t\t// Prevent IE 6 from affecting layout for positioned elements #11048\n\t\t\t// Prevent IE from shrinking the body in IE 7 mode #12869\n\t\t\t// Support: IE<8\n\t\t\tbody.style.zoom = 1;\n\t\t}\n\t}\n\n\tbody.removeChild( container );\n} );\n\n\n( function() {\n\tvar div = document.createElement( \"div\" );\n\n\t// Support: IE<9\n\tsupport.deleteExpando = true;\n\ttry {\n\t\tdelete div.test;\n\t} catch ( e ) {\n\t\tsupport.deleteExpando = false;\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n} )();\nvar acceptData = function( elem ) {\n\tvar noData = jQuery.noData[ ( elem.nodeName + \" \" ).toLowerCase() ],\n\t\tnodeType = +elem.nodeType || 1;\n\n\t// Do not set data on non-element DOM nodes because it will not be cleared (#8335).\n\treturn nodeType !== 1 && nodeType !== 9 ?\n\t\tfalse :\n\n\t\t// Nodes accept data unless otherwise specified; rejection can be conditional\n\t\t!noData || noData !== true && elem.getAttribute( \"classid\" ) === noData;\n};\n\n\n\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /([A-Z])/g;\n\nfunction dataAttr( elem, key, data ) {\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\n\t\tvar name = \"data-\" + key.replace( rmultiDash, \"-$1\" ).toLowerCase();\n\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tjQuery.data( elem, key, data );\n\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\n\treturn data;\n}\n\n// checks a cache object for emptiness\nfunction isEmptyDataObject( obj ) {\n\tvar name;\n\tfor ( name in obj ) {\n\n\t\t// if the public data object is empty, the private is still empty\n\t\tif ( name === \"data\" && jQuery.isEmptyObject( obj[ name ] ) ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( name !== \"toJSON\" ) {\n\t\t\treturn false;\n\t\t}\n\t}\n\n\treturn true;\n}\n\nfunction internalData( elem, name, data, pvt /* Internal Use Only */ ) {\n\tif ( !acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar ret, thisCache,\n\t\tinternalKey = jQuery.expando,\n\n\t\t// We have to handle DOM nodes and JS objects differently because IE6-7\n\t\t// can't GC object references properly across the DOM-JS boundary\n\t\tisNode = elem.nodeType,\n\n\t\t// Only DOM nodes need the global jQuery cache; JS object data is\n\t\t// attached directly to the object so GC can occur automatically\n\t\tcache = isNode ? jQuery.cache : elem,\n\n\t\t// Only defining an ID for JS objects if its cache already exists allows\n\t\t// the code to shortcut on the same path as a DOM node with no cache\n\t\tid = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;\n\n\t// Avoid doing any more work than we need to when trying to get data on an\n\t// object that has no data at all\n\tif ( ( !id || !cache[ id ] || ( !pvt && !cache[ id ].data ) ) &&\n\t\tdata === undefined && typeof name === \"string\" ) {\n\t\treturn;\n\t}\n\n\tif ( !id ) {\n\n\t\t// Only DOM nodes need a new unique ID for each element since their data\n\t\t// ends up in the global cache\n\t\tif ( isNode ) {\n\t\t\tid = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++;\n\t\t} else {\n\t\t\tid = internalKey;\n\t\t}\n\t}\n\n\tif ( !cache[ id ] ) {\n\n\t\t// Avoid exposing jQuery metadata on plain JS objects when the object\n\t\t// is serialized using JSON.stringify\n\t\tcache[ id ] = isNode ? {} : { toJSON: jQuery.noop };\n\t}\n\n\t// An object can be passed to jQuery.data instead of a key/value pair; this gets\n\t// shallow copied over onto the existing cache\n\tif ( typeof name === \"object\" || typeof name === \"function\" ) {\n\t\tif ( pvt ) {\n\t\t\tcache[ id ] = jQuery.extend( cache[ id ], name );\n\t\t} else {\n\t\t\tcache[ id ].data = jQuery.extend( cache[ id ].data, name );\n\t\t}\n\t}\n\n\tthisCache = cache[ id ];\n\n\t// jQuery data() is stored in a separate object inside the object's internal data\n\t// cache in order to avoid key collisions between internal data and user-defined\n\t// data.\n\tif ( !pvt ) {\n\t\tif ( !thisCache.data ) {\n\t\t\tthisCache.data = {};\n\t\t}\n\n\t\tthisCache = thisCache.data;\n\t}\n\n\tif ( data !== undefined ) {\n\t\tthisCache[ jQuery.camelCase( name ) ] = data;\n\t}\n\n\t// Check for both converted-to-camel and non-converted data property names\n\t// If a data property was specified\n\tif ( typeof name === \"string\" ) {\n\n\t\t// First Try to find as-is property data\n\t\tret = thisCache[ name ];\n\n\t\t// Test for null|undefined property data\n\t\tif ( ret == null ) {\n\n\t\t\t// Try to find the camelCased property\n\t\t\tret = thisCache[ jQuery.camelCase( name ) ];\n\t\t}\n\t} else {\n\t\tret = thisCache;\n\t}\n\n\treturn ret;\n}\n\nfunction internalRemoveData( elem, name, pvt ) {\n\tif ( !acceptData( elem ) ) {\n\t\treturn;\n\t}\n\n\tvar thisCache, i,\n\t\tisNode = elem.nodeType,\n\n\t\t// See jQuery.data for more information\n\t\tcache = isNode ? jQuery.cache : elem,\n\t\tid = isNode ? elem[ jQuery.expando ] : jQuery.expando;\n\n\t// If there is already no cache entry for this object, there is no\n\t// purpose in continuing\n\tif ( !cache[ id ] ) {\n\t\treturn;\n\t}\n\n\tif ( name ) {\n\n\t\tthisCache = pvt ? cache[ id ] : cache[ id ].data;\n\n\t\tif ( thisCache ) {\n\n\t\t\t// Support array or space separated string names for data keys\n\t\t\tif ( !jQuery.isArray( name ) ) {\n\n\t\t\t\t// try the string as a key before any manipulation\n\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\tname = [ name ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// split the camel cased version by spaces unless a key with the spaces exists\n\t\t\t\t\tname = jQuery.camelCase( name );\n\t\t\t\t\tif ( name in thisCache ) {\n\t\t\t\t\t\tname = [ name ];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tname = name.split( \" \" );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = name.concat( jQuery.map( name, jQuery.camelCase ) );\n\t\t\t}\n\n\t\t\ti = name.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete thisCache[ name[ i ] ];\n\t\t\t}\n\n\t\t\t// If there is no data left in the cache, we want to continue\n\t\t\t// and let the cache object itself get destroyed\n\t\t\tif ( pvt ? !isEmptyDataObject( thisCache ) : !jQuery.isEmptyObject( thisCache ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\t// See jQuery.data for more information\n\tif ( !pvt ) {\n\t\tdelete cache[ id ].data;\n\n\t\t// Don't destroy the parent cache unless the internal data object\n\t\t// had been the only thing left in it\n\t\tif ( !isEmptyDataObject( cache[ id ] ) ) {\n\t\t\treturn;\n\t\t}\n\t}\n\n\t// Destroy the cache\n\tif ( isNode ) {\n\t\tjQuery.cleanData( [ elem ], true );\n\n\t// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)\n\t/* jshint eqeqeq: false */\n\t} else if ( support.deleteExpando || cache != cache.window ) {\n\t\t/* jshint eqeqeq: true */\n\t\tdelete cache[ id ];\n\n\t// When all else fails, undefined\n\t} else {\n\t\tcache[ id ] = undefined;\n\t}\n}\n\njQuery.extend( {\n\tcache: {},\n\n\t// The following elements (space-suffixed to avoid Object.prototype collisions)\n\t// throw uncatchable exceptions if you attempt to set expando properties\n\tnoData: {\n\t\t\"applet \": true,\n\t\t\"embed \": true,\n\n\t\t// ...but Flash objects (which have this classid) *can* handle expandos\n\t\t\"object \": \"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n\t},\n\n\thasData: function( elem ) {\n\t\telem = elem.nodeType ? jQuery.cache[ elem[ jQuery.expando ] ] : elem[ jQuery.expando ];\n\t\treturn !!elem && !isEmptyDataObject( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name );\n\t},\n\n\t// For internal use only.\n\t_data: function( elem, name, data ) {\n\t\treturn internalData( elem, name, data, true );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\treturn internalRemoveData( elem, name, true );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Special expections of .data basically thwart jQuery.access,\n\t\t// so implement the relevant behavior ourselves\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = jQuery.data( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !jQuery._data( elem, \"parsedAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tjQuery._data( elem, \"parsedAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tjQuery.data( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn arguments.length > 1 ?\n\n\t\t\t// Sets one value\n\t\t\tthis.each( function() {\n\t\t\t\tjQuery.data( this, key, value );\n\t\t\t} ) :\n\n\t\t\t// Gets one value\n\t\t\t// Try to fetch any internally stored data first\n\t\t\telem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined;\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeData( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = jQuery._data( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray( data ) ) {\n\t\t\t\t\tqueue = jQuery._data( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// not intended for public consumption - generates a queueHooks object,\n\t// or returns the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn jQuery._data( elem, key ) || jQuery._data( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tjQuery._removeData( elem, type + \"queue\" );\n\t\t\t\tjQuery._removeData( elem, key );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = jQuery._data( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\n\n\n( function() {\n\tvar shrinkWrapBlocksVal;\n\n\tsupport.shrinkWrapBlocks = function() {\n\t\tif ( shrinkWrapBlocksVal != null ) {\n\t\t\treturn shrinkWrapBlocksVal;\n\t\t}\n\n\t\t// Will be changed later if needed.\n\t\tshrinkWrapBlocksVal = false;\n\n\t\t// Minified: var b,c,d\n\t\tvar div, body, container;\n\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ];\n\t\tif ( !body || !body.style ) {\n\n\t\t\t// Test fired too early or in an unsupported environment, exit.\n\t\t\treturn;\n\t\t}\n\n\t\t// Setup\n\t\tdiv = document.createElement( \"div\" );\n\t\tcontainer = document.createElement( \"div\" );\n\t\tcontainer.style.cssText = \"position:absolute;border:0;width:0;height:0;top:0;left:-9999px\";\n\t\tbody.appendChild( container ).appendChild( div );\n\n\t\t// Support: IE6\n\t\t// Check if elements with layout shrink-wrap their children\n\t\tif ( typeof div.style.zoom !== \"undefined\" ) {\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border\n\t\t\tdiv.style.cssText =\n\n\t\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;\" +\n\t\t\t\t\"padding:1px;width:1px;zoom:1\";\n\t\t\tdiv.appendChild( document.createElement( \"div\" ) ).style.width = \"5px\";\n\t\t\tshrinkWrapBlocksVal = div.offsetWidth !== 3;\n\t\t}\n\n\t\tbody.removeChild( container );\n\n\t\treturn shrinkWrapBlocksVal;\n\t};\n\n} )();\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" ||\n\t\t\t!jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted,\n\t\tscale = 1,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() { return tween.cur(); } :\n\t\t\tfunction() { return jQuery.css( elem, prop, \"\" ); },\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\tdo {\n\n\t\t\t// If previous iteration zeroed out, double until we get *something*.\n\t\t\t// Use string for doubling so we don't accidentally see scale as unchanged below\n\t\t\tscale = scale || \".5\";\n\n\t\t\t// Adjust and apply\n\t\t\tinitialInUnit = initialInUnit / scale;\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t// Break the loop if scale is unchanged or perfect, or if we've just had enough.\n\t\t} while (\n\t\t\tscale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations\n\t\t);\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlength = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ],\n\t\t\t\t\tkey,\n\t\t\t\t\traw ? value : value.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlength ? fn( elems[ 0 ], key ) : emptyGet;\n};\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([\\w:-]+)/ );\n\nvar rscriptType = ( /^$|\\/(?:java|ecma)script/i );\n\nvar rleadingWhitespace = ( /^\\s+/ );\n\nvar nodeNames = \"abbr|article|aside|audio|bdi|canvas|data|datalist|\" +\n\t\t\"details|dialog|figcaption|figure|footer|header|hgroup|main|\" +\n\t\t\"mark|meter|nav|output|picture|progress|section|summary|template|time|video\";\n\n\n\nfunction createSafeFragment( document ) {\n\tvar list = nodeNames.split( \"|\" ),\n\t\tsafeFrag = document.createDocumentFragment();\n\n\tif ( safeFrag.createElement ) {\n\t\twhile ( list.length ) {\n\t\t\tsafeFrag.createElement(\n\t\t\t\tlist.pop()\n\t\t\t);\n\t\t}\n\t}\n\treturn safeFrag;\n}\n\n\n( function() {\n\tvar div = document.createElement( \"div\" ),\n\t\tfragment = document.createDocumentFragment(),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Setup\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\n\t// IE strips leading whitespace when .innerHTML is used\n\tsupport.leadingWhitespace = div.firstChild.nodeType === 3;\n\n\t// Make sure that tbody elements aren't automatically inserted\n\t// IE will insert them into empty tables\n\tsupport.tbody = !div.getElementsByTagName( \"tbody\" ).length;\n\n\t// Make sure that link elements get serialized correctly by innerHTML\n\t// This requires a wrapper element in IE\n\tsupport.htmlSerialize = !!div.getElementsByTagName( \"link\" ).length;\n\n\t// Makes sure cloning an html5 element does not cause problems\n\t// Where outerHTML is undefined, this still works\n\tsupport.html5Clone =\n\t\tdocument.createElement( \"nav\" ).cloneNode( true ).outerHTML !== \"<:nav></:nav>\";\n\n\t// Check if a disconnected checkbox will retain its checked\n\t// value of true after appended to the DOM (IE6/7)\n\tinput.type = \"checkbox\";\n\tinput.checked = true;\n\tfragment.appendChild( input );\n\tsupport.appendChecked = input.checked;\n\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\t// Support: IE6-IE11+\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n\n\t// #11217 - WebKit loses check when the name is after the checked attribute\n\tfragment.appendChild( div );\n\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3\n\t// old WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<9\n\t// Cloned elements keep attachEvent handlers, we use addEventListener on IE9+\n\tsupport.noCloneEvent = !!div.addEventListener;\n\n\t// Support: IE<9\n\t// Since attributes and properties are the same in IE,\n\t// cleanData must set properties to undefined rather than use removeAttribute\n\tdiv[ jQuery.expando ] = 1;\n\tsupport.attributes = !div.getAttribute( jQuery.expando );\n} )();\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\tlegend: [ 1, \"<fieldset>\", \"</fieldset>\" ],\n\tarea: [ 1, \"<map>\", \"</map>\" ],\n\n\t// Support: IE8\n\tparam: [ 1, \"<object>\", \"</object>\" ],\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\tcol: [ 2, \"<table><tbody></tbody><colgroup>\", \"</colgroup></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,\n\t// unless wrapped in a div with non-breaking characters in front of it.\n\t_default: support.htmlSerialize ? [ 0, \"\", \"\" ] : [ 1, \"X<div>\", \"</div>\" ]\n};\n\n// Support: IE8-IE9\nwrapMap.optgroup = wrapMap.option;\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n\nfunction getAll( context, tag ) {\n\tvar elems, elem,\n\t\ti = 0,\n\t\tfound = typeof context.getElementsByTagName !== \"undefined\" ?\n\t\t\tcontext.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== \"undefined\" ?\n\t\t\t\tcontext.querySelectorAll( tag || \"*\" ) :\n\t\t\t\tundefined;\n\n\tif ( !found ) {\n\t\tfor ( found = [], elems = context.childNodes || context;\n\t\t\t( elem = elems[ i ] ) != null;\n\t\t\ti++\n\t\t) {\n\t\t\tif ( !tag || jQuery.nodeName( elem, tag ) ) {\n\t\t\t\tfound.push( elem );\n\t\t\t} else {\n\t\t\t\tjQuery.merge( found, getAll( elem, tag ) );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], found ) :\n\t\tfound;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar elem,\n\t\ti = 0;\n\tfor ( ; ( elem = elems[ i ] ) != null; i++ ) {\n\t\tjQuery._data(\n\t\t\telem,\n\t\t\t\"globalEval\",\n\t\t\t!refElements || jQuery._data( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/,\n\trtbody = /<tbody/i;\n\nfunction fixDefaultChecked( elem ) {\n\tif ( rcheckableType.test( elem.type ) ) {\n\t\telem.defaultChecked = elem.checked;\n\t}\n}\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar j, elem, contains,\n\t\ttmp, tag, tbody, wrap,\n\t\tl = elems.length,\n\n\t\t// Ensure a safe fragment\n\t\tsafe = createSafeFragment( context ),\n\n\t\tnodes = [],\n\t\ti = 0;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || safe.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Manually add leading whitespace removed by IE\n\t\t\t\tif ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {\n\t\t\t\t\tnodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[ 0 ] ) );\n\t\t\t\t}\n\n\t\t\t\t// Remove IE's autoinserted <tbody> from table fragments\n\t\t\t\tif ( !support.tbody ) {\n\n\t\t\t\t\t// String was a <table>, *may* have spurious <tbody>\n\t\t\t\t\telem = tag === \"table\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\ttmp.firstChild :\n\n\t\t\t\t\t\t// String was a bare <thead> or <tfoot>\n\t\t\t\t\t\twrap[ 1 ] === \"<table>\" && !rtbody.test( elem ) ?\n\t\t\t\t\t\t\ttmp :\n\t\t\t\t\t\t\t0;\n\n\t\t\t\t\tj = elem && elem.childNodes.length;\n\t\t\t\t\twhile ( j-- ) {\n\t\t\t\t\t\tif ( jQuery.nodeName( ( tbody = elem.childNodes[ j ] ), \"tbody\" ) &&\n\t\t\t\t\t\t\t!tbody.childNodes.length ) {\n\n\t\t\t\t\t\t\telem.removeChild( tbody );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Fix #12392 for WebKit and IE > 9\n\t\t\t\ttmp.textContent = \"\";\n\n\t\t\t\t// Fix #12392 for oldIE\n\t\t\t\twhile ( tmp.firstChild ) {\n\t\t\t\t\ttmp.removeChild( tmp.firstChild );\n\t\t\t\t}\n\n\t\t\t\t// Remember the top-level container for proper cleanup\n\t\t\t\ttmp = safe.lastChild;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Fix #11356: Clear elements from fragment\n\tif ( tmp ) {\n\t\tsafe.removeChild( tmp );\n\t}\n\n\t// Reset defaultChecked for any radios and checkboxes\n\t// about to be appended to the DOM in IE 6/7 (#8060)\n\tif ( !support.appendChecked ) {\n\t\tjQuery.grep( getAll( nodes, \"input\" ), fixDefaultChecked );\n\t}\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\n\t\t\tcontinue;\n\t\t}\n\n\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( safe.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( contains ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\ttmp = null;\n\n\treturn safe;\n}\n\n\n( function() {\n\tvar i, eventName,\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Support: IE<9 (lack submit/change bubble), Firefox (lack focus(in | out) events)\n\tfor ( i in { submit: true, change: true, focusin: true } ) {\n\t\teventName = \"on\" + i;\n\n\t\tif ( !( support[ i ] = eventName in window ) ) {\n\n\t\t\t// Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP)\n\t\t\tdiv.setAttribute( eventName, \"t\" );\n\t\t\tsupport[ i ] = div.attributes[ eventName ].expando === false;\n\t\t}\n\t}\n\n\t// Null elements to avoid leaks in IE.\n\tdiv = null;\n} )();\n\n\nvar rformElems = /^(?:input|select|textarea)$/i,\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE9\n// See #13393 for more info\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\t\tvar tmp, events, t, handleObjIn,\n\t\t\tspecial, eventHandle, handleObj,\n\t\t\thandlers, type, namespaces, origType,\n\t\t\telemData = jQuery._data( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" &&\n\t\t\t\t\t( !e || jQuery.event.triggered !== e.type ) ?\n\t\t\t\t\tjQuery.event.dispatch.apply( eventHandle.elem, arguments ) :\n\t\t\t\t\tundefined;\n\t\t\t};\n\n\t\t\t// Add elem as a property of the handle fn to prevent a memory leak\n\t\t\t// with IE non-native events\n\t\t\teventHandle.elem = elem;\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener/attachEvent if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\t// Bind the global event handler to the element\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle, false );\n\n\t\t\t\t\t} else if ( elem.attachEvent ) {\n\t\t\t\t\t\telem.attachEvent( \"on\" + type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t\t// Nullify elem to prevent memory leaks in IE\n\t\telem = null;\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\t\tvar j, handleObj, tmp,\n\t\t\torigCount, t, events,\n\t\t\tspecial, handlers, type,\n\t\t\tnamespaces, origType,\n\t\t\telemData = jQuery.hasData( elem ) && jQuery._data( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdelete elemData.handle;\n\n\t\t\t// removeData also checks for emptiness and clears the expando if empty\n\t\t\t// so use it instead of delete\n\t\t\tjQuery._removeData( elem, \"events\" );\n\t\t}\n\t},\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\t\tvar handle, ontype, cur,\n\t\t\tbubbleType, special, tmp, i,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( jQuery._data( cur, \"events\" ) || {} )[ event.type ] &&\n\t\t\t\tjQuery._data( cur, \"handle\" );\n\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif (\n\t\t\t\t( !special._default ||\n\t\t\t\t special._default.apply( eventPath.pop(), data ) === false\n\t\t\t\t) && acceptData( elem )\n\t\t\t) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Can't use an .isFunction() check here because IE6/7 fails that test.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\ttry {\n\t\t\t\t\t\telem[ type ]();\n\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t// IE<9 dies on focus/blur to hidden element (#1486,#12518)\n\t\t\t\t\t\t// only reproducible on winXP IE8 native, not IE9 in IE8 mode\n\t\t\t\t\t}\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, j, ret, matched, handleObj,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( jQuery._data( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or 2) have namespace(s)\n\t\t\t\t// a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, matches, sel, handleObj,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Support (at least): Chrome, IE9\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t//\n\t\t// Support: Firefox<=42+\n\t\t// Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343)\n\t\tif ( delegateCount && cur.nodeType &&\n\t\t\t( event.type !== \"click\" || isNaN( event.button ) || event.button < 1 ) ) {\n\n\t\t\t/* jshint eqeqeq: false */\n\t\t\tfor ( ; cur != this; cur = cur.parentNode || this ) {\n\t\t\t\t/* jshint eqeqeq: true */\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== \"click\" ) ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matches } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// Fix target property (#1925)\n\t\tif ( !event.target ) {\n\t\t\tevent.target = originalEvent.srcElement || document;\n\t\t}\n\n\t\t// Support: Safari 6-8+\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// For mouse/key events, metaKey==false if it's undefined (#3368, #11328)\n\t\tevent.metaKey = !!event.metaKey;\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: ( \"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase \" +\n\t\t\"metaKey relatedTarget shiftKey target timeStamp view which\" ).split( \" \" ),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split( \" \" ),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: ( \"button buttons clientX clientY fromElement offsetX offsetY \" +\n\t\t\t\"pageX pageY screenX screenY toElement\" ).split( \" \" ),\n\t\tfilter: function( event, original ) {\n\t\t\tvar body, eventDoc, doc,\n\t\t\t\tbutton = original.button,\n\t\t\t\tfromElement = original.fromElement;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX +\n\t\t\t\t\t( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -\n\t\t\t\t\t( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY +\n\t\t\t\t\t( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) -\n\t\t\t\t\t( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add relatedTarget, if necessary\n\t\t\tif ( !event.relatedTarget && fromElement ) {\n\t\t\t\tevent.relatedTarget = fromElement === event.target ?\n\t\t\t\t\toriginal.toElement :\n\t\t\t\t\tfromElement;\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tthis.focus();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// If we error on focus to hidden element (#1486, #12518),\n\t\t\t\t\t\t// let .trigger() run the handlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( jQuery.nodeName( this, \"input\" ) && this.type === \"checkbox\" && this.click ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\n\t\t\t\t// Previously, `originalEvent: {}` was set here, so stopPropagation call\n\t\t\t\t// would not be triggered on donor event, since in our own\n\t\t\t\t// jQuery.event.stopPropagation function we had a check for existence of\n\t\t\t\t// originalEvent.stopPropagation method, so, consequently it would be a noop.\n\t\t\t\t//\n\t\t\t\t// Guard for simulated events was moved to jQuery.event.stopPropagation function\n\t\t\t\t// since `originalEvent` should point to the original event for the\n\t\t\t\t// constancy with other events and for more focused logic\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\n\t\tif ( e.isDefaultPrevented() ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n};\n\njQuery.removeEvent = document.removeEventListener ?\n\tfunction( elem, type, handle ) {\n\n\t\t// This \"if\" is needed for plain objects\n\t\tif ( elem.removeEventListener ) {\n\t\t\telem.removeEventListener( type, handle );\n\t\t}\n\t} :\n\tfunction( elem, type, handle ) {\n\t\tvar name = \"on\" + type;\n\n\t\tif ( elem.detachEvent ) {\n\n\t\t\t// #8545, #7054, preventing memory leaks for custom events in IE6-8\n\t\t\t// detachEvent needed property on element, by name of that event,\n\t\t\t// to properly expose it to GC\n\t\t\tif ( typeof elem[ name ] === \"undefined\" ) {\n\t\t\t\telem[ name ] = null;\n\t\t\t}\n\n\t\t\telem.detachEvent( name, handle );\n\t\t}\n\t};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: IE < 9, Android < 4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\t\tif ( !e ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If preventDefault exists, run it on the original event\n\t\tif ( e.preventDefault ) {\n\t\t\te.preventDefault();\n\n\t\t// Support: IE\n\t\t// Otherwise set the returnValue property of the original event to false\n\t\t} else {\n\t\t\te.returnValue = false;\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( !e || this.isSimulated ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If stopPropagation exists, run it on the original event\n\t\tif ( e.stopPropagation ) {\n\t\t\te.stopPropagation();\n\t\t}\n\n\t\t// Support: IE\n\t\t// Set the cancelBubble property of the original event to true\n\t\te.cancelBubble = true;\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && e.stopImmediatePropagation ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://code.google.com/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\n// IE submit delegation\nif ( !support.submit ) {\n\n\tjQuery.event.special.submit = {\n\t\tsetup: function() {\n\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Lazy-add a submit handler when a descendant form may potentially be submitted\n\t\t\tjQuery.event.add( this, \"click._submit keypress._submit\", function( e ) {\n\n\t\t\t\t// Node name check avoids a VML-related crash in IE (#9807)\n\t\t\t\tvar elem = e.target,\n\t\t\t\t\tform = jQuery.nodeName( elem, \"input\" ) || jQuery.nodeName( elem, \"button\" ) ?\n\n\t\t\t\t\t\t// Support: IE <=8\n\t\t\t\t\t\t// We use jQuery.prop instead of elem.form\n\t\t\t\t\t\t// to allow fixing the IE8 delegated submit issue (gh-2332)\n\t\t\t\t\t\t// by 3rd party polyfills/workarounds.\n\t\t\t\t\t\tjQuery.prop( elem, \"form\" ) :\n\t\t\t\t\t\tundefined;\n\n\t\t\t\tif ( form && !jQuery._data( form, \"submit\" ) ) {\n\t\t\t\t\tjQuery.event.add( form, \"submit._submit\", function( event ) {\n\t\t\t\t\t\tevent._submitBubble = true;\n\t\t\t\t\t} );\n\t\t\t\t\tjQuery._data( form, \"submit\", true );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// return undefined since we don't need an event listener\n\t\t},\n\n\t\tpostDispatch: function( event ) {\n\n\t\t\t// If form was submitted by the user, bubble the event up the tree\n\t\t\tif ( event._submitBubble ) {\n\t\t\t\tdelete event._submitBubble;\n\t\t\t\tif ( this.parentNode && !event.isTrigger ) {\n\t\t\t\t\tjQuery.event.simulate( \"submit\", this.parentNode, event );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\n\t\t\t// Only need this for delegated form submit events\n\t\t\tif ( jQuery.nodeName( this, \"form\" ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Remove delegated handlers; cleanData eventually reaps submit handlers attached above\n\t\t\tjQuery.event.remove( this, \"._submit\" );\n\t\t}\n\t};\n}\n\n// IE change delegation and checkbox/radio fix\nif ( !support.change ) {\n\n\tjQuery.event.special.change = {\n\n\t\tsetup: function() {\n\n\t\t\tif ( rformElems.test( this.nodeName ) ) {\n\n\t\t\t\t// IE doesn't fire change on a check/radio until blur; trigger it on click\n\t\t\t\t// after a propertychange. Eat the blur-change in special.change.handle.\n\t\t\t\t// This still fires onchange a second time for check/radio after blur.\n\t\t\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t\t\tjQuery.event.add( this, \"propertychange._change\", function( event ) {\n\t\t\t\t\t\tif ( event.originalEvent.propertyName === \"checked\" ) {\n\t\t\t\t\t\t\tthis._justChanged = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\t\t\t\t\tjQuery.event.add( this, \"click._change\", function( event ) {\n\t\t\t\t\t\tif ( this._justChanged && !event.isTrigger ) {\n\t\t\t\t\t\t\tthis._justChanged = false;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Allow triggered, simulated change events (#11500)\n\t\t\t\t\t\tjQuery.event.simulate( \"change\", this, event );\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Delegated event; lazy-add a change handler on descendant inputs\n\t\t\tjQuery.event.add( this, \"beforeactivate._change\", function( e ) {\n\t\t\t\tvar elem = e.target;\n\n\t\t\t\tif ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, \"change\" ) ) {\n\t\t\t\t\tjQuery.event.add( elem, \"change._change\", function( event ) {\n\t\t\t\t\t\tif ( this.parentNode && !event.isSimulated && !event.isTrigger ) {\n\t\t\t\t\t\t\tjQuery.event.simulate( \"change\", this.parentNode, event );\n\t\t\t\t\t\t}\n\t\t\t\t\t} );\n\t\t\t\t\tjQuery._data( elem, \"change\", true );\n\t\t\t\t}\n\t\t\t} );\n\t\t},\n\n\t\thandle: function( event ) {\n\t\t\tvar elem = event.target;\n\n\t\t\t// Swallow native change events from checkbox/radio, we already triggered them above\n\t\t\tif ( this !== elem || event.isSimulated || event.isTrigger ||\n\t\t\t\t( elem.type !== \"radio\" && elem.type !== \"checkbox\" ) ) {\n\n\t\t\t\treturn event.handleObj.handler.apply( this, arguments );\n\t\t\t}\n\t\t},\n\n\t\tteardown: function() {\n\t\t\tjQuery.event.remove( this, \"._change\" );\n\n\t\t\treturn !rformElems.test( this.nodeName );\n\t\t}\n\t};\n}\n\n// Support: Firefox\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome, Safari\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tjQuery._data( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = jQuery._data( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tjQuery._removeData( doc, fix );\n\t\t\t\t} else {\n\t\t\t\t\tjQuery._data( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\n\njQuery.fn.extend( {\n\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t},\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\nvar rinlinejQuery = / jQuery\\d+=\"(?:null|\\d+)\"/g,\n\trnoshimcache = new RegExp( \"<(?:\" + nodeNames + \")[\\\\s/>]\", \"i\" ),\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:-]+)[^>]*)\\/>/gi,\n\n\t// Support: IE 10-11, Edge 10240+\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,\n\tsafeFragment = createSafeFragment( document ),\n\tfragmentDiv = safeFragment.appendChild( document.createElement( \"div\" ) );\n\n// Support: IE<8\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName( \"tbody\" )[ 0 ] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement( \"tbody\" ) ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( jQuery.find.attr( elem, \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\tif ( match ) {\n\t\telem.type = match[ 1 ];\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tif ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {\n\t\treturn;\n\t}\n\n\tvar type, i, l,\n\t\toldData = jQuery._data( src ),\n\t\tcurData = jQuery._data( dest, oldData ),\n\t\tevents = oldData.events;\n\n\tif ( events ) {\n\t\tdelete curData.handle;\n\t\tcurData.events = {};\n\n\t\tfor ( type in events ) {\n\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t}\n\t\t}\n\t}\n\n\t// make the cloned public data object a copy from the original\n\tif ( curData.data ) {\n\t\tcurData.data = jQuery.extend( {}, curData.data );\n\t}\n}\n\nfunction fixCloneNodeIssues( src, dest ) {\n\tvar nodeName, e, data;\n\n\t// We do not need to do anything for non-Elements\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\tnodeName = dest.nodeName.toLowerCase();\n\n\t// IE6-8 copies events bound via attachEvent when using cloneNode.\n\tif ( !support.noCloneEvent && dest[ jQuery.expando ] ) {\n\t\tdata = jQuery._data( dest );\n\n\t\tfor ( e in data.events ) {\n\t\t\tjQuery.removeEvent( dest, e, data.handle );\n\t\t}\n\n\t\t// Event data gets referenced instead of copied if the expando gets copied too\n\t\tdest.removeAttribute( jQuery.expando );\n\t}\n\n\t// IE blanks contents when cloning scripts, and tries to evaluate newly-set text\n\tif ( nodeName === \"script\" && dest.text !== src.text ) {\n\t\tdisableScript( dest ).text = src.text;\n\t\trestoreScript( dest );\n\n\t// IE6-10 improperly clones children of object elements using classid.\n\t// IE10 throws NoModificationAllowedError if parent is null, #12132.\n\t} else if ( nodeName === \"object\" ) {\n\t\tif ( dest.parentNode ) {\n\t\t\tdest.outerHTML = src.outerHTML;\n\t\t}\n\n\t\t// This path appears unavoidable for IE9. When cloning an object\n\t\t// element in IE9, the outerHTML strategy above is not sufficient.\n\t\t// If the src has innerHTML and the destination does not,\n\t\t// copy the src.innerHTML into the dest.innerHTML. #10324\n\t\tif ( support.html5Clone && ( src.innerHTML && !jQuery.trim( dest.innerHTML ) ) ) {\n\t\t\tdest.innerHTML = src.innerHTML;\n\t\t}\n\n\t} else if ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\n\t\t// IE6-8 fails to persist the checked state of a cloned checkbox\n\t\t// or radio button. Worse, IE6-7 fail to give the cloned element\n\t\t// a checked appearance if the defaultChecked value isn't also set\n\n\t\tdest.defaultChecked = dest.checked = src.checked;\n\n\t\t// IE6-7 get confused and end up setting the value of a cloned\n\t\t// checkbox/radio button to an empty string instead of \"on\"\n\t\tif ( dest.value !== src.value ) {\n\t\t\tdest.value = src.value;\n\t\t}\n\n\t// IE6-8 fails to return the selected option to the default selected\n\t// state when cloning options\n\t} else if ( nodeName === \"option\" ) {\n\t\tdest.defaultSelected = dest.selected = src.defaultSelected;\n\n\t// IE6-8 fails to set the defaultValue to the correct value when\n\t// cloning other types of input fields\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = concat.apply( [], args );\n\n\tvar first, node, hasScripts,\n\t\tscripts, doc, fragment,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tisFunction = jQuery.isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( isFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( isFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!jQuery._data( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tjQuery.globalEval(\n\t\t\t\t\t\t\t\t( node.text || node.textContent || node.innerHTML || \"\" )\n\t\t\t\t\t\t\t\t\t.replace( rcleanScript, \"\" )\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Fix #11809: Avoid leaking memory\n\t\t\tfragment = first = null;\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\telems = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = elems[ i ] ) != null; i++ ) {\n\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && jQuery.contains( node.ownerDocument, node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html.replace( rxhtmlTag, \"<$1></$2>\" );\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar destElements, node, clone, i, srcElements,\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\tif ( support.html5Clone || jQuery.isXMLDoc( elem ) ||\n\t\t\t!rnoshimcache.test( \"<\" + elem.nodeName + \">\" ) ) {\n\n\t\t\tclone = elem.cloneNode( true );\n\n\t\t// IE<=8 does not properly clone detached, unknown element nodes\n\t\t} else {\n\t\t\tfragmentDiv.innerHTML = elem.outerHTML;\n\t\t\tfragmentDiv.removeChild( clone = fragmentDiv.firstChild );\n\t\t}\n\n\t\tif ( ( !support.noCloneEvent || !support.noCloneChecked ) &&\n\t\t\t\t( elem.nodeType === 1 || elem.nodeType === 11 ) && !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\t// Fix all IE cloning issues\n\t\t\tfor ( i = 0; ( node = srcElements[ i ] ) != null; ++i ) {\n\n\t\t\t\t// Ensure that the destination node is not null; Fixes #9587\n\t\t\t\tif ( destElements[ i ] ) {\n\t\t\t\t\tfixCloneNodeIssues( node, destElements[ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0; ( node = srcElements[ i ] ) != null; i++ ) {\n\t\t\t\t\tcloneCopyEvent( node, destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\tdestElements = srcElements = node = null;\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems, /* internal */ forceAcceptData ) {\n\t\tvar elem, type, id, data,\n\t\t\ti = 0,\n\t\t\tinternalKey = jQuery.expando,\n\t\t\tcache = jQuery.cache,\n\t\t\tattributes = support.attributes,\n\t\t\tspecial = jQuery.event.special;\n\n\t\tfor ( ; ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\tif ( forceAcceptData || acceptData( elem ) ) {\n\n\t\t\t\tid = elem[ internalKey ];\n\t\t\t\tdata = id && cache[ id ];\n\n\t\t\t\tif ( data ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Remove cache only if it was not already removed by jQuery.event.remove\n\t\t\t\t\tif ( cache[ id ] ) {\n\n\t\t\t\t\t\tdelete cache[ id ];\n\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE does not allow us to delete expando properties from nodes\n\t\t\t\t\t\t// IE creates expando attributes along with the property\n\t\t\t\t\t\t// IE does not have a removeAttribute function on Document nodes\n\t\t\t\t\t\tif ( !attributes && typeof elem.removeAttribute !== \"undefined\" ) {\n\t\t\t\t\t\t\telem.removeAttribute( internalKey );\n\n\t\t\t\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t\t\t\t// https://code.google.com/p/chromium/issues/detail?id=378607\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\telem[ internalKey ] = undefined;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdeletedIds.push( id );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\n\t// Keep domManip exposed until 3.0 (gh-2225)\n\tdomManip: domManip,\n\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().append(\n\t\t\t\t\t( this[ 0 ] && this[ 0 ].ownerDocument || document ).createTextNode( value )\n\t\t\t\t);\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\n\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t}\n\n\t\t\t// Remove any remaining nodes\n\t\t\twhile ( elem.firstChild ) {\n\t\t\t\telem.removeChild( elem.firstChild );\n\t\t\t}\n\n\t\t\t// If this is a select, ensure that it displays empty (#12336)\n\t\t\t// Support: IE<9\n\t\t\tif ( elem.options && jQuery.nodeName( elem, \"select\" ) ) {\n\t\t\t\telem.options.length = 0;\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined ) {\n\t\t\t\treturn elem.nodeType === 1 ?\n\t\t\t\t\telem.innerHTML.replace( rinlinejQuery, \"\" ) :\n\t\t\t\t\tundefined;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t( support.htmlSerialize || !rnoshimcache.test( value )  ) &&\n\t\t\t\t( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\telem = this[ i ] || {};\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\ti = 0,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get()\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\n\n\nvar iframe,\n\telemdisplay = {\n\n\t\t// Support: Firefox\n\t\t// We have to pre-define these values for FF (#10227)\n\t\tHTML: \"block\",\n\t\tBODY: \"block\"\n\t};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\tdisplay = jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = ( iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" ) )\n\t\t\t\t.appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = ( iframe[ 0 ].contentWindow || iframe[ 0 ].contentDocument ).document;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\nvar rmargin = ( /^margin/ );\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar documentElement = document.documentElement;\n\n\n\n( function() {\n\tvar pixelPositionVal, pixelMarginRightVal, boxSizingReliableVal,\n\t\treliableHiddenOffsetsVal, reliableMarginRightVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\tdiv.style.cssText = \"float:left;opacity:.5\";\n\n\t// Support: IE<9\n\t// Make sure that element opacity exists (as opposed to filter)\n\tsupport.opacity = div.style.opacity === \"0.5\";\n\n\t// Verify style float existence\n\t// (IE uses styleFloat instead of cssFloat)\n\tsupport.cssFloat = !!div.style.cssFloat;\n\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tcontainer = document.createElement( \"div\" );\n\tcontainer.style.cssText = \"border:0;width:8px;height:0;top:0;left:-9999px;\" +\n\t\t\"padding:0;margin-top:1px;position:absolute\";\n\tdiv.innerHTML = \"\";\n\tcontainer.appendChild( div );\n\n\t// Support: Firefox<29, Android 2.3\n\t// Vendor-prefix box-sizing\n\tsupport.boxSizing = div.style.boxSizing === \"\" || div.style.MozBoxSizing === \"\" ||\n\t\tdiv.style.WebkitBoxSizing === \"\";\n\n\tjQuery.extend( support, {\n\t\treliableHiddenOffsets: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableHiddenOffsetsVal;\n\t\t},\n\n\t\tboxSizingReliable: function() {\n\n\t\t\t// We're checking for pixelPositionVal here instead of boxSizingReliableVal\n\t\t\t// since that compresses better and they're computed together anyway.\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\n\t\tpixelMarginRight: function() {\n\n\t\t\t// Support: Android 4.0-4.3\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelMarginRightVal;\n\t\t},\n\n\t\tpixelPosition: function() {\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelPositionVal;\n\t\t},\n\n\t\treliableMarginRight: function() {\n\n\t\t\t// Support: Android 2.3\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginRightVal;\n\t\t},\n\n\t\treliableMarginLeft: function() {\n\n\t\t\t// Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37\n\t\t\tif ( pixelPositionVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginLeftVal;\n\t\t}\n\t} );\n\n\tfunction computeStyleTests() {\n\t\tvar contents, divStyle,\n\t\t\tdocumentElement = document.documentElement;\n\n\t\t// Setup\n\t\tdocumentElement.appendChild( container );\n\n\t\tdiv.style.cssText =\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;box-sizing:border-box;\" +\n\t\t\t\"position:relative;display:block;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"top:1%;width:50%\";\n\n\t\t// Support: IE<9\n\t\t// Assume reasonable values in the absence of getComputedStyle\n\t\tpixelPositionVal = boxSizingReliableVal = reliableMarginLeftVal = false;\n\t\tpixelMarginRightVal = reliableMarginRightVal = true;\n\n\t\t// Check for getComputedStyle so that this code is not run in IE<9.\n\t\tif ( window.getComputedStyle ) {\n\t\t\tdivStyle = window.getComputedStyle( div );\n\t\t\tpixelPositionVal = ( divStyle || {} ).top !== \"1%\";\n\t\t\treliableMarginLeftVal = ( divStyle || {} ).marginLeft === \"2px\";\n\t\t\tboxSizingReliableVal = ( divStyle || { width: \"4px\" } ).width === \"4px\";\n\n\t\t\t// Support: Android 4.0 - 4.3 only\n\t\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\t\tdiv.style.marginRight = \"50%\";\n\t\t\tpixelMarginRightVal = ( divStyle || { marginRight: \"4px\" } ).marginRight === \"4px\";\n\n\t\t\t// Support: Android 2.3 only\n\t\t\t// Div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\tcontents = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tcontents.style.cssText = div.style.cssText =\n\n\t\t\t\t// Support: Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;\" +\n\t\t\t\t\"box-sizing:content-box;display:block;margin:0;border:0;padding:0\";\n\t\t\tcontents.style.marginRight = contents.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\n\t\t\treliableMarginRightVal =\n\t\t\t\t!parseFloat( ( window.getComputedStyle( contents ) || {} ).marginRight );\n\n\t\t\tdiv.removeChild( contents );\n\t\t}\n\n\t\t// Support: IE6-8\n\t\t// First check that getClientRects works as expected\n\t\t// Check if table cells still have offsetWidth/Height when they are set\n\t\t// to display:none and there are still other visible table cells in a\n\t\t// table row; if so, offsetWidth/Height are not reliable for use when\n\t\t// determining if an element has been hidden directly using\n\t\t// display:none (it is still safe to use offsets if a parent element is\n\t\t// hidden; don safety goggles and see bug #4512 for more information).\n\t\tdiv.style.display = \"none\";\n\t\treliableHiddenOffsetsVal = div.getClientRects().length === 0;\n\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\tdiv.style.display = \"\";\n\t\t\tdiv.innerHTML = \"<table><tr><td></td><td>t</td></tr></table>\";\n\t\t\tdiv.childNodes[ 0 ].style.borderCollapse = \"separate\";\n\t\t\tcontents = div.getElementsByTagName( \"td\" );\n\t\t\tcontents[ 0 ].style.cssText = \"margin:0;border:0;padding:0;display:none\";\n\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t\tif ( reliableHiddenOffsetsVal ) {\n\t\t\t\tcontents[ 0 ].style.display = \"\";\n\t\t\t\tcontents[ 1 ].style.display = \"none\";\n\t\t\t\treliableHiddenOffsetsVal = contents[ 0 ].offsetHeight === 0;\n\t\t\t}\n\t\t}\n\n\t\t// Teardown\n\t\tdocumentElement.removeChild( container );\n\t}\n\n} )();\n\n\nvar getStyles, curCSS,\n\trposition = /^(top|right|bottom|left)$/;\n\nif ( window.getComputedStyle ) {\n\tgetStyles = function( elem ) {\n\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar width, minWidth, maxWidth, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\n\t\t// getPropertyValue is only needed for .css('filter') in IE9, see #12537\n\t\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t\t// Support: Opera 12.1x only\n\t\t// Fall back to style even without computed\n\t\t// computed is undefined for elems on document fragments\n\t\tif ( ( ret === \"\" || ret === undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\t\tret = jQuery.style( elem, name );\n\t\t}\n\n\t\tif ( computed ) {\n\n\t\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t\t// Chrome < 17 and Safari 5.0 uses \"computed value\"\n\t\t\t// instead of \"used value\" for margin-right\n\t\t\t// Safari 5.1.7 (at least) returns percentage for a larger set of values,\n\t\t\t// but width seems to be reliably pixels\n\t\t\t// this is against the CSSOM draft spec:\n\t\t\t// http://dev.w3.org/csswg/cssom/#resolved-values\n\t\t\tif ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t\t// Remember the original values\n\t\t\t\twidth = style.width;\n\t\t\t\tminWidth = style.minWidth;\n\t\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t\t// Put in the new values to get a computed value out\n\t\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\t\tret = computed.width;\n\n\t\t\t\t// Revert the changed values\n\t\t\t\tstyle.width = width;\n\t\t\t\tstyle.minWidth = minWidth;\n\t\t\t\tstyle.maxWidth = maxWidth;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\";\n\t};\n} else if ( documentElement.currentStyle ) {\n\tgetStyles = function( elem ) {\n\t\treturn elem.currentStyle;\n\t};\n\n\tcurCSS = function( elem, name, computed ) {\n\t\tvar left, rs, rsLeft, ret,\n\t\t\tstyle = elem.style;\n\n\t\tcomputed = computed || getStyles( elem );\n\t\tret = computed ? computed[ name ] : undefined;\n\n\t\t// Avoid setting ret to empty string here\n\t\t// so we don't default to auto\n\t\tif ( ret == null && style && style[ name ] ) {\n\t\t\tret = style[ name ];\n\t\t}\n\n\t\t// From the awesome hack by Dean Edwards\n\t\t// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291\n\n\t\t// If we're not dealing with a regular pixel number\n\t\t// but a number that has a weird ending, we need to convert it to pixels\n\t\t// but not position css attributes, as those are\n\t\t// proportional to the parent element instead\n\t\t// and we can't measure the parent instead because it\n\t\t// might trigger a \"stacking dolls\" problem\n\t\tif ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\tleft = style.left;\n\t\t\trs = elem.runtimeStyle;\n\t\t\trsLeft = rs && rs.left;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = elem.currentStyle.left;\n\t\t\t}\n\t\t\tstyle.left = name === \"fontSize\" ? \"1em\" : ret;\n\t\t\tret = style.pixelLeft + \"px\";\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.left = left;\n\t\t\tif ( rsLeft ) {\n\t\t\t\trs.left = rsLeft;\n\t\t\t}\n\t\t}\n\n\t\t// Support: IE\n\t\t// IE returns zIndex value as an integer.\n\t\treturn ret === undefined ?\n\t\t\tret :\n\t\t\tret + \"\" || \"auto\";\n\t};\n}\n\n\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar\n\n\t\tralpha = /alpha\\([^)]*\\)/i,\n\tropacity = /opacity\\s*=\\s*([^)]*)/i,\n\n\t// swappable if display is none or starts with table except\n\t// \"table\", \"table-cell\", or \"table-caption\"\n\t// see here for display values:\n\t// https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\trnumsplit = new RegExp( \"^(\" + pnum + \")(.*)$\", \"i\" ),\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style;\n\n\n// return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( name ) {\n\n\t// shortcut for names that are not vendor prefixed\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\n\t// check for vendor prefixed names\n\tvar capName = name.charAt( 0 ).toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = jQuery._data( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] =\n\t\t\t\t\tjQuery._data( elem, \"olddisplay\", defaultDisplay( elem.nodeName ) );\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display && display !== \"none\" || !hidden ) {\n\t\t\t\tjQuery._data(\n\t\t\t\t\telem,\n\t\t\t\t\t\"olddisplay\",\n\t\t\t\t\thidden ? display : jQuery.css( elem, \"display\" )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\tvar matches = rnumsplit.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// at this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\n\t\t\t// at this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// at this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = support.boxSizing &&\n\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test( val ) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// we need the check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox &&\n\t\t\t( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\n\t\t// normalize float css property\n\t\t\"float\": support.cssFloat ? \"cssFloat\" : \"styleFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] ||\n\t\t\t( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set. See: #7116\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\tif ( type === \"number\" ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// Fixes #8908, it can be done more correctly by specifing setters in cssHooks,\n\t\t\t// but it would mean to define eight\n\t\t\t// (for every problematic property) identical functions\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\t// Support: IE\n\t\t\t\t// Swallow errors from 'invalid' CSS values (#5509)\n\t\t\t\ttry {\n\t\t\t\t\tstyle[ name ] = value;\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar num, val, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] ||\n\t\t\t( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );\n\n\t\t// gets hook for the prefixed version\n\t\t// followed by the unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t//convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Return, converting to number if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// certain elements can have dimension info if we invisibly show them\n\t\t\t\t// however, it must have a current display style that would benefit from this\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\t\t\t\t\telem.offsetWidth === 0 ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar styles = extra && getStyles( elem );\n\t\t\treturn setPositiveNumber( elem, value, extra ?\n\t\t\t\taugmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tsupport.boxSizing &&\n\t\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t) : 0\n\t\t\t);\n\t\t}\n\t};\n} );\n\nif ( !support.opacity ) {\n\tjQuery.cssHooks.opacity = {\n\t\tget: function( elem, computed ) {\n\n\t\t\t// IE uses filters for opacity\n\t\t\treturn ropacity.test( ( computed && elem.currentStyle ?\n\t\t\t\telem.currentStyle.filter :\n\t\t\t\telem.style.filter ) || \"\" ) ?\n\t\t\t\t\t( 0.01 * parseFloat( RegExp.$1 ) ) + \"\" :\n\t\t\t\t\tcomputed ? \"1\" : \"\";\n\t\t},\n\n\t\tset: function( elem, value ) {\n\t\t\tvar style = elem.style,\n\t\t\t\tcurrentStyle = elem.currentStyle,\n\t\t\t\topacity = jQuery.isNumeric( value ) ? \"alpha(opacity=\" + value * 100 + \")\" : \"\",\n\t\t\t\tfilter = currentStyle && currentStyle.filter || style.filter || \"\";\n\n\t\t\t// IE has trouble with opacity if it does not have layout\n\t\t\t// Force it by setting the zoom level\n\t\t\tstyle.zoom = 1;\n\n\t\t\t// if setting opacity to 1, and no other filters exist -\n\t\t\t// attempt to remove filter attribute #6652\n\t\t\t// if value === \"\", then remove inline opacity #12685\n\t\t\tif ( ( value >= 1 || value === \"\" ) &&\n\t\t\t\t\tjQuery.trim( filter.replace( ralpha, \"\" ) ) === \"\" &&\n\t\t\t\t\tstyle.removeAttribute ) {\n\n\t\t\t\t// Setting style.filter to null, \"\" & \" \" still leave \"filter:\" in the cssText\n\t\t\t\t// if \"filter:\" is present at all, clearType is disabled, we want to avoid this\n\t\t\t\t// style.removeAttribute is IE Only, but so apparently is this code path...\n\t\t\t\tstyle.removeAttribute( \"filter\" );\n\n\t\t\t\t// if there is no filter style applied in a css rule\n\t\t\t\t// or unset inline opacity, we are done\n\t\t\t\tif ( value === \"\" || currentStyle && !currentStyle.filter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// otherwise, set new filter values\n\t\t\tstyle.filter = ralpha.test( filter ) ?\n\t\t\t\tfilter.replace( ralpha, opacity ) :\n\t\t\t\tfilter + \" \" + opacity;\n\t\t}\n\t};\n}\n\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn (\n\t\t\t\tparseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\n\t\t\t\t// Support: IE<=11+\n\t\t\t\t// Running getBoundingClientRect on a disconnected node in IE throws an error\n\t\t\t\t// Support: IE8 only\n\t\t\t\t// getClientRects() errors on disconnected elems\n\t\t\t\t( jQuery.contains( elem.ownerDocument, elem ) ?\n\t\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t0\n\t\t\t\t)\n\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails\n\t\t\t// so, simple values such as \"10px\" are parsed to Float.\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// use step hook for back compat - use cssHook if its there - use .style if its\n\t\t\t// available and use plain properties where available\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 &&\n\t\t\t\t( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE <=9\n// Panic based approach to setting things on disconnected nodes\n\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\tattrs = { height: type },\n\t\ti = 0;\n\n\t// if we include width, step value is 1 to do all cssExpand values,\n\t// if we don't include width, step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// we're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = jQuery._data( elem, \"fxshow\" );\n\n\t// handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// doing this makes sure that the complete handler will be called\n\t\t\t// before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE does not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tjQuery._data( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\n\t\t\t// inline-level elements accept inline-block;\n\t\t\t// block-level elements need to be inline with layout\n\t\t\tif ( !support.inlineBlockNeedsLayout || defaultDisplay( elem.nodeName ) === \"inline\" ) {\n\t\t\t\tstyle.display = \"inline-block\";\n\t\t\t} else {\n\t\t\t\tstyle.zoom = 1;\n\t\t\t}\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tif ( !support.shrinkWrapBlocks() ) {\n\t\t\tanim.always( function() {\n\t\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t\t} );\n\t\t}\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show\n\t\t\t\t// and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = jQuery._data( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done( function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t} );\n\t\t}\n\t\tanim.done( function() {\n\t\t\tvar prop;\n\t\t\tjQuery._removeData( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t} );\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( ( display === \"none\" ? defaultDisplay( elem.nodeName ) : display ) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// not quite $.extend, this wont overwrite keys already present.\n\t\t\t// also - reusing 'index' from above because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// if we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// resolve when we played the last frame\n\t\t\t\t// otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( jQuery.isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tjQuery.proxy( result.stop, result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnotwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ? opt.duration :\n\t\topt.duration in jQuery.fx.speeds ?\n\t\t\tjQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || jQuery._data( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = jQuery._data( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// start the next in the queue if the last step wasn't forced\n\t\t\t// timers currently will call their complete callbacks, which will dequeue\n\t\t\t// but only if they were gotoEnd\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = jQuery._data( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ttimers = jQuery.timers,\n\t\ti = 0;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\n\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\twindow.clearInterval( timerId );\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar a,\n\t\tinput = document.createElement( \"input\" ),\n\t\tdiv = document.createElement( \"div\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\t// Setup\n\tdiv = document.createElement( \"div\" );\n\tdiv.setAttribute( \"className\", \"t\" );\n\tdiv.innerHTML = \"  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>\";\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\n\t// Support: Windows Web Apps (WWA)\n\t// `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"checkbox\" );\n\tdiv.appendChild( input );\n\n\ta = div.getElementsByTagName( \"a\" )[ 0 ];\n\n\t// First batch of tests.\n\ta.style.cssText = \"top:1px\";\n\n\t// Test setAttribute on camelCase class.\n\t// If it works, we need attrFixes when doing get/setAttribute (ie6/7)\n\tsupport.getSetAttribute = div.className !== \"t\";\n\n\t// Get the style information from getAttribute\n\t// (IE uses .cssText instead)\n\tsupport.style = /top/.test( a.getAttribute( \"style\" ) );\n\n\t// Make sure that URLs aren't manipulated\n\t// (IE normalizes it by default)\n\tsupport.hrefNormalized = a.getAttribute( \"href\" ) === \"/a\";\n\n\t// Check the default checkbox/radio value (\"\" on WebKit; \"on\" elsewhere)\n\tsupport.checkOn = !!input.value;\n\n\t// Make sure that a selected-by-default option has a working selected property.\n\t// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)\n\tsupport.optSelected = opt.selected;\n\n\t// Tests for enctype support on a form (#6743)\n\tsupport.enctype = !!document.createElement( \"form\" ).enctype;\n\n\t// Make sure that the options inside disabled selects aren't marked as disabled\n\t// (WebKit marks them as disabled)\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE8 only\n\t// Check if we can trust getAttribute(\"value\")\n\tinput = document.createElement( \"input\" );\n\tinput.setAttribute( \"value\", \"\" );\n\tsupport.input = input.getAttribute( \"value\" ) === \"\";\n\n\t// Check if an input maintains its value after becoming a radio\n\tinput.value = \"t\";\n\tinput.setAttribute( \"type\", \"radio\" );\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar rreturn = /\\r/g,\n\trspaces = /[\\x20\\t\\r\\n\\f]+/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif (\n\t\t\t\t\thooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\n\t\t\t\t\t// handle most common string cases\n\t\t\t\t\tret.replace( rreturn, \"\" ) :\n\n\t\t\t\t\t// handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) ).replace( rspaces, \" \" );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// oldIE doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ?\n\t\t\t\t\t\t\t\t!option.disabled :\n\t\t\t\t\t\t\t\toption.getAttribute( \"disabled\" ) === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\tif ( jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 ) {\n\n\t\t\t\t\t\t// Support: IE6\n\t\t\t\t\t\t// When new option element is added to select box we need to\n\t\t\t\t\t\t// force reflow of newly added node in order to workaround delay\n\t\t\t\t\t\t// of initialization properties\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\toption.selected = optionSet = true;\n\n\t\t\t\t\t\t} catch ( _ ) {\n\n\t\t\t\t\t\t\t// Will be executed only in IE6\n\t\t\t\t\t\t\toption.scrollHeight;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\toption.selected = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\n\t\t\t\treturn options;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\nvar nodeHook, boolHook,\n\tattrHandle = jQuery.expr.attrHandle,\n\truseDefault = /^(?:checked|selected)$/i,\n\tgetSetAttribute = support.getSetAttribute,\n\tgetSetInput = support.input;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tjQuery.nodeName( elem, \"input\" ) ) {\n\n\t\t\t\t\t// Setting the type on a radio button after the value resets the value in IE8-9\n\t\t\t\t\t// Reset value to default in case type is set after value during creation\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\t\t\t\t\telem[ propName ] = false;\n\n\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t// Also clear defaultChecked/defaultSelected (if appropriate)\n\t\t\t\t\t} else {\n\t\t\t\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] =\n\t\t\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t\t}\n\n\t\t\t\t// See #9699 for explanation of this approach (setting first, then removal)\n\t\t\t\t} else {\n\t\t\t\t\tjQuery.attr( elem, name, \"\" );\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( getSetAttribute ? name : propName );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\n\t\t\t// IE<8 needs the *property* name\n\t\t\telem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );\n\n\t\t} else {\n\n\t\t\t// Support: IE<9\n\t\t\t// Use defaultChecked and defaultSelected for oldIE\n\t\t\telem[ jQuery.camelCase( \"default-\" + name ) ] = elem[ name ] = true;\n\t\t}\n\t\treturn name;\n\t}\n};\n\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tif ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {\n\t\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\t\tvar ret, handle;\n\t\t\tif ( !isXML ) {\n\n\t\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\t\thandle = attrHandle[ name ];\n\t\t\t\tattrHandle[ name ] = ret;\n\t\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t\tattrHandle[ name ] = handle;\n\t\t\t}\n\t\t\treturn ret;\n\t\t};\n\t} else {\n\t\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn elem[ jQuery.camelCase( \"default-\" + name ) ] ?\n\t\t\t\t\tname.toLowerCase() :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\t}\n} );\n\n// fix oldIE attroperties\nif ( !getSetInput || !getSetAttribute ) {\n\tjQuery.attrHooks.value = {\n\t\tset: function( elem, value, name ) {\n\t\t\tif ( jQuery.nodeName( elem, \"input\" ) ) {\n\n\t\t\t\t// Does not return so that setAttribute is also used\n\t\t\t\telem.defaultValue = value;\n\t\t\t} else {\n\n\t\t\t\t// Use nodeHook if defined (#1954); otherwise setAttribute is fine\n\t\t\t\treturn nodeHook && nodeHook.set( elem, value, name );\n\t\t\t}\n\t\t}\n\t};\n}\n\n// IE6/7 do not support getting/setting some attributes with get/setAttribute\nif ( !getSetAttribute ) {\n\n\t// Use this for any attribute in IE6/7\n\t// This fixes almost every IE6/7 issue\n\tnodeHook = {\n\t\tset: function( elem, value, name ) {\n\n\t\t\t// Set the existing or create a new attribute node\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( !ret ) {\n\t\t\t\telem.setAttributeNode(\n\t\t\t\t\t( ret = elem.ownerDocument.createAttribute( name ) )\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tret.value = value += \"\";\n\n\t\t\t// Break association with cloned elements by also using setAttribute (#9646)\n\t\t\tif ( name === \"value\" || value === elem.getAttribute( name ) ) {\n\t\t\t\treturn value;\n\t\t\t}\n\t\t}\n\t};\n\n\t// Some attributes are constructed with empty-string values when not defined\n\tattrHandle.id = attrHandle.name = attrHandle.coords =\n\t\tfunction( elem, name, isXML ) {\n\t\t\tvar ret;\n\t\t\tif ( !isXML ) {\n\t\t\t\treturn ( ret = elem.getAttributeNode( name ) ) && ret.value !== \"\" ?\n\t\t\t\t\tret.value :\n\t\t\t\t\tnull;\n\t\t\t}\n\t\t};\n\n\t// Fixing value retrieval on a button requires this module\n\tjQuery.valHooks.button = {\n\t\tget: function( elem, name ) {\n\t\t\tvar ret = elem.getAttributeNode( name );\n\t\t\tif ( ret && ret.specified ) {\n\t\t\t\treturn ret.value;\n\t\t\t}\n\t\t},\n\t\tset: nodeHook.set\n\t};\n\n\t// Set contenteditable to false on removals(#10429)\n\t// Setting to empty string throws an error as an invalid value\n\tjQuery.attrHooks.contenteditable = {\n\t\tset: function( elem, value, name ) {\n\t\t\tnodeHook.set( elem, value === \"\" ? false : value, name );\n\t\t}\n\t};\n\n\t// Set width and height to auto instead of 0 on empty string( Bug #8150 )\n\t// This is for removals\n\tjQuery.each( [ \"width\", \"height\" ], function( i, name ) {\n\t\tjQuery.attrHooks[ name ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( value === \"\" ) {\n\t\t\t\t\telem.setAttribute( name, \"auto\" );\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\n\nif ( !support.style ) {\n\tjQuery.attrHooks.style = {\n\t\tget: function( elem ) {\n\n\t\t\t// Return undefined in the case of empty string\n\t\t\t// Note: IE uppercases css property names, but if we were to .toLowerCase()\n\t\t\t// .cssText, that would destroy case sensitivity in URL's, like in \"background\"\n\t\t\treturn elem.style.cssText || undefined;\n\t\t},\n\t\tset: function( elem, value ) {\n\t\t\treturn ( elem.style.cssText = value + \"\" );\n\t\t}\n\t};\n}\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button|object)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\tname = jQuery.propFix[ name ] || name;\n\t\treturn this.each( function() {\n\n\t\t\t// try/catch handles cases where IE balks (such as removing a property on window)\n\t\t\ttry {\n\t\t\t\tthis[ name ] = undefined;\n\t\t\t\tdelete this[ name ];\n\t\t\t} catch ( e ) {}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\t\trclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t\t0 :\n\t\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Some attributes require a special call on IE\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !support.hrefNormalized ) {\n\n\t// href/src property should get the full normalized URL (#10299/#12915)\n\tjQuery.each( [ \"href\", \"src\" ], function( i, name ) {\n\t\tjQuery.propHooks[ name ] = {\n\t\t\tget: function( elem ) {\n\t\t\t\treturn elem.getAttribute( name, 4 );\n\t\t\t}\n\t\t};\n\t} );\n}\n\n// Support: Safari, IE9+\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\t// Make sure that it also works with optgroups, see #5701\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n// IE6/7 call enctype encoding\nif ( !support.enctype ) {\n\tjQuery.propFix.enctype = \"encoding\";\n}\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\nfunction getClass( elem ) {\n\treturn jQuery.attr( elem, \"class\" ) || \"\";\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( typeof value === \"string\" && value ) {\n\t\t\tclasses = value.match( rnotwhite ) || [];\n\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 &&\n\t\t\t\t\t( \" \" + curValue + \" \" ).replace( rclass, \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\tjQuery.attr( elem, \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tif ( typeof value === \"string\" && value ) {\n\t\t\tclasses = value.match( rnotwhite ) || [];\n\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 &&\n\t\t\t\t\t( \" \" + curValue + \" \" ).replace( rclass, \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\tjQuery.attr( elem, \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( type === \"string\" ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// store className if set\n\t\t\t\t\tjQuery._data( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed \"false\",\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tjQuery.attr( this, \"class\",\n\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\"\" :\n\t\t\t\t\tjQuery._data( this, \"__className__\" ) || \"\"\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + getClass( elem ) + \" \" ).replace( rclass, \" \" )\n\t\t\t\t\t.indexOf( className ) > -1\n\t\t\t) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\njQuery.each( ( \"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\" ).split( \" \" ),\n\tfunction( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n} );\n\njQuery.fn.extend( {\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\n\nvar location = window.location;\n\nvar nonce = jQuery.now();\n\nvar rquery = ( /\\?/ );\n\n\n\nvar rvalidtokens = /(,)|(\\[|{)|(}|])|\"(?:[^\"\\\\\\r\\n]|\\\\[\"\\\\\\/bfnrt]|\\\\u[\\da-fA-F]{4})*\"\\s*:?|true|false|null|-?(?!0\\d)\\d+(?:\\.\\d+|)(?:[eE][+-]?\\d+|)/g;\n\njQuery.parseJSON = function( data ) {\n\n\t// Attempt to parse using the native JSON parser first\n\tif ( window.JSON && window.JSON.parse ) {\n\n\t\t// Support: Android 2.3\n\t\t// Workaround failure to string-cast null input\n\t\treturn window.JSON.parse( data + \"\" );\n\t}\n\n\tvar requireNonComma,\n\t\tdepth = null,\n\t\tstr = jQuery.trim( data + \"\" );\n\n\t// Guard against invalid (and possibly dangerous) input by ensuring that nothing remains\n\t// after removing valid tokens\n\treturn str && !jQuery.trim( str.replace( rvalidtokens, function( token, comma, open, close ) {\n\n\t\t// Force termination if we see a misplaced comma\n\t\tif ( requireNonComma && comma ) {\n\t\t\tdepth = 0;\n\t\t}\n\n\t\t// Perform no more replacements after returning to outermost depth\n\t\tif ( depth === 0 ) {\n\t\t\treturn token;\n\t\t}\n\n\t\t// Commas must not follow \"[\", \"{\", or \",\"\n\t\trequireNonComma = open || comma;\n\n\t\t// Determine new depth\n\t\t// array/object open (\"[\" or \"{\"): depth += true - false (increment)\n\t\t// array/object close (\"]\" or \"}\"): depth += false - true (decrement)\n\t\t// other cases (\",\" or primitive): depth += true - true (numeric cast)\n\t\tdepth += !close - !open;\n\n\t\t// Remove this token\n\t\treturn \"\";\n\t} ) ) ?\n\t\t( Function( \"return \" + str ) )() :\n\t\tjQuery.error( \"Invalid JSON: \" + data );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml, tmp;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\ttry {\n\t\tif ( window.DOMParser ) { // Standard\n\t\t\ttmp = new window.DOMParser();\n\t\t\txml = tmp.parseFromString( data, \"text/xml\" );\n\t\t} else { // IE\n\t\t\txml = new window.ActiveXObject( \"Microsoft.XMLDOM\" );\n\t\t\txml.async = \"false\";\n\t\t\txml.loadXML( data );\n\t\t}\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\tif ( !xml || !xml.documentElement || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\n\t// IE leaves an \\r character at EOL\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)\\r?$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\trurl = /^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Document location\n\tajaxLocation = location.href,\n\n\t// Segment location into parts\n\tajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType.charAt( 0 ) === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar deep, key,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\tvar firstDataType, ct, finalDataType, type,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s[ \"throws\" ] ) { // jscs:ignore requireDotNotation\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: ajaxLocation,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar\n\n\t\t\t// Cross-domain detection vars\n\t\t\tparts,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers as string\n\t\t\tresponseHeadersString,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\ttransport,\n\n\t\t\t// Response headers\n\t\t\tresponseHeaders,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || ajaxLocation ) + \"\" )\n\t\t\t.replace( rhash, \"\" )\n\t\t\t.replace( rprotocol, ajaxLocParts[ 1 ] + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when we have a protocol:host:port mismatch\n\t\tif ( s.crossDomain == null ) {\n\t\t\tparts = rurl.exec( s.url.toLowerCase() );\n\t\t\ts.crossDomain = !!( parts &&\n\t\t\t\t( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||\n\t\t\t\t\t( parts[ 3 ] || ( parts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) !==\n\t\t\t\t\t\t( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === \"http:\" ? \"80\" : \"443\" ) ) )\n\t\t\t);\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// We extract error from statusText\n\t\t\t\t// then normalize statusText and status for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tcache: true,\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapAll( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( this[ 0 ] ) {\n\n\t\t\t// The elements to wrap the target around\n\t\t\tvar wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstChild && elem.firstChild.nodeType === 1 ) {\n\t\t\t\t\telem = elem.firstChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each( function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t} ).end();\n\t}\n} );\n\n\nfunction getDisplay( elem ) {\n\treturn elem.style && elem.style.display || jQuery.css( elem, \"display\" );\n}\n\nfunction filterHidden( elem ) {\n\n\t// Disconnected elements are considered hidden\n\tif ( !jQuery.contains( elem.ownerDocument || document, elem ) ) {\n\t\treturn true;\n\t}\n\twhile ( elem && elem.nodeType === 1 ) {\n\t\tif ( getDisplay( elem ) === \"none\" || elem.type === \"hidden\" ) {\n\t\t\treturn true;\n\t\t}\n\t\telem = elem.parentNode;\n\t}\n\treturn false;\n}\n\njQuery.expr.filters.hidden = function( elem ) {\n\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\treturn support.reliableHiddenOffsets() ?\n\t\t( elem.offsetWidth <= 0 && elem.offsetHeight <= 0 &&\n\t\t\t!elem.getClientRects().length ) :\n\t\t\tfilterHidden( elem );\n};\n\njQuery.expr.filters.visible = function( elem ) {\n\treturn !jQuery.expr.filters.hidden( elem );\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is(\":disabled\") so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t} ) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\n// Create the request object\n// (This is still attached to ajaxSettings for backward compatibility)\njQuery.ajaxSettings.xhr = window.ActiveXObject !== undefined ?\n\n\t// Support: IE6-IE8\n\tfunction() {\n\n\t\t// XHR cannot access local files, always use ActiveX for that case\n\t\tif ( this.isLocal ) {\n\t\t\treturn createActiveXHR();\n\t\t}\n\n\t\t// Support: IE 9-11\n\t\t// IE seems to error on cross-domain PATCH requests when ActiveX XHR\n\t\t// is used. In IE 9+ always use the native XHR.\n\t\t// Note: this condition won't catch Edge as it doesn't define\n\t\t// document.documentMode but it also doesn't support ActiveX so it won't\n\t\t// reach this code.\n\t\tif ( document.documentMode > 8 ) {\n\t\t\treturn createStandardXHR();\n\t\t}\n\n\t\t// Support: IE<9\n\t\t// oldIE XHR does not support non-RFC2616 methods (#13240)\n\t\t// See http://msdn.microsoft.com/en-us/library/ie/ms536648(v=vs.85).aspx\n\t\t// and http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9\n\t\t// Although this check for six methods instead of eight\n\t\t// since IE also does not support \"trace\" and \"connect\"\n\t\treturn /^(get|post|head|put|delete|options)$/i.test( this.type ) &&\n\t\t\tcreateStandardXHR() || createActiveXHR();\n\t} :\n\n\t// For all other browsers, use the standard XMLHttpRequest object\n\tcreateStandardXHR;\n\nvar xhrId = 0,\n\txhrCallbacks = {},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\n// Support: IE<10\n// Open requests must be manually aborted on unload (#5280)\n// See https://support.microsoft.com/kb/2856746 for more info\nif ( window.attachEvent ) {\n\twindow.attachEvent( \"onunload\", function() {\n\t\tfor ( var key in xhrCallbacks ) {\n\t\t\txhrCallbacks[ key ]( undefined, true );\n\t\t}\n\t} );\n}\n\n// Determine support properties\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nxhrSupported = support.ajax = !!xhrSupported;\n\n// Create transport if the browser can provide an xhr\nif ( xhrSupported ) {\n\n\tjQuery.ajaxTransport( function( options ) {\n\n\t\t// Cross domain only allowed if supported through XMLHttpRequest\n\t\tif ( !options.crossDomain || support.cors ) {\n\n\t\t\tvar callback;\n\n\t\t\treturn {\n\t\t\t\tsend: function( headers, complete ) {\n\t\t\t\t\tvar i,\n\t\t\t\t\t\txhr = options.xhr(),\n\t\t\t\t\t\tid = ++xhrId;\n\n\t\t\t\t\t// Open the socket\n\t\t\t\t\txhr.open(\n\t\t\t\t\t\toptions.type,\n\t\t\t\t\t\toptions.url,\n\t\t\t\t\t\toptions.async,\n\t\t\t\t\t\toptions.username,\n\t\t\t\t\t\toptions.password\n\t\t\t\t\t);\n\n\t\t\t\t\t// Apply custom fields if provided\n\t\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Override mime type if needed\n\t\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t\t}\n\n\t\t\t\t\t// X-Requested-With header\n\t\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t\t}\n\n\t\t\t\t\t// Set headers\n\t\t\t\t\tfor ( i in headers ) {\n\n\t\t\t\t\t\t// Support: IE<9\n\t\t\t\t\t\t// IE's ActiveXObject throws a 'Type Mismatch' exception when setting\n\t\t\t\t\t\t// request header to a null-value.\n\t\t\t\t\t\t//\n\t\t\t\t\t\t// To keep consistent with other XHR implementations, cast the value\n\t\t\t\t\t\t// to string and ignore `undefined`.\n\t\t\t\t\t\tif ( headers[ i ] !== undefined ) {\n\t\t\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] + \"\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// This may raise an exception which is actually\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\txhr.send( ( options.hasContent && options.data ) || null );\n\n\t\t\t\t\t// Listener\n\t\t\t\t\tcallback = function( _, isAbort ) {\n\t\t\t\t\t\tvar status, statusText, responses;\n\n\t\t\t\t\t\t// Was never called and is aborted or complete\n\t\t\t\t\t\tif ( callback && ( isAbort || xhr.readyState === 4 ) ) {\n\n\t\t\t\t\t\t\t// Clean up\n\t\t\t\t\t\t\tdelete xhrCallbacks[ id ];\n\t\t\t\t\t\t\tcallback = undefined;\n\t\t\t\t\t\t\txhr.onreadystatechange = jQuery.noop;\n\n\t\t\t\t\t\t\t// Abort manually if needed\n\t\t\t\t\t\t\tif ( isAbort ) {\n\t\t\t\t\t\t\t\tif ( xhr.readyState !== 4 ) {\n\t\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tresponses = {};\n\t\t\t\t\t\t\t\tstatus = xhr.status;\n\n\t\t\t\t\t\t\t\t// Support: IE<10\n\t\t\t\t\t\t\t\t// Accessing binary-data responseText throws an exception\n\t\t\t\t\t\t\t\t// (#11426)\n\t\t\t\t\t\t\t\tif ( typeof xhr.responseText === \"string\" ) {\n\t\t\t\t\t\t\t\t\tresponses.text = xhr.responseText;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Firefox throws an exception when accessing\n\t\t\t\t\t\t\t\t// statusText for faulty cross-domain requests\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatusText = xhr.statusText;\n\t\t\t\t\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t\t\t\t\t// We normalize with Webkit giving an empty statusText\n\t\t\t\t\t\t\t\t\tstatusText = \"\";\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Filter status for non standard behaviors\n\n\t\t\t\t\t\t\t\t// If the request is local and we have data: assume a success\n\t\t\t\t\t\t\t\t// (success with no data won't get notified, that's the best we\n\t\t\t\t\t\t\t\t// can do given current implementations)\n\t\t\t\t\t\t\t\tif ( !status && options.isLocal && !options.crossDomain ) {\n\t\t\t\t\t\t\t\t\tstatus = responses.text ? 200 : 404;\n\n\t\t\t\t\t\t\t\t// IE - #1450: sometimes returns 1223 when it should be 204\n\t\t\t\t\t\t\t\t} else if ( status === 1223 ) {\n\t\t\t\t\t\t\t\t\tstatus = 204;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Call complete if needed\n\t\t\t\t\t\tif ( responses ) {\n\t\t\t\t\t\t\tcomplete( status, statusText, responses, xhr.getAllResponseHeaders() );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// Do send the request\n\t\t\t\t\t// `xhr.send` may raise an exception, but it will be\n\t\t\t\t\t// handled in jQuery.ajax (so no try/catch here)\n\t\t\t\t\tif ( !options.async ) {\n\n\t\t\t\t\t\t// If we're in sync mode we fire the callback\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t} else if ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t// (IE6 & IE7) if it's in cache and has been\n\t\t\t\t\t\t// retrieved directly we need to fire the callback\n\t\t\t\t\t\twindow.setTimeout( callback );\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Register the callback, but delay it in case `xhr.send` throws\n\t\t\t\t\t\t// Add to the list of active xhr callbacks\n\t\t\t\t\t\txhr.onreadystatechange = xhrCallbacks[ id ] = callback;\n\t\t\t\t\t}\n\t\t\t\t},\n\n\t\t\t\tabort: function() {\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tcallback( undefined, true );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t} );\n}\n\n// Functions to create xhrs\nfunction createStandardXHR() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n}\n\nfunction createActiveXHR() {\n\ttry {\n\t\treturn new window.ActiveXObject( \"Microsoft.XMLHTTP\" );\n\t} catch ( e ) {}\n}\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and global\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t\ts.global = false;\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\n\t\tvar script,\n\t\t\thead = document.head || jQuery( \"head\" )[ 0 ] || document.documentElement;\n\n\t\treturn {\n\n\t\t\tsend: function( _, callback ) {\n\n\t\t\t\tscript = document.createElement( \"script\" );\n\n\t\t\t\tscript.async = true;\n\n\t\t\t\tif ( s.scriptCharset ) {\n\t\t\t\t\tscript.charset = s.scriptCharset;\n\t\t\t\t}\n\n\t\t\t\tscript.src = s.url;\n\n\t\t\t\t// Attach handlers for all browsers\n\t\t\t\tscript.onload = script.onreadystatechange = function( _, isAbort ) {\n\n\t\t\t\t\tif ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {\n\n\t\t\t\t\t\t// Handle memory leak in IE\n\t\t\t\t\t\tscript.onload = script.onreadystatechange = null;\n\n\t\t\t\t\t\t// Remove the script\n\t\t\t\t\t\tif ( script.parentNode ) {\n\t\t\t\t\t\t\tscript.parentNode.removeChild( script );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Dereference the script\n\t\t\t\t\t\tscript = null;\n\n\t\t\t\t\t\t// Callback if not abort\n\t\t\t\t\t\tif ( !isAbort ) {\n\t\t\t\t\t\t\tcallback( 200, \"success\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\t// Circumvent IE6 bugs with base elements (#2709 and #4378) by prepending\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\thead.insertBefore( script, head.firstChild );\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( script ) {\n\t\t\t\t\tscript.onload( undefined, true );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// data: string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = jQuery.trim( url.slice( off, url.length ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ?\n\t\telem :\n\t\telem.nodeType === 9 ?\n\t\t\telem.defaultView || elem.parentWindow :\n\t\t\tfalse;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\tjQuery.inArray( \"auto\", [ curCSSTop, curCSSLeft ] ) > -1;\n\n\t\t// need to be able to calculate position if either top or left\n\t\t// is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ],\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\t// If we don't have gBCR, just use 0,0 rather than error\n\t\t// BlackBerry 5, iOS 3 (original iPhone)\n\t\tif ( typeof elem.getBoundingClientRect !== \"undefined\" ) {\n\t\t\tbox = elem.getBoundingClientRect();\n\t\t}\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top  + ( win.pageYOffset || docElem.scrollTop )  - ( docElem.clientTop  || 0 ),\n\t\t\tleft: box.left + ( win.pageXOffset || docElem.scrollLeft ) - ( docElem.clientLeft || 0 )\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\tparentOffset = { top: 0, left: 0 },\n\t\t\telem = this[ 0 ];\n\n\t\t// Fixed elements are offset from window (parentOffset = {top:0, left: 0},\n\t\t// because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// we assume that getBoundingClientRect is available when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\t\t} else {\n\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top  += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\t// note: when an element has margin: auto the offsetLeft and marginLeft\n\t\t// are the same in Safari causing offset.left to incorrectly be 0\n\t\treturn {\n\t\t\ttop:  offset.top  - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && ( !jQuery.nodeName( offsetParent, \"html\" ) &&\n\t\t\t\tjQuery.css( offsetParent, \"position\" ) === \"static\" ) ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = /Y/.test( prop );\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? ( prop in win ) ? win[ prop ] :\n\t\t\t\t\twin.document.documentElement[ method ] :\n\t\t\t\t\telem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : jQuery( win ).scrollLeft(),\n\t\t\t\t\ttop ? val : jQuery( win ).scrollTop()\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length, null );\n\t};\n} );\n\n// Support: Safari<7-8+, Chrome<37-44+\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// getComputedStyle returns percent when specified for top/left/bottom/right\n// rather than make the css module depend on the offset module, we just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// if curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\tfunction( defaultExtra, funcName ) {\n\n\t\t// margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\t// unfortunately, this causes bug #3838 in IE6/8 only,\n\t\t\t\t\t// but there is currently no good, small way to fix it.\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t} );\n} );\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t}\n} );\n\n// The number of elements contained in the matched element set\njQuery.fn.size = function() {\n\treturn this.length;\n};\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in\n// AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( !noGlobal ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\nreturn jQuery;\n}));\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/knockout-2.2.0.debug.js",
    "content": "// Knockout JavaScript library v2.2.0\n// (c) Steven Sanderson - http://knockoutjs.com/\n// License: MIT (http://www.opensource.org/licenses/mit-license.php)\n\n(function(){\nvar DEBUG=true;\n(function(window,document,navigator,jQuery,undefined){\n!function(factory) {\n    // Support three module loading scenarios\n    if (typeof require === 'function' && typeof exports === 'object' && typeof module === 'object') {\n        // [1] CommonJS/Node.js\n        var target = module['exports'] || exports; // module.exports is for Node.js\n        factory(target);\n    } else if (typeof define === 'function' && define['amd']) {\n        // [2] AMD anonymous module\n        define(['exports'], factory);\n    } else {\n        // [3] No module loader (plain <script> tag) - put directly in global namespace\n        factory(window['ko'] = {});\n    }\n}(function(koExports){\n// Internally, all KO objects are attached to koExports (even the non-exported ones whose names will be minified by the closure compiler).\n// In the future, the following \"ko\" variable may be made distinct from \"koExports\" so that private objects are not externally reachable.\nvar ko = typeof koExports !== 'undefined' ? koExports : {};\n// Google Closure Compiler helpers (used only to make the minified file smaller)\nko.exportSymbol = function(koPath, object) {\n\tvar tokens = koPath.split(\".\");\n\n\t// In the future, \"ko\" may become distinct from \"koExports\" (so that non-exported objects are not reachable)\n\t// At that point, \"target\" would be set to: (typeof koExports !== \"undefined\" ? koExports : ko)\n\tvar target = ko;\n\n\tfor (var i = 0; i < tokens.length - 1; i++)\n\t\ttarget = target[tokens[i]];\n\ttarget[tokens[tokens.length - 1]] = object;\n};\nko.exportProperty = function(owner, publicName, object) {\n  owner[publicName] = object;\n};\nko.version = \"2.2.0\";\n\nko.exportSymbol('version', ko.version);\nko.utils = new (function () {\n    var stringTrimRegex = /^(\\s|\\u00A0)+|(\\s|\\u00A0)+$/g;\n\n    // Represent the known event types in a compact way, then at runtime transform it into a hash with event name as key (for fast lookup)\n    var knownEvents = {}, knownEventTypesByEventName = {};\n    var keyEventTypeName = /Firefox\\/2/i.test(navigator.userAgent) ? 'KeyboardEvent' : 'UIEvents';\n    knownEvents[keyEventTypeName] = ['keyup', 'keydown', 'keypress'];\n    knownEvents['MouseEvents'] = ['click', 'dblclick', 'mousedown', 'mouseup', 'mousemove', 'mouseover', 'mouseout', 'mouseenter', 'mouseleave'];\n    for (var eventType in knownEvents) {\n        var knownEventsForType = knownEvents[eventType];\n        if (knownEventsForType.length) {\n            for (var i = 0, j = knownEventsForType.length; i < j; i++)\n                knownEventTypesByEventName[knownEventsForType[i]] = eventType;\n        }\n    }\n    var eventsThatMustBeRegisteredUsingAttachEvent = { 'propertychange': true }; // Workaround for an IE9 issue - https://github.com/SteveSanderson/knockout/issues/406\n\n    // Detect IE versions for bug workarounds (uses IE conditionals, not UA string, for robustness)\n    // Note that, since IE 10 does not support conditional comments, the following logic only detects IE < 10.\n    // Currently this is by design, since IE 10+ behaves correctly when treated as a standard browser.\n    // If there is a future need to detect specific versions of IE10+, we will amend this.\n    var ieVersion = (function() {\n        var version = 3, div = document.createElement('div'), iElems = div.getElementsByTagName('i');\n\n        // Keep constructing conditional HTML blocks until we hit one that resolves to an empty fragment\n        while (\n            div.innerHTML = '<!--[if gt IE ' + (++version) + ']><i></i><![endif]-->',\n            iElems[0]\n        );\n        return version > 4 ? version : undefined;\n    }());\n    var isIe6 = ieVersion === 6,\n        isIe7 = ieVersion === 7;\n\n    function isClickOnCheckableElement(element, eventType) {\n        if ((ko.utils.tagNameLower(element) !== \"input\") || !element.type) return false;\n        if (eventType.toLowerCase() != \"click\") return false;\n        var inputType = element.type;\n        return (inputType == \"checkbox\") || (inputType == \"radio\");\n    }\n\n    return {\n        fieldsIncludedWithJsonPost: ['authenticity_token', /^__RequestVerificationToken(_.*)?$/],\n\n        arrayForEach: function (array, action) {\n            for (var i = 0, j = array.length; i < j; i++)\n                action(array[i]);\n        },\n\n        arrayIndexOf: function (array, item) {\n            if (typeof Array.prototype.indexOf == \"function\")\n                return Array.prototype.indexOf.call(array, item);\n            for (var i = 0, j = array.length; i < j; i++)\n                if (array[i] === item)\n                    return i;\n            return -1;\n        },\n\n        arrayFirst: function (array, predicate, predicateOwner) {\n            for (var i = 0, j = array.length; i < j; i++)\n                if (predicate.call(predicateOwner, array[i]))\n                    return array[i];\n            return null;\n        },\n\n        arrayRemoveItem: function (array, itemToRemove) {\n            var index = ko.utils.arrayIndexOf(array, itemToRemove);\n            if (index >= 0)\n                array.splice(index, 1);\n        },\n\n        arrayGetDistinctValues: function (array) {\n            array = array || [];\n            var result = [];\n            for (var i = 0, j = array.length; i < j; i++) {\n                if (ko.utils.arrayIndexOf(result, array[i]) < 0)\n                    result.push(array[i]);\n            }\n            return result;\n        },\n\n        arrayMap: function (array, mapping) {\n            array = array || [];\n            var result = [];\n            for (var i = 0, j = array.length; i < j; i++)\n                result.push(mapping(array[i]));\n            return result;\n        },\n\n        arrayFilter: function (array, predicate) {\n            array = array || [];\n            var result = [];\n            for (var i = 0, j = array.length; i < j; i++)\n                if (predicate(array[i]))\n                    result.push(array[i]);\n            return result;\n        },\n\n        arrayPushAll: function (array, valuesToPush) {\n            if (valuesToPush instanceof Array)\n                array.push.apply(array, valuesToPush);\n            else\n                for (var i = 0, j = valuesToPush.length; i < j; i++)\n                    array.push(valuesToPush[i]);\n            return array;\n        },\n\n        extend: function (target, source) {\n            if (source) {\n                for(var prop in source) {\n                    if(source.hasOwnProperty(prop)) {\n                        target[prop] = source[prop];\n                    }\n                }\n            }\n            return target;\n        },\n\n        emptyDomNode: function (domNode) {\n            while (domNode.firstChild) {\n                ko.removeNode(domNode.firstChild);\n            }\n        },\n\n        moveCleanedNodesToContainerElement: function(nodes) {\n            // Ensure it's a real array, as we're about to reparent the nodes and\n            // we don't want the underlying collection to change while we're doing that.\n            var nodesArray = ko.utils.makeArray(nodes);\n\n            var container = document.createElement('div');\n            for (var i = 0, j = nodesArray.length; i < j; i++) {\n                container.appendChild(ko.cleanNode(nodesArray[i]));\n            }\n            return container;\n        },\n\n        cloneNodes: function (nodesArray, shouldCleanNodes) {\n            for (var i = 0, j = nodesArray.length, newNodesArray = []; i < j; i++) {\n                var clonedNode = nodesArray[i].cloneNode(true);\n                newNodesArray.push(shouldCleanNodes ? ko.cleanNode(clonedNode) : clonedNode);\n            }\n            return newNodesArray;\n        },\n\n        setDomNodeChildren: function (domNode, childNodes) {\n            ko.utils.emptyDomNode(domNode);\n            if (childNodes) {\n                for (var i = 0, j = childNodes.length; i < j; i++)\n                    domNode.appendChild(childNodes[i]);\n            }\n        },\n\n        replaceDomNodes: function (nodeToReplaceOrNodeArray, newNodesArray) {\n            var nodesToReplaceArray = nodeToReplaceOrNodeArray.nodeType ? [nodeToReplaceOrNodeArray] : nodeToReplaceOrNodeArray;\n            if (nodesToReplaceArray.length > 0) {\n                var insertionPoint = nodesToReplaceArray[0];\n                var parent = insertionPoint.parentNode;\n                for (var i = 0, j = newNodesArray.length; i < j; i++)\n                    parent.insertBefore(newNodesArray[i], insertionPoint);\n                for (var i = 0, j = nodesToReplaceArray.length; i < j; i++) {\n                    ko.removeNode(nodesToReplaceArray[i]);\n                }\n            }\n        },\n\n        setOptionNodeSelectionState: function (optionNode, isSelected) {\n            // IE6 sometimes throws \"unknown error\" if you try to write to .selected directly, whereas Firefox struggles with setAttribute. Pick one based on browser.\n            if (ieVersion < 7)\n                optionNode.setAttribute(\"selected\", isSelected);\n            else\n                optionNode.selected = isSelected;\n        },\n\n        stringTrim: function (string) {\n            return (string || \"\").replace(stringTrimRegex, \"\");\n        },\n\n        stringTokenize: function (string, delimiter) {\n            var result = [];\n            var tokens = (string || \"\").split(delimiter);\n            for (var i = 0, j = tokens.length; i < j; i++) {\n                var trimmed = ko.utils.stringTrim(tokens[i]);\n                if (trimmed !== \"\")\n                    result.push(trimmed);\n            }\n            return result;\n        },\n\n        stringStartsWith: function (string, startsWith) {\n            string = string || \"\";\n            if (startsWith.length > string.length)\n                return false;\n            return string.substring(0, startsWith.length) === startsWith;\n        },\n\n        domNodeIsContainedBy: function (node, containedByNode) {\n            if (containedByNode.compareDocumentPosition)\n                return (containedByNode.compareDocumentPosition(node) & 16) == 16;\n            while (node != null) {\n                if (node == containedByNode)\n                    return true;\n                node = node.parentNode;\n            }\n            return false;\n        },\n\n        domNodeIsAttachedToDocument: function (node) {\n            return ko.utils.domNodeIsContainedBy(node, node.ownerDocument);\n        },\n\n        tagNameLower: function(element) {\n            // For HTML elements, tagName will always be upper case; for XHTML elements, it'll be lower case.\n            // Possible future optimization: If we know it's an element from an XHTML document (not HTML),\n            // we don't need to do the .toLowerCase() as it will always be lower case anyway.\n            return element && element.tagName && element.tagName.toLowerCase();\n        },\n\n        registerEventHandler: function (element, eventType, handler) {\n            var mustUseAttachEvent = ieVersion && eventsThatMustBeRegisteredUsingAttachEvent[eventType];\n            if (!mustUseAttachEvent && typeof jQuery != \"undefined\") {\n                if (isClickOnCheckableElement(element, eventType)) {\n                    // For click events on checkboxes, jQuery interferes with the event handling in an awkward way:\n                    // it toggles the element checked state *after* the click event handlers run, whereas native\n                    // click events toggle the checked state *before* the event handler.\n                    // Fix this by intecepting the handler and applying the correct checkedness before it runs.\n                    var originalHandler = handler;\n                    handler = function(event, eventData) {\n                        var jQuerySuppliedCheckedState = this.checked;\n                        if (eventData)\n                            this.checked = eventData.checkedStateBeforeEvent !== true;\n                        originalHandler.call(this, event);\n                        this.checked = jQuerySuppliedCheckedState; // Restore the state jQuery applied\n                    };\n                }\n                jQuery(element)['bind'](eventType, handler);\n            } else if (!mustUseAttachEvent && typeof element.addEventListener == \"function\")\n                element.addEventListener(eventType, handler, false);\n            else if (typeof element.attachEvent != \"undefined\")\n                element.attachEvent(\"on\" + eventType, function (event) {\n                    handler.call(element, event);\n                });\n            else\n                throw new Error(\"Browser doesn't support addEventListener or attachEvent\");\n        },\n\n        triggerEvent: function (element, eventType) {\n            if (!(element && element.nodeType))\n                throw new Error(\"element must be a DOM node when calling triggerEvent\");\n\n            if (typeof jQuery != \"undefined\") {\n                var eventData = [];\n                if (isClickOnCheckableElement(element, eventType)) {\n                    // Work around the jQuery \"click events on checkboxes\" issue described above by storing the original checked state before triggering the handler\n                    eventData.push({ checkedStateBeforeEvent: element.checked });\n                }\n                jQuery(element)['trigger'](eventType, eventData);\n            } else if (typeof document.createEvent == \"function\") {\n                if (typeof element.dispatchEvent == \"function\") {\n                    var eventCategory = knownEventTypesByEventName[eventType] || \"HTMLEvents\";\n                    var event = document.createEvent(eventCategory);\n                    event.initEvent(eventType, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, element);\n                    element.dispatchEvent(event);\n                }\n                else\n                    throw new Error(\"The supplied element doesn't support dispatchEvent\");\n            } else if (typeof element.fireEvent != \"undefined\") {\n                // Unlike other browsers, IE doesn't change the checked state of checkboxes/radiobuttons when you trigger their \"click\" event\n                // so to make it consistent, we'll do it manually here\n                if (isClickOnCheckableElement(element, eventType))\n                    element.checked = element.checked !== true;\n                element.fireEvent(\"on\" + eventType);\n            }\n            else\n                throw new Error(\"Browser doesn't support triggering events\");\n        },\n\n        unwrapObservable: function (value) {\n            return ko.isObservable(value) ? value() : value;\n        },\n\n        peekObservable: function (value) {\n            return ko.isObservable(value) ? value.peek() : value;\n        },\n\n        toggleDomNodeCssClass: function (node, classNames, shouldHaveClass) {\n            if (classNames) {\n                var cssClassNameRegex = /[\\w-]+/g,\n                    currentClassNames = node.className.match(cssClassNameRegex) || [];\n                ko.utils.arrayForEach(classNames.match(cssClassNameRegex), function(className) {\n                    var indexOfClass = ko.utils.arrayIndexOf(currentClassNames, className);\n                    if (indexOfClass >= 0) {\n                        if (!shouldHaveClass)\n                            currentClassNames.splice(indexOfClass, 1);\n                    } else {\n                        if (shouldHaveClass)\n                            currentClassNames.push(className);\n                    }\n                });\n                node.className = currentClassNames.join(\" \");\n            }\n        },\n\n        setTextContent: function(element, textContent) {\n            var value = ko.utils.unwrapObservable(textContent);\n            if ((value === null) || (value === undefined))\n                value = \"\";\n\n            if (element.nodeType === 3) {\n                element.data = value;\n            } else {\n                // We need there to be exactly one child: a text node.\n                // If there are no children, more than one, or if it's not a text node,\n                // we'll clear everything and create a single text node.\n                var innerTextNode = ko.virtualElements.firstChild(element);\n                if (!innerTextNode || innerTextNode.nodeType != 3 || ko.virtualElements.nextSibling(innerTextNode)) {\n                    ko.virtualElements.setDomNodeChildren(element, [document.createTextNode(value)]);\n                } else {\n                    innerTextNode.data = value;\n                }\n\n                ko.utils.forceRefresh(element);\n            }\n        },\n\n        setElementName: function(element, name) {\n            element.name = name;\n\n            // Workaround IE 6/7 issue\n            // - https://github.com/SteveSanderson/knockout/issues/197\n            // - http://www.matts411.com/post/setting_the_name_attribute_in_ie_dom/\n            if (ieVersion <= 7) {\n                try {\n                    element.mergeAttributes(document.createElement(\"<input name='\" + element.name + \"'/>\"), false);\n                }\n                catch(e) {} // For IE9 with doc mode \"IE9 Standards\" and browser mode \"IE9 Compatibility View\"\n            }\n        },\n\n        forceRefresh: function(node) {\n            // Workaround for an IE9 rendering bug - https://github.com/SteveSanderson/knockout/issues/209\n            if (ieVersion >= 9) {\n                // For text nodes and comment nodes (most likely virtual elements), we will have to refresh the container\n                var elem = node.nodeType == 1 ? node : node.parentNode;\n                if (elem.style)\n                    elem.style.zoom = elem.style.zoom;\n            }\n        },\n\n        ensureSelectElementIsRenderedCorrectly: function(selectElement) {\n            // Workaround for IE9 rendering bug - it doesn't reliably display all the text in dynamically-added select boxes unless you force it to re-render by updating the width.\n            // (See https://github.com/SteveSanderson/knockout/issues/312, http://stackoverflow.com/questions/5908494/select-only-shows-first-char-of-selected-option)\n            if (ieVersion >= 9) {\n                var originalWidth = selectElement.style.width;\n                selectElement.style.width = 0;\n                selectElement.style.width = originalWidth;\n            }\n        },\n\n        range: function (min, max) {\n            min = ko.utils.unwrapObservable(min);\n            max = ko.utils.unwrapObservable(max);\n            var result = [];\n            for (var i = min; i <= max; i++)\n                result.push(i);\n            return result;\n        },\n\n        makeArray: function(arrayLikeObject) {\n            var result = [];\n            for (var i = 0, j = arrayLikeObject.length; i < j; i++) {\n                result.push(arrayLikeObject[i]);\n            };\n            return result;\n        },\n\n        isIe6 : isIe6,\n        isIe7 : isIe7,\n        ieVersion : ieVersion,\n\n        getFormFields: function(form, fieldName) {\n            var fields = ko.utils.makeArray(form.getElementsByTagName(\"input\")).concat(ko.utils.makeArray(form.getElementsByTagName(\"textarea\")));\n            var isMatchingField = (typeof fieldName == 'string')\n                ? function(field) { return field.name === fieldName }\n                : function(field) { return fieldName.test(field.name) }; // Treat fieldName as regex or object containing predicate\n            var matches = [];\n            for (var i = fields.length - 1; i >= 0; i--) {\n                if (isMatchingField(fields[i]))\n                    matches.push(fields[i]);\n            };\n            return matches;\n        },\n\n        parseJson: function (jsonString) {\n            if (typeof jsonString == \"string\") {\n                jsonString = ko.utils.stringTrim(jsonString);\n                if (jsonString) {\n                    if (window.JSON && window.JSON.parse) // Use native parsing where available\n                        return window.JSON.parse(jsonString);\n                    return (new Function(\"return \" + jsonString))(); // Fallback on less safe parsing for older browsers\n                }\n            }\n            return null;\n        },\n\n        stringifyJson: function (data, replacer, space) {   // replacer and space are optional\n            if ((typeof JSON == \"undefined\") || (typeof JSON.stringify == \"undefined\"))\n                throw new Error(\"Cannot find JSON.stringify(). Some browsers (e.g., IE < 8) don't support it natively, but you can overcome this by adding a script reference to json2.js, downloadable from http://www.json.org/json2.js\");\n            return JSON.stringify(ko.utils.unwrapObservable(data), replacer, space);\n        },\n\n        postJson: function (urlOrForm, data, options) {\n            options = options || {};\n            var params = options['params'] || {};\n            var includeFields = options['includeFields'] || this.fieldsIncludedWithJsonPost;\n            var url = urlOrForm;\n\n            // If we were given a form, use its 'action' URL and pick out any requested field values\n            if((typeof urlOrForm == 'object') && (ko.utils.tagNameLower(urlOrForm) === \"form\")) {\n                var originalForm = urlOrForm;\n                url = originalForm.action;\n                for (var i = includeFields.length - 1; i >= 0; i--) {\n                    var fields = ko.utils.getFormFields(originalForm, includeFields[i]);\n                    for (var j = fields.length - 1; j >= 0; j--)\n                        params[fields[j].name] = fields[j].value;\n                }\n            }\n\n            data = ko.utils.unwrapObservable(data);\n            var form = document.createElement(\"form\");\n            form.style.display = \"none\";\n            form.action = url;\n            form.method = \"post\";\n            for (var key in data) {\n                var input = document.createElement(\"input\");\n                input.name = key;\n                input.value = ko.utils.stringifyJson(ko.utils.unwrapObservable(data[key]));\n                form.appendChild(input);\n            }\n            for (var key in params) {\n                var input = document.createElement(\"input\");\n                input.name = key;\n                input.value = params[key];\n                form.appendChild(input);\n            }\n            document.body.appendChild(form);\n            options['submitter'] ? options['submitter'](form) : form.submit();\n            setTimeout(function () { form.parentNode.removeChild(form); }, 0);\n        }\n    }\n})();\n\nko.exportSymbol('utils', ko.utils);\nko.exportSymbol('utils.arrayForEach', ko.utils.arrayForEach);\nko.exportSymbol('utils.arrayFirst', ko.utils.arrayFirst);\nko.exportSymbol('utils.arrayFilter', ko.utils.arrayFilter);\nko.exportSymbol('utils.arrayGetDistinctValues', ko.utils.arrayGetDistinctValues);\nko.exportSymbol('utils.arrayIndexOf', ko.utils.arrayIndexOf);\nko.exportSymbol('utils.arrayMap', ko.utils.arrayMap);\nko.exportSymbol('utils.arrayPushAll', ko.utils.arrayPushAll);\nko.exportSymbol('utils.arrayRemoveItem', ko.utils.arrayRemoveItem);\nko.exportSymbol('utils.extend', ko.utils.extend);\nko.exportSymbol('utils.fieldsIncludedWithJsonPost', ko.utils.fieldsIncludedWithJsonPost);\nko.exportSymbol('utils.getFormFields', ko.utils.getFormFields);\nko.exportSymbol('utils.peekObservable', ko.utils.peekObservable);\nko.exportSymbol('utils.postJson', ko.utils.postJson);\nko.exportSymbol('utils.parseJson', ko.utils.parseJson);\nko.exportSymbol('utils.registerEventHandler', ko.utils.registerEventHandler);\nko.exportSymbol('utils.stringifyJson', ko.utils.stringifyJson);\nko.exportSymbol('utils.range', ko.utils.range);\nko.exportSymbol('utils.toggleDomNodeCssClass', ko.utils.toggleDomNodeCssClass);\nko.exportSymbol('utils.triggerEvent', ko.utils.triggerEvent);\nko.exportSymbol('utils.unwrapObservable', ko.utils.unwrapObservable);\n\nif (!Function.prototype['bind']) {\n    // Function.prototype.bind is a standard part of ECMAScript 5th Edition (December 2009, http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf)\n    // In case the browser doesn't implement it natively, provide a JavaScript implementation. This implementation is based on the one in prototype.js\n    Function.prototype['bind'] = function (object) {\n        var originalFunction = this, args = Array.prototype.slice.call(arguments), object = args.shift();\n        return function () {\n            return originalFunction.apply(object, args.concat(Array.prototype.slice.call(arguments)));\n        };\n    };\n}\n\nko.utils.domData = new (function () {\n    var uniqueId = 0;\n    var dataStoreKeyExpandoPropertyName = \"__ko__\" + (new Date).getTime();\n    var dataStore = {};\n    return {\n        get: function (node, key) {\n            var allDataForNode = ko.utils.domData.getAll(node, false);\n            return allDataForNode === undefined ? undefined : allDataForNode[key];\n        },\n        set: function (node, key, value) {\n            if (value === undefined) {\n                // Make sure we don't actually create a new domData key if we are actually deleting a value\n                if (ko.utils.domData.getAll(node, false) === undefined)\n                    return;\n            }\n            var allDataForNode = ko.utils.domData.getAll(node, true);\n            allDataForNode[key] = value;\n        },\n        getAll: function (node, createIfNotFound) {\n            var dataStoreKey = node[dataStoreKeyExpandoPropertyName];\n            var hasExistingDataStore = dataStoreKey && (dataStoreKey !== \"null\") && dataStore[dataStoreKey];\n            if (!hasExistingDataStore) {\n                if (!createIfNotFound)\n                    return undefined;\n                dataStoreKey = node[dataStoreKeyExpandoPropertyName] = \"ko\" + uniqueId++;\n                dataStore[dataStoreKey] = {};\n            }\n            return dataStore[dataStoreKey];\n        },\n        clear: function (node) {\n            var dataStoreKey = node[dataStoreKeyExpandoPropertyName];\n            if (dataStoreKey) {\n                delete dataStore[dataStoreKey];\n                node[dataStoreKeyExpandoPropertyName] = null;\n                return true; // Exposing \"did clean\" flag purely so specs can infer whether things have been cleaned up as intended\n            }\n            return false;\n        }\n    }\n})();\n\nko.exportSymbol('utils.domData', ko.utils.domData);\nko.exportSymbol('utils.domData.clear', ko.utils.domData.clear); // Exporting only so specs can clear up after themselves fully\n\nko.utils.domNodeDisposal = new (function () {\n    var domDataKey = \"__ko_domNodeDisposal__\" + (new Date).getTime();\n    var cleanableNodeTypes = { 1: true, 8: true, 9: true };       // Element, Comment, Document\n    var cleanableNodeTypesWithDescendants = { 1: true, 9: true }; // Element, Document\n\n    function getDisposeCallbacksCollection(node, createIfNotFound) {\n        var allDisposeCallbacks = ko.utils.domData.get(node, domDataKey);\n        if ((allDisposeCallbacks === undefined) && createIfNotFound) {\n            allDisposeCallbacks = [];\n            ko.utils.domData.set(node, domDataKey, allDisposeCallbacks);\n        }\n        return allDisposeCallbacks;\n    }\n    function destroyCallbacksCollection(node) {\n        ko.utils.domData.set(node, domDataKey, undefined);\n    }\n\n    function cleanSingleNode(node) {\n        // Run all the dispose callbacks\n        var callbacks = getDisposeCallbacksCollection(node, false);\n        if (callbacks) {\n            callbacks = callbacks.slice(0); // Clone, as the array may be modified during iteration (typically, callbacks will remove themselves)\n            for (var i = 0; i < callbacks.length; i++)\n                callbacks[i](node);\n        }\n\n        // Also erase the DOM data\n        ko.utils.domData.clear(node);\n\n        // Special support for jQuery here because it's so commonly used.\n        // Many jQuery plugins (including jquery.tmpl) store data using jQuery's equivalent of domData\n        // so notify it to tear down any resources associated with the node & descendants here.\n        if ((typeof jQuery == \"function\") && (typeof jQuery['cleanData'] == \"function\"))\n            jQuery['cleanData']([node]);\n\n        // Also clear any immediate-child comment nodes, as these wouldn't have been found by\n        // node.getElementsByTagName(\"*\") in cleanNode() (comment nodes aren't elements)\n        if (cleanableNodeTypesWithDescendants[node.nodeType])\n            cleanImmediateCommentTypeChildren(node);\n    }\n\n    function cleanImmediateCommentTypeChildren(nodeWithChildren) {\n        var child, nextChild = nodeWithChildren.firstChild;\n        while (child = nextChild) {\n            nextChild = child.nextSibling;\n            if (child.nodeType === 8)\n                cleanSingleNode(child);\n        }\n    }\n\n    return {\n        addDisposeCallback : function(node, callback) {\n            if (typeof callback != \"function\")\n                throw new Error(\"Callback must be a function\");\n            getDisposeCallbacksCollection(node, true).push(callback);\n        },\n\n        removeDisposeCallback : function(node, callback) {\n            var callbacksCollection = getDisposeCallbacksCollection(node, false);\n            if (callbacksCollection) {\n                ko.utils.arrayRemoveItem(callbacksCollection, callback);\n                if (callbacksCollection.length == 0)\n                    destroyCallbacksCollection(node);\n            }\n        },\n\n        cleanNode : function(node) {\n            // First clean this node, where applicable\n            if (cleanableNodeTypes[node.nodeType]) {\n                cleanSingleNode(node);\n\n                // ... then its descendants, where applicable\n                if (cleanableNodeTypesWithDescendants[node.nodeType]) {\n                    // Clone the descendants list in case it changes during iteration\n                    var descendants = [];\n                    ko.utils.arrayPushAll(descendants, node.getElementsByTagName(\"*\"));\n                    for (var i = 0, j = descendants.length; i < j; i++)\n                        cleanSingleNode(descendants[i]);\n                }\n            }\n            return node;\n        },\n\n        removeNode : function(node) {\n            ko.cleanNode(node);\n            if (node.parentNode)\n                node.parentNode.removeChild(node);\n        }\n    }\n})();\nko.cleanNode = ko.utils.domNodeDisposal.cleanNode; // Shorthand name for convenience\nko.removeNode = ko.utils.domNodeDisposal.removeNode; // Shorthand name for convenience\nko.exportSymbol('cleanNode', ko.cleanNode);\nko.exportSymbol('removeNode', ko.removeNode);\nko.exportSymbol('utils.domNodeDisposal', ko.utils.domNodeDisposal);\nko.exportSymbol('utils.domNodeDisposal.addDisposeCallback', ko.utils.domNodeDisposal.addDisposeCallback);\nko.exportSymbol('utils.domNodeDisposal.removeDisposeCallback', ko.utils.domNodeDisposal.removeDisposeCallback);\n(function () {\n    var leadingCommentRegex = /^(\\s*)<!--(.*?)-->/;\n\n    function simpleHtmlParse(html) {\n        // Based on jQuery's \"clean\" function, but only accounting for table-related elements.\n        // If you have referenced jQuery, this won't be used anyway - KO will use jQuery's \"clean\" function directly\n\n        // Note that there's still an issue in IE < 9 whereby it will discard comment nodes that are the first child of\n        // a descendant node. For example: \"<div><!-- mycomment -->abc</div>\" will get parsed as \"<div>abc</div>\"\n        // This won't affect anyone who has referenced jQuery, and there's always the workaround of inserting a dummy node\n        // (possibly a text node) in front of the comment. So, KO does not attempt to workaround this IE issue automatically at present.\n\n        // Trim whitespace, otherwise indexOf won't work as expected\n        var tags = ko.utils.stringTrim(html).toLowerCase(), div = document.createElement(\"div\");\n\n        // Finds the first match from the left column, and returns the corresponding \"wrap\" data from the right column\n        var wrap = tags.match(/^<(thead|tbody|tfoot)/)              && [1, \"<table>\", \"</table>\"] ||\n                   !tags.indexOf(\"<tr\")                             && [2, \"<table><tbody>\", \"</tbody></table>\"] ||\n                   (!tags.indexOf(\"<td\") || !tags.indexOf(\"<th\"))   && [3, \"<table><tbody><tr>\", \"</tr></tbody></table>\"] ||\n                   /* anything else */                                 [0, \"\", \"\"];\n\n        // Go to html and back, then peel off extra wrappers\n        // Note that we always prefix with some dummy text, because otherwise, IE<9 will strip out leading comment nodes in descendants. Total madness.\n        var markup = \"ignored<div>\" + wrap[1] + html + wrap[2] + \"</div>\";\n        if (typeof window['innerShiv'] == \"function\") {\n            div.appendChild(window['innerShiv'](markup));\n        } else {\n            div.innerHTML = markup;\n        }\n\n        // Move to the right depth\n        while (wrap[0]--)\n            div = div.lastChild;\n\n        return ko.utils.makeArray(div.lastChild.childNodes);\n    }\n\n    function jQueryHtmlParse(html) {\n        var elems = jQuery['clean']([html]);\n\n        // As of jQuery 1.7.1, jQuery parses the HTML by appending it to some dummy parent nodes held in an in-memory document fragment.\n        // Unfortunately, it never clears the dummy parent nodes from the document fragment, so it leaks memory over time.\n        // Fix this by finding the top-most dummy parent element, and detaching it from its owner fragment.\n        if (elems && elems[0]) {\n            // Find the top-most parent element that's a direct child of a document fragment\n            var elem = elems[0];\n            while (elem.parentNode && elem.parentNode.nodeType !== 11 /* i.e., DocumentFragment */)\n                elem = elem.parentNode;\n            // ... then detach it\n            if (elem.parentNode)\n                elem.parentNode.removeChild(elem);\n        }\n\n        return elems;\n    }\n\n    ko.utils.parseHtmlFragment = function(html) {\n        return typeof jQuery != 'undefined' ? jQueryHtmlParse(html)   // As below, benefit from jQuery's optimisations where possible\n                                            : simpleHtmlParse(html);  // ... otherwise, this simple logic will do in most common cases.\n    };\n\n    ko.utils.setHtml = function(node, html) {\n        ko.utils.emptyDomNode(node);\n\n        // There's no legitimate reason to display a stringified observable without unwrapping it, so we'll unwrap it\n        html = ko.utils.unwrapObservable(html);\n\n        if ((html !== null) && (html !== undefined)) {\n            if (typeof html != 'string')\n                html = html.toString();\n\n            // jQuery contains a lot of sophisticated code to parse arbitrary HTML fragments,\n            // for example <tr> elements which are not normally allowed to exist on their own.\n            // If you've referenced jQuery we'll use that rather than duplicating its code.\n            if (typeof jQuery != 'undefined') {\n                jQuery(node)['html'](html);\n            } else {\n                // ... otherwise, use KO's own parsing logic.\n                var parsedNodes = ko.utils.parseHtmlFragment(html);\n                for (var i = 0; i < parsedNodes.length; i++)\n                    node.appendChild(parsedNodes[i]);\n            }\n        }\n    };\n})();\n\nko.exportSymbol('utils.parseHtmlFragment', ko.utils.parseHtmlFragment);\nko.exportSymbol('utils.setHtml', ko.utils.setHtml);\n\nko.memoization = (function () {\n    var memos = {};\n\n    function randomMax8HexChars() {\n        return (((1 + Math.random()) * 0x100000000) | 0).toString(16).substring(1);\n    }\n    function generateRandomId() {\n        return randomMax8HexChars() + randomMax8HexChars();\n    }\n    function findMemoNodes(rootNode, appendToArray) {\n        if (!rootNode)\n            return;\n        if (rootNode.nodeType == 8) {\n            var memoId = ko.memoization.parseMemoText(rootNode.nodeValue);\n            if (memoId != null)\n                appendToArray.push({ domNode: rootNode, memoId: memoId });\n        } else if (rootNode.nodeType == 1) {\n            for (var i = 0, childNodes = rootNode.childNodes, j = childNodes.length; i < j; i++)\n                findMemoNodes(childNodes[i], appendToArray);\n        }\n    }\n\n    return {\n        memoize: function (callback) {\n            if (typeof callback != \"function\")\n                throw new Error(\"You can only pass a function to ko.memoization.memoize()\");\n            var memoId = generateRandomId();\n            memos[memoId] = callback;\n            return \"<!--[ko_memo:\" + memoId + \"]-->\";\n        },\n\n        unmemoize: function (memoId, callbackParams) {\n            var callback = memos[memoId];\n            if (callback === undefined)\n                throw new Error(\"Couldn't find any memo with ID \" + memoId + \". Perhaps it's already been unmemoized.\");\n            try {\n                callback.apply(null, callbackParams || []);\n                return true;\n            }\n            finally { delete memos[memoId]; }\n        },\n\n        unmemoizeDomNodeAndDescendants: function (domNode, extraCallbackParamsArray) {\n            var memos = [];\n            findMemoNodes(domNode, memos);\n            for (var i = 0, j = memos.length; i < j; i++) {\n                var node = memos[i].domNode;\n                var combinedParams = [node];\n                if (extraCallbackParamsArray)\n                    ko.utils.arrayPushAll(combinedParams, extraCallbackParamsArray);\n                ko.memoization.unmemoize(memos[i].memoId, combinedParams);\n                node.nodeValue = \"\"; // Neuter this node so we don't try to unmemoize it again\n                if (node.parentNode)\n                    node.parentNode.removeChild(node); // If possible, erase it totally (not always possible - someone else might just hold a reference to it then call unmemoizeDomNodeAndDescendants again)\n            }\n        },\n\n        parseMemoText: function (memoText) {\n            var match = memoText.match(/^\\[ko_memo\\:(.*?)\\]$/);\n            return match ? match[1] : null;\n        }\n    };\n})();\n\nko.exportSymbol('memoization', ko.memoization);\nko.exportSymbol('memoization.memoize', ko.memoization.memoize);\nko.exportSymbol('memoization.unmemoize', ko.memoization.unmemoize);\nko.exportSymbol('memoization.parseMemoText', ko.memoization.parseMemoText);\nko.exportSymbol('memoization.unmemoizeDomNodeAndDescendants', ko.memoization.unmemoizeDomNodeAndDescendants);\nko.extenders = {\n    'throttle': function(target, timeout) {\n        // Throttling means two things:\n\n        // (1) For dependent observables, we throttle *evaluations* so that, no matter how fast its dependencies\n        //     notify updates, the target doesn't re-evaluate (and hence doesn't notify) faster than a certain rate\n        target['throttleEvaluation'] = timeout;\n\n        // (2) For writable targets (observables, or writable dependent observables), we throttle *writes*\n        //     so the target cannot change value synchronously or faster than a certain rate\n        var writeTimeoutInstance = null;\n        return ko.dependentObservable({\n            'read': target,\n            'write': function(value) {\n                clearTimeout(writeTimeoutInstance);\n                writeTimeoutInstance = setTimeout(function() {\n                    target(value);\n                }, timeout);\n            }\n        });\n    },\n\n    'notify': function(target, notifyWhen) {\n        target[\"equalityComparer\"] = notifyWhen == \"always\"\n            ? function() { return false } // Treat all values as not equal\n            : ko.observable[\"fn\"][\"equalityComparer\"];\n        return target;\n    }\n};\n\nfunction applyExtenders(requestedExtenders) {\n    var target = this;\n    if (requestedExtenders) {\n        for (var key in requestedExtenders) {\n            var extenderHandler = ko.extenders[key];\n            if (typeof extenderHandler == 'function') {\n                target = extenderHandler(target, requestedExtenders[key]);\n            }\n        }\n    }\n    return target;\n}\n\nko.exportSymbol('extenders', ko.extenders);\n\nko.subscription = function (target, callback, disposeCallback) {\n    this.target = target;\n    this.callback = callback;\n    this.disposeCallback = disposeCallback;\n    ko.exportProperty(this, 'dispose', this.dispose);\n};\nko.subscription.prototype.dispose = function () {\n    this.isDisposed = true;\n    this.disposeCallback();\n};\n\nko.subscribable = function () {\n    this._subscriptions = {};\n\n    ko.utils.extend(this, ko.subscribable['fn']);\n    ko.exportProperty(this, 'subscribe', this.subscribe);\n    ko.exportProperty(this, 'extend', this.extend);\n    ko.exportProperty(this, 'getSubscriptionsCount', this.getSubscriptionsCount);\n}\n\nvar defaultEvent = \"change\";\n\nko.subscribable['fn'] = {\n    subscribe: function (callback, callbackTarget, event) {\n        event = event || defaultEvent;\n        var boundCallback = callbackTarget ? callback.bind(callbackTarget) : callback;\n\n        var subscription = new ko.subscription(this, boundCallback, function () {\n            ko.utils.arrayRemoveItem(this._subscriptions[event], subscription);\n        }.bind(this));\n\n        if (!this._subscriptions[event])\n            this._subscriptions[event] = [];\n        this._subscriptions[event].push(subscription);\n        return subscription;\n    },\n\n    \"notifySubscribers\": function (valueToNotify, event) {\n        event = event || defaultEvent;\n        if (this._subscriptions[event]) {\n            ko.dependencyDetection.ignore(function() {\n                ko.utils.arrayForEach(this._subscriptions[event].slice(0), function (subscription) {\n                    // In case a subscription was disposed during the arrayForEach cycle, check\n                    // for isDisposed on each subscription before invoking its callback\n                    if (subscription && (subscription.isDisposed !== true))\n                        subscription.callback(valueToNotify);\n                });\n            }, this);\n        }\n    },\n\n    getSubscriptionsCount: function () {\n        var total = 0;\n        for (var eventName in this._subscriptions) {\n            if (this._subscriptions.hasOwnProperty(eventName))\n                total += this._subscriptions[eventName].length;\n        }\n        return total;\n    },\n\n    extend: applyExtenders\n};\n\n\nko.isSubscribable = function (instance) {\n    return typeof instance.subscribe == \"function\" && typeof instance[\"notifySubscribers\"] == \"function\";\n};\n\nko.exportSymbol('subscribable', ko.subscribable);\nko.exportSymbol('isSubscribable', ko.isSubscribable);\n\nko.dependencyDetection = (function () {\n    var _frames = [];\n\n    return {\n        begin: function (callback) {\n            _frames.push({ callback: callback, distinctDependencies:[] });\n        },\n\n        end: function () {\n            _frames.pop();\n        },\n\n        registerDependency: function (subscribable) {\n            if (!ko.isSubscribable(subscribable))\n                throw new Error(\"Only subscribable things can act as dependencies\");\n            if (_frames.length > 0) {\n                var topFrame = _frames[_frames.length - 1];\n                if (!topFrame || ko.utils.arrayIndexOf(topFrame.distinctDependencies, subscribable) >= 0)\n                    return;\n                topFrame.distinctDependencies.push(subscribable);\n                topFrame.callback(subscribable);\n            }\n        },\n\n        ignore: function(callback, callbackTarget, callbackArgs) {\n            try {\n                _frames.push(null);\n                return callback.apply(callbackTarget, callbackArgs || []);\n            } finally {\n                _frames.pop();\n            }\n        }\n    };\n})();\nvar primitiveTypes = { 'undefined':true, 'boolean':true, 'number':true, 'string':true };\n\nko.observable = function (initialValue) {\n    var _latestValue = initialValue;\n\n    function observable() {\n        if (arguments.length > 0) {\n            // Write\n\n            // Ignore writes if the value hasn't changed\n            if ((!observable['equalityComparer']) || !observable['equalityComparer'](_latestValue, arguments[0])) {\n                observable.valueWillMutate();\n                _latestValue = arguments[0];\n                if (DEBUG) observable._latestValue = _latestValue;\n                observable.valueHasMutated();\n            }\n            return this; // Permits chained assignments\n        }\n        else {\n            // Read\n            ko.dependencyDetection.registerDependency(observable); // The caller only needs to be notified of changes if they did a \"read\" operation\n            return _latestValue;\n        }\n    }\n    if (DEBUG) observable._latestValue = _latestValue;\n    ko.subscribable.call(observable);\n    observable.peek = function() { return _latestValue };\n    observable.valueHasMutated = function () { observable[\"notifySubscribers\"](_latestValue); }\n    observable.valueWillMutate = function () { observable[\"notifySubscribers\"](_latestValue, \"beforeChange\"); }\n    ko.utils.extend(observable, ko.observable['fn']);\n\n    ko.exportProperty(observable, 'peek', observable.peek);\n    ko.exportProperty(observable, \"valueHasMutated\", observable.valueHasMutated);\n    ko.exportProperty(observable, \"valueWillMutate\", observable.valueWillMutate);\n\n    return observable;\n}\n\nko.observable['fn'] = {\n    \"equalityComparer\": function valuesArePrimitiveAndEqual(a, b) {\n        var oldValueIsPrimitive = (a === null) || (typeof(a) in primitiveTypes);\n        return oldValueIsPrimitive ? (a === b) : false;\n    }\n};\n\nvar protoProperty = ko.observable.protoProperty = \"__ko_proto__\";\nko.observable['fn'][protoProperty] = ko.observable;\n\nko.hasPrototype = function(instance, prototype) {\n    if ((instance === null) || (instance === undefined) || (instance[protoProperty] === undefined)) return false;\n    if (instance[protoProperty] === prototype) return true;\n    return ko.hasPrototype(instance[protoProperty], prototype); // Walk the prototype chain\n};\n\nko.isObservable = function (instance) {\n    return ko.hasPrototype(instance, ko.observable);\n}\nko.isWriteableObservable = function (instance) {\n    // Observable\n    if ((typeof instance == \"function\") && instance[protoProperty] === ko.observable)\n        return true;\n    // Writeable dependent observable\n    if ((typeof instance == \"function\") && (instance[protoProperty] === ko.dependentObservable) && (instance.hasWriteFunction))\n        return true;\n    // Anything else\n    return false;\n}\n\n\nko.exportSymbol('observable', ko.observable);\nko.exportSymbol('isObservable', ko.isObservable);\nko.exportSymbol('isWriteableObservable', ko.isWriteableObservable);\nko.observableArray = function (initialValues) {\n    if (arguments.length == 0) {\n        // Zero-parameter constructor initializes to empty array\n        initialValues = [];\n    }\n    if ((initialValues !== null) && (initialValues !== undefined) && !('length' in initialValues))\n        throw new Error(\"The argument passed when initializing an observable array must be an array, or null, or undefined.\");\n\n    var result = ko.observable(initialValues);\n    ko.utils.extend(result, ko.observableArray['fn']);\n    return result;\n}\n\nko.observableArray['fn'] = {\n    'remove': function (valueOrPredicate) {\n        var underlyingArray = this.peek();\n        var removedValues = [];\n        var predicate = typeof valueOrPredicate == \"function\" ? valueOrPredicate : function (value) { return value === valueOrPredicate; };\n        for (var i = 0; i < underlyingArray.length; i++) {\n            var value = underlyingArray[i];\n            if (predicate(value)) {\n                if (removedValues.length === 0) {\n                    this.valueWillMutate();\n                }\n                removedValues.push(value);\n                underlyingArray.splice(i, 1);\n                i--;\n            }\n        }\n        if (removedValues.length) {\n            this.valueHasMutated();\n        }\n        return removedValues;\n    },\n\n    'removeAll': function (arrayOfValues) {\n        // If you passed zero args, we remove everything\n        if (arrayOfValues === undefined) {\n            var underlyingArray = this.peek();\n            var allValues = underlyingArray.slice(0);\n            this.valueWillMutate();\n            underlyingArray.splice(0, underlyingArray.length);\n            this.valueHasMutated();\n            return allValues;\n        }\n        // If you passed an arg, we interpret it as an array of entries to remove\n        if (!arrayOfValues)\n            return [];\n        return this['remove'](function (value) {\n            return ko.utils.arrayIndexOf(arrayOfValues, value) >= 0;\n        });\n    },\n\n    'destroy': function (valueOrPredicate) {\n        var underlyingArray = this.peek();\n        var predicate = typeof valueOrPredicate == \"function\" ? valueOrPredicate : function (value) { return value === valueOrPredicate; };\n        this.valueWillMutate();\n        for (var i = underlyingArray.length - 1; i >= 0; i--) {\n            var value = underlyingArray[i];\n            if (predicate(value))\n                underlyingArray[i][\"_destroy\"] = true;\n        }\n        this.valueHasMutated();\n    },\n\n    'destroyAll': function (arrayOfValues) {\n        // If you passed zero args, we destroy everything\n        if (arrayOfValues === undefined)\n            return this['destroy'](function() { return true });\n\n        // If you passed an arg, we interpret it as an array of entries to destroy\n        if (!arrayOfValues)\n            return [];\n        return this['destroy'](function (value) {\n            return ko.utils.arrayIndexOf(arrayOfValues, value) >= 0;\n        });\n    },\n\n    'indexOf': function (item) {\n        var underlyingArray = this();\n        return ko.utils.arrayIndexOf(underlyingArray, item);\n    },\n\n    'replace': function(oldItem, newItem) {\n        var index = this['indexOf'](oldItem);\n        if (index >= 0) {\n            this.valueWillMutate();\n            this.peek()[index] = newItem;\n            this.valueHasMutated();\n        }\n    }\n}\n\n// Populate ko.observableArray.fn with read/write functions from native arrays\n// Important: Do not add any additional functions here that may reasonably be used to *read* data from the array\n// because we'll eval them without causing subscriptions, so ko.computed output could end up getting stale\nko.utils.arrayForEach([\"pop\", \"push\", \"reverse\", \"shift\", \"sort\", \"splice\", \"unshift\"], function (methodName) {\n    ko.observableArray['fn'][methodName] = function () {\n        // Use \"peek\" to avoid creating a subscription in any computed that we're executing in the context of\n        // (for consistency with mutating regular observables)\n        var underlyingArray = this.peek();\n        this.valueWillMutate();\n        var methodCallResult = underlyingArray[methodName].apply(underlyingArray, arguments);\n        this.valueHasMutated();\n        return methodCallResult;\n    };\n});\n\n// Populate ko.observableArray.fn with read-only functions from native arrays\nko.utils.arrayForEach([\"slice\"], function (methodName) {\n    ko.observableArray['fn'][methodName] = function () {\n        var underlyingArray = this();\n        return underlyingArray[methodName].apply(underlyingArray, arguments);\n    };\n});\n\nko.exportSymbol('observableArray', ko.observableArray);\nko.dependentObservable = function (evaluatorFunctionOrOptions, evaluatorFunctionTarget, options) {\n    var _latestValue,\n        _hasBeenEvaluated = false,\n        _isBeingEvaluated = false,\n        readFunction = evaluatorFunctionOrOptions;\n\n    if (readFunction && typeof readFunction == \"object\") {\n        // Single-parameter syntax - everything is on this \"options\" param\n        options = readFunction;\n        readFunction = options[\"read\"];\n    } else {\n        // Multi-parameter syntax - construct the options according to the params passed\n        options = options || {};\n        if (!readFunction)\n            readFunction = options[\"read\"];\n    }\n    if (typeof readFunction != \"function\")\n        throw new Error(\"Pass a function that returns the value of the ko.computed\");\n\n    function addSubscriptionToDependency(subscribable) {\n        _subscriptionsToDependencies.push(subscribable.subscribe(evaluatePossiblyAsync));\n    }\n\n    function disposeAllSubscriptionsToDependencies() {\n        ko.utils.arrayForEach(_subscriptionsToDependencies, function (subscription) {\n            subscription.dispose();\n        });\n        _subscriptionsToDependencies = [];\n    }\n\n    function evaluatePossiblyAsync() {\n        var throttleEvaluationTimeout = dependentObservable['throttleEvaluation'];\n        if (throttleEvaluationTimeout && throttleEvaluationTimeout >= 0) {\n            clearTimeout(evaluationTimeoutInstance);\n            evaluationTimeoutInstance = setTimeout(evaluateImmediate, throttleEvaluationTimeout);\n        } else\n            evaluateImmediate();\n    }\n\n    function evaluateImmediate() {\n        if (_isBeingEvaluated) {\n            // If the evaluation of a ko.computed causes side effects, it's possible that it will trigger its own re-evaluation.\n            // This is not desirable (it's hard for a developer to realise a chain of dependencies might cause this, and they almost\n            // certainly didn't intend infinite re-evaluations). So, for predictability, we simply prevent ko.computeds from causing\n            // their own re-evaluation. Further discussion at https://github.com/SteveSanderson/knockout/pull/387\n            return;\n        }\n\n        // Don't dispose on first evaluation, because the \"disposeWhen\" callback might\n        // e.g., dispose when the associated DOM element isn't in the doc, and it's not\n        // going to be in the doc until *after* the first evaluation\n        if (_hasBeenEvaluated && disposeWhen()) {\n            dispose();\n            return;\n        }\n\n        _isBeingEvaluated = true;\n        try {\n            // Initially, we assume that none of the subscriptions are still being used (i.e., all are candidates for disposal).\n            // Then, during evaluation, we cross off any that are in fact still being used.\n            var disposalCandidates = ko.utils.arrayMap(_subscriptionsToDependencies, function(item) {return item.target;});\n\n            ko.dependencyDetection.begin(function(subscribable) {\n                var inOld;\n                if ((inOld = ko.utils.arrayIndexOf(disposalCandidates, subscribable)) >= 0)\n                    disposalCandidates[inOld] = undefined; // Don't want to dispose this subscription, as it's still being used\n                else\n                    addSubscriptionToDependency(subscribable); // Brand new subscription - add it\n            });\n\n            var newValue = readFunction.call(evaluatorFunctionTarget);\n\n            // For each subscription no longer being used, remove it from the active subscriptions list and dispose it\n            for (var i = disposalCandidates.length - 1; i >= 0; i--) {\n                if (disposalCandidates[i])\n                    _subscriptionsToDependencies.splice(i, 1)[0].dispose();\n            }\n            _hasBeenEvaluated = true;\n\n            dependentObservable[\"notifySubscribers\"](_latestValue, \"beforeChange\");\n            _latestValue = newValue;\n            if (DEBUG) dependentObservable._latestValue = _latestValue;\n        } finally {\n            ko.dependencyDetection.end();\n        }\n\n        dependentObservable[\"notifySubscribers\"](_latestValue);\n        _isBeingEvaluated = false;\n        if (!_subscriptionsToDependencies.length)\n            dispose();\n    }\n\n    function dependentObservable() {\n        if (arguments.length > 0) {\n            if (typeof writeFunction === \"function\") {\n                // Writing a value\n                writeFunction.apply(evaluatorFunctionTarget, arguments);\n            } else {\n                throw new Error(\"Cannot write a value to a ko.computed unless you specify a 'write' option. If you wish to read the current value, don't pass any parameters.\");\n            }\n            return this; // Permits chained assignments\n        } else {\n            // Reading the value\n            if (!_hasBeenEvaluated)\n                evaluateImmediate();\n            ko.dependencyDetection.registerDependency(dependentObservable);\n            return _latestValue;\n        }\n    }\n\n    function peek() {\n        if (!_hasBeenEvaluated)\n            evaluateImmediate();\n        return _latestValue;\n    }\n\n    function isActive() {\n        return !_hasBeenEvaluated || _subscriptionsToDependencies.length > 0;\n    }\n\n    // By here, \"options\" is always non-null\n    var writeFunction = options[\"write\"],\n        disposeWhenNodeIsRemoved = options[\"disposeWhenNodeIsRemoved\"] || options.disposeWhenNodeIsRemoved || null,\n        disposeWhen = options[\"disposeWhen\"] || options.disposeWhen || function() { return false; },\n        dispose = disposeAllSubscriptionsToDependencies,\n        _subscriptionsToDependencies = [],\n        evaluationTimeoutInstance = null;\n\n    if (!evaluatorFunctionTarget)\n        evaluatorFunctionTarget = options[\"owner\"];\n\n    dependentObservable.peek = peek;\n    dependentObservable.getDependenciesCount = function () { return _subscriptionsToDependencies.length; };\n    dependentObservable.hasWriteFunction = typeof options[\"write\"] === \"function\";\n    dependentObservable.dispose = function () { dispose(); };\n    dependentObservable.isActive = isActive;\n\n    ko.subscribable.call(dependentObservable);\n    ko.utils.extend(dependentObservable, ko.dependentObservable['fn']);\n\n    ko.exportProperty(dependentObservable, 'peek', dependentObservable.peek);\n    ko.exportProperty(dependentObservable, 'dispose', dependentObservable.dispose);\n    ko.exportProperty(dependentObservable, 'isActive', dependentObservable.isActive);\n    ko.exportProperty(dependentObservable, 'getDependenciesCount', dependentObservable.getDependenciesCount);\n\n    // Evaluate, unless deferEvaluation is true\n    if (options['deferEvaluation'] !== true)\n        evaluateImmediate();\n\n    // Build \"disposeWhenNodeIsRemoved\" and \"disposeWhenNodeIsRemovedCallback\" option values.\n    // But skip if isActive is false (there will never be any dependencies to dispose).\n    // (Note: \"disposeWhenNodeIsRemoved\" option both proactively disposes as soon as the node is removed using ko.removeNode(),\n    // plus adds a \"disposeWhen\" callback that, on each evaluation, disposes if the node was removed by some other means.)\n    if (disposeWhenNodeIsRemoved && isActive()) {\n        dispose = function() {\n            ko.utils.domNodeDisposal.removeDisposeCallback(disposeWhenNodeIsRemoved, arguments.callee);\n            disposeAllSubscriptionsToDependencies();\n        };\n        ko.utils.domNodeDisposal.addDisposeCallback(disposeWhenNodeIsRemoved, dispose);\n        var existingDisposeWhenFunction = disposeWhen;\n        disposeWhen = function () {\n            return !ko.utils.domNodeIsAttachedToDocument(disposeWhenNodeIsRemoved) || existingDisposeWhenFunction();\n        }\n    }\n\n    return dependentObservable;\n};\n\nko.isComputed = function(instance) {\n    return ko.hasPrototype(instance, ko.dependentObservable);\n};\n\nvar protoProp = ko.observable.protoProperty; // == \"__ko_proto__\"\nko.dependentObservable[protoProp] = ko.observable;\n\nko.dependentObservable['fn'] = {};\nko.dependentObservable['fn'][protoProp] = ko.dependentObservable;\n\nko.exportSymbol('dependentObservable', ko.dependentObservable);\nko.exportSymbol('computed', ko.dependentObservable); // Make \"ko.computed\" an alias for \"ko.dependentObservable\"\nko.exportSymbol('isComputed', ko.isComputed);\n\n(function() {\n    var maxNestedObservableDepth = 10; // Escape the (unlikely) pathalogical case where an observable's current value is itself (or similar reference cycle)\n\n    ko.toJS = function(rootObject) {\n        if (arguments.length == 0)\n            throw new Error(\"When calling ko.toJS, pass the object you want to convert.\");\n\n        // We just unwrap everything at every level in the object graph\n        return mapJsObjectGraph(rootObject, function(valueToMap) {\n            // Loop because an observable's value might in turn be another observable wrapper\n            for (var i = 0; ko.isObservable(valueToMap) && (i < maxNestedObservableDepth); i++)\n                valueToMap = valueToMap();\n            return valueToMap;\n        });\n    };\n\n    ko.toJSON = function(rootObject, replacer, space) {     // replacer and space are optional\n        var plainJavaScriptObject = ko.toJS(rootObject);\n        return ko.utils.stringifyJson(plainJavaScriptObject, replacer, space);\n    };\n\n    function mapJsObjectGraph(rootObject, mapInputCallback, visitedObjects) {\n        visitedObjects = visitedObjects || new objectLookup();\n\n        rootObject = mapInputCallback(rootObject);\n        var canHaveProperties = (typeof rootObject == \"object\") && (rootObject !== null) && (rootObject !== undefined) && (!(rootObject instanceof Date));\n        if (!canHaveProperties)\n            return rootObject;\n\n        var outputProperties = rootObject instanceof Array ? [] : {};\n        visitedObjects.save(rootObject, outputProperties);\n\n        visitPropertiesOrArrayEntries(rootObject, function(indexer) {\n            var propertyValue = mapInputCallback(rootObject[indexer]);\n\n            switch (typeof propertyValue) {\n                case \"boolean\":\n                case \"number\":\n                case \"string\":\n                case \"function\":\n                    outputProperties[indexer] = propertyValue;\n                    break;\n                case \"object\":\n                case \"undefined\":\n                    var previouslyMappedValue = visitedObjects.get(propertyValue);\n                    outputProperties[indexer] = (previouslyMappedValue !== undefined)\n                        ? previouslyMappedValue\n                        : mapJsObjectGraph(propertyValue, mapInputCallback, visitedObjects);\n                    break;\n            }\n        });\n\n        return outputProperties;\n    }\n\n    function visitPropertiesOrArrayEntries(rootObject, visitorCallback) {\n        if (rootObject instanceof Array) {\n            for (var i = 0; i < rootObject.length; i++)\n                visitorCallback(i);\n\n            // For arrays, also respect toJSON property for custom mappings (fixes #278)\n            if (typeof rootObject['toJSON'] == 'function')\n                visitorCallback('toJSON');\n        } else {\n            for (var propertyName in rootObject)\n                visitorCallback(propertyName);\n        }\n    };\n\n    function objectLookup() {\n        var keys = [];\n        var values = [];\n        this.save = function(key, value) {\n            var existingIndex = ko.utils.arrayIndexOf(keys, key);\n            if (existingIndex >= 0)\n                values[existingIndex] = value;\n            else {\n                keys.push(key);\n                values.push(value);\n            }\n        };\n        this.get = function(key) {\n            var existingIndex = ko.utils.arrayIndexOf(keys, key);\n            return (existingIndex >= 0) ? values[existingIndex] : undefined;\n        };\n    };\n})();\n\nko.exportSymbol('toJS', ko.toJS);\nko.exportSymbol('toJSON', ko.toJSON);\n(function () {\n    var hasDomDataExpandoProperty = '__ko__hasDomDataOptionValue__';\n\n    // Normally, SELECT elements and their OPTIONs can only take value of type 'string' (because the values\n    // are stored on DOM attributes). ko.selectExtensions provides a way for SELECTs/OPTIONs to have values\n    // that are arbitrary objects. This is very convenient when implementing things like cascading dropdowns.\n    ko.selectExtensions = {\n        readValue : function(element) {\n            switch (ko.utils.tagNameLower(element)) {\n                case 'option':\n                    if (element[hasDomDataExpandoProperty] === true)\n                        return ko.utils.domData.get(element, ko.bindingHandlers.options.optionValueDomDataKey);\n                    return ko.utils.ieVersion <= 7\n                        ? (element.getAttributeNode('value').specified ? element.value : element.text)\n                        : element.value;\n                case 'select':\n                    return element.selectedIndex >= 0 ? ko.selectExtensions.readValue(element.options[element.selectedIndex]) : undefined;\n                default:\n                    return element.value;\n            }\n        },\n\n        writeValue: function(element, value) {\n            switch (ko.utils.tagNameLower(element)) {\n                case 'option':\n                    switch(typeof value) {\n                        case \"string\":\n                            ko.utils.domData.set(element, ko.bindingHandlers.options.optionValueDomDataKey, undefined);\n                            if (hasDomDataExpandoProperty in element) { // IE <= 8 throws errors if you delete non-existent properties from a DOM node\n                                delete element[hasDomDataExpandoProperty];\n                            }\n                            element.value = value;\n                            break;\n                        default:\n                            // Store arbitrary object using DomData\n                            ko.utils.domData.set(element, ko.bindingHandlers.options.optionValueDomDataKey, value);\n                            element[hasDomDataExpandoProperty] = true;\n\n                            // Special treatment of numbers is just for backward compatibility. KO 1.2.1 wrote numerical values to element.value.\n                            element.value = typeof value === \"number\" ? value : \"\";\n                            break;\n                    }\n                    break;\n                case 'select':\n                    for (var i = element.options.length - 1; i >= 0; i--) {\n                        if (ko.selectExtensions.readValue(element.options[i]) == value) {\n                            element.selectedIndex = i;\n                            break;\n                        }\n                    }\n                    break;\n                default:\n                    if ((value === null) || (value === undefined))\n                        value = \"\";\n                    element.value = value;\n                    break;\n            }\n        }\n    };\n})();\n\nko.exportSymbol('selectExtensions', ko.selectExtensions);\nko.exportSymbol('selectExtensions.readValue', ko.selectExtensions.readValue);\nko.exportSymbol('selectExtensions.writeValue', ko.selectExtensions.writeValue);\nko.expressionRewriting = (function () {\n    var restoreCapturedTokensRegex = /\\@ko_token_(\\d+)\\@/g;\n    var javaScriptReservedWords = [\"true\", \"false\"];\n\n    // Matches something that can be assigned to--either an isolated identifier or something ending with a property accessor\n    // This is designed to be simple and avoid false negatives, but could produce false positives (e.g., a+b.c).\n    var javaScriptAssignmentTarget = /^(?:[$_a-z][$\\w]*|(.+)(\\.\\s*[$_a-z][$\\w]*|\\[.+\\]))$/i;\n\n    function restoreTokens(string, tokens) {\n        var prevValue = null;\n        while (string != prevValue) { // Keep restoring tokens until it no longer makes a difference (they may be nested)\n            prevValue = string;\n            string = string.replace(restoreCapturedTokensRegex, function (match, tokenIndex) {\n                return tokens[tokenIndex];\n            });\n        }\n        return string;\n    }\n\n    function getWriteableValue(expression) {\n        if (ko.utils.arrayIndexOf(javaScriptReservedWords, ko.utils.stringTrim(expression).toLowerCase()) >= 0)\n            return false;\n        var match = expression.match(javaScriptAssignmentTarget);\n        return match === null ? false : match[1] ? ('Object(' + match[1] + ')' + match[2]) : expression;\n    }\n\n    function ensureQuoted(key) {\n        var trimmedKey = ko.utils.stringTrim(key);\n        switch (trimmedKey.length && trimmedKey.charAt(0)) {\n            case \"'\":\n            case '\"':\n                return key;\n            default:\n                return \"'\" + trimmedKey + \"'\";\n        }\n    }\n\n    return {\n        bindingRewriteValidators: [],\n\n        parseObjectLiteral: function(objectLiteralString) {\n            // A full tokeniser+lexer would add too much weight to this library, so here's a simple parser\n            // that is sufficient just to split an object literal string into a set of top-level key-value pairs\n\n            var str = ko.utils.stringTrim(objectLiteralString);\n            if (str.length < 3)\n                return [];\n            if (str.charAt(0) === \"{\")// Ignore any braces surrounding the whole object literal\n                str = str.substring(1, str.length - 1);\n\n            // Pull out any string literals and regex literals\n            var tokens = [];\n            var tokenStart = null, tokenEndChar;\n            for (var position = 0; position < str.length; position++) {\n                var c = str.charAt(position);\n                if (tokenStart === null) {\n                    switch (c) {\n                        case '\"':\n                        case \"'\":\n                        case \"/\":\n                            tokenStart = position;\n                            tokenEndChar = c;\n                            break;\n                    }\n                } else if ((c == tokenEndChar) && (str.charAt(position - 1) !== \"\\\\\")) {\n                    var token = str.substring(tokenStart, position + 1);\n                    tokens.push(token);\n                    var replacement = \"@ko_token_\" + (tokens.length - 1) + \"@\";\n                    str = str.substring(0, tokenStart) + replacement + str.substring(position + 1);\n                    position -= (token.length - replacement.length);\n                    tokenStart = null;\n                }\n            }\n\n            // Next pull out balanced paren, brace, and bracket blocks\n            tokenStart = null;\n            tokenEndChar = null;\n            var tokenDepth = 0, tokenStartChar = null;\n            for (var position = 0; position < str.length; position++) {\n                var c = str.charAt(position);\n                if (tokenStart === null) {\n                    switch (c) {\n                        case \"{\": tokenStart = position; tokenStartChar = c;\n                                  tokenEndChar = \"}\";\n                                  break;\n                        case \"(\": tokenStart = position; tokenStartChar = c;\n                                  tokenEndChar = \")\";\n                                  break;\n                        case \"[\": tokenStart = position; tokenStartChar = c;\n                                  tokenEndChar = \"]\";\n                                  break;\n                    }\n                }\n\n                if (c === tokenStartChar)\n                    tokenDepth++;\n                else if (c === tokenEndChar) {\n                    tokenDepth--;\n                    if (tokenDepth === 0) {\n                        var token = str.substring(tokenStart, position + 1);\n                        tokens.push(token);\n                        var replacement = \"@ko_token_\" + (tokens.length - 1) + \"@\";\n                        str = str.substring(0, tokenStart) + replacement + str.substring(position + 1);\n                        position -= (token.length - replacement.length);\n                        tokenStart = null;\n                    }\n                }\n            }\n\n            // Now we can safely split on commas to get the key/value pairs\n            var result = [];\n            var keyValuePairs = str.split(\",\");\n            for (var i = 0, j = keyValuePairs.length; i < j; i++) {\n                var pair = keyValuePairs[i];\n                var colonPos = pair.indexOf(\":\");\n                if ((colonPos > 0) && (colonPos < pair.length - 1)) {\n                    var key = pair.substring(0, colonPos);\n                    var value = pair.substring(colonPos + 1);\n                    result.push({ 'key': restoreTokens(key, tokens), 'value': restoreTokens(value, tokens) });\n                } else {\n                    result.push({ 'unknown': restoreTokens(pair, tokens) });\n                }\n            }\n            return result;\n        },\n\n        preProcessBindings: function (objectLiteralStringOrKeyValueArray) {\n            var keyValueArray = typeof objectLiteralStringOrKeyValueArray === \"string\"\n                ? ko.expressionRewriting.parseObjectLiteral(objectLiteralStringOrKeyValueArray)\n                : objectLiteralStringOrKeyValueArray;\n            var resultStrings = [], propertyAccessorResultStrings = [];\n\n            var keyValueEntry;\n            for (var i = 0; keyValueEntry = keyValueArray[i]; i++) {\n                if (resultStrings.length > 0)\n                    resultStrings.push(\",\");\n\n                if (keyValueEntry['key']) {\n                    var quotedKey = ensureQuoted(keyValueEntry['key']), val = keyValueEntry['value'];\n                    resultStrings.push(quotedKey);\n                    resultStrings.push(\":\");\n                    resultStrings.push(val);\n\n                    if (val = getWriteableValue(ko.utils.stringTrim(val))) {\n                        if (propertyAccessorResultStrings.length > 0)\n                            propertyAccessorResultStrings.push(\", \");\n                        propertyAccessorResultStrings.push(quotedKey + \" : function(__ko_value) { \" + val + \" = __ko_value; }\");\n                    }\n                } else if (keyValueEntry['unknown']) {\n                    resultStrings.push(keyValueEntry['unknown']);\n                }\n            }\n\n            var combinedResult = resultStrings.join(\"\");\n            if (propertyAccessorResultStrings.length > 0) {\n                var allPropertyAccessors = propertyAccessorResultStrings.join(\"\");\n                combinedResult = combinedResult + \", '_ko_property_writers' : { \" + allPropertyAccessors + \" } \";\n            }\n\n            return combinedResult;\n        },\n\n        keyValueArrayContainsKey: function(keyValueArray, key) {\n            for (var i = 0; i < keyValueArray.length; i++)\n                if (ko.utils.stringTrim(keyValueArray[i]['key']) == key)\n                    return true;\n            return false;\n        },\n\n        // Internal, private KO utility for updating model properties from within bindings\n        // property:            If the property being updated is (or might be) an observable, pass it here\n        //                      If it turns out to be a writable observable, it will be written to directly\n        // allBindingsAccessor: All bindings in the current execution context.\n        //                      This will be searched for a '_ko_property_writers' property in case you're writing to a non-observable\n        // key:                 The key identifying the property to be written. Example: for { hasFocus: myValue }, write to 'myValue' by specifying the key 'hasFocus'\n        // value:               The value to be written\n        // checkIfDifferent:    If true, and if the property being written is a writable observable, the value will only be written if\n        //                      it is !== existing value on that writable observable\n        writeValueToProperty: function(property, allBindingsAccessor, key, value, checkIfDifferent) {\n            if (!property || !ko.isWriteableObservable(property)) {\n                var propWriters = allBindingsAccessor()['_ko_property_writers'];\n                if (propWriters && propWriters[key])\n                    propWriters[key](value);\n            } else if (!checkIfDifferent || property.peek() !== value) {\n                property(value);\n            }\n        }\n    };\n})();\n\nko.exportSymbol('expressionRewriting', ko.expressionRewriting);\nko.exportSymbol('expressionRewriting.bindingRewriteValidators', ko.expressionRewriting.bindingRewriteValidators);\nko.exportSymbol('expressionRewriting.parseObjectLiteral', ko.expressionRewriting.parseObjectLiteral);\nko.exportSymbol('expressionRewriting.preProcessBindings', ko.expressionRewriting.preProcessBindings);\n\n// For backward compatibility, define the following aliases. (Previously, these function names were misleading because\n// they referred to JSON specifically, even though they actually work with arbitrary JavaScript object literal expressions.)\nko.exportSymbol('jsonExpressionRewriting', ko.expressionRewriting);\nko.exportSymbol('jsonExpressionRewriting.insertPropertyAccessorsIntoJson', ko.expressionRewriting.preProcessBindings);(function() {\n    // \"Virtual elements\" is an abstraction on top of the usual DOM API which understands the notion that comment nodes\n    // may be used to represent hierarchy (in addition to the DOM's natural hierarchy).\n    // If you call the DOM-manipulating functions on ko.virtualElements, you will be able to read and write the state\n    // of that virtual hierarchy\n    //\n    // The point of all this is to support containerless templates (e.g., <!-- ko foreach:someCollection -->blah<!-- /ko -->)\n    // without having to scatter special cases all over the binding and templating code.\n\n    // IE 9 cannot reliably read the \"nodeValue\" property of a comment node (see https://github.com/SteveSanderson/knockout/issues/186)\n    // but it does give them a nonstandard alternative property called \"text\" that it can read reliably. Other browsers don't have that property.\n    // So, use node.text where available, and node.nodeValue elsewhere\n    var commentNodesHaveTextProperty = document.createComment(\"test\").text === \"<!--test-->\";\n\n    var startCommentRegex = commentNodesHaveTextProperty ? /^<!--\\s*ko(?:\\s+(.+\\s*\\:[\\s\\S]*))?\\s*-->$/ : /^\\s*ko(?:\\s+(.+\\s*\\:[\\s\\S]*))?\\s*$/;\n    var endCommentRegex =   commentNodesHaveTextProperty ? /^<!--\\s*\\/ko\\s*-->$/ : /^\\s*\\/ko\\s*$/;\n    var htmlTagsWithOptionallyClosingChildren = { 'ul': true, 'ol': true };\n\n    function isStartComment(node) {\n        return (node.nodeType == 8) && (commentNodesHaveTextProperty ? node.text : node.nodeValue).match(startCommentRegex);\n    }\n\n    function isEndComment(node) {\n        return (node.nodeType == 8) && (commentNodesHaveTextProperty ? node.text : node.nodeValue).match(endCommentRegex);\n    }\n\n    function getVirtualChildren(startComment, allowUnbalanced) {\n        var currentNode = startComment;\n        var depth = 1;\n        var children = [];\n        while (currentNode = currentNode.nextSibling) {\n            if (isEndComment(currentNode)) {\n                depth--;\n                if (depth === 0)\n                    return children;\n            }\n\n            children.push(currentNode);\n\n            if (isStartComment(currentNode))\n                depth++;\n        }\n        if (!allowUnbalanced)\n            throw new Error(\"Cannot find closing comment tag to match: \" + startComment.nodeValue);\n        return null;\n    }\n\n    function getMatchingEndComment(startComment, allowUnbalanced) {\n        var allVirtualChildren = getVirtualChildren(startComment, allowUnbalanced);\n        if (allVirtualChildren) {\n            if (allVirtualChildren.length > 0)\n                return allVirtualChildren[allVirtualChildren.length - 1].nextSibling;\n            return startComment.nextSibling;\n        } else\n            return null; // Must have no matching end comment, and allowUnbalanced is true\n    }\n\n    function getUnbalancedChildTags(node) {\n        // e.g., from <div>OK</div><!-- ko blah --><span>Another</span>, returns: <!-- ko blah --><span>Another</span>\n        //       from <div>OK</div><!-- /ko --><!-- /ko -->,             returns: <!-- /ko --><!-- /ko -->\n        var childNode = node.firstChild, captureRemaining = null;\n        if (childNode) {\n            do {\n                if (captureRemaining)                   // We already hit an unbalanced node and are now just scooping up all subsequent nodes\n                    captureRemaining.push(childNode);\n                else if (isStartComment(childNode)) {\n                    var matchingEndComment = getMatchingEndComment(childNode, /* allowUnbalanced: */ true);\n                    if (matchingEndComment)             // It's a balanced tag, so skip immediately to the end of this virtual set\n                        childNode = matchingEndComment;\n                    else\n                        captureRemaining = [childNode]; // It's unbalanced, so start capturing from this point\n                } else if (isEndComment(childNode)) {\n                    captureRemaining = [childNode];     // It's unbalanced (if it wasn't, we'd have skipped over it already), so start capturing\n                }\n            } while (childNode = childNode.nextSibling);\n        }\n        return captureRemaining;\n    }\n\n    ko.virtualElements = {\n        allowedBindings: {},\n\n        childNodes: function(node) {\n            return isStartComment(node) ? getVirtualChildren(node) : node.childNodes;\n        },\n\n        emptyNode: function(node) {\n            if (!isStartComment(node))\n                ko.utils.emptyDomNode(node);\n            else {\n                var virtualChildren = ko.virtualElements.childNodes(node);\n                for (var i = 0, j = virtualChildren.length; i < j; i++)\n                    ko.removeNode(virtualChildren[i]);\n            }\n        },\n\n        setDomNodeChildren: function(node, childNodes) {\n            if (!isStartComment(node))\n                ko.utils.setDomNodeChildren(node, childNodes);\n            else {\n                ko.virtualElements.emptyNode(node);\n                var endCommentNode = node.nextSibling; // Must be the next sibling, as we just emptied the children\n                for (var i = 0, j = childNodes.length; i < j; i++)\n                    endCommentNode.parentNode.insertBefore(childNodes[i], endCommentNode);\n            }\n        },\n\n        prepend: function(containerNode, nodeToPrepend) {\n            if (!isStartComment(containerNode)) {\n                if (containerNode.firstChild)\n                    containerNode.insertBefore(nodeToPrepend, containerNode.firstChild);\n                else\n                    containerNode.appendChild(nodeToPrepend);\n            } else {\n                // Start comments must always have a parent and at least one following sibling (the end comment)\n                containerNode.parentNode.insertBefore(nodeToPrepend, containerNode.nextSibling);\n            }\n        },\n\n        insertAfter: function(containerNode, nodeToInsert, insertAfterNode) {\n            if (!insertAfterNode) {\n                ko.virtualElements.prepend(containerNode, nodeToInsert);\n            } else if (!isStartComment(containerNode)) {\n                // Insert after insertion point\n                if (insertAfterNode.nextSibling)\n                    containerNode.insertBefore(nodeToInsert, insertAfterNode.nextSibling);\n                else\n                    containerNode.appendChild(nodeToInsert);\n            } else {\n                // Children of start comments must always have a parent and at least one following sibling (the end comment)\n                containerNode.parentNode.insertBefore(nodeToInsert, insertAfterNode.nextSibling);\n            }\n        },\n\n        firstChild: function(node) {\n            if (!isStartComment(node))\n                return node.firstChild;\n            if (!node.nextSibling || isEndComment(node.nextSibling))\n                return null;\n            return node.nextSibling;\n        },\n\n        nextSibling: function(node) {\n            if (isStartComment(node))\n                node = getMatchingEndComment(node);\n            if (node.nextSibling && isEndComment(node.nextSibling))\n                return null;\n            return node.nextSibling;\n        },\n\n        virtualNodeBindingValue: function(node) {\n            var regexMatch = isStartComment(node);\n            return regexMatch ? regexMatch[1] : null;\n        },\n\n        normaliseVirtualElementDomStructure: function(elementVerified) {\n            // Workaround for https://github.com/SteveSanderson/knockout/issues/155\n            // (IE <= 8 or IE 9 quirks mode parses your HTML weirdly, treating closing </li> tags as if they don't exist, thereby moving comment nodes\n            // that are direct descendants of <ul> into the preceding <li>)\n            if (!htmlTagsWithOptionallyClosingChildren[ko.utils.tagNameLower(elementVerified)])\n                return;\n\n            // Scan immediate children to see if they contain unbalanced comment tags. If they do, those comment tags\n            // must be intended to appear *after* that child, so move them there.\n            var childNode = elementVerified.firstChild;\n            if (childNode) {\n                do {\n                    if (childNode.nodeType === 1) {\n                        var unbalancedTags = getUnbalancedChildTags(childNode);\n                        if (unbalancedTags) {\n                            // Fix up the DOM by moving the unbalanced tags to where they most likely were intended to be placed - *after* the child\n                            var nodeToInsertBefore = childNode.nextSibling;\n                            for (var i = 0; i < unbalancedTags.length; i++) {\n                                if (nodeToInsertBefore)\n                                    elementVerified.insertBefore(unbalancedTags[i], nodeToInsertBefore);\n                                else\n                                    elementVerified.appendChild(unbalancedTags[i]);\n                            }\n                        }\n                    }\n                } while (childNode = childNode.nextSibling);\n            }\n        }\n    };\n})();\nko.exportSymbol('virtualElements', ko.virtualElements);\nko.exportSymbol('virtualElements.allowedBindings', ko.virtualElements.allowedBindings);\nko.exportSymbol('virtualElements.emptyNode', ko.virtualElements.emptyNode);\n//ko.exportSymbol('virtualElements.firstChild', ko.virtualElements.firstChild);     // firstChild is not minified\nko.exportSymbol('virtualElements.insertAfter', ko.virtualElements.insertAfter);\n//ko.exportSymbol('virtualElements.nextSibling', ko.virtualElements.nextSibling);   // nextSibling is not minified\nko.exportSymbol('virtualElements.prepend', ko.virtualElements.prepend);\nko.exportSymbol('virtualElements.setDomNodeChildren', ko.virtualElements.setDomNodeChildren);\n(function() {\n    var defaultBindingAttributeName = \"data-bind\";\n\n    ko.bindingProvider = function() {\n        this.bindingCache = {};\n    };\n\n    ko.utils.extend(ko.bindingProvider.prototype, {\n        'nodeHasBindings': function(node) {\n            switch (node.nodeType) {\n                case 1: return node.getAttribute(defaultBindingAttributeName) != null;   // Element\n                case 8: return ko.virtualElements.virtualNodeBindingValue(node) != null; // Comment node\n                default: return false;\n            }\n        },\n\n        'getBindings': function(node, bindingContext) {\n            var bindingsString = this['getBindingsString'](node, bindingContext);\n            return bindingsString ? this['parseBindingsString'](bindingsString, bindingContext, node) : null;\n        },\n\n        // The following function is only used internally by this default provider.\n        // It's not part of the interface definition for a general binding provider.\n        'getBindingsString': function(node, bindingContext) {\n            switch (node.nodeType) {\n                case 1: return node.getAttribute(defaultBindingAttributeName);   // Element\n                case 8: return ko.virtualElements.virtualNodeBindingValue(node); // Comment node\n                default: return null;\n            }\n        },\n\n        // The following function is only used internally by this default provider.\n        // It's not part of the interface definition for a general binding provider.\n        'parseBindingsString': function(bindingsString, bindingContext, node) {\n            try {\n                var bindingFunction = createBindingsStringEvaluatorViaCache(bindingsString, this.bindingCache);\n                return bindingFunction(bindingContext, node);\n            } catch (ex) {\n                throw new Error(\"Unable to parse bindings.\\nMessage: \" + ex + \";\\nBindings value: \" + bindingsString);\n            }\n        }\n    });\n\n    ko.bindingProvider['instance'] = new ko.bindingProvider();\n\n    function createBindingsStringEvaluatorViaCache(bindingsString, cache) {\n        var cacheKey = bindingsString;\n        return cache[cacheKey]\n            || (cache[cacheKey] = createBindingsStringEvaluator(bindingsString));\n    }\n\n    function createBindingsStringEvaluator(bindingsString) {\n        // Build the source for a function that evaluates \"expression\"\n        // For each scope variable, add an extra level of \"with\" nesting\n        // Example result: with(sc1) { with(sc0) { return (expression) } }\n        var rewrittenBindings = ko.expressionRewriting.preProcessBindings(bindingsString),\n            functionBody = \"with($context){with($data||{}){return{\" + rewrittenBindings + \"}}}\";\n        return new Function(\"$context\", \"$element\", functionBody);\n    }\n})();\n\nko.exportSymbol('bindingProvider', ko.bindingProvider);\n(function () {\n    ko.bindingHandlers = {};\n\n    ko.bindingContext = function(dataItem, parentBindingContext, dataItemAlias) {\n        if (parentBindingContext) {\n            ko.utils.extend(this, parentBindingContext); // Inherit $root and any custom properties\n            this['$parentContext'] = parentBindingContext;\n            this['$parent'] = parentBindingContext['$data'];\n            this['$parents'] = (parentBindingContext['$parents'] || []).slice(0);\n            this['$parents'].unshift(this['$parent']);\n        } else {\n            this['$parents'] = [];\n            this['$root'] = dataItem;\n            // Export 'ko' in the binding context so it will be available in bindings and templates\n            // even if 'ko' isn't exported as a global, such as when using an AMD loader.\n            // See https://github.com/SteveSanderson/knockout/issues/490\n            this['ko'] = ko;\n        }\n        this['$data'] = dataItem;\n        if (dataItemAlias)\n            this[dataItemAlias] = dataItem;\n    }\n    ko.bindingContext.prototype['createChildContext'] = function (dataItem, dataItemAlias) {\n        return new ko.bindingContext(dataItem, this, dataItemAlias);\n    };\n    ko.bindingContext.prototype['extend'] = function(properties) {\n        var clone = ko.utils.extend(new ko.bindingContext(), this);\n        return ko.utils.extend(clone, properties);\n    };\n\n    function validateThatBindingIsAllowedForVirtualElements(bindingName) {\n        var validator = ko.virtualElements.allowedBindings[bindingName];\n        if (!validator)\n            throw new Error(\"The binding '\" + bindingName + \"' cannot be used with virtual elements\")\n    }\n\n    function applyBindingsToDescendantsInternal (viewModel, elementOrVirtualElement, bindingContextsMayDifferFromDomParentElement) {\n        var currentChild, nextInQueue = ko.virtualElements.firstChild(elementOrVirtualElement);\n        while (currentChild = nextInQueue) {\n            // Keep a record of the next child *before* applying bindings, in case the binding removes the current child from its position\n            nextInQueue = ko.virtualElements.nextSibling(currentChild);\n            applyBindingsToNodeAndDescendantsInternal(viewModel, currentChild, bindingContextsMayDifferFromDomParentElement);\n        }\n    }\n\n    function applyBindingsToNodeAndDescendantsInternal (viewModel, nodeVerified, bindingContextMayDifferFromDomParentElement) {\n        var shouldBindDescendants = true;\n\n        // Perf optimisation: Apply bindings only if...\n        // (1) We need to store the binding context on this node (because it may differ from the DOM parent node's binding context)\n        //     Note that we can't store binding contexts on non-elements (e.g., text nodes), as IE doesn't allow expando properties for those\n        // (2) It might have bindings (e.g., it has a data-bind attribute, or it's a marker for a containerless template)\n        var isElement = (nodeVerified.nodeType === 1);\n        if (isElement) // Workaround IE <= 8 HTML parsing weirdness\n            ko.virtualElements.normaliseVirtualElementDomStructure(nodeVerified);\n\n        var shouldApplyBindings = (isElement && bindingContextMayDifferFromDomParentElement)             // Case (1)\n                               || ko.bindingProvider['instance']['nodeHasBindings'](nodeVerified);       // Case (2)\n        if (shouldApplyBindings)\n            shouldBindDescendants = applyBindingsToNodeInternal(nodeVerified, null, viewModel, bindingContextMayDifferFromDomParentElement).shouldBindDescendants;\n\n        if (shouldBindDescendants) {\n            // We're recursing automatically into (real or virtual) child nodes without changing binding contexts. So,\n            //  * For children of a *real* element, the binding context is certainly the same as on their DOM .parentNode,\n            //    hence bindingContextsMayDifferFromDomParentElement is false\n            //  * For children of a *virtual* element, we can't be sure. Evaluating .parentNode on those children may\n            //    skip over any number of intermediate virtual elements, any of which might define a custom binding context,\n            //    hence bindingContextsMayDifferFromDomParentElement is true\n            applyBindingsToDescendantsInternal(viewModel, nodeVerified, /* bindingContextsMayDifferFromDomParentElement: */ !isElement);\n        }\n    }\n\n    function applyBindingsToNodeInternal (node, bindings, viewModelOrBindingContext, bindingContextMayDifferFromDomParentElement) {\n        // Need to be sure that inits are only run once, and updates never run until all the inits have been run\n        var initPhase = 0; // 0 = before all inits, 1 = during inits, 2 = after all inits\n\n        // Each time the dependentObservable is evaluated (after data changes),\n        // the binding attribute is reparsed so that it can pick out the correct\n        // model properties in the context of the changed data.\n        // DOM event callbacks need to be able to access this changed data,\n        // so we need a single parsedBindings variable (shared by all callbacks\n        // associated with this node's bindings) that all the closures can access.\n        var parsedBindings;\n        function makeValueAccessor(bindingKey) {\n            return function () { return parsedBindings[bindingKey] }\n        }\n        function parsedBindingsAccessor() {\n            return parsedBindings;\n        }\n\n        var bindingHandlerThatControlsDescendantBindings;\n        ko.dependentObservable(\n            function () {\n                // Ensure we have a nonnull binding context to work with\n                var bindingContextInstance = viewModelOrBindingContext && (viewModelOrBindingContext instanceof ko.bindingContext)\n                    ? viewModelOrBindingContext\n                    : new ko.bindingContext(ko.utils.unwrapObservable(viewModelOrBindingContext));\n                var viewModel = bindingContextInstance['$data'];\n\n                // Optimization: Don't store the binding context on this node if it's definitely the same as on node.parentNode, because\n                // we can easily recover it just by scanning up the node's ancestors in the DOM\n                // (note: here, parent node means \"real DOM parent\" not \"virtual parent\", as there's no O(1) way to find the virtual parent)\n                if (bindingContextMayDifferFromDomParentElement)\n                    ko.storedBindingContextForNode(node, bindingContextInstance);\n\n                // Use evaluatedBindings if given, otherwise fall back on asking the bindings provider to give us some bindings\n                var evaluatedBindings = (typeof bindings == \"function\") ? bindings(bindingContextInstance, node) : bindings;\n                parsedBindings = evaluatedBindings || ko.bindingProvider['instance']['getBindings'](node, bindingContextInstance);\n\n                if (parsedBindings) {\n                    // First run all the inits, so bindings can register for notification on changes\n                    if (initPhase === 0) {\n                        initPhase = 1;\n                        for (var bindingKey in parsedBindings) {\n                            var binding = ko.bindingHandlers[bindingKey];\n                            if (binding && node.nodeType === 8)\n                                validateThatBindingIsAllowedForVirtualElements(bindingKey);\n\n                            if (binding && typeof binding[\"init\"] == \"function\") {\n                                var handlerInitFn = binding[\"init\"];\n                                var initResult = handlerInitFn(node, makeValueAccessor(bindingKey), parsedBindingsAccessor, viewModel, bindingContextInstance);\n\n                                // If this binding handler claims to control descendant bindings, make a note of this\n                                if (initResult && initResult['controlsDescendantBindings']) {\n                                    if (bindingHandlerThatControlsDescendantBindings !== undefined)\n                                        throw new Error(\"Multiple bindings (\" + bindingHandlerThatControlsDescendantBindings + \" and \" + bindingKey + \") are trying to control descendant bindings of the same element. You cannot use these bindings together on the same element.\");\n                                    bindingHandlerThatControlsDescendantBindings = bindingKey;\n                                }\n                            }\n                        }\n                        initPhase = 2;\n                    }\n\n                    // ... then run all the updates, which might trigger changes even on the first evaluation\n                    if (initPhase === 2) {\n                        for (var bindingKey in parsedBindings) {\n                            var binding = ko.bindingHandlers[bindingKey];\n                            if (binding && typeof binding[\"update\"] == \"function\") {\n                                var handlerUpdateFn = binding[\"update\"];\n                                handlerUpdateFn(node, makeValueAccessor(bindingKey), parsedBindingsAccessor, viewModel, bindingContextInstance);\n                            }\n                        }\n                    }\n                }\n            },\n            null,\n            { disposeWhenNodeIsRemoved : node }\n        );\n\n        return {\n            shouldBindDescendants: bindingHandlerThatControlsDescendantBindings === undefined\n        };\n    };\n\n    var storedBindingContextDomDataKey = \"__ko_bindingContext__\";\n    ko.storedBindingContextForNode = function (node, bindingContext) {\n        if (arguments.length == 2)\n            ko.utils.domData.set(node, storedBindingContextDomDataKey, bindingContext);\n        else\n            return ko.utils.domData.get(node, storedBindingContextDomDataKey);\n    }\n\n    ko.applyBindingsToNode = function (node, bindings, viewModel) {\n        if (node.nodeType === 1) // If it's an element, workaround IE <= 8 HTML parsing weirdness\n            ko.virtualElements.normaliseVirtualElementDomStructure(node);\n        return applyBindingsToNodeInternal(node, bindings, viewModel, true);\n    };\n\n    ko.applyBindingsToDescendants = function(viewModel, rootNode) {\n        if (rootNode.nodeType === 1 || rootNode.nodeType === 8)\n            applyBindingsToDescendantsInternal(viewModel, rootNode, true);\n    };\n\n    ko.applyBindings = function (viewModel, rootNode) {\n        if (rootNode && (rootNode.nodeType !== 1) && (rootNode.nodeType !== 8))\n            throw new Error(\"ko.applyBindings: first parameter should be your view model; second parameter should be a DOM node\");\n        rootNode = rootNode || window.document.body; // Make \"rootNode\" parameter optional\n\n        applyBindingsToNodeAndDescendantsInternal(viewModel, rootNode, true);\n    };\n\n    // Retrieving binding context from arbitrary nodes\n    ko.contextFor = function(node) {\n        // We can only do something meaningful for elements and comment nodes (in particular, not text nodes, as IE can't store domdata for them)\n        switch (node.nodeType) {\n            case 1:\n            case 8:\n                var context = ko.storedBindingContextForNode(node);\n                if (context) return context;\n                if (node.parentNode) return ko.contextFor(node.parentNode);\n                break;\n        }\n        return undefined;\n    };\n    ko.dataFor = function(node) {\n        var context = ko.contextFor(node);\n        return context ? context['$data'] : undefined;\n    };\n\n    ko.exportSymbol('bindingHandlers', ko.bindingHandlers);\n    ko.exportSymbol('applyBindings', ko.applyBindings);\n    ko.exportSymbol('applyBindingsToDescendants', ko.applyBindingsToDescendants);\n    ko.exportSymbol('applyBindingsToNode', ko.applyBindingsToNode);\n    ko.exportSymbol('contextFor', ko.contextFor);\n    ko.exportSymbol('dataFor', ko.dataFor);\n})();\nvar attrHtmlToJavascriptMap = { 'class': 'className', 'for': 'htmlFor' };\nko.bindingHandlers['attr'] = {\n    'update': function(element, valueAccessor, allBindingsAccessor) {\n        var value = ko.utils.unwrapObservable(valueAccessor()) || {};\n        for (var attrName in value) {\n            if (typeof attrName == \"string\") {\n                var attrValue = ko.utils.unwrapObservable(value[attrName]);\n\n                // To cover cases like \"attr: { checked:someProp }\", we want to remove the attribute entirely\n                // when someProp is a \"no value\"-like value (strictly null, false, or undefined)\n                // (because the absence of the \"checked\" attr is how to mark an element as not checked, etc.)\n                var toRemove = (attrValue === false) || (attrValue === null) || (attrValue === undefined);\n                if (toRemove)\n                    element.removeAttribute(attrName);\n\n                // In IE <= 7 and IE8 Quirks Mode, you have to use the Javascript property name instead of the\n                // HTML attribute name for certain attributes. IE8 Standards Mode supports the correct behavior,\n                // but instead of figuring out the mode, we'll just set the attribute through the Javascript\n                // property for IE <= 8.\n                if (ko.utils.ieVersion <= 8 && attrName in attrHtmlToJavascriptMap) {\n                    attrName = attrHtmlToJavascriptMap[attrName];\n                    if (toRemove)\n                        element.removeAttribute(attrName);\n                    else\n                        element[attrName] = attrValue;\n                } else if (!toRemove) {\n                    element.setAttribute(attrName, attrValue.toString());\n                }\n\n                // Treat \"name\" specially - although you can think of it as an attribute, it also needs\n                // special handling on older versions of IE (https://github.com/SteveSanderson/knockout/pull/333)\n                // Deliberately being case-sensitive here because XHTML would regard \"Name\" as a different thing\n                // entirely, and there's no strong reason to allow for such casing in HTML.\n                if (attrName === \"name\") {\n                    ko.utils.setElementName(element, toRemove ? \"\" : attrValue.toString());\n                }\n            }\n        }\n    }\n};\nko.bindingHandlers['checked'] = {\n    'init': function (element, valueAccessor, allBindingsAccessor) {\n        var updateHandler = function() {\n            var valueToWrite;\n            if (element.type == \"checkbox\") {\n                valueToWrite = element.checked;\n            } else if ((element.type == \"radio\") && (element.checked)) {\n                valueToWrite = element.value;\n            } else {\n                return; // \"checked\" binding only responds to checkboxes and selected radio buttons\n            }\n\n            var modelValue = valueAccessor(), unwrappedValue = ko.utils.unwrapObservable(modelValue);\n            if ((element.type == \"checkbox\") && (unwrappedValue instanceof Array)) {\n                // For checkboxes bound to an array, we add/remove the checkbox value to that array\n                // This works for both observable and non-observable arrays\n                var existingEntryIndex = ko.utils.arrayIndexOf(unwrappedValue, element.value);\n                if (element.checked && (existingEntryIndex < 0))\n                    modelValue.push(element.value);\n                else if ((!element.checked) && (existingEntryIndex >= 0))\n                    modelValue.splice(existingEntryIndex, 1);\n            } else {\n                ko.expressionRewriting.writeValueToProperty(modelValue, allBindingsAccessor, 'checked', valueToWrite, true);\n            }\n        };\n        ko.utils.registerEventHandler(element, \"click\", updateHandler);\n\n        // IE 6 won't allow radio buttons to be selected unless they have a name\n        if ((element.type == \"radio\") && !element.name)\n            ko.bindingHandlers['uniqueName']['init'](element, function() { return true });\n    },\n    'update': function (element, valueAccessor) {\n        var value = ko.utils.unwrapObservable(valueAccessor());\n\n        if (element.type == \"checkbox\") {\n            if (value instanceof Array) {\n                // When bound to an array, the checkbox being checked represents its value being present in that array\n                element.checked = ko.utils.arrayIndexOf(value, element.value) >= 0;\n            } else {\n                // When bound to anything other value (not an array), the checkbox being checked represents the value being trueish\n                element.checked = value;\n            }\n        } else if (element.type == \"radio\") {\n            element.checked = (element.value == value);\n        }\n    }\n};\nvar classesWrittenByBindingKey = '__ko__cssValue';\nko.bindingHandlers['css'] = {\n    'update': function (element, valueAccessor) {\n        var value = ko.utils.unwrapObservable(valueAccessor());\n        if (typeof value == \"object\") {\n            for (var className in value) {\n                var shouldHaveClass = ko.utils.unwrapObservable(value[className]);\n                ko.utils.toggleDomNodeCssClass(element, className, shouldHaveClass);\n            }\n        } else {\n            value = String(value || ''); // Make sure we don't try to store or set a non-string value\n            ko.utils.toggleDomNodeCssClass(element, element[classesWrittenByBindingKey], false);\n            element[classesWrittenByBindingKey] = value;\n            ko.utils.toggleDomNodeCssClass(element, value, true);\n        }\n    }\n};\nko.bindingHandlers['enable'] = {\n    'update': function (element, valueAccessor) {\n        var value = ko.utils.unwrapObservable(valueAccessor());\n        if (value && element.disabled)\n            element.removeAttribute(\"disabled\");\n        else if ((!value) && (!element.disabled))\n            element.disabled = true;\n    }\n};\n\nko.bindingHandlers['disable'] = {\n    'update': function (element, valueAccessor) {\n        ko.bindingHandlers['enable']['update'](element, function() { return !ko.utils.unwrapObservable(valueAccessor()) });\n    }\n};\n// For certain common events (currently just 'click'), allow a simplified data-binding syntax\n// e.g. click:handler instead of the usual full-length event:{click:handler}\nfunction makeEventHandlerShortcut(eventName) {\n    ko.bindingHandlers[eventName] = {\n        'init': function(element, valueAccessor, allBindingsAccessor, viewModel) {\n            var newValueAccessor = function () {\n                var result = {};\n                result[eventName] = valueAccessor();\n                return result;\n            };\n            return ko.bindingHandlers['event']['init'].call(this, element, newValueAccessor, allBindingsAccessor, viewModel);\n        }\n    }\n}\n\nko.bindingHandlers['event'] = {\n    'init' : function (element, valueAccessor, allBindingsAccessor, viewModel) {\n        var eventsToHandle = valueAccessor() || {};\n        for(var eventNameOutsideClosure in eventsToHandle) {\n            (function() {\n                var eventName = eventNameOutsideClosure; // Separate variable to be captured by event handler closure\n                if (typeof eventName == \"string\") {\n                    ko.utils.registerEventHandler(element, eventName, function (event) {\n                        var handlerReturnValue;\n                        var handlerFunction = valueAccessor()[eventName];\n                        if (!handlerFunction)\n                            return;\n                        var allBindings = allBindingsAccessor();\n\n                        try {\n                            // Take all the event args, and prefix with the viewmodel\n                            var argsForHandler = ko.utils.makeArray(arguments);\n                            argsForHandler.unshift(viewModel);\n                            handlerReturnValue = handlerFunction.apply(viewModel, argsForHandler);\n                        } finally {\n                            if (handlerReturnValue !== true) { // Normally we want to prevent default action. Developer can override this be explicitly returning true.\n                                if (event.preventDefault)\n                                    event.preventDefault();\n                                else\n                                    event.returnValue = false;\n                            }\n                        }\n\n                        var bubble = allBindings[eventName + 'Bubble'] !== false;\n                        if (!bubble) {\n                            event.cancelBubble = true;\n                            if (event.stopPropagation)\n                                event.stopPropagation();\n                        }\n                    });\n                }\n            })();\n        }\n    }\n};\n// \"foreach: someExpression\" is equivalent to \"template: { foreach: someExpression }\"\n// \"foreach: { data: someExpression, afterAdd: myfn }\" is equivalent to \"template: { foreach: someExpression, afterAdd: myfn }\"\nko.bindingHandlers['foreach'] = {\n    makeTemplateValueAccessor: function(valueAccessor) {\n        return function() {\n            var modelValue = valueAccessor(),\n                unwrappedValue = ko.utils.peekObservable(modelValue);    // Unwrap without setting a dependency here\n\n            // If unwrappedValue is the array, pass in the wrapped value on its own\n            // The value will be unwrapped and tracked within the template binding\n            // (See https://github.com/SteveSanderson/knockout/issues/523)\n            if ((!unwrappedValue) || typeof unwrappedValue.length == \"number\")\n                return { 'foreach': modelValue, 'templateEngine': ko.nativeTemplateEngine.instance };\n\n            // If unwrappedValue.data is the array, preserve all relevant options and unwrap again value so we get updates\n            ko.utils.unwrapObservable(modelValue);\n            return {\n                'foreach': unwrappedValue['data'],\n                'as': unwrappedValue['as'],\n                'includeDestroyed': unwrappedValue['includeDestroyed'],\n                'afterAdd': unwrappedValue['afterAdd'],\n                'beforeRemove': unwrappedValue['beforeRemove'],\n                'afterRender': unwrappedValue['afterRender'],\n                'beforeMove': unwrappedValue['beforeMove'],\n                'afterMove': unwrappedValue['afterMove'],\n                'templateEngine': ko.nativeTemplateEngine.instance\n            };\n        };\n    },\n    'init': function(element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {\n        return ko.bindingHandlers['template']['init'](element, ko.bindingHandlers['foreach'].makeTemplateValueAccessor(valueAccessor));\n    },\n    'update': function(element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {\n        return ko.bindingHandlers['template']['update'](element, ko.bindingHandlers['foreach'].makeTemplateValueAccessor(valueAccessor), allBindingsAccessor, viewModel, bindingContext);\n    }\n};\nko.expressionRewriting.bindingRewriteValidators['foreach'] = false; // Can't rewrite control flow bindings\nko.virtualElements.allowedBindings['foreach'] = true;\nvar hasfocusUpdatingProperty = '__ko_hasfocusUpdating';\nko.bindingHandlers['hasfocus'] = {\n    'init': function(element, valueAccessor, allBindingsAccessor) {\n        var handleElementFocusChange = function(isFocused) {\n            // Where possible, ignore which event was raised and determine focus state using activeElement,\n            // as this avoids phantom focus/blur events raised when changing tabs in modern browsers.\n            // However, not all KO-targeted browsers (Firefox 2) support activeElement. For those browsers,\n            // prevent a loss of focus when changing tabs/windows by setting a flag that prevents hasfocus\n            // from calling 'blur()' on the element when it loses focus.\n            // Discussion at https://github.com/SteveSanderson/knockout/pull/352\n            element[hasfocusUpdatingProperty] = true;\n            var ownerDoc = element.ownerDocument;\n            if (\"activeElement\" in ownerDoc) {\n                isFocused = (ownerDoc.activeElement === element);\n            }\n            var modelValue = valueAccessor();\n            ko.expressionRewriting.writeValueToProperty(modelValue, allBindingsAccessor, 'hasfocus', isFocused, true);\n            element[hasfocusUpdatingProperty] = false;\n        };\n        var handleElementFocusIn = handleElementFocusChange.bind(null, true);\n        var handleElementFocusOut = handleElementFocusChange.bind(null, false);\n\n        ko.utils.registerEventHandler(element, \"focus\", handleElementFocusIn);\n        ko.utils.registerEventHandler(element, \"focusin\", handleElementFocusIn); // For IE\n        ko.utils.registerEventHandler(element, \"blur\",  handleElementFocusOut);\n        ko.utils.registerEventHandler(element, \"focusout\",  handleElementFocusOut); // For IE\n    },\n    'update': function(element, valueAccessor) {\n        var value = ko.utils.unwrapObservable(valueAccessor());\n        if (!element[hasfocusUpdatingProperty]) {\n            value ? element.focus() : element.blur();\n            ko.dependencyDetection.ignore(ko.utils.triggerEvent, null, [element, value ? \"focusin\" : \"focusout\"]); // For IE, which doesn't reliably fire \"focus\" or \"blur\" events synchronously\n        }\n    }\n};\nko.bindingHandlers['html'] = {\n    'init': function() {\n        // Prevent binding on the dynamically-injected HTML (as developers are unlikely to expect that, and it has security implications)\n        return { 'controlsDescendantBindings': true };\n    },\n    'update': function (element, valueAccessor) {\n        // setHtml will unwrap the value if needed\n        ko.utils.setHtml(element, valueAccessor());\n    }\n};\nvar withIfDomDataKey = '__ko_withIfBindingData';\n// Makes a binding like with or if\nfunction makeWithIfBinding(bindingKey, isWith, isNot, makeContextCallback) {\n    ko.bindingHandlers[bindingKey] = {\n        'init': function(element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {\n            ko.utils.domData.set(element, withIfDomDataKey, {});\n            return { 'controlsDescendantBindings': true };\n        },\n        'update': function(element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {\n            var withIfData = ko.utils.domData.get(element, withIfDomDataKey),\n                dataValue = ko.utils.unwrapObservable(valueAccessor()),\n                shouldDisplay = !isNot !== !dataValue, // equivalent to isNot ? !dataValue : !!dataValue\n                isFirstRender = !withIfData.savedNodes,\n                needsRefresh = isFirstRender || isWith || (shouldDisplay !== withIfData.didDisplayOnLastUpdate);\n\n            if (needsRefresh) {\n                if (isFirstRender) {\n                    withIfData.savedNodes = ko.utils.cloneNodes(ko.virtualElements.childNodes(element), true /* shouldCleanNodes */);\n                }\n\n                if (shouldDisplay) {\n                    if (!isFirstRender) {\n                        ko.virtualElements.setDomNodeChildren(element, ko.utils.cloneNodes(withIfData.savedNodes));\n                    }\n                    ko.applyBindingsToDescendants(makeContextCallback ? makeContextCallback(bindingContext, dataValue) : bindingContext, element);\n                } else {\n                    ko.virtualElements.emptyNode(element);\n                }\n\n                withIfData.didDisplayOnLastUpdate = shouldDisplay;\n            }\n        }\n    };\n    ko.expressionRewriting.bindingRewriteValidators[bindingKey] = false; // Can't rewrite control flow bindings\n    ko.virtualElements.allowedBindings[bindingKey] = true;\n}\n\n// Construct the actual binding handlers\nmakeWithIfBinding('if');\nmakeWithIfBinding('ifnot', false /* isWith */, true /* isNot */);\nmakeWithIfBinding('with', true /* isWith */, false /* isNot */,\n    function(bindingContext, dataValue) {\n        return bindingContext['createChildContext'](dataValue);\n    }\n);\nfunction ensureDropdownSelectionIsConsistentWithModelValue(element, modelValue, preferModelValue) {\n    if (preferModelValue) {\n        if (modelValue !== ko.selectExtensions.readValue(element))\n            ko.selectExtensions.writeValue(element, modelValue);\n    }\n\n    // No matter which direction we're syncing in, we want the end result to be equality between dropdown value and model value.\n    // If they aren't equal, either we prefer the dropdown value, or the model value couldn't be represented, so either way,\n    // change the model value to match the dropdown.\n    if (modelValue !== ko.selectExtensions.readValue(element))\n        ko.dependencyDetection.ignore(ko.utils.triggerEvent, null, [element, \"change\"]);\n};\n\nko.bindingHandlers['options'] = {\n    'update': function (element, valueAccessor, allBindingsAccessor) {\n        if (ko.utils.tagNameLower(element) !== \"select\")\n            throw new Error(\"options binding applies only to SELECT elements\");\n\n        var selectWasPreviouslyEmpty = element.length == 0;\n        var previousSelectedValues = ko.utils.arrayMap(ko.utils.arrayFilter(element.childNodes, function (node) {\n            return node.tagName && (ko.utils.tagNameLower(node) === \"option\") && node.selected;\n        }), function (node) {\n            return ko.selectExtensions.readValue(node) || node.innerText || node.textContent;\n        });\n        var previousScrollTop = element.scrollTop;\n\n        var value = ko.utils.unwrapObservable(valueAccessor());\n        var selectedValue = element.value;\n\n        // Remove all existing <option>s.\n        // Need to use .remove() rather than .removeChild() for <option>s otherwise IE behaves oddly (https://github.com/SteveSanderson/knockout/issues/134)\n        while (element.length > 0) {\n            ko.cleanNode(element.options[0]);\n            element.remove(0);\n        }\n\n        if (value) {\n            var allBindings = allBindingsAccessor(),\n                includeDestroyed = allBindings['optionsIncludeDestroyed'];\n\n            if (typeof value.length != \"number\")\n                value = [value];\n            if (allBindings['optionsCaption']) {\n                var option = document.createElement(\"option\");\n                ko.utils.setHtml(option, allBindings['optionsCaption']);\n                ko.selectExtensions.writeValue(option, undefined);\n                element.appendChild(option);\n            }\n\n            for (var i = 0, j = value.length; i < j; i++) {\n                // Skip destroyed items\n                var arrayEntry = value[i];\n                if (arrayEntry && arrayEntry['_destroy'] && !includeDestroyed)\n                    continue;\n\n                var option = document.createElement(\"option\");\n\n                function applyToObject(object, predicate, defaultValue) {\n                    var predicateType = typeof predicate;\n                    if (predicateType == \"function\")    // Given a function; run it against the data value\n                        return predicate(object);\n                    else if (predicateType == \"string\") // Given a string; treat it as a property name on the data value\n                        return object[predicate];\n                    else                                // Given no optionsText arg; use the data value itself\n                        return defaultValue;\n                }\n\n                // Apply a value to the option element\n                var optionValue = applyToObject(arrayEntry, allBindings['optionsValue'], arrayEntry);\n                ko.selectExtensions.writeValue(option, ko.utils.unwrapObservable(optionValue));\n\n                // Apply some text to the option element\n                var optionText = applyToObject(arrayEntry, allBindings['optionsText'], optionValue);\n                ko.utils.setTextContent(option, optionText);\n\n                element.appendChild(option);\n            }\n\n            // IE6 doesn't like us to assign selection to OPTION nodes before they're added to the document.\n            // That's why we first added them without selection. Now it's time to set the selection.\n            var newOptions = element.getElementsByTagName(\"option\");\n            var countSelectionsRetained = 0;\n            for (var i = 0, j = newOptions.length; i < j; i++) {\n                if (ko.utils.arrayIndexOf(previousSelectedValues, ko.selectExtensions.readValue(newOptions[i])) >= 0) {\n                    ko.utils.setOptionNodeSelectionState(newOptions[i], true);\n                    countSelectionsRetained++;\n                }\n            }\n\n            element.scrollTop = previousScrollTop;\n\n            if (selectWasPreviouslyEmpty && ('value' in allBindings)) {\n                // Ensure consistency between model value and selected option.\n                // If the dropdown is being populated for the first time here (or was otherwise previously empty),\n                // the dropdown selection state is meaningless, so we preserve the model value.\n                ensureDropdownSelectionIsConsistentWithModelValue(element, ko.utils.peekObservable(allBindings['value']), /* preferModelValue */ true);\n            }\n\n            // Workaround for IE9 bug\n            ko.utils.ensureSelectElementIsRenderedCorrectly(element);\n        }\n    }\n};\nko.bindingHandlers['options'].optionValueDomDataKey = '__ko.optionValueDomData__';\nko.bindingHandlers['selectedOptions'] = {\n    'init': function (element, valueAccessor, allBindingsAccessor) {\n        ko.utils.registerEventHandler(element, \"change\", function () {\n            var value = valueAccessor(), valueToWrite = [];\n            ko.utils.arrayForEach(element.getElementsByTagName(\"option\"), function(node) {\n                if (node.selected)\n                    valueToWrite.push(ko.selectExtensions.readValue(node));\n            });\n            ko.expressionRewriting.writeValueToProperty(value, allBindingsAccessor, 'value', valueToWrite);\n        });\n    },\n    'update': function (element, valueAccessor) {\n        if (ko.utils.tagNameLower(element) != \"select\")\n            throw new Error(\"values binding applies only to SELECT elements\");\n\n        var newValue = ko.utils.unwrapObservable(valueAccessor());\n        if (newValue && typeof newValue.length == \"number\") {\n            ko.utils.arrayForEach(element.getElementsByTagName(\"option\"), function(node) {\n                var isSelected = ko.utils.arrayIndexOf(newValue, ko.selectExtensions.readValue(node)) >= 0;\n                ko.utils.setOptionNodeSelectionState(node, isSelected);\n            });\n        }\n    }\n};\nko.bindingHandlers['style'] = {\n    'update': function (element, valueAccessor) {\n        var value = ko.utils.unwrapObservable(valueAccessor() || {});\n        for (var styleName in value) {\n            if (typeof styleName == \"string\") {\n                var styleValue = ko.utils.unwrapObservable(value[styleName]);\n                element.style[styleName] = styleValue || \"\"; // Empty string removes the value, whereas null/undefined have no effect\n            }\n        }\n    }\n};\nko.bindingHandlers['submit'] = {\n    'init': function (element, valueAccessor, allBindingsAccessor, viewModel) {\n        if (typeof valueAccessor() != \"function\")\n            throw new Error(\"The value for a submit binding must be a function\");\n        ko.utils.registerEventHandler(element, \"submit\", function (event) {\n            var handlerReturnValue;\n            var value = valueAccessor();\n            try { handlerReturnValue = value.call(viewModel, element); }\n            finally {\n                if (handlerReturnValue !== true) { // Normally we want to prevent default action. Developer can override this be explicitly returning true.\n                    if (event.preventDefault)\n                        event.preventDefault();\n                    else\n                        event.returnValue = false;\n                }\n            }\n        });\n    }\n};\nko.bindingHandlers['text'] = {\n    'update': function (element, valueAccessor) {\n        ko.utils.setTextContent(element, valueAccessor());\n    }\n};\nko.virtualElements.allowedBindings['text'] = true;\nko.bindingHandlers['uniqueName'] = {\n    'init': function (element, valueAccessor) {\n        if (valueAccessor()) {\n            var name = \"ko_unique_\" + (++ko.bindingHandlers['uniqueName'].currentIndex);\n            ko.utils.setElementName(element, name);\n        }\n    }\n};\nko.bindingHandlers['uniqueName'].currentIndex = 0;\nko.bindingHandlers['value'] = {\n    'init': function (element, valueAccessor, allBindingsAccessor) {\n        // Always catch \"change\" event; possibly other events too if asked\n        var eventsToCatch = [\"change\"];\n        var requestedEventsToCatch = allBindingsAccessor()[\"valueUpdate\"];\n        var propertyChangedFired = false;\n        if (requestedEventsToCatch) {\n            if (typeof requestedEventsToCatch == \"string\") // Allow both individual event names, and arrays of event names\n                requestedEventsToCatch = [requestedEventsToCatch];\n            ko.utils.arrayPushAll(eventsToCatch, requestedEventsToCatch);\n            eventsToCatch = ko.utils.arrayGetDistinctValues(eventsToCatch);\n        }\n\n        var valueUpdateHandler = function() {\n            propertyChangedFired = false;\n            var modelValue = valueAccessor();\n            var elementValue = ko.selectExtensions.readValue(element);\n            ko.expressionRewriting.writeValueToProperty(modelValue, allBindingsAccessor, 'value', elementValue);\n        }\n\n        // Workaround for https://github.com/SteveSanderson/knockout/issues/122\n        // IE doesn't fire \"change\" events on textboxes if the user selects a value from its autocomplete list\n        var ieAutoCompleteHackNeeded = ko.utils.ieVersion && element.tagName.toLowerCase() == \"input\" && element.type == \"text\"\n                                       && element.autocomplete != \"off\" && (!element.form || element.form.autocomplete != \"off\");\n        if (ieAutoCompleteHackNeeded && ko.utils.arrayIndexOf(eventsToCatch, \"propertychange\") == -1) {\n            ko.utils.registerEventHandler(element, \"propertychange\", function () { propertyChangedFired = true });\n            ko.utils.registerEventHandler(element, \"blur\", function() {\n                if (propertyChangedFired) {\n                    valueUpdateHandler();\n                }\n            });\n        }\n\n        ko.utils.arrayForEach(eventsToCatch, function(eventName) {\n            // The syntax \"after<eventname>\" means \"run the handler asynchronously after the event\"\n            // This is useful, for example, to catch \"keydown\" events after the browser has updated the control\n            // (otherwise, ko.selectExtensions.readValue(this) will receive the control's value *before* the key event)\n            var handler = valueUpdateHandler;\n            if (ko.utils.stringStartsWith(eventName, \"after\")) {\n                handler = function() { setTimeout(valueUpdateHandler, 0) };\n                eventName = eventName.substring(\"after\".length);\n            }\n            ko.utils.registerEventHandler(element, eventName, handler);\n        });\n    },\n    'update': function (element, valueAccessor) {\n        var valueIsSelectOption = ko.utils.tagNameLower(element) === \"select\";\n        var newValue = ko.utils.unwrapObservable(valueAccessor());\n        var elementValue = ko.selectExtensions.readValue(element);\n        var valueHasChanged = (newValue != elementValue);\n\n        // JavaScript's 0 == \"\" behavious is unfortunate here as it prevents writing 0 to an empty text box (loose equality suggests the values are the same).\n        // We don't want to do a strict equality comparison as that is more confusing for developers in certain cases, so we specifically special case 0 != \"\" here.\n        if ((newValue === 0) && (elementValue !== 0) && (elementValue !== \"0\"))\n            valueHasChanged = true;\n\n        if (valueHasChanged) {\n            var applyValueAction = function () { ko.selectExtensions.writeValue(element, newValue); };\n            applyValueAction();\n\n            // Workaround for IE6 bug: It won't reliably apply values to SELECT nodes during the same execution thread\n            // right after you've changed the set of OPTION nodes on it. So for that node type, we'll schedule a second thread\n            // to apply the value as well.\n            var alsoApplyAsynchronously = valueIsSelectOption;\n            if (alsoApplyAsynchronously)\n                setTimeout(applyValueAction, 0);\n        }\n\n        // If you try to set a model value that can't be represented in an already-populated dropdown, reject that change,\n        // because you're not allowed to have a model value that disagrees with a visible UI selection.\n        if (valueIsSelectOption && (element.length > 0))\n            ensureDropdownSelectionIsConsistentWithModelValue(element, newValue, /* preferModelValue */ false);\n    }\n};\nko.bindingHandlers['visible'] = {\n    'update': function (element, valueAccessor) {\n        var value = ko.utils.unwrapObservable(valueAccessor());\n        var isCurrentlyVisible = !(element.style.display == \"none\");\n        if (value && !isCurrentlyVisible)\n            element.style.display = \"\";\n        else if ((!value) && isCurrentlyVisible)\n            element.style.display = \"none\";\n    }\n};\n// 'click' is just a shorthand for the usual full-length event:{click:handler}\nmakeEventHandlerShortcut('click');\n// If you want to make a custom template engine,\n//\n// [1] Inherit from this class (like ko.nativeTemplateEngine does)\n// [2] Override 'renderTemplateSource', supplying a function with this signature:\n//\n//        function (templateSource, bindingContext, options) {\n//            // - templateSource.text() is the text of the template you should render\n//            // - bindingContext.$data is the data you should pass into the template\n//            //   - you might also want to make bindingContext.$parent, bindingContext.$parents,\n//            //     and bindingContext.$root available in the template too\n//            // - options gives you access to any other properties set on \"data-bind: { template: options }\"\n//            //\n//            // Return value: an array of DOM nodes\n//        }\n//\n// [3] Override 'createJavaScriptEvaluatorBlock', supplying a function with this signature:\n//\n//        function (script) {\n//            // Return value: Whatever syntax means \"Evaluate the JavaScript statement 'script' and output the result\"\n//            //               For example, the jquery.tmpl template engine converts 'someScript' to '${ someScript }'\n//        }\n//\n//     This is only necessary if you want to allow data-bind attributes to reference arbitrary template variables.\n//     If you don't want to allow that, you can set the property 'allowTemplateRewriting' to false (like ko.nativeTemplateEngine does)\n//     and then you don't need to override 'createJavaScriptEvaluatorBlock'.\n\nko.templateEngine = function () { };\n\nko.templateEngine.prototype['renderTemplateSource'] = function (templateSource, bindingContext, options) {\n    throw new Error(\"Override renderTemplateSource\");\n};\n\nko.templateEngine.prototype['createJavaScriptEvaluatorBlock'] = function (script) {\n    throw new Error(\"Override createJavaScriptEvaluatorBlock\");\n};\n\nko.templateEngine.prototype['makeTemplateSource'] = function(template, templateDocument) {\n    // Named template\n    if (typeof template == \"string\") {\n        templateDocument = templateDocument || document;\n        var elem = templateDocument.getElementById(template);\n        if (!elem)\n            throw new Error(\"Cannot find template with ID \" + template);\n        return new ko.templateSources.domElement(elem);\n    } else if ((template.nodeType == 1) || (template.nodeType == 8)) {\n        // Anonymous template\n        return new ko.templateSources.anonymousTemplate(template);\n    } else\n        throw new Error(\"Unknown template type: \" + template);\n};\n\nko.templateEngine.prototype['renderTemplate'] = function (template, bindingContext, options, templateDocument) {\n    var templateSource = this['makeTemplateSource'](template, templateDocument);\n    return this['renderTemplateSource'](templateSource, bindingContext, options);\n};\n\nko.templateEngine.prototype['isTemplateRewritten'] = function (template, templateDocument) {\n    // Skip rewriting if requested\n    if (this['allowTemplateRewriting'] === false)\n        return true;\n    return this['makeTemplateSource'](template, templateDocument)['data'](\"isRewritten\");\n};\n\nko.templateEngine.prototype['rewriteTemplate'] = function (template, rewriterCallback, templateDocument) {\n    var templateSource = this['makeTemplateSource'](template, templateDocument);\n    var rewritten = rewriterCallback(templateSource['text']());\n    templateSource['text'](rewritten);\n    templateSource['data'](\"isRewritten\", true);\n};\n\nko.exportSymbol('templateEngine', ko.templateEngine);\n\nko.templateRewriting = (function () {\n    var memoizeDataBindingAttributeSyntaxRegex = /(<[a-z]+\\d*(\\s+(?!data-bind=)[a-z0-9\\-]+(=(\\\"[^\\\"]*\\\"|\\'[^\\']*\\'))?)*\\s+)data-bind=([\"'])([\\s\\S]*?)\\5/gi;\n    var memoizeVirtualContainerBindingSyntaxRegex = /<!--\\s*ko\\b\\s*([\\s\\S]*?)\\s*-->/g;\n\n    function validateDataBindValuesForRewriting(keyValueArray) {\n        var allValidators = ko.expressionRewriting.bindingRewriteValidators;\n        for (var i = 0; i < keyValueArray.length; i++) {\n            var key = keyValueArray[i]['key'];\n            if (allValidators.hasOwnProperty(key)) {\n                var validator = allValidators[key];\n\n                if (typeof validator === \"function\") {\n                    var possibleErrorMessage = validator(keyValueArray[i]['value']);\n                    if (possibleErrorMessage)\n                        throw new Error(possibleErrorMessage);\n                } else if (!validator) {\n                    throw new Error(\"This template engine does not support the '\" + key + \"' binding within its templates\");\n                }\n            }\n        }\n    }\n\n    function constructMemoizedTagReplacement(dataBindAttributeValue, tagToRetain, templateEngine) {\n        var dataBindKeyValueArray = ko.expressionRewriting.parseObjectLiteral(dataBindAttributeValue);\n        validateDataBindValuesForRewriting(dataBindKeyValueArray);\n        var rewrittenDataBindAttributeValue = ko.expressionRewriting.preProcessBindings(dataBindKeyValueArray);\n\n        // For no obvious reason, Opera fails to evaluate rewrittenDataBindAttributeValue unless it's wrapped in an additional\n        // anonymous function, even though Opera's built-in debugger can evaluate it anyway. No other browser requires this\n        // extra indirection.\n        var applyBindingsToNextSiblingScript =\n            \"ko.__tr_ambtns(function($context,$element){return(function(){return{ \" + rewrittenDataBindAttributeValue + \" } })()})\";\n        return templateEngine['createJavaScriptEvaluatorBlock'](applyBindingsToNextSiblingScript) + tagToRetain;\n    }\n\n    return {\n        ensureTemplateIsRewritten: function (template, templateEngine, templateDocument) {\n            if (!templateEngine['isTemplateRewritten'](template, templateDocument))\n                templateEngine['rewriteTemplate'](template, function (htmlString) {\n                    return ko.templateRewriting.memoizeBindingAttributeSyntax(htmlString, templateEngine);\n                }, templateDocument);\n        },\n\n        memoizeBindingAttributeSyntax: function (htmlString, templateEngine) {\n            return htmlString.replace(memoizeDataBindingAttributeSyntaxRegex, function () {\n                return constructMemoizedTagReplacement(/* dataBindAttributeValue: */ arguments[6], /* tagToRetain: */ arguments[1], templateEngine);\n            }).replace(memoizeVirtualContainerBindingSyntaxRegex, function() {\n                return constructMemoizedTagReplacement(/* dataBindAttributeValue: */ arguments[1], /* tagToRetain: */ \"<!-- ko -->\", templateEngine);\n            });\n        },\n\n        applyMemoizedBindingsToNextSibling: function (bindings) {\n            return ko.memoization.memoize(function (domNode, bindingContext) {\n                if (domNode.nextSibling)\n                    ko.applyBindingsToNode(domNode.nextSibling, bindings, bindingContext);\n            });\n        }\n    }\n})();\n\n\n// Exported only because it has to be referenced by string lookup from within rewritten template\nko.exportSymbol('__tr_ambtns', ko.templateRewriting.applyMemoizedBindingsToNextSibling);\n(function() {\n    // A template source represents a read/write way of accessing a template. This is to eliminate the need for template loading/saving\n    // logic to be duplicated in every template engine (and means they can all work with anonymous templates, etc.)\n    //\n    // Two are provided by default:\n    //  1. ko.templateSources.domElement       - reads/writes the text content of an arbitrary DOM element\n    //  2. ko.templateSources.anonymousElement - uses ko.utils.domData to read/write text *associated* with the DOM element, but\n    //                                           without reading/writing the actual element text content, since it will be overwritten\n    //                                           with the rendered template output.\n    // You can implement your own template source if you want to fetch/store templates somewhere other than in DOM elements.\n    // Template sources need to have the following functions:\n    //   text() \t\t\t- returns the template text from your storage location\n    //   text(value)\t\t- writes the supplied template text to your storage location\n    //   data(key)\t\t\t- reads values stored using data(key, value) - see below\n    //   data(key, value)\t- associates \"value\" with this template and the key \"key\". Is used to store information like \"isRewritten\".\n    //\n    // Optionally, template sources can also have the following functions:\n    //   nodes()            - returns a DOM element containing the nodes of this template, where available\n    //   nodes(value)       - writes the given DOM element to your storage location\n    // If a DOM element is available for a given template source, template engines are encouraged to use it in preference over text()\n    // for improved speed. However, all templateSources must supply text() even if they don't supply nodes().\n    //\n    // Once you've implemented a templateSource, make your template engine use it by subclassing whatever template engine you were\n    // using and overriding \"makeTemplateSource\" to return an instance of your custom template source.\n\n    ko.templateSources = {};\n\n    // ---- ko.templateSources.domElement -----\n\n    ko.templateSources.domElement = function(element) {\n        this.domElement = element;\n    }\n\n    ko.templateSources.domElement.prototype['text'] = function(/* valueToWrite */) {\n        var tagNameLower = ko.utils.tagNameLower(this.domElement),\n            elemContentsProperty = tagNameLower === \"script\" ? \"text\"\n                                 : tagNameLower === \"textarea\" ? \"value\"\n                                 : \"innerHTML\";\n\n        if (arguments.length == 0) {\n            return this.domElement[elemContentsProperty];\n        } else {\n            var valueToWrite = arguments[0];\n            if (elemContentsProperty === \"innerHTML\")\n                ko.utils.setHtml(this.domElement, valueToWrite);\n            else\n                this.domElement[elemContentsProperty] = valueToWrite;\n        }\n    };\n\n    ko.templateSources.domElement.prototype['data'] = function(key /*, valueToWrite */) {\n        if (arguments.length === 1) {\n            return ko.utils.domData.get(this.domElement, \"templateSourceData_\" + key);\n        } else {\n            ko.utils.domData.set(this.domElement, \"templateSourceData_\" + key, arguments[1]);\n        }\n    };\n\n    // ---- ko.templateSources.anonymousTemplate -----\n    // Anonymous templates are normally saved/retrieved as DOM nodes through \"nodes\".\n    // For compatibility, you can also read \"text\"; it will be serialized from the nodes on demand.\n    // Writing to \"text\" is still supported, but then the template data will not be available as DOM nodes.\n\n    var anonymousTemplatesDomDataKey = \"__ko_anon_template__\";\n    ko.templateSources.anonymousTemplate = function(element) {\n        this.domElement = element;\n    }\n    ko.templateSources.anonymousTemplate.prototype = new ko.templateSources.domElement();\n    ko.templateSources.anonymousTemplate.prototype['text'] = function(/* valueToWrite */) {\n        if (arguments.length == 0) {\n            var templateData = ko.utils.domData.get(this.domElement, anonymousTemplatesDomDataKey) || {};\n            if (templateData.textData === undefined && templateData.containerData)\n                templateData.textData = templateData.containerData.innerHTML;\n            return templateData.textData;\n        } else {\n            var valueToWrite = arguments[0];\n            ko.utils.domData.set(this.domElement, anonymousTemplatesDomDataKey, {textData: valueToWrite});\n        }\n    };\n    ko.templateSources.domElement.prototype['nodes'] = function(/* valueToWrite */) {\n        if (arguments.length == 0) {\n            var templateData = ko.utils.domData.get(this.domElement, anonymousTemplatesDomDataKey) || {};\n            return templateData.containerData;\n        } else {\n            var valueToWrite = arguments[0];\n            ko.utils.domData.set(this.domElement, anonymousTemplatesDomDataKey, {containerData: valueToWrite});\n        }\n    };\n\n    ko.exportSymbol('templateSources', ko.templateSources);\n    ko.exportSymbol('templateSources.domElement', ko.templateSources.domElement);\n    ko.exportSymbol('templateSources.anonymousTemplate', ko.templateSources.anonymousTemplate);\n})();\n(function () {\n    var _templateEngine;\n    ko.setTemplateEngine = function (templateEngine) {\n        if ((templateEngine != undefined) && !(templateEngine instanceof ko.templateEngine))\n            throw new Error(\"templateEngine must inherit from ko.templateEngine\");\n        _templateEngine = templateEngine;\n    }\n\n    function invokeForEachNodeOrCommentInContinuousRange(firstNode, lastNode, action) {\n        var node, nextInQueue = firstNode, firstOutOfRangeNode = ko.virtualElements.nextSibling(lastNode);\n        while (nextInQueue && ((node = nextInQueue) !== firstOutOfRangeNode)) {\n            nextInQueue = ko.virtualElements.nextSibling(node);\n            if (node.nodeType === 1 || node.nodeType === 8)\n                action(node);\n        }\n    }\n\n    function activateBindingsOnContinuousNodeArray(continuousNodeArray, bindingContext) {\n        // To be used on any nodes that have been rendered by a template and have been inserted into some parent element\n        // Walks through continuousNodeArray (which *must* be continuous, i.e., an uninterrupted sequence of sibling nodes, because\n        // the algorithm for walking them relies on this), and for each top-level item in the virtual-element sense,\n        // (1) Does a regular \"applyBindings\" to associate bindingContext with this node and to activate any non-memoized bindings\n        // (2) Unmemoizes any memos in the DOM subtree (e.g., to activate bindings that had been memoized during template rewriting)\n\n        if (continuousNodeArray.length) {\n            var firstNode = continuousNodeArray[0], lastNode = continuousNodeArray[continuousNodeArray.length - 1];\n\n            // Need to applyBindings *before* unmemoziation, because unmemoization might introduce extra nodes (that we don't want to re-bind)\n            // whereas a regular applyBindings won't introduce new memoized nodes\n            invokeForEachNodeOrCommentInContinuousRange(firstNode, lastNode, function(node) {\n                ko.applyBindings(bindingContext, node);\n            });\n            invokeForEachNodeOrCommentInContinuousRange(firstNode, lastNode, function(node) {\n                ko.memoization.unmemoizeDomNodeAndDescendants(node, [bindingContext]);\n            });\n        }\n    }\n\n    function getFirstNodeFromPossibleArray(nodeOrNodeArray) {\n        return nodeOrNodeArray.nodeType ? nodeOrNodeArray\n                                        : nodeOrNodeArray.length > 0 ? nodeOrNodeArray[0]\n                                        : null;\n    }\n\n    function executeTemplate(targetNodeOrNodeArray, renderMode, template, bindingContext, options) {\n        options = options || {};\n        var firstTargetNode = targetNodeOrNodeArray && getFirstNodeFromPossibleArray(targetNodeOrNodeArray);\n        var templateDocument = firstTargetNode && firstTargetNode.ownerDocument;\n        var templateEngineToUse = (options['templateEngine'] || _templateEngine);\n        ko.templateRewriting.ensureTemplateIsRewritten(template, templateEngineToUse, templateDocument);\n        var renderedNodesArray = templateEngineToUse['renderTemplate'](template, bindingContext, options, templateDocument);\n\n        // Loosely check result is an array of DOM nodes\n        if ((typeof renderedNodesArray.length != \"number\") || (renderedNodesArray.length > 0 && typeof renderedNodesArray[0].nodeType != \"number\"))\n            throw new Error(\"Template engine must return an array of DOM nodes\");\n\n        var haveAddedNodesToParent = false;\n        switch (renderMode) {\n            case \"replaceChildren\":\n                ko.virtualElements.setDomNodeChildren(targetNodeOrNodeArray, renderedNodesArray);\n                haveAddedNodesToParent = true;\n                break;\n            case \"replaceNode\":\n                ko.utils.replaceDomNodes(targetNodeOrNodeArray, renderedNodesArray);\n                haveAddedNodesToParent = true;\n                break;\n            case \"ignoreTargetNode\": break;\n            default:\n                throw new Error(\"Unknown renderMode: \" + renderMode);\n        }\n\n        if (haveAddedNodesToParent) {\n            activateBindingsOnContinuousNodeArray(renderedNodesArray, bindingContext);\n            if (options['afterRender'])\n                ko.dependencyDetection.ignore(options['afterRender'], null, [renderedNodesArray, bindingContext['$data']]);\n        }\n\n        return renderedNodesArray;\n    }\n\n    ko.renderTemplate = function (template, dataOrBindingContext, options, targetNodeOrNodeArray, renderMode) {\n        options = options || {};\n        if ((options['templateEngine'] || _templateEngine) == undefined)\n            throw new Error(\"Set a template engine before calling renderTemplate\");\n        renderMode = renderMode || \"replaceChildren\";\n\n        if (targetNodeOrNodeArray) {\n            var firstTargetNode = getFirstNodeFromPossibleArray(targetNodeOrNodeArray);\n\n            var whenToDispose = function () { return (!firstTargetNode) || !ko.utils.domNodeIsAttachedToDocument(firstTargetNode); }; // Passive disposal (on next evaluation)\n            var activelyDisposeWhenNodeIsRemoved = (firstTargetNode && renderMode == \"replaceNode\") ? firstTargetNode.parentNode : firstTargetNode;\n\n            return ko.dependentObservable( // So the DOM is automatically updated when any dependency changes\n                function () {\n                    // Ensure we've got a proper binding context to work with\n                    var bindingContext = (dataOrBindingContext && (dataOrBindingContext instanceof ko.bindingContext))\n                        ? dataOrBindingContext\n                        : new ko.bindingContext(ko.utils.unwrapObservable(dataOrBindingContext));\n\n                    // Support selecting template as a function of the data being rendered\n                    var templateName = typeof(template) == 'function' ? template(bindingContext['$data'], bindingContext) : template;\n\n                    var renderedNodesArray = executeTemplate(targetNodeOrNodeArray, renderMode, templateName, bindingContext, options);\n                    if (renderMode == \"replaceNode\") {\n                        targetNodeOrNodeArray = renderedNodesArray;\n                        firstTargetNode = getFirstNodeFromPossibleArray(targetNodeOrNodeArray);\n                    }\n                },\n                null,\n                { disposeWhen: whenToDispose, disposeWhenNodeIsRemoved: activelyDisposeWhenNodeIsRemoved }\n            );\n        } else {\n            // We don't yet have a DOM node to evaluate, so use a memo and render the template later when there is a DOM node\n            return ko.memoization.memoize(function (domNode) {\n                ko.renderTemplate(template, dataOrBindingContext, options, domNode, \"replaceNode\");\n            });\n        }\n    };\n\n    ko.renderTemplateForEach = function (template, arrayOrObservableArray, options, targetNode, parentBindingContext) {\n        // Since setDomNodeChildrenFromArrayMapping always calls executeTemplateForArrayItem and then\n        // activateBindingsCallback for added items, we can store the binding context in the former to use in the latter.\n        var arrayItemContext;\n\n        // This will be called by setDomNodeChildrenFromArrayMapping to get the nodes to add to targetNode\n        var executeTemplateForArrayItem = function (arrayValue, index) {\n            // Support selecting template as a function of the data being rendered\n            arrayItemContext = parentBindingContext['createChildContext'](ko.utils.unwrapObservable(arrayValue), options['as']);\n            arrayItemContext['$index'] = index;\n            var templateName = typeof(template) == 'function' ? template(arrayValue, arrayItemContext) : template;\n            return executeTemplate(null, \"ignoreTargetNode\", templateName, arrayItemContext, options);\n        }\n\n        // This will be called whenever setDomNodeChildrenFromArrayMapping has added nodes to targetNode\n        var activateBindingsCallback = function(arrayValue, addedNodesArray, index) {\n            activateBindingsOnContinuousNodeArray(addedNodesArray, arrayItemContext);\n            if (options['afterRender'])\n                options['afterRender'](addedNodesArray, arrayValue);\n        };\n\n        return ko.dependentObservable(function () {\n            var unwrappedArray = ko.utils.unwrapObservable(arrayOrObservableArray) || [];\n            if (typeof unwrappedArray.length == \"undefined\") // Coerce single value into array\n                unwrappedArray = [unwrappedArray];\n\n            // Filter out any entries marked as destroyed\n            var filteredArray = ko.utils.arrayFilter(unwrappedArray, function(item) {\n                return options['includeDestroyed'] || item === undefined || item === null || !ko.utils.unwrapObservable(item['_destroy']);\n            });\n\n            // Call setDomNodeChildrenFromArrayMapping, ignoring any observables unwrapped within (most likely from a callback function).\n            // If the array items are observables, though, they will be unwrapped in executeTemplateForArrayItem and managed within setDomNodeChildrenFromArrayMapping.\n            ko.dependencyDetection.ignore(ko.utils.setDomNodeChildrenFromArrayMapping, null, [targetNode, filteredArray, executeTemplateForArrayItem, options, activateBindingsCallback]);\n\n        }, null, { disposeWhenNodeIsRemoved: targetNode });\n    };\n\n    var templateComputedDomDataKey = '__ko__templateComputedDomDataKey__';\n    function disposeOldComputedAndStoreNewOne(element, newComputed) {\n        var oldComputed = ko.utils.domData.get(element, templateComputedDomDataKey);\n        if (oldComputed && (typeof(oldComputed.dispose) == 'function'))\n            oldComputed.dispose();\n        ko.utils.domData.set(element, templateComputedDomDataKey, (newComputed && newComputed.isActive()) ? newComputed : undefined);\n    }\n\n    ko.bindingHandlers['template'] = {\n        'init': function(element, valueAccessor) {\n            // Support anonymous templates\n            var bindingValue = ko.utils.unwrapObservable(valueAccessor());\n            if ((typeof bindingValue != \"string\") && (!bindingValue['name']) && (element.nodeType == 1 || element.nodeType == 8)) {\n                // It's an anonymous template - store the element contents, then clear the element\n                var templateNodes = element.nodeType == 1 ? element.childNodes : ko.virtualElements.childNodes(element),\n                    container = ko.utils.moveCleanedNodesToContainerElement(templateNodes); // This also removes the nodes from their current parent\n                new ko.templateSources.anonymousTemplate(element)['nodes'](container);\n            }\n            return { 'controlsDescendantBindings': true };\n        },\n        'update': function (element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {\n            var templateName = ko.utils.unwrapObservable(valueAccessor()),\n                options = {},\n                shouldDisplay = true,\n                dataValue,\n                templateComputed = null;\n\n            if (typeof templateName != \"string\") {\n                options = templateName;\n                templateName = options['name'];\n\n                // Support \"if\"/\"ifnot\" conditions\n                if ('if' in options)\n                    shouldDisplay = ko.utils.unwrapObservable(options['if']);\n                if (shouldDisplay && 'ifnot' in options)\n                    shouldDisplay = !ko.utils.unwrapObservable(options['ifnot']);\n\n                dataValue = ko.utils.unwrapObservable(options['data']);\n            }\n\n            if ('foreach' in options) {\n                // Render once for each data point (treating data set as empty if shouldDisplay==false)\n                var dataArray = (shouldDisplay && options['foreach']) || [];\n                templateComputed = ko.renderTemplateForEach(templateName || element, dataArray, options, element, bindingContext);\n            } else if (!shouldDisplay) {\n                ko.virtualElements.emptyNode(element);\n            } else {\n                // Render once for this single data point (or use the viewModel if no data was provided)\n                var innerBindingContext = ('data' in options) ?\n                    bindingContext['createChildContext'](dataValue, options['as']) :  // Given an explitit 'data' value, we create a child binding context for it\n                    bindingContext;                                                        // Given no explicit 'data' value, we retain the same binding context\n                templateComputed = ko.renderTemplate(templateName || element, innerBindingContext, options, element);\n            }\n\n            // It only makes sense to have a single template computed per element (otherwise which one should have its output displayed?)\n            disposeOldComputedAndStoreNewOne(element, templateComputed);\n        }\n    };\n\n    // Anonymous templates can't be rewritten. Give a nice error message if you try to do it.\n    ko.expressionRewriting.bindingRewriteValidators['template'] = function(bindingValue) {\n        var parsedBindingValue = ko.expressionRewriting.parseObjectLiteral(bindingValue);\n\n        if ((parsedBindingValue.length == 1) && parsedBindingValue[0]['unknown'])\n            return null; // It looks like a string literal, not an object literal, so treat it as a named template (which is allowed for rewriting)\n\n        if (ko.expressionRewriting.keyValueArrayContainsKey(parsedBindingValue, \"name\"))\n            return null; // Named templates can be rewritten, so return \"no error\"\n        return \"This template engine does not support anonymous templates nested within its templates\";\n    };\n\n    ko.virtualElements.allowedBindings['template'] = true;\n})();\n\nko.exportSymbol('setTemplateEngine', ko.setTemplateEngine);\nko.exportSymbol('renderTemplate', ko.renderTemplate);\n\nko.utils.compareArrays = (function () {\n    var statusNotInOld = 'added', statusNotInNew = 'deleted';\n\n    // Simple calculation based on Levenshtein distance.\n    function compareArrays(oldArray, newArray, dontLimitMoves) {\n        oldArray = oldArray || [];\n        newArray = newArray || [];\n\n        if (oldArray.length <= newArray.length)\n            return compareSmallArrayToBigArray(oldArray, newArray, statusNotInOld, statusNotInNew, dontLimitMoves);\n        else\n            return compareSmallArrayToBigArray(newArray, oldArray, statusNotInNew, statusNotInOld, dontLimitMoves);\n    }\n\n    function compareSmallArrayToBigArray(smlArray, bigArray, statusNotInSml, statusNotInBig, dontLimitMoves) {\n        var myMin = Math.min,\n            myMax = Math.max,\n            editDistanceMatrix = [],\n            smlIndex, smlIndexMax = smlArray.length,\n            bigIndex, bigIndexMax = bigArray.length,\n            compareRange = (bigIndexMax - smlIndexMax) || 1,\n            maxDistance = smlIndexMax + bigIndexMax + 1,\n            thisRow, lastRow,\n            bigIndexMaxForRow, bigIndexMinForRow;\n\n        for (smlIndex = 0; smlIndex <= smlIndexMax; smlIndex++) {\n            lastRow = thisRow;\n            editDistanceMatrix.push(thisRow = []);\n            bigIndexMaxForRow = myMin(bigIndexMax, smlIndex + compareRange);\n            bigIndexMinForRow = myMax(0, smlIndex - 1);\n            for (bigIndex = bigIndexMinForRow; bigIndex <= bigIndexMaxForRow; bigIndex++) {\n                if (!bigIndex)\n                    thisRow[bigIndex] = smlIndex + 1;\n                else if (!smlIndex)  // Top row - transform empty array into new array via additions\n                    thisRow[bigIndex] = bigIndex + 1;\n                else if (smlArray[smlIndex - 1] === bigArray[bigIndex - 1])\n                    thisRow[bigIndex] = lastRow[bigIndex - 1];                  // copy value (no edit)\n                else {\n                    var northDistance = lastRow[bigIndex] || maxDistance;       // not in big (deletion)\n                    var westDistance = thisRow[bigIndex - 1] || maxDistance;    // not in small (addition)\n                    thisRow[bigIndex] = myMin(northDistance, westDistance) + 1;\n                }\n            }\n        }\n\n        var editScript = [], meMinusOne, notInSml = [], notInBig = [];\n        for (smlIndex = smlIndexMax, bigIndex = bigIndexMax; smlIndex || bigIndex;) {\n            meMinusOne = editDistanceMatrix[smlIndex][bigIndex] - 1;\n            if (bigIndex && meMinusOne === editDistanceMatrix[smlIndex][bigIndex-1]) {\n                notInSml.push(editScript[editScript.length] = {     // added\n                    'status': statusNotInSml,\n                    'value': bigArray[--bigIndex],\n                    'index': bigIndex });\n            } else if (smlIndex && meMinusOne === editDistanceMatrix[smlIndex - 1][bigIndex]) {\n                notInBig.push(editScript[editScript.length] = {     // deleted\n                    'status': statusNotInBig,\n                    'value': smlArray[--smlIndex],\n                    'index': smlIndex });\n            } else {\n                editScript.push({\n                    'status': \"retained\",\n                    'value': bigArray[--bigIndex] });\n                --smlIndex;\n            }\n        }\n\n        if (notInSml.length && notInBig.length) {\n            // Set a limit on the number of consecutive non-matching comparisons; having it a multiple of\n            // smlIndexMax keeps the time complexity of this algorithm linear.\n            var limitFailedCompares = smlIndexMax * 10, failedCompares,\n                a, d, notInSmlItem, notInBigItem;\n            // Go through the items that have been added and deleted and try to find matches between them.\n            for (failedCompares = a = 0; (dontLimitMoves || failedCompares < limitFailedCompares) && (notInSmlItem = notInSml[a]); a++) {\n                for (d = 0; notInBigItem = notInBig[d]; d++) {\n                    if (notInSmlItem['value'] === notInBigItem['value']) {\n                        notInSmlItem['moved'] = notInBigItem['index'];\n                        notInBigItem['moved'] = notInSmlItem['index'];\n                        notInBig.splice(d,1);       // This item is marked as moved; so remove it from notInBig list\n                        failedCompares = d = 0;     // Reset failed compares count because we're checking for consecutive failures\n                        break;\n                    }\n                }\n                failedCompares += d;\n            }\n        }\n        return editScript.reverse();\n    }\n\n    return compareArrays;\n})();\n\nko.exportSymbol('utils.compareArrays', ko.utils.compareArrays);\n\n(function () {\n    // Objective:\n    // * Given an input array, a container DOM node, and a function from array elements to arrays of DOM nodes,\n    //   map the array elements to arrays of DOM nodes, concatenate together all these arrays, and use them to populate the container DOM node\n    // * Next time we're given the same combination of things (with the array possibly having mutated), update the container DOM node\n    //   so that its children is again the concatenation of the mappings of the array elements, but don't re-map any array elements that we\n    //   previously mapped - retain those nodes, and just insert/delete other ones\n\n    // \"callbackAfterAddingNodes\" will be invoked after any \"mapping\"-generated nodes are inserted into the container node\n    // You can use this, for example, to activate bindings on those nodes.\n\n    function fixUpNodesToBeMovedOrRemoved(contiguousNodeArray) {\n        // Before moving, deleting, or replacing a set of nodes that were previously outputted by the \"map\" function, we have to reconcile\n        // them against what is in the DOM right now. It may be that some of the nodes have already been removed from the document,\n        // or that new nodes might have been inserted in the middle, for example by a binding. Also, there may previously have been\n        // leading comment nodes (created by rewritten string-based templates) that have since been removed during binding.\n        // So, this function translates the old \"map\" output array into its best guess of what set of current DOM nodes should be removed.\n        //\n        // Rules:\n        //   [A] Any leading nodes that aren't in the document any more should be ignored\n        //       These most likely correspond to memoization nodes that were already removed during binding\n        //       See https://github.com/SteveSanderson/knockout/pull/440\n        //   [B] We want to output a contiguous series of nodes that are still in the document. So, ignore any nodes that\n        //       have already been removed, and include any nodes that have been inserted among the previous collection\n\n        // Rule [A]\n        while (contiguousNodeArray.length && !ko.utils.domNodeIsAttachedToDocument(contiguousNodeArray[0]))\n            contiguousNodeArray.splice(0, 1);\n\n        // Rule [B]\n        if (contiguousNodeArray.length > 1) {\n            // Build up the actual new contiguous node set\n            var current = contiguousNodeArray[0], last = contiguousNodeArray[contiguousNodeArray.length - 1], newContiguousSet = [current];\n            while (current !== last) {\n                current = current.nextSibling;\n                if (!current) // Won't happen, except if the developer has manually removed some DOM elements (then we're in an undefined scenario)\n                    return;\n                newContiguousSet.push(current);\n            }\n\n            // ... then mutate the input array to match this.\n            // (The following line replaces the contents of contiguousNodeArray with newContiguousSet)\n            Array.prototype.splice.apply(contiguousNodeArray, [0, contiguousNodeArray.length].concat(newContiguousSet));\n        }\n        return contiguousNodeArray;\n    }\n\n    function mapNodeAndRefreshWhenChanged(containerNode, mapping, valueToMap, callbackAfterAddingNodes, index) {\n        // Map this array value inside a dependentObservable so we re-map when any dependency changes\n        var mappedNodes = [];\n        var dependentObservable = ko.dependentObservable(function() {\n            var newMappedNodes = mapping(valueToMap, index) || [];\n\n            // On subsequent evaluations, just replace the previously-inserted DOM nodes\n            if (mappedNodes.length > 0) {\n                ko.utils.replaceDomNodes(fixUpNodesToBeMovedOrRemoved(mappedNodes), newMappedNodes);\n                if (callbackAfterAddingNodes)\n                    ko.dependencyDetection.ignore(callbackAfterAddingNodes, null, [valueToMap, newMappedNodes, index]);\n            }\n\n            // Replace the contents of the mappedNodes array, thereby updating the record\n            // of which nodes would be deleted if valueToMap was itself later removed\n            mappedNodes.splice(0, mappedNodes.length);\n            ko.utils.arrayPushAll(mappedNodes, newMappedNodes);\n        }, null, { disposeWhenNodeIsRemoved: containerNode, disposeWhen: function() { return (mappedNodes.length == 0) || !ko.utils.domNodeIsAttachedToDocument(mappedNodes[0]) } });\n        return { mappedNodes : mappedNodes, dependentObservable : (dependentObservable.isActive() ? dependentObservable : undefined) };\n    }\n\n    var lastMappingResultDomDataKey = \"setDomNodeChildrenFromArrayMapping_lastMappingResult\";\n\n    ko.utils.setDomNodeChildrenFromArrayMapping = function (domNode, array, mapping, options, callbackAfterAddingNodes) {\n        // Compare the provided array against the previous one\n        array = array || [];\n        options = options || {};\n        var isFirstExecution = ko.utils.domData.get(domNode, lastMappingResultDomDataKey) === undefined;\n        var lastMappingResult = ko.utils.domData.get(domNode, lastMappingResultDomDataKey) || [];\n        var lastArray = ko.utils.arrayMap(lastMappingResult, function (x) { return x.arrayEntry; });\n        var editScript = ko.utils.compareArrays(lastArray, array);\n\n        // Build the new mapping result\n        var newMappingResult = [];\n        var lastMappingResultIndex = 0;\n        var newMappingResultIndex = 0;\n\n        var nodesToDelete = [];\n        var itemsToProcess = [];\n        var itemsForBeforeRemoveCallbacks = [];\n        var itemsForMoveCallbacks = [];\n        var itemsForAfterAddCallbacks = [];\n        var mapData;\n\n        function itemMovedOrRetained(editScriptIndex, oldPosition) {\n            mapData = lastMappingResult[oldPosition];\n            if (newMappingResultIndex !== oldPosition)\n                itemsForMoveCallbacks[editScriptIndex] = mapData;\n            // Since updating the index might change the nodes, do so before calling fixUpNodesToBeMovedOrRemoved\n            mapData.indexObservable(newMappingResultIndex++);\n            fixUpNodesToBeMovedOrRemoved(mapData.mappedNodes);\n            newMappingResult.push(mapData);\n            itemsToProcess.push(mapData);\n        }\n\n        function callCallback(callback, items) {\n            if (callback) {\n                for (var i = 0, n = items.length; i < n; i++) {\n                    if (items[i]) {\n                        ko.utils.arrayForEach(items[i].mappedNodes, function(node) {\n                            callback(node, i, items[i].arrayEntry);\n                        });\n                    }\n                }\n            }\n        }\n\n        for (var i = 0, editScriptItem, movedIndex; editScriptItem = editScript[i]; i++) {\n            movedIndex = editScriptItem['moved'];\n            switch (editScriptItem['status']) {\n                case \"deleted\":\n                    if (movedIndex === undefined) {\n                        mapData = lastMappingResult[lastMappingResultIndex];\n\n                        // Stop tracking changes to the mapping for these nodes\n                        if (mapData.dependentObservable)\n                            mapData.dependentObservable.dispose();\n\n                        // Queue these nodes for later removal\n                        nodesToDelete.push.apply(nodesToDelete, fixUpNodesToBeMovedOrRemoved(mapData.mappedNodes));\n                        if (options['beforeRemove']) {\n                            itemsForBeforeRemoveCallbacks[i] = mapData;\n                            itemsToProcess.push(mapData);\n                        }\n                    }\n                    lastMappingResultIndex++;\n                    break;\n\n                case \"retained\":\n                    itemMovedOrRetained(i, lastMappingResultIndex++);\n                    break;\n\n                case \"added\":\n                    if (movedIndex !== undefined) {\n                        itemMovedOrRetained(i, movedIndex);\n                    } else {\n                        mapData = { arrayEntry: editScriptItem['value'], indexObservable: ko.observable(newMappingResultIndex++) };\n                        newMappingResult.push(mapData);\n                        itemsToProcess.push(mapData);\n                        if (!isFirstExecution)\n                            itemsForAfterAddCallbacks[i] = mapData;\n                    }\n                    break;\n            }\n        }\n\n        // Call beforeMove first before any changes have been made to the DOM\n        callCallback(options['beforeMove'], itemsForMoveCallbacks);\n\n        // Next remove nodes for deleted items (or just clean if there's a beforeRemove callback)\n        ko.utils.arrayForEach(nodesToDelete, options['beforeRemove'] ? ko.cleanNode : ko.removeNode);\n\n        // Next add/reorder the remaining items (will include deleted items if there's a beforeRemove callback)\n        for (var i = 0, nextNode = ko.virtualElements.firstChild(domNode), lastNode, node; mapData = itemsToProcess[i]; i++) {\n            // Get nodes for newly added items\n            if (!mapData.mappedNodes)\n                ko.utils.extend(mapData, mapNodeAndRefreshWhenChanged(domNode, mapping, mapData.arrayEntry, callbackAfterAddingNodes, mapData.indexObservable));\n\n            // Put nodes in the right place if they aren't there already\n            for (var j = 0; node = mapData.mappedNodes[j]; nextNode = node.nextSibling, lastNode = node, j++) {\n                if (node !== nextNode)\n                    ko.virtualElements.insertAfter(domNode, node, lastNode);\n            }\n\n            // Run the callbacks for newly added nodes (for example, to apply bindings, etc.)\n            if (!mapData.initialized && callbackAfterAddingNodes) {\n                callbackAfterAddingNodes(mapData.arrayEntry, mapData.mappedNodes, mapData.indexObservable);\n                mapData.initialized = true;\n            }\n        }\n\n        // If there's a beforeRemove callback, call it after reordering.\n        // Note that we assume that the beforeRemove callback will usually be used to remove the nodes using\n        // some sort of animation, which is why we first reorder the nodes that will be removed. If the\n        // callback instead removes the nodes right away, it would be more efficient to skip reordering them.\n        // Perhaps we'll make that change in the future if this scenario becomes more common.\n        callCallback(options['beforeRemove'], itemsForBeforeRemoveCallbacks);\n\n        // Finally call afterMove and afterAdd callbacks\n        callCallback(options['afterMove'], itemsForMoveCallbacks);\n        callCallback(options['afterAdd'], itemsForAfterAddCallbacks);\n\n        // Store a copy of the array items we just considered so we can difference it next time\n        ko.utils.domData.set(domNode, lastMappingResultDomDataKey, newMappingResult);\n    }\n})();\n\nko.exportSymbol('utils.setDomNodeChildrenFromArrayMapping', ko.utils.setDomNodeChildrenFromArrayMapping);\nko.nativeTemplateEngine = function () {\n    this['allowTemplateRewriting'] = false;\n}\n\nko.nativeTemplateEngine.prototype = new ko.templateEngine();\nko.nativeTemplateEngine.prototype['renderTemplateSource'] = function (templateSource, bindingContext, options) {\n    var useNodesIfAvailable = !(ko.utils.ieVersion < 9), // IE<9 cloneNode doesn't work properly\n        templateNodesFunc = useNodesIfAvailable ? templateSource['nodes'] : null,\n        templateNodes = templateNodesFunc ? templateSource['nodes']() : null;\n\n    if (templateNodes) {\n        return ko.utils.makeArray(templateNodes.cloneNode(true).childNodes);\n    } else {\n        var templateText = templateSource['text']();\n        return ko.utils.parseHtmlFragment(templateText);\n    }\n};\n\nko.nativeTemplateEngine.instance = new ko.nativeTemplateEngine();\nko.setTemplateEngine(ko.nativeTemplateEngine.instance);\n\nko.exportSymbol('nativeTemplateEngine', ko.nativeTemplateEngine);\n(function() {\n    ko.jqueryTmplTemplateEngine = function () {\n        // Detect which version of jquery-tmpl you're using. Unfortunately jquery-tmpl\n        // doesn't expose a version number, so we have to infer it.\n        // Note that as of Knockout 1.3, we only support jQuery.tmpl 1.0.0pre and later,\n        // which KO internally refers to as version \"2\", so older versions are no longer detected.\n        var jQueryTmplVersion = this.jQueryTmplVersion = (function() {\n            if ((typeof(jQuery) == \"undefined\") || !(jQuery['tmpl']))\n                return 0;\n            // Since it exposes no official version number, we use our own numbering system. To be updated as jquery-tmpl evolves.\n            try {\n                if (jQuery['tmpl']['tag']['tmpl']['open'].toString().indexOf('__') >= 0) {\n                    // Since 1.0.0pre, custom tags should append markup to an array called \"__\"\n                    return 2; // Final version of jquery.tmpl\n                }\n            } catch(ex) { /* Apparently not the version we were looking for */ }\n\n            return 1; // Any older version that we don't support\n        })();\n\n        function ensureHasReferencedJQueryTemplates() {\n            if (jQueryTmplVersion < 2)\n                throw new Error(\"Your version of jQuery.tmpl is too old. Please upgrade to jQuery.tmpl 1.0.0pre or later.\");\n        }\n\n        function executeTemplate(compiledTemplate, data, jQueryTemplateOptions) {\n            return jQuery['tmpl'](compiledTemplate, data, jQueryTemplateOptions);\n        }\n\n        this['renderTemplateSource'] = function(templateSource, bindingContext, options) {\n            options = options || {};\n            ensureHasReferencedJQueryTemplates();\n\n            // Ensure we have stored a precompiled version of this template (don't want to reparse on every render)\n            var precompiled = templateSource['data']('precompiled');\n            if (!precompiled) {\n                var templateText = templateSource['text']() || \"\";\n                // Wrap in \"with($whatever.koBindingContext) { ... }\"\n                templateText = \"{{ko_with $item.koBindingContext}}\" + templateText + \"{{/ko_with}}\";\n\n                precompiled = jQuery['template'](null, templateText);\n                templateSource['data']('precompiled', precompiled);\n            }\n\n            var data = [bindingContext['$data']]; // Prewrap the data in an array to stop jquery.tmpl from trying to unwrap any arrays\n            var jQueryTemplateOptions = jQuery['extend']({ 'koBindingContext': bindingContext }, options['templateOptions']);\n\n            var resultNodes = executeTemplate(precompiled, data, jQueryTemplateOptions);\n            resultNodes['appendTo'](document.createElement(\"div\")); // Using \"appendTo\" forces jQuery/jQuery.tmpl to perform necessary cleanup work\n\n            jQuery['fragments'] = {}; // Clear jQuery's fragment cache to avoid a memory leak after a large number of template renders\n            return resultNodes;\n        };\n\n        this['createJavaScriptEvaluatorBlock'] = function(script) {\n            return \"{{ko_code ((function() { return \" + script + \" })()) }}\";\n        };\n\n        this['addTemplate'] = function(templateName, templateMarkup) {\n            document.write(\"<script type='text/html' id='\" + templateName + \"'>\" + templateMarkup + \"</script>\");\n        };\n\n        if (jQueryTmplVersion > 0) {\n            jQuery['tmpl']['tag']['ko_code'] = {\n                open: \"__.push($1 || '');\"\n            };\n            jQuery['tmpl']['tag']['ko_with'] = {\n                open: \"with($1) {\",\n                close: \"} \"\n            };\n        }\n    };\n\n    ko.jqueryTmplTemplateEngine.prototype = new ko.templateEngine();\n\n    // Use this one by default *only if jquery.tmpl is referenced*\n    var jqueryTmplTemplateEngineInstance = new ko.jqueryTmplTemplateEngine();\n    if (jqueryTmplTemplateEngineInstance.jQueryTmplVersion > 0)\n        ko.setTemplateEngine(jqueryTmplTemplateEngineInstance);\n\n    ko.exportSymbol('jqueryTmplTemplateEngine', ko.jqueryTmplTemplateEngine);\n})();\n});\n})(window,document,navigator,window[\"jQuery\"]);\n})();\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/knockout-2.2.0.js",
    "content": "// Knockout JavaScript library v2.2.0\n// (c) Steven Sanderson - http://knockoutjs.com/\n// License: MIT (http://www.opensource.org/licenses/mit-license.php)\n\n(function() {function i(v){throw v;}var l=!0,n=null,q=!1;function t(v){return function(){return v}};var w=window,x=document,fa=navigator,E=window.jQuery,H=void 0;\nfunction K(v){function ga(a,d,c,e,f){var g=[],a=b.j(function(){var a=d(c,f)||[];0<g.length&&(b.a.Xa(L(g),a),e&&b.r.K(e,n,[c,a,f]));g.splice(0,g.length);b.a.P(g,a)},n,{W:a,Ja:function(){return 0==g.length||!b.a.X(g[0])}});return{M:g,j:a.oa()?a:H}}function L(a){for(;a.length&&!b.a.X(a[0]);)a.splice(0,1);if(1<a.length){for(var d=a[0],c=a[a.length-1],e=[d];d!==c;){d=d.nextSibling;if(!d)return;e.push(d)}Array.prototype.splice.apply(a,[0,a.length].concat(e))}return a}function R(a,b,c,e,f){var g=Math.min,\nh=Math.max,j=[],k,m=a.length,p,r=b.length,u=r-m||1,F=m+r+1,I,z,y;for(k=0;k<=m;k++){z=I;j.push(I=[]);y=g(r,k+u);for(p=h(0,k-1);p<=y;p++)I[p]=p?k?a[k-1]===b[p-1]?z[p-1]:g(z[p]||F,I[p-1]||F)+1:p+1:k+1}g=[];h=[];u=[];k=m;for(p=r;k||p;)r=j[k][p]-1,p&&r===j[k][p-1]?h.push(g[g.length]={status:c,value:b[--p],index:p}):k&&r===j[k-1][p]?u.push(g[g.length]={status:e,value:a[--k],index:k}):(g.push({status:\"retained\",value:b[--p]}),--k);if(h.length&&u.length)for(var a=10*m,s,b=c=0;(f||b<a)&&(s=h[c]);c++){for(e=\n0;j=u[e];e++)if(s.value===j.value){s.moved=j.index;j.moved=s.index;u.splice(e,1);b=e=0;break}b+=e}return g.reverse()}function S(a,d,c,e,f){var f=f||{},g=a&&M(a),g=g&&g.ownerDocument,h=f.templateEngine||N;b.ya.ub(c,h,g);c=h.renderTemplate(c,e,f,g);(\"number\"!=typeof c.length||0<c.length&&\"number\"!=typeof c[0].nodeType)&&i(Error(\"Template engine must return an array of DOM nodes\"));g=q;switch(d){case \"replaceChildren\":b.e.N(a,c);g=l;break;case \"replaceNode\":b.a.Xa(a,c);g=l;break;case \"ignoreTargetNode\":break;\ndefault:i(Error(\"Unknown renderMode: \"+d))}g&&(T(c,e),f.afterRender&&b.r.K(f.afterRender,n,[c,e.$data]));return c}function M(a){return a.nodeType?a:0<a.length?a[0]:n}function T(a,d){if(a.length){var c=a[0],e=a[a.length-1];U(c,e,function(a){b.Ca(d,a)});U(c,e,function(a){b.s.hb(a,[d])})}}function U(a,d,c){for(var e,d=b.e.nextSibling(d);a&&(e=a)!==d;)a=b.e.nextSibling(e),(1===e.nodeType||8===e.nodeType)&&c(e)}function V(a,d,c){for(var a=b.g.aa(a),e=b.g.Q,f=0;f<a.length;f++){var g=a[f].key;if(e.hasOwnProperty(g)){var h=\ne[g];\"function\"===typeof h?(g=h(a[f].value))&&i(Error(g)):h||i(Error(\"This template engine does not support the '\"+g+\"' binding within its templates\"))}}a=\"ko.__tr_ambtns(function($context,$element){return(function(){return{ \"+b.g.ba(a)+\" } })()})\";return c.createJavaScriptEvaluatorBlock(a)+d}function W(a,d,c,e){function f(a){return function(){return j[a]}}function g(){return j}var h=0,j,k;b.j(function(){var m=c&&c instanceof b.z?c:new b.z(b.a.d(c)),p=m.$data;e&&b.cb(a,m);if(j=(\"function\"==typeof d?\nd(m,a):d)||b.J.instance.getBindings(a,m)){if(0===h){h=1;for(var r in j){var u=b.c[r];u&&8===a.nodeType&&!b.e.I[r]&&i(Error(\"The binding '\"+r+\"' cannot be used with virtual elements\"));if(u&&\"function\"==typeof u.init&&(u=(0,u.init)(a,f(r),g,p,m))&&u.controlsDescendantBindings)k!==H&&i(Error(\"Multiple bindings (\"+k+\" and \"+r+\") are trying to control descendant bindings of the same element. You cannot use these bindings together on the same element.\")),k=r}h=2}if(2===h)for(r in j)(u=b.c[r])&&\"function\"==\ntypeof u.update&&(0,u.update)(a,f(r),g,p,m)}},n,{W:a});return{Mb:k===H}}function X(a,d,c){var e=l,f=1===d.nodeType;f&&b.e.Sa(d);if(f&&c||b.J.instance.nodeHasBindings(d))e=W(d,n,a,c).Mb;e&&Y(a,d,!f)}function Y(a,d,c){for(var e=b.e.firstChild(d);d=e;)e=b.e.nextSibling(d),X(a,d,c)}function Z(a,b){var c=$(a,b);return c?0<c.length?c[c.length-1].nextSibling:a.nextSibling:n}function $(a,b){for(var c=a,e=1,f=[];c=c.nextSibling;){if(G(c)&&(e--,0===e))return f;f.push(c);A(c)&&e++}b||i(Error(\"Cannot find closing comment tag to match: \"+\na.nodeValue));return n}function G(a){return 8==a.nodeType&&(J?a.text:a.nodeValue).match(ha)}function A(a){return 8==a.nodeType&&(J?a.text:a.nodeValue).match(ia)}function O(a,b){for(var c=n;a!=c;)c=a,a=a.replace(ja,function(a,c){return b[c]});return a}function ka(){var a=[],d=[];this.save=function(c,e){var f=b.a.i(a,c);0<=f?d[f]=e:(a.push(c),d.push(e))};this.get=function(c){c=b.a.i(a,c);return 0<=c?d[c]:H}}function aa(a,b,c){function e(e){var g=b(a[e]);switch(typeof g){case \"boolean\":case \"number\":case \"string\":case \"function\":f[e]=\ng;break;case \"object\":case \"undefined\":var h=c.get(g);f[e]=h!==H?h:aa(g,b,c)}}c=c||new ka;a=b(a);if(!(\"object\"==typeof a&&a!==n&&a!==H&&!(a instanceof Date)))return a;var f=a instanceof Array?[]:{};c.save(a,f);var g=a;if(g instanceof Array){for(var h=0;h<g.length;h++)e(h);\"function\"==typeof g.toJSON&&e(\"toJSON\")}else for(h in g)e(h);return f}function ba(a,d){if(a)if(8==a.nodeType){var c=b.s.Ta(a.nodeValue);c!=n&&d.push({rb:a,Eb:c})}else if(1==a.nodeType)for(var c=0,e=a.childNodes,f=e.length;c<f;c++)ba(e[c],\nd)}function P(a,d,c,e){b.c[a]={init:function(a){b.a.f.set(a,ca,{});return{controlsDescendantBindings:l}},update:function(a,g,h,j,k){var h=b.a.f.get(a,ca),g=b.a.d(g()),j=!c!==!g,m=!h.Ya;if(m||d||j!==h.pb)m&&(h.Ya=b.a.Ha(b.e.childNodes(a),l)),j?(m||b.e.N(a,b.a.Ha(h.Ya)),b.Da(e?e(k,g):k,a)):b.e.Y(a),h.pb=j}};b.g.Q[a]=q;b.e.I[a]=l}function da(a,d,c){c&&d!==b.k.q(a)&&b.k.T(a,d);d!==b.k.q(a)&&b.r.K(b.a.Aa,n,[a,\"change\"])}var b=\"undefined\"!==typeof v?v:{};b.b=function(a,d){for(var c=a.split(\".\"),e=b,f=0;f<\nc.length-1;f++)e=e[c[f]];e[c[c.length-1]]=d};b.p=function(a,b,c){a[b]=c};b.version=\"2.2.0\";b.b(\"version\",b.version);b.a=new function(){function a(a,d){if(\"input\"!==b.a.u(a)||!a.type||\"click\"!=d.toLowerCase())return q;var c=a.type;return\"checkbox\"==c||\"radio\"==c}var d=/^(\\s|\\u00A0)+|(\\s|\\u00A0)+$/g,c={},e={};c[/Firefox\\/2/i.test(fa.userAgent)?\"KeyboardEvent\":\"UIEvents\"]=[\"keyup\",\"keydown\",\"keypress\"];c.MouseEvents=\"click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave\".split(\" \");\nfor(var f in c){var g=c[f];if(g.length)for(var h=0,j=g.length;h<j;h++)e[g[h]]=f}var k={propertychange:l},m,c=3;f=x.createElement(\"div\");for(g=f.getElementsByTagName(\"i\");f.innerHTML=\"<\\!--[if gt IE \"+ ++c+\"]><i></i><![endif]--\\>\",g[0];);m=4<c?c:H;return{Ma:[\"authenticity_token\",/^__RequestVerificationToken(_.*)?$/],o:function(a,b){for(var d=0,c=a.length;d<c;d++)b(a[d])},i:function(a,b){if(\"function\"==typeof Array.prototype.indexOf)return Array.prototype.indexOf.call(a,b);for(var d=0,c=a.length;d<\nc;d++)if(a[d]===b)return d;return-1},kb:function(a,b,d){for(var c=0,e=a.length;c<e;c++)if(b.call(d,a[c]))return a[c];return n},ga:function(a,d){var c=b.a.i(a,d);0<=c&&a.splice(c,1)},Fa:function(a){for(var a=a||[],d=[],c=0,e=a.length;c<e;c++)0>b.a.i(d,a[c])&&d.push(a[c]);return d},V:function(a,b){for(var a=a||[],d=[],c=0,e=a.length;c<e;c++)d.push(b(a[c]));return d},fa:function(a,b){for(var a=a||[],d=[],c=0,e=a.length;c<e;c++)b(a[c])&&d.push(a[c]);return d},P:function(a,b){if(b instanceof Array)a.push.apply(a,\nb);else for(var d=0,c=b.length;d<c;d++)a.push(b[d]);return a},extend:function(a,b){if(b)for(var d in b)b.hasOwnProperty(d)&&(a[d]=b[d]);return a},ka:function(a){for(;a.firstChild;)b.removeNode(a.firstChild)},Gb:function(a){for(var a=b.a.L(a),d=x.createElement(\"div\"),c=0,e=a.length;c<e;c++)d.appendChild(b.A(a[c]));return d},Ha:function(a,d){for(var c=0,e=a.length,g=[];c<e;c++){var f=a[c].cloneNode(l);g.push(d?b.A(f):f)}return g},N:function(a,d){b.a.ka(a);if(d)for(var c=0,e=d.length;c<e;c++)a.appendChild(d[c])},\nXa:function(a,d){var c=a.nodeType?[a]:a;if(0<c.length){for(var e=c[0],g=e.parentNode,f=0,h=d.length;f<h;f++)g.insertBefore(d[f],e);f=0;for(h=c.length;f<h;f++)b.removeNode(c[f])}},ab:function(a,b){7>m?a.setAttribute(\"selected\",b):a.selected=b},D:function(a){return(a||\"\").replace(d,\"\")},Qb:function(a,d){for(var c=[],e=(a||\"\").split(d),f=0,g=e.length;f<g;f++){var h=b.a.D(e[f]);\"\"!==h&&c.push(h)}return c},Nb:function(a,b){a=a||\"\";return b.length>a.length?q:a.substring(0,b.length)===b},sb:function(a,b){if(b.compareDocumentPosition)return 16==\n(b.compareDocumentPosition(a)&16);for(;a!=n;){if(a==b)return l;a=a.parentNode}return q},X:function(a){return b.a.sb(a,a.ownerDocument)},u:function(a){return a&&a.tagName&&a.tagName.toLowerCase()},n:function(b,d,c){var e=m&&k[d];if(!e&&\"undefined\"!=typeof E){if(a(b,d))var f=c,c=function(a,b){var d=this.checked;b&&(this.checked=b.mb!==l);f.call(this,a);this.checked=d};E(b).bind(d,c)}else!e&&\"function\"==typeof b.addEventListener?b.addEventListener(d,c,q):\"undefined\"!=typeof b.attachEvent?b.attachEvent(\"on\"+\nd,function(a){c.call(b,a)}):i(Error(\"Browser doesn't support addEventListener or attachEvent\"))},Aa:function(b,d){(!b||!b.nodeType)&&i(Error(\"element must be a DOM node when calling triggerEvent\"));if(\"undefined\"!=typeof E){var c=[];a(b,d)&&c.push({mb:b.checked});E(b).trigger(d,c)}else\"function\"==typeof x.createEvent?\"function\"==typeof b.dispatchEvent?(c=x.createEvent(e[d]||\"HTMLEvents\"),c.initEvent(d,l,l,w,0,0,0,0,0,q,q,q,q,0,b),b.dispatchEvent(c)):i(Error(\"The supplied element doesn't support dispatchEvent\")):\n\"undefined\"!=typeof b.fireEvent?(a(b,d)&&(b.checked=b.checked!==l),b.fireEvent(\"on\"+d)):i(Error(\"Browser doesn't support triggering events\"))},d:function(a){return b.$(a)?a():a},ta:function(a){return b.$(a)?a.t():a},da:function(a,d,c){if(d){var e=/[\\w-]+/g,f=a.className.match(e)||[];b.a.o(d.match(e),function(a){var d=b.a.i(f,a);0<=d?c||f.splice(d,1):c&&f.push(a)});a.className=f.join(\" \")}},bb:function(a,d){var c=b.a.d(d);if(c===n||c===H)c=\"\";if(3===a.nodeType)a.data=c;else{var e=b.e.firstChild(a);\n!e||3!=e.nodeType||b.e.nextSibling(e)?b.e.N(a,[x.createTextNode(c)]):e.data=c;b.a.vb(a)}},$a:function(a,b){a.name=b;if(7>=m)try{a.mergeAttributes(x.createElement(\"<input name='\"+a.name+\"'/>\"),q)}catch(d){}},vb:function(a){9<=m&&(a=1==a.nodeType?a:a.parentNode,a.style&&(a.style.zoom=a.style.zoom))},tb:function(a){if(9<=m){var b=a.style.width;a.style.width=0;a.style.width=b}},Kb:function(a,d){for(var a=b.a.d(a),d=b.a.d(d),c=[],e=a;e<=d;e++)c.push(e);return c},L:function(a){for(var b=[],d=0,c=a.length;d<\nc;d++)b.push(a[d]);return b},Ob:6===m,Pb:7===m,Z:m,Na:function(a,d){for(var c=b.a.L(a.getElementsByTagName(\"input\")).concat(b.a.L(a.getElementsByTagName(\"textarea\"))),e=\"string\"==typeof d?function(a){return a.name===d}:function(a){return d.test(a.name)},f=[],g=c.length-1;0<=g;g--)e(c[g])&&f.push(c[g]);return f},Hb:function(a){return\"string\"==typeof a&&(a=b.a.D(a))?w.JSON&&w.JSON.parse?w.JSON.parse(a):(new Function(\"return \"+a))():n},wa:function(a,d,c){(\"undefined\"==typeof JSON||\"undefined\"==typeof JSON.stringify)&&\ni(Error(\"Cannot find JSON.stringify(). Some browsers (e.g., IE < 8) don't support it natively, but you can overcome this by adding a script reference to json2.js, downloadable from http://www.json.org/json2.js\"));return JSON.stringify(b.a.d(a),d,c)},Ib:function(a,d,c){var c=c||{},e=c.params||{},f=c.includeFields||this.Ma,g=a;if(\"object\"==typeof a&&\"form\"===b.a.u(a))for(var g=a.action,h=f.length-1;0<=h;h--)for(var j=b.a.Na(a,f[h]),k=j.length-1;0<=k;k--)e[j[k].name]=j[k].value;var d=b.a.d(d),m=x.createElement(\"form\");\nm.style.display=\"none\";m.action=g;m.method=\"post\";for(var v in d)a=x.createElement(\"input\"),a.name=v,a.value=b.a.wa(b.a.d(d[v])),m.appendChild(a);for(v in e)a=x.createElement(\"input\"),a.name=v,a.value=e[v],m.appendChild(a);x.body.appendChild(m);c.submitter?c.submitter(m):m.submit();setTimeout(function(){m.parentNode.removeChild(m)},0)}}};b.b(\"utils\",b.a);b.b(\"utils.arrayForEach\",b.a.o);b.b(\"utils.arrayFirst\",b.a.kb);b.b(\"utils.arrayFilter\",b.a.fa);b.b(\"utils.arrayGetDistinctValues\",b.a.Fa);b.b(\"utils.arrayIndexOf\",\nb.a.i);b.b(\"utils.arrayMap\",b.a.V);b.b(\"utils.arrayPushAll\",b.a.P);b.b(\"utils.arrayRemoveItem\",b.a.ga);b.b(\"utils.extend\",b.a.extend);b.b(\"utils.fieldsIncludedWithJsonPost\",b.a.Ma);b.b(\"utils.getFormFields\",b.a.Na);b.b(\"utils.peekObservable\",b.a.ta);b.b(\"utils.postJson\",b.a.Ib);b.b(\"utils.parseJson\",b.a.Hb);b.b(\"utils.registerEventHandler\",b.a.n);b.b(\"utils.stringifyJson\",b.a.wa);b.b(\"utils.range\",b.a.Kb);b.b(\"utils.toggleDomNodeCssClass\",b.a.da);b.b(\"utils.triggerEvent\",b.a.Aa);b.b(\"utils.unwrapObservable\",\nb.a.d);Function.prototype.bind||(Function.prototype.bind=function(a){var b=this,c=Array.prototype.slice.call(arguments),a=c.shift();return function(){return b.apply(a,c.concat(Array.prototype.slice.call(arguments)))}});b.a.f=new function(){var a=0,d=\"__ko__\"+(new Date).getTime(),c={};return{get:function(a,d){var c=b.a.f.getAll(a,q);return c===H?H:c[d]},set:function(a,d,c){c===H&&b.a.f.getAll(a,q)===H||(b.a.f.getAll(a,l)[d]=c)},getAll:function(b,f){var g=b[d];if(!g||!(\"null\"!==g&&c[g])){if(!f)return H;\ng=b[d]=\"ko\"+a++;c[g]={}}return c[g]},clear:function(a){var b=a[d];return b?(delete c[b],a[d]=n,l):q}}};b.b(\"utils.domData\",b.a.f);b.b(\"utils.domData.clear\",b.a.f.clear);b.a.F=new function(){function a(a,d){var e=b.a.f.get(a,c);e===H&&d&&(e=[],b.a.f.set(a,c,e));return e}function d(c){var e=a(c,q);if(e)for(var e=e.slice(0),j=0;j<e.length;j++)e[j](c);b.a.f.clear(c);\"function\"==typeof E&&\"function\"==typeof E.cleanData&&E.cleanData([c]);if(f[c.nodeType])for(e=c.firstChild;c=e;)e=c.nextSibling,8===c.nodeType&&\nd(c)}var c=\"__ko_domNodeDisposal__\"+(new Date).getTime(),e={1:l,8:l,9:l},f={1:l,9:l};return{Ba:function(b,d){\"function\"!=typeof d&&i(Error(\"Callback must be a function\"));a(b,l).push(d)},Wa:function(d,e){var f=a(d,q);f&&(b.a.ga(f,e),0==f.length&&b.a.f.set(d,c,H))},A:function(a){if(e[a.nodeType]&&(d(a),f[a.nodeType])){var c=[];b.a.P(c,a.getElementsByTagName(\"*\"));for(var j=0,k=c.length;j<k;j++)d(c[j])}return a},removeNode:function(a){b.A(a);a.parentNode&&a.parentNode.removeChild(a)}}};b.A=b.a.F.A;\nb.removeNode=b.a.F.removeNode;b.b(\"cleanNode\",b.A);b.b(\"removeNode\",b.removeNode);b.b(\"utils.domNodeDisposal\",b.a.F);b.b(\"utils.domNodeDisposal.addDisposeCallback\",b.a.F.Ba);b.b(\"utils.domNodeDisposal.removeDisposeCallback\",b.a.F.Wa);b.a.sa=function(a){var d;if(\"undefined\"!=typeof E){if((d=E.clean([a]))&&d[0]){for(a=d[0];a.parentNode&&11!==a.parentNode.nodeType;)a=a.parentNode;a.parentNode&&a.parentNode.removeChild(a)}}else{var c=b.a.D(a).toLowerCase();d=x.createElement(\"div\");c=c.match(/^<(thead|tbody|tfoot)/)&&\n[1,\"<table>\",\"</table>\"]||!c.indexOf(\"<tr\")&&[2,\"<table><tbody>\",\"</tbody></table>\"]||(!c.indexOf(\"<td\")||!c.indexOf(\"<th\"))&&[3,\"<table><tbody><tr>\",\"</tr></tbody></table>\"]||[0,\"\",\"\"];a=\"ignored<div>\"+c[1]+a+c[2]+\"</div>\";for(\"function\"==typeof w.innerShiv?d.appendChild(w.innerShiv(a)):d.innerHTML=a;c[0]--;)d=d.lastChild;d=b.a.L(d.lastChild.childNodes)}return d};b.a.ca=function(a,d){b.a.ka(a);d=b.a.d(d);if(d!==n&&d!==H)if(\"string\"!=typeof d&&(d=d.toString()),\"undefined\"!=typeof E)E(a).html(d);else for(var c=\nb.a.sa(d),e=0;e<c.length;e++)a.appendChild(c[e])};b.b(\"utils.parseHtmlFragment\",b.a.sa);b.b(\"utils.setHtml\",b.a.ca);var Q={};b.s={qa:function(a){\"function\"!=typeof a&&i(Error(\"You can only pass a function to ko.memoization.memoize()\"));var b=(4294967296*(1+Math.random())|0).toString(16).substring(1)+(4294967296*(1+Math.random())|0).toString(16).substring(1);Q[b]=a;return\"<\\!--[ko_memo:\"+b+\"]--\\>\"},gb:function(a,b){var c=Q[a];c===H&&i(Error(\"Couldn't find any memo with ID \"+a+\". Perhaps it's already been unmemoized.\"));\ntry{return c.apply(n,b||[]),l}finally{delete Q[a]}},hb:function(a,d){var c=[];ba(a,c);for(var e=0,f=c.length;e<f;e++){var g=c[e].rb,h=[g];d&&b.a.P(h,d);b.s.gb(c[e].Eb,h);g.nodeValue=\"\";g.parentNode&&g.parentNode.removeChild(g)}},Ta:function(a){return(a=a.match(/^\\[ko_memo\\:(.*?)\\]$/))?a[1]:n}};b.b(\"memoization\",b.s);b.b(\"memoization.memoize\",b.s.qa);b.b(\"memoization.unmemoize\",b.s.gb);b.b(\"memoization.parseMemoText\",b.s.Ta);b.b(\"memoization.unmemoizeDomNodeAndDescendants\",b.s.hb);b.La={throttle:function(a,\nd){a.throttleEvaluation=d;var c=n;return b.j({read:a,write:function(b){clearTimeout(c);c=setTimeout(function(){a(b)},d)}})},notify:function(a,d){a.equalityComparer=\"always\"==d?t(q):b.m.fn.equalityComparer;return a}};b.b(\"extenders\",b.La);b.eb=function(a,d,c){this.target=a;this.ha=d;this.qb=c;b.p(this,\"dispose\",this.B)};b.eb.prototype.B=function(){this.Bb=l;this.qb()};b.S=function(){this.w={};b.a.extend(this,b.S.fn);b.p(this,\"subscribe\",this.xa);b.p(this,\"extend\",this.extend);b.p(this,\"getSubscriptionsCount\",\nthis.xb)};b.S.fn={xa:function(a,d,c){var c=c||\"change\",a=d?a.bind(d):a,e=new b.eb(this,a,function(){b.a.ga(this.w[c],e)}.bind(this));this.w[c]||(this.w[c]=[]);this.w[c].push(e);return e},notifySubscribers:function(a,d){d=d||\"change\";this.w[d]&&b.r.K(function(){b.a.o(this.w[d].slice(0),function(b){b&&b.Bb!==l&&b.ha(a)})},this)},xb:function(){var a=0,b;for(b in this.w)this.w.hasOwnProperty(b)&&(a+=this.w[b].length);return a},extend:function(a){var d=this;if(a)for(var c in a){var e=b.La[c];\"function\"==\ntypeof e&&(d=e(d,a[c]))}return d}};b.Pa=function(a){return\"function\"==typeof a.xa&&\"function\"==typeof a.notifySubscribers};b.b(\"subscribable\",b.S);b.b(\"isSubscribable\",b.Pa);var B=[];b.r={lb:function(a){B.push({ha:a,Ka:[]})},end:function(){B.pop()},Va:function(a){b.Pa(a)||i(Error(\"Only subscribable things can act as dependencies\"));if(0<B.length){var d=B[B.length-1];d&&!(0<=b.a.i(d.Ka,a))&&(d.Ka.push(a),d.ha(a))}},K:function(a,b,c){try{return B.push(n),a.apply(b,c||[])}finally{B.pop()}}};var la={undefined:l,\n\"boolean\":l,number:l,string:l};b.m=function(a){function d(){if(0<arguments.length){if(!d.equalityComparer||!d.equalityComparer(c,arguments[0]))d.H(),c=arguments[0],d.G();return this}b.r.Va(d);return c}var c=a;b.S.call(d);d.t=function(){return c};d.G=function(){d.notifySubscribers(c)};d.H=function(){d.notifySubscribers(c,\"beforeChange\")};b.a.extend(d,b.m.fn);b.p(d,\"peek\",d.t);b.p(d,\"valueHasMutated\",d.G);b.p(d,\"valueWillMutate\",d.H);return d};b.m.fn={equalityComparer:function(a,b){return a===n||typeof a in\nla?a===b:q}};var D=b.m.Jb=\"__ko_proto__\";b.m.fn[D]=b.m;b.la=function(a,d){return a===n||a===H||a[D]===H?q:a[D]===d?l:b.la(a[D],d)};b.$=function(a){return b.la(a,b.m)};b.Qa=function(a){return\"function\"==typeof a&&a[D]===b.m||\"function\"==typeof a&&a[D]===b.j&&a.yb?l:q};b.b(\"observable\",b.m);b.b(\"isObservable\",b.$);b.b(\"isWriteableObservable\",b.Qa);b.R=function(a){0==arguments.length&&(a=[]);a!==n&&(a!==H&&!(\"length\"in a))&&i(Error(\"The argument passed when initializing an observable array must be an array, or null, or undefined.\"));\nvar d=b.m(a);b.a.extend(d,b.R.fn);return d};b.R.fn={remove:function(a){for(var b=this.t(),c=[],e=\"function\"==typeof a?a:function(b){return b===a},f=0;f<b.length;f++){var g=b[f];e(g)&&(0===c.length&&this.H(),c.push(g),b.splice(f,1),f--)}c.length&&this.G();return c},removeAll:function(a){if(a===H){var d=this.t(),c=d.slice(0);this.H();d.splice(0,d.length);this.G();return c}return!a?[]:this.remove(function(d){return 0<=b.a.i(a,d)})},destroy:function(a){var b=this.t(),c=\"function\"==typeof a?a:function(b){return b===\na};this.H();for(var e=b.length-1;0<=e;e--)c(b[e])&&(b[e]._destroy=l);this.G()},destroyAll:function(a){return a===H?this.destroy(t(l)):!a?[]:this.destroy(function(d){return 0<=b.a.i(a,d)})},indexOf:function(a){var d=this();return b.a.i(d,a)},replace:function(a,b){var c=this.indexOf(a);0<=c&&(this.H(),this.t()[c]=b,this.G())}};b.a.o(\"pop push reverse shift sort splice unshift\".split(\" \"),function(a){b.R.fn[a]=function(){var b=this.t();this.H();b=b[a].apply(b,arguments);this.G();return b}});b.a.o([\"slice\"],\nfunction(a){b.R.fn[a]=function(){var b=this();return b[a].apply(b,arguments)}});b.b(\"observableArray\",b.R);b.j=function(a,d,c){function e(){b.a.o(y,function(a){a.B()});y=[]}function f(){var a=h.throttleEvaluation;a&&0<=a?(clearTimeout(s),s=setTimeout(g,a)):g()}function g(){if(!p)if(m&&v())z();else{p=l;try{var a=b.a.V(y,function(a){return a.target});b.r.lb(function(c){var d;0<=(d=b.a.i(a,c))?a[d]=H:y.push(c.xa(f))});for(var c=r.call(d),e=a.length-1;0<=e;e--)a[e]&&y.splice(e,1)[0].B();m=l;h.notifySubscribers(k,\n\"beforeChange\");k=c}finally{b.r.end()}h.notifySubscribers(k);p=q;y.length||z()}}function h(){if(0<arguments.length)return\"function\"===typeof u?u.apply(d,arguments):i(Error(\"Cannot write a value to a ko.computed unless you specify a 'write' option. If you wish to read the current value, don't pass any parameters.\")),this;m||g();b.r.Va(h);return k}function j(){return!m||0<y.length}var k,m=q,p=q,r=a;r&&\"object\"==typeof r?(c=r,r=c.read):(c=c||{},r||(r=c.read));\"function\"!=typeof r&&i(Error(\"Pass a function that returns the value of the ko.computed\"));\nvar u=c.write,F=c.disposeWhenNodeIsRemoved||c.W||n,v=c.disposeWhen||c.Ja||t(q),z=e,y=[],s=n;d||(d=c.owner);h.t=function(){m||g();return k};h.wb=function(){return y.length};h.yb=\"function\"===typeof c.write;h.B=function(){z()};h.oa=j;b.S.call(h);b.a.extend(h,b.j.fn);b.p(h,\"peek\",h.t);b.p(h,\"dispose\",h.B);b.p(h,\"isActive\",h.oa);b.p(h,\"getDependenciesCount\",h.wb);c.deferEvaluation!==l&&g();if(F&&j()){z=function(){b.a.F.Wa(F,arguments.callee);e()};b.a.F.Ba(F,z);var C=v,v=function(){return!b.a.X(F)||C()}}return h};\nb.Ab=function(a){return b.la(a,b.j)};v=b.m.Jb;b.j[v]=b.m;b.j.fn={};b.j.fn[v]=b.j;b.b(\"dependentObservable\",b.j);b.b(\"computed\",b.j);b.b(\"isComputed\",b.Ab);b.fb=function(a){0==arguments.length&&i(Error(\"When calling ko.toJS, pass the object you want to convert.\"));return aa(a,function(a){for(var c=0;b.$(a)&&10>c;c++)a=a();return a})};b.toJSON=function(a,d,c){a=b.fb(a);return b.a.wa(a,d,c)};b.b(\"toJS\",b.fb);b.b(\"toJSON\",b.toJSON);b.k={q:function(a){switch(b.a.u(a)){case \"option\":return a.__ko__hasDomDataOptionValue__===\nl?b.a.f.get(a,b.c.options.ra):7>=b.a.Z?a.getAttributeNode(\"value\").specified?a.value:a.text:a.value;case \"select\":return 0<=a.selectedIndex?b.k.q(a.options[a.selectedIndex]):H;default:return a.value}},T:function(a,d){switch(b.a.u(a)){case \"option\":switch(typeof d){case \"string\":b.a.f.set(a,b.c.options.ra,H);\"__ko__hasDomDataOptionValue__\"in a&&delete a.__ko__hasDomDataOptionValue__;a.value=d;break;default:b.a.f.set(a,b.c.options.ra,d),a.__ko__hasDomDataOptionValue__=l,a.value=\"number\"===typeof d?\nd:\"\"}break;case \"select\":for(var c=a.options.length-1;0<=c;c--)if(b.k.q(a.options[c])==d){a.selectedIndex=c;break}break;default:if(d===n||d===H)d=\"\";a.value=d}}};b.b(\"selectExtensions\",b.k);b.b(\"selectExtensions.readValue\",b.k.q);b.b(\"selectExtensions.writeValue\",b.k.T);var ja=/\\@ko_token_(\\d+)\\@/g,ma=[\"true\",\"false\"],na=/^(?:[$_a-z][$\\w]*|(.+)(\\.\\s*[$_a-z][$\\w]*|\\[.+\\]))$/i;b.g={Q:[],aa:function(a){var d=b.a.D(a);if(3>d.length)return[];\"{\"===d.charAt(0)&&(d=d.substring(1,d.length-1));for(var a=[],\nc=n,e,f=0;f<d.length;f++){var g=d.charAt(f);if(c===n)switch(g){case '\"':case \"'\":case \"/\":c=f,e=g}else if(g==e&&\"\\\\\"!==d.charAt(f-1)){g=d.substring(c,f+1);a.push(g);var h=\"@ko_token_\"+(a.length-1)+\"@\",d=d.substring(0,c)+h+d.substring(f+1),f=f-(g.length-h.length),c=n}}e=c=n;for(var j=0,k=n,f=0;f<d.length;f++){g=d.charAt(f);if(c===n)switch(g){case \"{\":c=f;k=g;e=\"}\";break;case \"(\":c=f;k=g;e=\")\";break;case \"[\":c=f,k=g,e=\"]\"}g===k?j++:g===e&&(j--,0===j&&(g=d.substring(c,f+1),a.push(g),h=\"@ko_token_\"+(a.length-\n1)+\"@\",d=d.substring(0,c)+h+d.substring(f+1),f-=g.length-h.length,c=n))}e=[];d=d.split(\",\");c=0;for(f=d.length;c<f;c++)j=d[c],k=j.indexOf(\":\"),0<k&&k<j.length-1?(g=j.substring(k+1),e.push({key:O(j.substring(0,k),a),value:O(g,a)})):e.push({unknown:O(j,a)});return e},ba:function(a){for(var d=\"string\"===typeof a?b.g.aa(a):a,c=[],a=[],e,f=0;e=d[f];f++)if(0<c.length&&c.push(\",\"),e.key){var g;a:{g=e.key;var h=b.a.D(g);switch(h.length&&h.charAt(0)){case \"'\":case '\"':break a;default:g=\"'\"+h+\"'\"}}e=e.value;\nc.push(g);c.push(\":\");c.push(e);e=b.a.D(e);0<=b.a.i(ma,b.a.D(e).toLowerCase())?e=q:(h=e.match(na),e=h===n?q:h[1]?\"Object(\"+h[1]+\")\"+h[2]:e);e&&(0<a.length&&a.push(\", \"),a.push(g+\" : function(__ko_value) { \"+e+\" = __ko_value; }\"))}else e.unknown&&c.push(e.unknown);d=c.join(\"\");0<a.length&&(d=d+\", '_ko_property_writers' : { \"+a.join(\"\")+\" } \");return d},Db:function(a,d){for(var c=0;c<a.length;c++)if(b.a.D(a[c].key)==d)return l;return q},ea:function(a,d,c,e,f){if(!a||!b.Qa(a)){if((a=d()._ko_property_writers)&&\na[c])a[c](e)}else(!f||a.t()!==e)&&a(e)}};b.b(\"expressionRewriting\",b.g);b.b(\"expressionRewriting.bindingRewriteValidators\",b.g.Q);b.b(\"expressionRewriting.parseObjectLiteral\",b.g.aa);b.b(\"expressionRewriting.preProcessBindings\",b.g.ba);b.b(\"jsonExpressionRewriting\",b.g);b.b(\"jsonExpressionRewriting.insertPropertyAccessorsIntoJson\",b.g.ba);var J=\"<\\!--test--\\>\"===x.createComment(\"test\").text,ia=J?/^<\\!--\\s*ko(?:\\s+(.+\\s*\\:[\\s\\S]*))?\\s*--\\>$/:/^\\s*ko(?:\\s+(.+\\s*\\:[\\s\\S]*))?\\s*$/,ha=J?/^<\\!--\\s*\\/ko\\s*--\\>$/:\n/^\\s*\\/ko\\s*$/,oa={ul:l,ol:l};b.e={I:{},childNodes:function(a){return A(a)?$(a):a.childNodes},Y:function(a){if(A(a))for(var a=b.e.childNodes(a),d=0,c=a.length;d<c;d++)b.removeNode(a[d]);else b.a.ka(a)},N:function(a,d){if(A(a)){b.e.Y(a);for(var c=a.nextSibling,e=0,f=d.length;e<f;e++)c.parentNode.insertBefore(d[e],c)}else b.a.N(a,d)},Ua:function(a,b){A(a)?a.parentNode.insertBefore(b,a.nextSibling):a.firstChild?a.insertBefore(b,a.firstChild):a.appendChild(b)},Oa:function(a,d,c){c?A(a)?a.parentNode.insertBefore(d,\nc.nextSibling):c.nextSibling?a.insertBefore(d,c.nextSibling):a.appendChild(d):b.e.Ua(a,d)},firstChild:function(a){return!A(a)?a.firstChild:!a.nextSibling||G(a.nextSibling)?n:a.nextSibling},nextSibling:function(a){A(a)&&(a=Z(a));return a.nextSibling&&G(a.nextSibling)?n:a.nextSibling},ib:function(a){return(a=A(a))?a[1]:n},Sa:function(a){if(oa[b.a.u(a)]){var d=a.firstChild;if(d){do if(1===d.nodeType){var c;c=d.firstChild;var e=n;if(c){do if(e)e.push(c);else if(A(c)){var f=Z(c,l);f?c=f:e=[c]}else G(c)&&\n(e=[c]);while(c=c.nextSibling)}if(c=e){e=d.nextSibling;for(f=0;f<c.length;f++)e?a.insertBefore(c[f],e):a.appendChild(c[f])}}while(d=d.nextSibling)}}}};b.b(\"virtualElements\",b.e);b.b(\"virtualElements.allowedBindings\",b.e.I);b.b(\"virtualElements.emptyNode\",b.e.Y);b.b(\"virtualElements.insertAfter\",b.e.Oa);b.b(\"virtualElements.prepend\",b.e.Ua);b.b(\"virtualElements.setDomNodeChildren\",b.e.N);b.J=function(){this.Ga={}};b.a.extend(b.J.prototype,{nodeHasBindings:function(a){switch(a.nodeType){case 1:return a.getAttribute(\"data-bind\")!=\nn;case 8:return b.e.ib(a)!=n;default:return q}},getBindings:function(a,b){var c=this.getBindingsString(a,b);return c?this.parseBindingsString(c,b,a):n},getBindingsString:function(a){switch(a.nodeType){case 1:return a.getAttribute(\"data-bind\");case 8:return b.e.ib(a);default:return n}},parseBindingsString:function(a,d,c){try{var e;if(!(e=this.Ga[a])){var f=this.Ga,g=\"with($context){with($data||{}){return{\"+b.g.ba(a)+\"}}}\";e=f[a]=new Function(\"$context\",\"$element\",g)}return e(d,c)}catch(h){i(Error(\"Unable to parse bindings.\\nMessage: \"+\nh+\";\\nBindings value: \"+a))}}});b.J.instance=new b.J;b.b(\"bindingProvider\",b.J);b.c={};b.z=function(a,d,c){d?(b.a.extend(this,d),this.$parentContext=d,this.$parent=d.$data,this.$parents=(d.$parents||[]).slice(0),this.$parents.unshift(this.$parent)):(this.$parents=[],this.$root=a,this.ko=b);this.$data=a;c&&(this[c]=a)};b.z.prototype.createChildContext=function(a,d){return new b.z(a,this,d)};b.z.prototype.extend=function(a){var d=b.a.extend(new b.z,this);return b.a.extend(d,a)};b.cb=function(a,d){if(2==\narguments.length)b.a.f.set(a,\"__ko_bindingContext__\",d);else return b.a.f.get(a,\"__ko_bindingContext__\")};b.Ea=function(a,d,c){1===a.nodeType&&b.e.Sa(a);return W(a,d,c,l)};b.Da=function(a,b){(1===b.nodeType||8===b.nodeType)&&Y(a,b,l)};b.Ca=function(a,b){b&&(1!==b.nodeType&&8!==b.nodeType)&&i(Error(\"ko.applyBindings: first parameter should be your view model; second parameter should be a DOM node\"));b=b||w.document.body;X(a,b,l)};b.ja=function(a){switch(a.nodeType){case 1:case 8:var d=b.cb(a);if(d)return d;\nif(a.parentNode)return b.ja(a.parentNode)}return H};b.ob=function(a){return(a=b.ja(a))?a.$data:H};b.b(\"bindingHandlers\",b.c);b.b(\"applyBindings\",b.Ca);b.b(\"applyBindingsToDescendants\",b.Da);b.b(\"applyBindingsToNode\",b.Ea);b.b(\"contextFor\",b.ja);b.b(\"dataFor\",b.ob);var ea={\"class\":\"className\",\"for\":\"htmlFor\"};b.c.attr={update:function(a,d){var c=b.a.d(d())||{},e;for(e in c)if(\"string\"==typeof e){var f=b.a.d(c[e]),g=f===q||f===n||f===H;g&&a.removeAttribute(e);8>=b.a.Z&&e in ea?(e=ea[e],g?a.removeAttribute(e):\na[e]=f):g||a.setAttribute(e,f.toString());\"name\"===e&&b.a.$a(a,g?\"\":f.toString())}}};b.c.checked={init:function(a,d,c){b.a.n(a,\"click\",function(){var e;if(\"checkbox\"==a.type)e=a.checked;else if(\"radio\"==a.type&&a.checked)e=a.value;else return;var f=d(),g=b.a.d(f);\"checkbox\"==a.type&&g instanceof Array?(e=b.a.i(g,a.value),a.checked&&0>e?f.push(a.value):!a.checked&&0<=e&&f.splice(e,1)):b.g.ea(f,c,\"checked\",e,l)});\"radio\"==a.type&&!a.name&&b.c.uniqueName.init(a,t(l))},update:function(a,d){var c=b.a.d(d());\n\"checkbox\"==a.type?a.checked=c instanceof Array?0<=b.a.i(c,a.value):c:\"radio\"==a.type&&(a.checked=a.value==c)}};b.c.css={update:function(a,d){var c=b.a.d(d());if(\"object\"==typeof c)for(var e in c){var f=b.a.d(c[e]);b.a.da(a,e,f)}else c=String(c||\"\"),b.a.da(a,a.__ko__cssValue,q),a.__ko__cssValue=c,b.a.da(a,c,l)}};b.c.enable={update:function(a,d){var c=b.a.d(d());c&&a.disabled?a.removeAttribute(\"disabled\"):!c&&!a.disabled&&(a.disabled=l)}};b.c.disable={update:function(a,d){b.c.enable.update(a,function(){return!b.a.d(d())})}};\nb.c.event={init:function(a,d,c,e){var f=d()||{},g;for(g in f)(function(){var f=g;\"string\"==typeof f&&b.a.n(a,f,function(a){var g,m=d()[f];if(m){var p=c();try{var r=b.a.L(arguments);r.unshift(e);g=m.apply(e,r)}finally{g!==l&&(a.preventDefault?a.preventDefault():a.returnValue=q)}p[f+\"Bubble\"]===q&&(a.cancelBubble=l,a.stopPropagation&&a.stopPropagation())}})})()}};b.c.foreach={Ra:function(a){return function(){var d=a(),c=b.a.ta(d);if(!c||\"number\"==typeof c.length)return{foreach:d,templateEngine:b.C.na};\nb.a.d(d);return{foreach:c.data,as:c.as,includeDestroyed:c.includeDestroyed,afterAdd:c.afterAdd,beforeRemove:c.beforeRemove,afterRender:c.afterRender,beforeMove:c.beforeMove,afterMove:c.afterMove,templateEngine:b.C.na}}},init:function(a,d){return b.c.template.init(a,b.c.foreach.Ra(d))},update:function(a,d,c,e,f){return b.c.template.update(a,b.c.foreach.Ra(d),c,e,f)}};b.g.Q.foreach=q;b.e.I.foreach=l;b.c.hasfocus={init:function(a,d,c){function e(e){a.__ko_hasfocusUpdating=l;var f=a.ownerDocument;\"activeElement\"in\nf&&(e=f.activeElement===a);f=d();b.g.ea(f,c,\"hasfocus\",e,l);a.__ko_hasfocusUpdating=q}var f=e.bind(n,l),g=e.bind(n,q);b.a.n(a,\"focus\",f);b.a.n(a,\"focusin\",f);b.a.n(a,\"blur\",g);b.a.n(a,\"focusout\",g)},update:function(a,d){var c=b.a.d(d());a.__ko_hasfocusUpdating||(c?a.focus():a.blur(),b.r.K(b.a.Aa,n,[a,c?\"focusin\":\"focusout\"]))}};b.c.html={init:function(){return{controlsDescendantBindings:l}},update:function(a,d){b.a.ca(a,d())}};var ca=\"__ko_withIfBindingData\";P(\"if\");P(\"ifnot\",q,l);P(\"with\",l,q,function(a,\nb){return a.createChildContext(b)});b.c.options={update:function(a,d,c){\"select\"!==b.a.u(a)&&i(Error(\"options binding applies only to SELECT elements\"));for(var e=0==a.length,f=b.a.V(b.a.fa(a.childNodes,function(a){return a.tagName&&\"option\"===b.a.u(a)&&a.selected}),function(a){return b.k.q(a)||a.innerText||a.textContent}),g=a.scrollTop,h=b.a.d(d());0<a.length;)b.A(a.options[0]),a.remove(0);if(h){var c=c(),j=c.optionsIncludeDestroyed;\"number\"!=typeof h.length&&(h=[h]);if(c.optionsCaption){var k=x.createElement(\"option\");\nb.a.ca(k,c.optionsCaption);b.k.T(k,H);a.appendChild(k)}for(var d=0,m=h.length;d<m;d++){var p=h[d];if(!p||!p._destroy||j){var k=x.createElement(\"option\"),r=function(a,b,c){var d=typeof b;return\"function\"==d?b(a):\"string\"==d?a[b]:c},u=r(p,c.optionsValue,p);b.k.T(k,b.a.d(u));p=r(p,c.optionsText,u);b.a.bb(k,p);a.appendChild(k)}}h=a.getElementsByTagName(\"option\");d=j=0;for(m=h.length;d<m;d++)0<=b.a.i(f,b.k.q(h[d]))&&(b.a.ab(h[d],l),j++);a.scrollTop=g;e&&\"value\"in c&&da(a,b.a.ta(c.value),l);b.a.tb(a)}}};\nb.c.options.ra=\"__ko.optionValueDomData__\";b.c.selectedOptions={init:function(a,d,c){b.a.n(a,\"change\",function(){var e=d(),f=[];b.a.o(a.getElementsByTagName(\"option\"),function(a){a.selected&&f.push(b.k.q(a))});b.g.ea(e,c,\"value\",f)})},update:function(a,d){\"select\"!=b.a.u(a)&&i(Error(\"values binding applies only to SELECT elements\"));var c=b.a.d(d());c&&\"number\"==typeof c.length&&b.a.o(a.getElementsByTagName(\"option\"),function(a){var d=0<=b.a.i(c,b.k.q(a));b.a.ab(a,d)})}};b.c.style={update:function(a,\nd){var c=b.a.d(d()||{}),e;for(e in c)if(\"string\"==typeof e){var f=b.a.d(c[e]);a.style[e]=f||\"\"}}};b.c.submit={init:function(a,d,c,e){\"function\"!=typeof d()&&i(Error(\"The value for a submit binding must be a function\"));b.a.n(a,\"submit\",function(b){var c,h=d();try{c=h.call(e,a)}finally{c!==l&&(b.preventDefault?b.preventDefault():b.returnValue=q)}})}};b.c.text={update:function(a,d){b.a.bb(a,d())}};b.e.I.text=l;b.c.uniqueName={init:function(a,d){if(d()){var c=\"ko_unique_\"+ ++b.c.uniqueName.nb;b.a.$a(a,\nc)}}};b.c.uniqueName.nb=0;b.c.value={init:function(a,d,c){function e(){h=q;var e=d(),f=b.k.q(a);b.g.ea(e,c,\"value\",f)}var f=[\"change\"],g=c().valueUpdate,h=q;g&&(\"string\"==typeof g&&(g=[g]),b.a.P(f,g),f=b.a.Fa(f));if(b.a.Z&&(\"input\"==a.tagName.toLowerCase()&&\"text\"==a.type&&\"off\"!=a.autocomplete&&(!a.form||\"off\"!=a.form.autocomplete))&&-1==b.a.i(f,\"propertychange\"))b.a.n(a,\"propertychange\",function(){h=l}),b.a.n(a,\"blur\",function(){h&&e()});b.a.o(f,function(c){var d=e;b.a.Nb(c,\"after\")&&(d=function(){setTimeout(e,\n0)},c=c.substring(5));b.a.n(a,c,d)})},update:function(a,d){var c=\"select\"===b.a.u(a),e=b.a.d(d()),f=b.k.q(a),g=e!=f;0===e&&(0!==f&&\"0\"!==f)&&(g=l);g&&(f=function(){b.k.T(a,e)},f(),c&&setTimeout(f,0));c&&0<a.length&&da(a,e,q)}};b.c.visible={update:function(a,d){var c=b.a.d(d()),e=\"none\"!=a.style.display;c&&!e?a.style.display=\"\":!c&&e&&(a.style.display=\"none\")}};b.c.click={init:function(a,d,c,e){return b.c.event.init.call(this,a,function(){var a={};a.click=d();return a},c,e)}};b.v=function(){};b.v.prototype.renderTemplateSource=\nfunction(){i(Error(\"Override renderTemplateSource\"))};b.v.prototype.createJavaScriptEvaluatorBlock=function(){i(Error(\"Override createJavaScriptEvaluatorBlock\"))};b.v.prototype.makeTemplateSource=function(a,d){if(\"string\"==typeof a){var d=d||x,c=d.getElementById(a);c||i(Error(\"Cannot find template with ID \"+a));return new b.l.h(c)}if(1==a.nodeType||8==a.nodeType)return new b.l.O(a);i(Error(\"Unknown template type: \"+a))};b.v.prototype.renderTemplate=function(a,b,c,e){a=this.makeTemplateSource(a,e);\nreturn this.renderTemplateSource(a,b,c)};b.v.prototype.isTemplateRewritten=function(a,b){return this.allowTemplateRewriting===q?l:this.makeTemplateSource(a,b).data(\"isRewritten\")};b.v.prototype.rewriteTemplate=function(a,b,c){a=this.makeTemplateSource(a,c);b=b(a.text());a.text(b);a.data(\"isRewritten\",l)};b.b(\"templateEngine\",b.v);var pa=/(<[a-z]+\\d*(\\s+(?!data-bind=)[a-z0-9\\-]+(=(\\\"[^\\\"]*\\\"|\\'[^\\']*\\'))?)*\\s+)data-bind=([\"'])([\\s\\S]*?)\\5/gi,qa=/<\\!--\\s*ko\\b\\s*([\\s\\S]*?)\\s*--\\>/g;b.ya={ub:function(a,\nd,c){d.isTemplateRewritten(a,c)||d.rewriteTemplate(a,function(a){return b.ya.Fb(a,d)},c)},Fb:function(a,b){return a.replace(pa,function(a,e,f,g,h,j,k){return V(k,e,b)}).replace(qa,function(a,e){return V(e,\"<\\!-- ko --\\>\",b)})},jb:function(a){return b.s.qa(function(d,c){d.nextSibling&&b.Ea(d.nextSibling,a,c)})}};b.b(\"__tr_ambtns\",b.ya.jb);b.l={};b.l.h=function(a){this.h=a};b.l.h.prototype.text=function(){var a=b.a.u(this.h),a=\"script\"===a?\"text\":\"textarea\"===a?\"value\":\"innerHTML\";if(0==arguments.length)return this.h[a];\nvar d=arguments[0];\"innerHTML\"===a?b.a.ca(this.h,d):this.h[a]=d};b.l.h.prototype.data=function(a){if(1===arguments.length)return b.a.f.get(this.h,\"templateSourceData_\"+a);b.a.f.set(this.h,\"templateSourceData_\"+a,arguments[1])};b.l.O=function(a){this.h=a};b.l.O.prototype=new b.l.h;b.l.O.prototype.text=function(){if(0==arguments.length){var a=b.a.f.get(this.h,\"__ko_anon_template__\")||{};a.za===H&&a.ia&&(a.za=a.ia.innerHTML);return a.za}b.a.f.set(this.h,\"__ko_anon_template__\",{za:arguments[0]})};b.l.h.prototype.nodes=\nfunction(){if(0==arguments.length)return(b.a.f.get(this.h,\"__ko_anon_template__\")||{}).ia;b.a.f.set(this.h,\"__ko_anon_template__\",{ia:arguments[0]})};b.b(\"templateSources\",b.l);b.b(\"templateSources.domElement\",b.l.h);b.b(\"templateSources.anonymousTemplate\",b.l.O);var N;b.va=function(a){a!=H&&!(a instanceof b.v)&&i(Error(\"templateEngine must inherit from ko.templateEngine\"));N=a};b.ua=function(a,d,c,e,f){c=c||{};(c.templateEngine||N)==H&&i(Error(\"Set a template engine before calling renderTemplate\"));\nf=f||\"replaceChildren\";if(e){var g=M(e);return b.j(function(){var h=d&&d instanceof b.z?d:new b.z(b.a.d(d)),j=\"function\"==typeof a?a(h.$data,h):a,h=S(e,f,j,h,c);\"replaceNode\"==f&&(e=h,g=M(e))},n,{Ja:function(){return!g||!b.a.X(g)},W:g&&\"replaceNode\"==f?g.parentNode:g})}return b.s.qa(function(e){b.ua(a,d,c,e,\"replaceNode\")})};b.Lb=function(a,d,c,e,f){function g(a,b){T(b,j);c.afterRender&&c.afterRender(b,a)}function h(d,e){j=f.createChildContext(b.a.d(d),c.as);j.$index=e;var g=\"function\"==typeof a?\na(d,j):a;return S(n,\"ignoreTargetNode\",g,j,c)}var j;return b.j(function(){var a=b.a.d(d)||[];\"undefined\"==typeof a.length&&(a=[a]);a=b.a.fa(a,function(a){return c.includeDestroyed||a===H||a===n||!b.a.d(a._destroy)});b.r.K(b.a.Za,n,[e,a,h,c,g])},n,{W:e})};b.c.template={init:function(a,d){var c=b.a.d(d());if(\"string\"!=typeof c&&!c.name&&(1==a.nodeType||8==a.nodeType))c=1==a.nodeType?a.childNodes:b.e.childNodes(a),c=b.a.Gb(c),(new b.l.O(a)).nodes(c);return{controlsDescendantBindings:l}},update:function(a,\nd,c,e,f){var d=b.a.d(d()),c={},e=l,g,h=n;\"string\"!=typeof d&&(c=d,d=c.name,\"if\"in c&&(e=b.a.d(c[\"if\"])),e&&\"ifnot\"in c&&(e=!b.a.d(c.ifnot)),g=b.a.d(c.data));\"foreach\"in c?h=b.Lb(d||a,e&&c.foreach||[],c,a,f):e?(f=\"data\"in c?f.createChildContext(g,c.as):f,h=b.ua(d||a,f,c,a)):b.e.Y(a);f=h;(g=b.a.f.get(a,\"__ko__templateComputedDomDataKey__\"))&&\"function\"==typeof g.B&&g.B();b.a.f.set(a,\"__ko__templateComputedDomDataKey__\",f&&f.oa()?f:H)}};b.g.Q.template=function(a){a=b.g.aa(a);return 1==a.length&&a[0].unknown||\nb.g.Db(a,\"name\")?n:\"This template engine does not support anonymous templates nested within its templates\"};b.e.I.template=l;b.b(\"setTemplateEngine\",b.va);b.b(\"renderTemplate\",b.ua);b.a.Ia=function(a,b,c){a=a||[];b=b||[];return a.length<=b.length?R(a,b,\"added\",\"deleted\",c):R(b,a,\"deleted\",\"added\",c)};b.b(\"utils.compareArrays\",b.a.Ia);b.a.Za=function(a,d,c,e,f){function g(a,b){s=k[b];v!==b&&(y[a]=s);s.ma(v++);L(s.M);r.push(s);z.push(s)}function h(a,c){if(a)for(var d=0,e=c.length;d<e;d++)c[d]&&b.a.o(c[d].M,\nfunction(b){a(b,d,c[d].U)})}for(var d=d||[],e=e||{},j=b.a.f.get(a,\"setDomNodeChildrenFromArrayMapping_lastMappingResult\")===H,k=b.a.f.get(a,\"setDomNodeChildrenFromArrayMapping_lastMappingResult\")||[],m=b.a.V(k,function(a){return a.U}),p=b.a.Ia(m,d),r=[],u=0,v=0,A=[],z=[],d=[],y=[],m=[],s,C=0,B,D;B=p[C];C++)switch(D=B.moved,B.status){case \"deleted\":D===H&&(s=k[u],s.j&&s.j.B(),A.push.apply(A,L(s.M)),e.beforeRemove&&(d[C]=s,z.push(s)));u++;break;case \"retained\":g(C,u++);break;case \"added\":D!==H?g(C,\nD):(s={U:B.value,ma:b.m(v++)},r.push(s),z.push(s),j||(m[C]=s))}h(e.beforeMove,y);b.a.o(A,e.beforeRemove?b.A:b.removeNode);for(var C=0,j=b.e.firstChild(a),G;s=z[C];C++){s.M||b.a.extend(s,ga(a,c,s.U,f,s.ma));for(u=0;p=s.M[u];j=p.nextSibling,G=p,u++)p!==j&&b.e.Oa(a,p,G);!s.zb&&f&&(f(s.U,s.M,s.ma),s.zb=l)}h(e.beforeRemove,d);h(e.afterMove,y);h(e.afterAdd,m);b.a.f.set(a,\"setDomNodeChildrenFromArrayMapping_lastMappingResult\",r)};b.b(\"utils.setDomNodeChildrenFromArrayMapping\",b.a.Za);b.C=function(){this.allowTemplateRewriting=\nq};b.C.prototype=new b.v;b.C.prototype.renderTemplateSource=function(a){var d=!(9>b.a.Z)&&a.nodes?a.nodes():n;if(d)return b.a.L(d.cloneNode(l).childNodes);a=a.text();return b.a.sa(a)};b.C.na=new b.C;b.va(b.C.na);b.b(\"nativeTemplateEngine\",b.C);b.pa=function(){var a=this.Cb=function(){if(\"undefined\"==typeof E||!E.tmpl)return 0;try{if(0<=E.tmpl.tag.tmpl.open.toString().indexOf(\"__\"))return 2}catch(a){}return 1}();this.renderTemplateSource=function(b,c,e){e=e||{};2>a&&i(Error(\"Your version of jQuery.tmpl is too old. Please upgrade to jQuery.tmpl 1.0.0pre or later.\"));\nvar f=b.data(\"precompiled\");f||(f=b.text()||\"\",f=E.template(n,\"{{ko_with $item.koBindingContext}}\"+f+\"{{/ko_with}}\"),b.data(\"precompiled\",f));b=[c.$data];c=E.extend({koBindingContext:c},e.templateOptions);c=E.tmpl(f,b,c);c.appendTo(x.createElement(\"div\"));E.fragments={};return c};this.createJavaScriptEvaluatorBlock=function(a){return\"{{ko_code ((function() { return \"+a+\" })()) }}\"};this.addTemplate=function(a,b){x.write(\"<script type='text/html' id='\"+a+\"'>\"+b+\"<\\/script>\")};0<a&&(E.tmpl.tag.ko_code=\n{open:\"__.push($1 || '');\"},E.tmpl.tag.ko_with={open:\"with($1) {\",close:\"} \"})};b.pa.prototype=new b.v;v=new b.pa;0<v.Cb&&b.va(v);b.b(\"jqueryTmplTemplateEngine\",b.pa)}\"function\"===typeof require&&\"object\"===typeof exports&&\"object\"===typeof module?K(module.exports||exports):\"function\"===typeof define&&define.amd?define([\"exports\"],K):K(w.ko={});l;\n})();\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/modernizr-2.6.2.js",
    "content": "/*!\n * Modernizr v2.6.2\n * www.modernizr.com\n *\n * Copyright (c) Faruk Ates, Paul Irish, Alex Sexton\n * Available under the BSD and MIT licenses: www.modernizr.com/license/\n */\n\n/*\n * Modernizr tests which native CSS3 and HTML5 features are available in\n * the current UA and makes the results available to you in two ways:\n * as properties on a global Modernizr object, and as classes on the\n * <html> element. This information allows you to progressively enhance\n * your pages with a granular level of control over the experience.\n *\n * Modernizr has an optional (not included) conditional resource loader\n * called Modernizr.load(), based on Yepnope.js (yepnopejs.com).\n * To get a build that includes Modernizr.load(), as well as choosing\n * which tests to include, go to www.modernizr.com/download/\n *\n * Authors        Faruk Ates, Paul Irish, Alex Sexton\n * Contributors   Ryan Seddon, Ben Alman\n */\n\nwindow.Modernizr = (function( window, document, undefined ) {\n\n    var version = '2.6.2',\n\n    Modernizr = {},\n\n    /*>>cssclasses*/\n    // option for enabling the HTML classes to be added\n    enableClasses = true,\n    /*>>cssclasses*/\n\n    docElement = document.documentElement,\n\n    /**\n     * Create our \"modernizr\" element that we do most feature tests on.\n     */\n    mod = 'modernizr',\n    modElem = document.createElement(mod),\n    mStyle = modElem.style,\n\n    /**\n     * Create the input element for various Web Forms feature tests.\n     */\n    inputElem /*>>inputelem*/ = document.createElement('input') /*>>inputelem*/ ,\n\n    /*>>smile*/\n    smile = ':)',\n    /*>>smile*/\n\n    toString = {}.toString,\n\n    // TODO :: make the prefixes more granular\n    /*>>prefixes*/\n    // List of property values to set for css tests. See ticket #21\n    prefixes = ' -webkit- -moz- -o- -ms- '.split(' '),\n    /*>>prefixes*/\n\n    /*>>domprefixes*/\n    // Following spec is to expose vendor-specific style properties as:\n    //   elem.style.WebkitBorderRadius\n    // and the following would be incorrect:\n    //   elem.style.webkitBorderRadius\n\n    // Webkit ghosts their properties in lowercase but Opera & Moz do not.\n    // Microsoft uses a lowercase `ms` instead of the correct `Ms` in IE8+\n    //   erik.eae.net/archives/2008/03/10/21.48.10/\n\n    // More here: github.com/Modernizr/Modernizr/issues/issue/21\n    omPrefixes = 'Webkit Moz O ms',\n\n    cssomPrefixes = omPrefixes.split(' '),\n\n    domPrefixes = omPrefixes.toLowerCase().split(' '),\n    /*>>domprefixes*/\n\n    /*>>ns*/\n    ns = {'svg': 'http://www.w3.org/2000/svg'},\n    /*>>ns*/\n\n    tests = {},\n    inputs = {},\n    attrs = {},\n\n    classes = [],\n\n    slice = classes.slice,\n\n    featureName, // used in testing loop\n\n\n    /*>>teststyles*/\n    // Inject element with style element and some CSS rules\n    injectElementWithStyles = function( rule, callback, nodes, testnames ) {\n\n      var style, ret, node, docOverflow,\n          div = document.createElement('div'),\n          // After page load injecting a fake body doesn't work so check if body exists\n          body = document.body,\n          // IE6 and 7 won't return offsetWidth or offsetHeight unless it's in the body element, so we fake it.\n          fakeBody = body || document.createElement('body');\n\n      if ( parseInt(nodes, 10) ) {\n          // In order not to give false positives we create a node for each test\n          // This also allows the method to scale for unspecified uses\n          while ( nodes-- ) {\n              node = document.createElement('div');\n              node.id = testnames ? testnames[nodes] : mod + (nodes + 1);\n              div.appendChild(node);\n          }\n      }\n\n      // <style> elements in IE6-9 are considered 'NoScope' elements and therefore will be removed\n      // when injected with innerHTML. To get around this you need to prepend the 'NoScope' element\n      // with a 'scoped' element, in our case the soft-hyphen entity as it won't mess with our measurements.\n      // msdn.microsoft.com/en-us/library/ms533897%28VS.85%29.aspx\n      // Documents served as xml will throw if using &shy; so use xml friendly encoded version. See issue #277\n      style = ['&#173;','<style id=\"s', mod, '\">', rule, '</style>'].join('');\n      div.id = mod;\n      // IE6 will false positive on some tests due to the style element inside the test div somehow interfering offsetHeight, so insert it into body or fakebody.\n      // Opera will act all quirky when injecting elements in documentElement when page is served as xml, needs fakebody too. #270\n      (body ? div : fakeBody).innerHTML += style;\n      fakeBody.appendChild(div);\n      if ( !body ) {\n          //avoid crashing IE8, if background image is used\n          fakeBody.style.background = '';\n          //Safari 5.13/5.1.4 OSX stops loading if ::-webkit-scrollbar is used and scrollbars are visible\n          fakeBody.style.overflow = 'hidden';\n          docOverflow = docElement.style.overflow;\n          docElement.style.overflow = 'hidden';\n          docElement.appendChild(fakeBody);\n      }\n\n      ret = callback(div, rule);\n      // If this is done after page load we don't want to remove the body so check if body exists\n      if ( !body ) {\n          fakeBody.parentNode.removeChild(fakeBody);\n          docElement.style.overflow = docOverflow;\n      } else {\n          div.parentNode.removeChild(div);\n      }\n\n      return !!ret;\n\n    },\n    /*>>teststyles*/\n\n    /*>>mq*/\n    // adapted from matchMedia polyfill\n    // by Scott Jehl and Paul Irish\n    // gist.github.com/786768\n    testMediaQuery = function( mq ) {\n\n      var matchMedia = window.matchMedia || window.msMatchMedia;\n      if ( matchMedia ) {\n        return matchMedia(mq).matches;\n      }\n\n      var bool;\n\n      injectElementWithStyles('@media ' + mq + ' { #' + mod + ' { position: absolute; } }', function( node ) {\n        bool = (window.getComputedStyle ?\n                  getComputedStyle(node, null) :\n                  node.currentStyle)['position'] == 'absolute';\n      });\n\n      return bool;\n\n     },\n     /*>>mq*/\n\n\n    /*>>hasevent*/\n    //\n    // isEventSupported determines if a given element supports the given event\n    // kangax.github.com/iseventsupported/\n    //\n    // The following results are known incorrects:\n    //   Modernizr.hasEvent(\"webkitTransitionEnd\", elem) // false negative\n    //   Modernizr.hasEvent(\"textInput\") // in Webkit. github.com/Modernizr/Modernizr/issues/333\n    //   ...\n    isEventSupported = (function() {\n\n      var TAGNAMES = {\n        'select': 'input', 'change': 'input',\n        'submit': 'form', 'reset': 'form',\n        'error': 'img', 'load': 'img', 'abort': 'img'\n      };\n\n      function isEventSupported( eventName, element ) {\n\n        element = element || document.createElement(TAGNAMES[eventName] || 'div');\n        eventName = 'on' + eventName;\n\n        // When using `setAttribute`, IE skips \"unload\", WebKit skips \"unload\" and \"resize\", whereas `in` \"catches\" those\n        var isSupported = eventName in element;\n\n        if ( !isSupported ) {\n          // If it has no `setAttribute` (i.e. doesn't implement Node interface), try generic element\n          if ( !element.setAttribute ) {\n            element = document.createElement('div');\n          }\n          if ( element.setAttribute && element.removeAttribute ) {\n            element.setAttribute(eventName, '');\n            isSupported = is(element[eventName], 'function');\n\n            // If property was created, \"remove it\" (by setting value to `undefined`)\n            if ( !is(element[eventName], 'undefined') ) {\n              element[eventName] = undefined;\n            }\n            element.removeAttribute(eventName);\n          }\n        }\n\n        element = null;\n        return isSupported;\n      }\n      return isEventSupported;\n    })(),\n    /*>>hasevent*/\n\n    // TODO :: Add flag for hasownprop ? didn't last time\n\n    // hasOwnProperty shim by kangax needed for Safari 2.0 support\n    _hasOwnProperty = ({}).hasOwnProperty, hasOwnProp;\n\n    if ( !is(_hasOwnProperty, 'undefined') && !is(_hasOwnProperty.call, 'undefined') ) {\n      hasOwnProp = function (object, property) {\n        return _hasOwnProperty.call(object, property);\n      };\n    }\n    else {\n      hasOwnProp = function (object, property) { /* yes, this can give false positives/negatives, but most of the time we don't care about those */\n        return ((property in object) && is(object.constructor.prototype[property], 'undefined'));\n      };\n    }\n\n    // Adapted from ES5-shim https://github.com/kriskowal/es5-shim/blob/master/es5-shim.js\n    // es5.github.com/#x15.3.4.5\n\n    if (!Function.prototype.bind) {\n      Function.prototype.bind = function bind(that) {\n\n        var target = this;\n\n        if (typeof target != \"function\") {\n            throw new TypeError();\n        }\n\n        var args = slice.call(arguments, 1),\n            bound = function () {\n\n            if (this instanceof bound) {\n\n              var F = function(){};\n              F.prototype = target.prototype;\n              var self = new F();\n\n              var result = target.apply(\n                  self,\n                  args.concat(slice.call(arguments))\n              );\n              if (Object(result) === result) {\n                  return result;\n              }\n              return self;\n\n            } else {\n\n              return target.apply(\n                  that,\n                  args.concat(slice.call(arguments))\n              );\n\n            }\n\n        };\n\n        return bound;\n      };\n    }\n\n    /**\n     * setCss applies given styles to the Modernizr DOM node.\n     */\n    function setCss( str ) {\n        mStyle.cssText = str;\n    }\n\n    /**\n     * setCssAll extrapolates all vendor-specific css strings.\n     */\n    function setCssAll( str1, str2 ) {\n        return setCss(prefixes.join(str1 + ';') + ( str2 || '' ));\n    }\n\n    /**\n     * is returns a boolean for if typeof obj is exactly type.\n     */\n    function is( obj, type ) {\n        return typeof obj === type;\n    }\n\n    /**\n     * contains returns a boolean for if substr is found within str.\n     */\n    function contains( str, substr ) {\n        return !!~('' + str).indexOf(substr);\n    }\n\n    /*>>testprop*/\n\n    // testProps is a generic CSS / DOM property test.\n\n    // In testing support for a given CSS property, it's legit to test:\n    //    `elem.style[styleName] !== undefined`\n    // If the property is supported it will return an empty string,\n    // if unsupported it will return undefined.\n\n    // We'll take advantage of this quick test and skip setting a style\n    // on our modernizr element, but instead just testing undefined vs\n    // empty string.\n\n    // Because the testing of the CSS property names (with \"-\", as\n    // opposed to the camelCase DOM properties) is non-portable and\n    // non-standard but works in WebKit and IE (but not Gecko or Opera),\n    // we explicitly reject properties with dashes so that authors\n    // developing in WebKit or IE first don't end up with\n    // browser-specific content by accident.\n\n    function testProps( props, prefixed ) {\n        for ( var i in props ) {\n            var prop = props[i];\n            if ( !contains(prop, \"-\") && mStyle[prop] !== undefined ) {\n                return prefixed == 'pfx' ? prop : true;\n            }\n        }\n        return false;\n    }\n    /*>>testprop*/\n\n    // TODO :: add testDOMProps\n    /**\n     * testDOMProps is a generic DOM property test; if a browser supports\n     *   a certain property, it won't return undefined for it.\n     */\n    function testDOMProps( props, obj, elem ) {\n        for ( var i in props ) {\n            var item = obj[props[i]];\n            if ( item !== undefined) {\n\n                // return the property name as a string\n                if (elem === false) return props[i];\n\n                // let's bind a function\n                if (is(item, 'function')){\n                  // default to autobind unless override\n                  return item.bind(elem || obj);\n                }\n\n                // return the unbound function or obj or value\n                return item;\n            }\n        }\n        return false;\n    }\n\n    /*>>testallprops*/\n    /**\n     * testPropsAll tests a list of DOM properties we want to check against.\n     *   We specify literally ALL possible (known and/or likely) properties on\n     *   the element including the non-vendor prefixed one, for forward-\n     *   compatibility.\n     */\n    function testPropsAll( prop, prefixed, elem ) {\n\n        var ucProp  = prop.charAt(0).toUpperCase() + prop.slice(1),\n            props   = (prop + ' ' + cssomPrefixes.join(ucProp + ' ') + ucProp).split(' ');\n\n        // did they call .prefixed('boxSizing') or are we just testing a prop?\n        if(is(prefixed, \"string\") || is(prefixed, \"undefined\")) {\n          return testProps(props, prefixed);\n\n        // otherwise, they called .prefixed('requestAnimationFrame', window[, elem])\n        } else {\n          props = (prop + ' ' + (domPrefixes).join(ucProp + ' ') + ucProp).split(' ');\n          return testDOMProps(props, prefixed, elem);\n        }\n    }\n    /*>>testallprops*/\n\n\n    /**\n     * Tests\n     * -----\n     */\n\n    // The *new* flexbox\n    // dev.w3.org/csswg/css3-flexbox\n\n    tests['flexbox'] = function() {\n      return testPropsAll('flexWrap');\n    };\n\n    // The *old* flexbox\n    // www.w3.org/TR/2009/WD-css3-flexbox-20090723/\n\n    tests['flexboxlegacy'] = function() {\n        return testPropsAll('boxDirection');\n    };\n\n    // On the S60 and BB Storm, getContext exists, but always returns undefined\n    // so we actually have to call getContext() to verify\n    // github.com/Modernizr/Modernizr/issues/issue/97/\n\n    tests['canvas'] = function() {\n        var elem = document.createElement('canvas');\n        return !!(elem.getContext && elem.getContext('2d'));\n    };\n\n    tests['canvastext'] = function() {\n        return !!(Modernizr['canvas'] && is(document.createElement('canvas').getContext('2d').fillText, 'function'));\n    };\n\n    // webk.it/70117 is tracking a legit WebGL feature detect proposal\n\n    // We do a soft detect which may false positive in order to avoid\n    // an expensive context creation: bugzil.la/732441\n\n    tests['webgl'] = function() {\n        return !!window.WebGLRenderingContext;\n    };\n\n    /*\n     * The Modernizr.touch test only indicates if the browser supports\n     *    touch events, which does not necessarily reflect a touchscreen\n     *    device, as evidenced by tablets running Windows 7 or, alas,\n     *    the Palm Pre / WebOS (touch) phones.\n     *\n     * Additionally, Chrome (desktop) used to lie about its support on this,\n     *    but that has since been rectified: crbug.com/36415\n     *\n     * We also test for Firefox 4 Multitouch Support.\n     *\n     * For more info, see: modernizr.github.com/Modernizr/touch.html\n     */\n\n    tests['touch'] = function() {\n        var bool;\n\n        if(('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch) {\n          bool = true;\n        } else {\n          injectElementWithStyles(['@media (',prefixes.join('touch-enabled),('),mod,')','{#modernizr{top:9px;position:absolute}}'].join(''), function( node ) {\n            bool = node.offsetTop === 9;\n          });\n        }\n\n        return bool;\n    };\n\n\n    // geolocation is often considered a trivial feature detect...\n    // Turns out, it's quite tricky to get right:\n    //\n    // Using !!navigator.geolocation does two things we don't want. It:\n    //   1. Leaks memory in IE9: github.com/Modernizr/Modernizr/issues/513\n    //   2. Disables page caching in WebKit: webk.it/43956\n    //\n    // Meanwhile, in Firefox < 8, an about:config setting could expose\n    // a false positive that would throw an exception: bugzil.la/688158\n\n    tests['geolocation'] = function() {\n        return 'geolocation' in navigator;\n    };\n\n\n    tests['postmessage'] = function() {\n      return !!window.postMessage;\n    };\n\n\n    // Chrome incognito mode used to throw an exception when using openDatabase\n    // It doesn't anymore.\n    tests['websqldatabase'] = function() {\n      return !!window.openDatabase;\n    };\n\n    // Vendors had inconsistent prefixing with the experimental Indexed DB:\n    // - Webkit's implementation is accessible through webkitIndexedDB\n    // - Firefox shipped moz_indexedDB before FF4b9, but since then has been mozIndexedDB\n    // For speed, we don't test the legacy (and beta-only) indexedDB\n    tests['indexedDB'] = function() {\n      return !!testPropsAll(\"indexedDB\", window);\n    };\n\n    // documentMode logic from YUI to filter out IE8 Compat Mode\n    //   which false positives.\n    tests['hashchange'] = function() {\n      return isEventSupported('hashchange', window) && (document.documentMode === undefined || document.documentMode > 7);\n    };\n\n    // Per 1.6:\n    // This used to be Modernizr.historymanagement but the longer\n    // name has been deprecated in favor of a shorter and property-matching one.\n    // The old API is still available in 1.6, but as of 2.0 will throw a warning,\n    // and in the first release thereafter disappear entirely.\n    tests['history'] = function() {\n      return !!(window.history && history.pushState);\n    };\n\n    tests['draganddrop'] = function() {\n        var div = document.createElement('div');\n        return ('draggable' in div) || ('ondragstart' in div && 'ondrop' in div);\n    };\n\n    // FF3.6 was EOL'ed on 4/24/12, but the ESR version of FF10\n    // will be supported until FF19 (2/12/13), at which time, ESR becomes FF17.\n    // FF10 still uses prefixes, so check for it until then.\n    // for more ESR info, see: mozilla.org/en-US/firefox/organizations/faq/\n    tests['websockets'] = function() {\n        return 'WebSocket' in window || 'MozWebSocket' in window;\n    };\n\n\n    // css-tricks.com/rgba-browser-support/\n    tests['rgba'] = function() {\n        // Set an rgba() color and check the returned value\n\n        setCss('background-color:rgba(150,255,150,.5)');\n\n        return contains(mStyle.backgroundColor, 'rgba');\n    };\n\n    tests['hsla'] = function() {\n        // Same as rgba(), in fact, browsers re-map hsla() to rgba() internally,\n        //   except IE9 who retains it as hsla\n\n        setCss('background-color:hsla(120,40%,100%,.5)');\n\n        return contains(mStyle.backgroundColor, 'rgba') || contains(mStyle.backgroundColor, 'hsla');\n    };\n\n    tests['multiplebgs'] = function() {\n        // Setting multiple images AND a color on the background shorthand property\n        //  and then querying the style.background property value for the number of\n        //  occurrences of \"url(\" is a reliable method for detecting ACTUAL support for this!\n\n        setCss('background:url(https://),url(https://),red url(https://)');\n\n        // If the UA supports multiple backgrounds, there should be three occurrences\n        //   of the string \"url(\" in the return value for elemStyle.background\n\n        return (/(url\\s*\\(.*?){3}/).test(mStyle.background);\n    };\n\n\n\n    // this will false positive in Opera Mini\n    //   github.com/Modernizr/Modernizr/issues/396\n\n    tests['backgroundsize'] = function() {\n        return testPropsAll('backgroundSize');\n    };\n\n    tests['borderimage'] = function() {\n        return testPropsAll('borderImage');\n    };\n\n\n    // Super comprehensive table about all the unique implementations of\n    // border-radius: muddledramblings.com/table-of-css3-border-radius-compliance\n\n    tests['borderradius'] = function() {\n        return testPropsAll('borderRadius');\n    };\n\n    // WebOS unfortunately false positives on this test.\n    tests['boxshadow'] = function() {\n        return testPropsAll('boxShadow');\n    };\n\n    // FF3.0 will false positive on this test\n    tests['textshadow'] = function() {\n        return document.createElement('div').style.textShadow === '';\n    };\n\n\n    tests['opacity'] = function() {\n        // Browsers that actually have CSS Opacity implemented have done so\n        //  according to spec, which means their return values are within the\n        //  range of [0.0,1.0] - including the leading zero.\n\n        setCssAll('opacity:.55');\n\n        // The non-literal . in this regex is intentional:\n        //   German Chrome returns this value as 0,55\n        // github.com/Modernizr/Modernizr/issues/#issue/59/comment/516632\n        return (/^0.55$/).test(mStyle.opacity);\n    };\n\n\n    // Note, Android < 4 will pass this test, but can only animate\n    //   a single property at a time\n    //   daneden.me/2011/12/putting-up-with-androids-bullshit/\n    tests['cssanimations'] = function() {\n        return testPropsAll('animationName');\n    };\n\n\n    tests['csscolumns'] = function() {\n        return testPropsAll('columnCount');\n    };\n\n\n    tests['cssgradients'] = function() {\n        /**\n         * For CSS Gradients syntax, please see:\n         * webkit.org/blog/175/introducing-css-gradients/\n         * developer.mozilla.org/en/CSS/-moz-linear-gradient\n         * developer.mozilla.org/en/CSS/-moz-radial-gradient\n         * dev.w3.org/csswg/css3-images/#gradients-\n         */\n\n        var str1 = 'background-image:',\n            str2 = 'gradient(linear,left top,right bottom,from(#9f9),to(white));',\n            str3 = 'linear-gradient(left top,#9f9, white);';\n\n        setCss(\n             // legacy webkit syntax (FIXME: remove when syntax not in use anymore)\n              (str1 + '-webkit- '.split(' ').join(str2 + str1) +\n             // standard syntax             // trailing 'background-image:'\n              prefixes.join(str3 + str1)).slice(0, -str1.length)\n        );\n\n        return contains(mStyle.backgroundImage, 'gradient');\n    };\n\n\n    tests['cssreflections'] = function() {\n        return testPropsAll('boxReflect');\n    };\n\n\n    tests['csstransforms'] = function() {\n        return !!testPropsAll('transform');\n    };\n\n\n    tests['csstransforms3d'] = function() {\n\n        var ret = !!testPropsAll('perspective');\n\n        // Webkit's 3D transforms are passed off to the browser's own graphics renderer.\n        //   It works fine in Safari on Leopard and Snow Leopard, but not in Chrome in\n        //   some conditions. As a result, Webkit typically recognizes the syntax but\n        //   will sometimes throw a false positive, thus we must do a more thorough check:\n        if ( ret && 'webkitPerspective' in docElement.style ) {\n\n          // Webkit allows this media query to succeed only if the feature is enabled.\n          // `@media (transform-3d),(-webkit-transform-3d){ ... }`\n          injectElementWithStyles('@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}', function( node, rule ) {\n            ret = node.offsetLeft === 9 && node.offsetHeight === 3;\n          });\n        }\n        return ret;\n    };\n\n\n    tests['csstransitions'] = function() {\n        return testPropsAll('transition');\n    };\n\n\n    /*>>fontface*/\n    // @font-face detection routine by Diego Perini\n    // javascript.nwbox.com/CSSSupport/\n\n    // false positives:\n    //   WebOS github.com/Modernizr/Modernizr/issues/342\n    //   WP7   github.com/Modernizr/Modernizr/issues/538\n    tests['fontface'] = function() {\n        var bool;\n\n        injectElementWithStyles('@font-face {font-family:\"font\";src:url(\"https://\")}', function( node, rule ) {\n          var style = document.getElementById('smodernizr'),\n              sheet = style.sheet || style.styleSheet,\n              cssText = sheet ? (sheet.cssRules && sheet.cssRules[0] ? sheet.cssRules[0].cssText : sheet.cssText || '') : '';\n\n          bool = /src/i.test(cssText) && cssText.indexOf(rule.split(' ')[0]) === 0;\n        });\n\n        return bool;\n    };\n    /*>>fontface*/\n\n    // CSS generated content detection\n    tests['generatedcontent'] = function() {\n        var bool;\n\n        injectElementWithStyles(['#',mod,'{font:0/0 a}#',mod,':after{content:\"',smile,'\";visibility:hidden;font:3px/1 a}'].join(''), function( node ) {\n          bool = node.offsetHeight >= 3;\n        });\n\n        return bool;\n    };\n\n\n\n    // These tests evaluate support of the video/audio elements, as well as\n    // testing what types of content they support.\n    //\n    // We're using the Boolean constructor here, so that we can extend the value\n    // e.g.  Modernizr.video     // true\n    //       Modernizr.video.ogg // 'probably'\n    //\n    // Codec values from : github.com/NielsLeenheer/html5test/blob/9106a8/index.html#L845\n    //                     thx to NielsLeenheer and zcorpan\n\n    // Note: in some older browsers, \"no\" was a return value instead of empty string.\n    //   It was live in FF3.5.0 and 3.5.1, but fixed in 3.5.2\n    //   It was also live in Safari 4.0.0 - 4.0.4, but fixed in 4.0.5\n\n    tests['video'] = function() {\n        var elem = document.createElement('video'),\n            bool = false;\n\n        // IE9 Running on Windows Server SKU can cause an exception to be thrown, bug #224\n        try {\n            if ( bool = !!elem.canPlayType ) {\n                bool      = new Boolean(bool);\n                bool.ogg  = elem.canPlayType('video/ogg; codecs=\"theora\"')      .replace(/^no$/,'');\n\n                // Without QuickTime, this value will be `undefined`. github.com/Modernizr/Modernizr/issues/546\n                bool.h264 = elem.canPlayType('video/mp4; codecs=\"avc1.42E01E\"') .replace(/^no$/,'');\n\n                bool.webm = elem.canPlayType('video/webm; codecs=\"vp8, vorbis\"').replace(/^no$/,'');\n            }\n\n        } catch(e) { }\n\n        return bool;\n    };\n\n    tests['audio'] = function() {\n        var elem = document.createElement('audio'),\n            bool = false;\n\n        try {\n            if ( bool = !!elem.canPlayType ) {\n                bool      = new Boolean(bool);\n                bool.ogg  = elem.canPlayType('audio/ogg; codecs=\"vorbis\"').replace(/^no$/,'');\n                bool.mp3  = elem.canPlayType('audio/mpeg;')               .replace(/^no$/,'');\n\n                // Mimetypes accepted:\n                //   developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements\n                //   bit.ly/iphoneoscodecs\n                bool.wav  = elem.canPlayType('audio/wav; codecs=\"1\"')     .replace(/^no$/,'');\n                bool.m4a  = ( elem.canPlayType('audio/x-m4a;')            ||\n                              elem.canPlayType('audio/aac;'))             .replace(/^no$/,'');\n            }\n        } catch(e) { }\n\n        return bool;\n    };\n\n\n    // In FF4, if disabled, window.localStorage should === null.\n\n    // Normally, we could not test that directly and need to do a\n    //   `('localStorage' in window) && ` test first because otherwise Firefox will\n    //   throw bugzil.la/365772 if cookies are disabled\n\n    // Also in iOS5 Private Browsing mode, attempting to use localStorage.setItem\n    // will throw the exception:\n    //   QUOTA_EXCEEDED_ERRROR DOM Exception 22.\n    // Peculiarly, getItem and removeItem calls do not throw.\n\n    // Because we are forced to try/catch this, we'll go aggressive.\n\n    // Just FWIW: IE8 Compat mode supports these features completely:\n    //   www.quirksmode.org/dom/html5.html\n    // But IE8 doesn't support either with local files\n\n    tests['localstorage'] = function() {\n        try {\n            localStorage.setItem(mod, mod);\n            localStorage.removeItem(mod);\n            return true;\n        } catch(e) {\n            return false;\n        }\n    };\n\n    tests['sessionstorage'] = function() {\n        try {\n            sessionStorage.setItem(mod, mod);\n            sessionStorage.removeItem(mod);\n            return true;\n        } catch(e) {\n            return false;\n        }\n    };\n\n\n    tests['webworkers'] = function() {\n        return !!window.Worker;\n    };\n\n\n    tests['applicationcache'] = function() {\n        return !!window.applicationCache;\n    };\n\n\n    // Thanks to Erik Dahlstrom\n    tests['svg'] = function() {\n        return !!document.createElementNS && !!document.createElementNS(ns.svg, 'svg').createSVGRect;\n    };\n\n    // specifically for SVG inline in HTML, not within XHTML\n    // test page: paulirish.com/demo/inline-svg\n    tests['inlinesvg'] = function() {\n      var div = document.createElement('div');\n      div.innerHTML = '<svg/>';\n      return (div.firstChild && div.firstChild.namespaceURI) == ns.svg;\n    };\n\n    // SVG SMIL animation\n    tests['smil'] = function() {\n        return !!document.createElementNS && /SVGAnimate/.test(toString.call(document.createElementNS(ns.svg, 'animate')));\n    };\n\n    // This test is only for clip paths in SVG proper, not clip paths on HTML content\n    // demo: srufaculty.sru.edu/david.dailey/svg/newstuff/clipPath4.svg\n\n    // However read the comments to dig into applying SVG clippaths to HTML content here:\n    //   github.com/Modernizr/Modernizr/issues/213#issuecomment-1149491\n    tests['svgclippaths'] = function() {\n        return !!document.createElementNS && /SVGClipPath/.test(toString.call(document.createElementNS(ns.svg, 'clipPath')));\n    };\n\n    /*>>webforms*/\n    // input features and input types go directly onto the ret object, bypassing the tests loop.\n    // Hold this guy to execute in a moment.\n    function webforms() {\n        /*>>input*/\n        // Run through HTML5's new input attributes to see if the UA understands any.\n        // We're using f which is the <input> element created early on\n        // Mike Taylr has created a comprehensive resource for testing these attributes\n        //   when applied to all input types:\n        //   miketaylr.com/code/input-type-attr.html\n        // spec: www.whatwg.org/specs/web-apps/current-work/multipage/the-input-element.html#input-type-attr-summary\n\n        // Only input placeholder is tested while textarea's placeholder is not.\n        // Currently Safari 4 and Opera 11 have support only for the input placeholder\n        // Both tests are available in feature-detects/forms-placeholder.js\n        Modernizr['input'] = (function( props ) {\n            for ( var i = 0, len = props.length; i < len; i++ ) {\n                attrs[ props[i] ] = !!(props[i] in inputElem);\n            }\n            if (attrs.list){\n              // safari false positive's on datalist: webk.it/74252\n              // see also github.com/Modernizr/Modernizr/issues/146\n              attrs.list = !!(document.createElement('datalist') && window.HTMLDataListElement);\n            }\n            return attrs;\n        })('autocomplete autofocus list placeholder max min multiple pattern required step'.split(' '));\n        /*>>input*/\n\n        /*>>inputtypes*/\n        // Run through HTML5's new input types to see if the UA understands any.\n        //   This is put behind the tests runloop because it doesn't return a\n        //   true/false like all the other tests; instead, it returns an object\n        //   containing each input type with its corresponding true/false value\n\n        // Big thanks to @miketaylr for the html5 forms expertise. miketaylr.com/\n        Modernizr['inputtypes'] = (function(props) {\n\n            for ( var i = 0, bool, inputElemType, defaultView, len = props.length; i < len; i++ ) {\n\n                inputElem.setAttribute('type', inputElemType = props[i]);\n                bool = inputElem.type !== 'text';\n\n                // We first check to see if the type we give it sticks..\n                // If the type does, we feed it a textual value, which shouldn't be valid.\n                // If the value doesn't stick, we know there's input sanitization which infers a custom UI\n                if ( bool ) {\n\n                    inputElem.value         = smile;\n                    inputElem.style.cssText = 'position:absolute;visibility:hidden;';\n\n                    if ( /^range$/.test(inputElemType) && inputElem.style.WebkitAppearance !== undefined ) {\n\n                      docElement.appendChild(inputElem);\n                      defaultView = document.defaultView;\n\n                      // Safari 2-4 allows the smiley as a value, despite making a slider\n                      bool =  defaultView.getComputedStyle &&\n                              defaultView.getComputedStyle(inputElem, null).WebkitAppearance !== 'textfield' &&\n                              // Mobile android web browser has false positive, so must\n                              // check the height to see if the widget is actually there.\n                              (inputElem.offsetHeight !== 0);\n\n                      docElement.removeChild(inputElem);\n\n                    } else if ( /^(search|tel)$/.test(inputElemType) ){\n                      // Spec doesn't define any special parsing or detectable UI\n                      //   behaviors so we pass these through as true\n\n                      // Interestingly, opera fails the earlier test, so it doesn't\n                      //  even make it here.\n\n                    } else if ( /^(url|email)$/.test(inputElemType) ) {\n                      // Real url and email support comes with prebaked validation.\n                      bool = inputElem.checkValidity && inputElem.checkValidity() === false;\n\n                    } else {\n                      // If the upgraded input compontent rejects the :) text, we got a winner\n                      bool = inputElem.value != smile;\n                    }\n                }\n\n                inputs[ props[i] ] = !!bool;\n            }\n            return inputs;\n        })('search tel url email datetime date month week time datetime-local number range color'.split(' '));\n        /*>>inputtypes*/\n    }\n    /*>>webforms*/\n\n\n    // End of test definitions\n    // -----------------------\n\n\n\n    // Run through all tests and detect their support in the current UA.\n    // todo: hypothetically we could be doing an array of tests and use a basic loop here.\n    for ( var feature in tests ) {\n        if ( hasOwnProp(tests, feature) ) {\n            // run the test, throw the return value into the Modernizr,\n            //   then based on that boolean, define an appropriate className\n            //   and push it into an array of classes we'll join later.\n            featureName  = feature.toLowerCase();\n            Modernizr[featureName] = tests[feature]();\n\n            classes.push((Modernizr[featureName] ? '' : 'no-') + featureName);\n        }\n    }\n\n    /*>>webforms*/\n    // input tests need to run.\n    Modernizr.input || webforms();\n    /*>>webforms*/\n\n\n    /**\n     * addTest allows the user to define their own feature tests\n     * the result will be added onto the Modernizr object,\n     * as well as an appropriate className set on the html element\n     *\n     * @param feature - String naming the feature\n     * @param test - Function returning true if feature is supported, false if not\n     */\n     Modernizr.addTest = function ( feature, test ) {\n       if ( typeof feature == 'object' ) {\n         for ( var key in feature ) {\n           if ( hasOwnProp( feature, key ) ) {\n             Modernizr.addTest( key, feature[ key ] );\n           }\n         }\n       } else {\n\n         feature = feature.toLowerCase();\n\n         if ( Modernizr[feature] !== undefined ) {\n           // we're going to quit if you're trying to overwrite an existing test\n           // if we were to allow it, we'd do this:\n           //   var re = new RegExp(\"\\\\b(no-)?\" + feature + \"\\\\b\");\n           //   docElement.className = docElement.className.replace( re, '' );\n           // but, no rly, stuff 'em.\n           return Modernizr;\n         }\n\n         test = typeof test == 'function' ? test() : test;\n\n         if (typeof enableClasses !== \"undefined\" && enableClasses) {\n           docElement.className += ' ' + (test ? '' : 'no-') + feature;\n         }\n         Modernizr[feature] = test;\n\n       }\n\n       return Modernizr; // allow chaining.\n     };\n\n\n    // Reset modElem.cssText to nothing to reduce memory footprint.\n    setCss('');\n    modElem = inputElem = null;\n\n    /*>>shiv*/\n    /*! HTML5 Shiv v3.6.1 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed */\n    ;(function(window, document) {\n    /*jshint evil:true */\n      /** Preset options */\n      var options = window.html5 || {};\n\n      /** Used to skip problem elements */\n      var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;\n\n      /** Not all elements can be cloned in IE **/\n      var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;\n\n      /** Detect whether the browser supports default html5 styles */\n      var supportsHtml5Styles;\n\n      /** Name of the expando, to work with multiple documents or to re-shiv one document */\n      var expando = '_html5shiv';\n\n      /** The id for the the documents expando */\n      var expanID = 0;\n\n      /** Cached data for each document */\n      var expandoData = {};\n\n      /** Detect whether the browser supports unknown elements */\n      var supportsUnknownElements;\n\n      (function() {\n        try {\n            var a = document.createElement('a');\n            a.innerHTML = '<xyz></xyz>';\n            //if the hidden property is implemented we can assume, that the browser supports basic HTML5 Styles\n            supportsHtml5Styles = ('hidden' in a);\n\n            supportsUnknownElements = a.childNodes.length == 1 || (function() {\n              // assign a false positive if unable to shiv\n              (document.createElement)('a');\n              var frag = document.createDocumentFragment();\n              return (\n                typeof frag.cloneNode == 'undefined' ||\n                typeof frag.createDocumentFragment == 'undefined' ||\n                typeof frag.createElement == 'undefined'\n              );\n            }());\n        } catch(e) {\n          supportsHtml5Styles = true;\n          supportsUnknownElements = true;\n        }\n\n      }());\n\n      /*--------------------------------------------------------------------------*/\n\n      /**\n       * Creates a style sheet with the given CSS text and adds it to the document.\n       * @private\n       * @param {Document} ownerDocument The document.\n       * @param {String} cssText The CSS text.\n       * @returns {StyleSheet} The style element.\n       */\n      function addStyleSheet(ownerDocument, cssText) {\n        var p = ownerDocument.createElement('p'),\n            parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;\n\n        p.innerHTML = 'x<style>' + cssText + '</style>';\n        return parent.insertBefore(p.lastChild, parent.firstChild);\n      }\n\n      /**\n       * Returns the value of `html5.elements` as an array.\n       * @private\n       * @returns {Array} An array of shived element node names.\n       */\n      function getElements() {\n        var elements = html5.elements;\n        return typeof elements == 'string' ? elements.split(' ') : elements;\n      }\n\n        /**\n       * Returns the data associated to the given document\n       * @private\n       * @param {Document} ownerDocument The document.\n       * @returns {Object} An object of data.\n       */\n      function getExpandoData(ownerDocument) {\n        var data = expandoData[ownerDocument[expando]];\n        if (!data) {\n            data = {};\n            expanID++;\n            ownerDocument[expando] = expanID;\n            expandoData[expanID] = data;\n        }\n        return data;\n      }\n\n      /**\n       * returns a shived element for the given nodeName and document\n       * @memberOf html5\n       * @param {String} nodeName name of the element\n       * @param {Document} ownerDocument The context document.\n       * @returns {Object} The shived element.\n       */\n      function createElement(nodeName, ownerDocument, data){\n        if (!ownerDocument) {\n            ownerDocument = document;\n        }\n        if(supportsUnknownElements){\n            return ownerDocument.createElement(nodeName);\n        }\n        if (!data) {\n            data = getExpandoData(ownerDocument);\n        }\n        var node;\n\n        if (data.cache[nodeName]) {\n            node = data.cache[nodeName].cloneNode();\n        } else if (saveClones.test(nodeName)) {\n            node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();\n        } else {\n            node = data.createElem(nodeName);\n        }\n\n        // Avoid adding some elements to fragments in IE < 9 because\n        // * Attributes like `name` or `type` cannot be set/changed once an element\n        //   is inserted into a document/fragment\n        // * Link elements with `src` attributes that are inaccessible, as with\n        //   a 403 response, will cause the tab/window to crash\n        // * Script elements appended to fragments will execute when their `src`\n        //   or `text` property is set\n        return node.canHaveChildren && !reSkip.test(nodeName) ? data.frag.appendChild(node) : node;\n      }\n\n      /**\n       * returns a shived DocumentFragment for the given document\n       * @memberOf html5\n       * @param {Document} ownerDocument The context document.\n       * @returns {Object} The shived DocumentFragment.\n       */\n      function createDocumentFragment(ownerDocument, data){\n        if (!ownerDocument) {\n            ownerDocument = document;\n        }\n        if(supportsUnknownElements){\n            return ownerDocument.createDocumentFragment();\n        }\n        data = data || getExpandoData(ownerDocument);\n        var clone = data.frag.cloneNode(),\n            i = 0,\n            elems = getElements(),\n            l = elems.length;\n        for(;i<l;i++){\n            clone.createElement(elems[i]);\n        }\n        return clone;\n      }\n\n      /**\n       * Shivs the `createElement` and `createDocumentFragment` methods of the document.\n       * @private\n       * @param {Document|DocumentFragment} ownerDocument The document.\n       * @param {Object} data of the document.\n       */\n      function shivMethods(ownerDocument, data) {\n        if (!data.cache) {\n            data.cache = {};\n            data.createElem = ownerDocument.createElement;\n            data.createFrag = ownerDocument.createDocumentFragment;\n            data.frag = data.createFrag();\n        }\n\n\n        ownerDocument.createElement = function(nodeName) {\n          //abort shiv\n          if (!html5.shivMethods) {\n              return data.createElem(nodeName);\n          }\n          return createElement(nodeName, ownerDocument, data);\n        };\n\n        ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +\n          'var n=f.cloneNode(),c=n.createElement;' +\n          'h.shivMethods&&(' +\n            // unroll the `createElement` calls\n            getElements().join().replace(/\\w+/g, function(nodeName) {\n              data.createElem(nodeName);\n              data.frag.createElement(nodeName);\n              return 'c(\"' + nodeName + '\")';\n            }) +\n          ');return n}'\n        )(html5, data.frag);\n      }\n\n      /*--------------------------------------------------------------------------*/\n\n      /**\n       * Shivs the given document.\n       * @memberOf html5\n       * @param {Document} ownerDocument The document to shiv.\n       * @returns {Document} The shived document.\n       */\n      function shivDocument(ownerDocument) {\n        if (!ownerDocument) {\n            ownerDocument = document;\n        }\n        var data = getExpandoData(ownerDocument);\n\n        if (html5.shivCSS && !supportsHtml5Styles && !data.hasCSS) {\n          data.hasCSS = !!addStyleSheet(ownerDocument,\n            // corrects block display not defined in IE6/7/8/9\n            'article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}' +\n            // adds styling not present in IE6/7/8/9\n            'mark{background:#FF0;color:#000}'\n          );\n        }\n        if (!supportsUnknownElements) {\n          shivMethods(ownerDocument, data);\n        }\n        return ownerDocument;\n      }\n\n      /*--------------------------------------------------------------------------*/\n\n      /**\n       * The `html5` object is exposed so that more elements can be shived and\n       * existing shiving can be detected on iframes.\n       * @type Object\n       * @example\n       *\n       * // options can be changed before the script is included\n       * html5 = { 'elements': 'mark section', 'shivCSS': false, 'shivMethods': false };\n       */\n      var html5 = {\n\n        /**\n         * An array or space separated string of node names of the elements to shiv.\n         * @memberOf html5\n         * @type Array|String\n         */\n        'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video',\n\n        /**\n         * A flag to indicate that the HTML5 style sheet should be inserted.\n         * @memberOf html5\n         * @type Boolean\n         */\n        'shivCSS': (options.shivCSS !== false),\n\n        /**\n         * Is equal to true if a browser supports creating unknown/HTML5 elements\n         * @memberOf html5\n         * @type boolean\n         */\n        'supportsUnknownElements': supportsUnknownElements,\n\n        /**\n         * A flag to indicate that the document's `createElement` and `createDocumentFragment`\n         * methods should be overwritten.\n         * @memberOf html5\n         * @type Boolean\n         */\n        'shivMethods': (options.shivMethods !== false),\n\n        /**\n         * A string to describe the type of `html5` object (\"default\" or \"default print\").\n         * @memberOf html5\n         * @type String\n         */\n        'type': 'default',\n\n        // shivs the document according to the specified `html5` object options\n        'shivDocument': shivDocument,\n\n        //creates a shived element\n        createElement: createElement,\n\n        //creates a shived documentFragment\n        createDocumentFragment: createDocumentFragment\n      };\n\n      /*--------------------------------------------------------------------------*/\n\n      // expose html5\n      window.html5 = html5;\n\n      // shiv the document\n      shivDocument(document);\n\n    }(this, document));\n    /*>>shiv*/\n\n    // Assign private properties to the return object with prefix\n    Modernizr._version      = version;\n\n    // expose these for the plugin API. Look in the source for how to join() them against your input\n    /*>>prefixes*/\n    Modernizr._prefixes     = prefixes;\n    /*>>prefixes*/\n    /*>>domprefixes*/\n    Modernizr._domPrefixes  = domPrefixes;\n    Modernizr._cssomPrefixes  = cssomPrefixes;\n    /*>>domprefixes*/\n\n    /*>>mq*/\n    // Modernizr.mq tests a given media query, live against the current state of the window\n    // A few important notes:\n    //   * If a browser does not support media queries at all (eg. oldIE) the mq() will always return false\n    //   * A max-width or orientation query will be evaluated against the current state, which may change later.\n    //   * You must specify values. Eg. If you are testing support for the min-width media query use:\n    //       Modernizr.mq('(min-width:0)')\n    // usage:\n    // Modernizr.mq('only screen and (max-width:768)')\n    Modernizr.mq            = testMediaQuery;\n    /*>>mq*/\n\n    /*>>hasevent*/\n    // Modernizr.hasEvent() detects support for a given event, with an optional element to test on\n    // Modernizr.hasEvent('gesturestart', elem)\n    Modernizr.hasEvent      = isEventSupported;\n    /*>>hasevent*/\n\n    /*>>testprop*/\n    // Modernizr.testProp() investigates whether a given style property is recognized\n    // Note that the property names must be provided in the camelCase variant.\n    // Modernizr.testProp('pointerEvents')\n    Modernizr.testProp      = function(prop){\n        return testProps([prop]);\n    };\n    /*>>testprop*/\n\n    /*>>testallprops*/\n    // Modernizr.testAllProps() investigates whether a given style property,\n    //   or any of its vendor-prefixed variants, is recognized\n    // Note that the property names must be provided in the camelCase variant.\n    // Modernizr.testAllProps('boxSizing')\n    Modernizr.testAllProps  = testPropsAll;\n    /*>>testallprops*/\n\n\n    /*>>teststyles*/\n    // Modernizr.testStyles() allows you to add custom styles to the document and test an element afterwards\n    // Modernizr.testStyles('#modernizr { position:absolute }', function(elem, rule){ ... })\n    Modernizr.testStyles    = injectElementWithStyles;\n    /*>>teststyles*/\n\n\n    /*>>prefixed*/\n    // Modernizr.prefixed() returns the prefixed or nonprefixed property name variant of your input\n    // Modernizr.prefixed('boxSizing') // 'MozBoxSizing'\n\n    // Properties must be passed as dom-style camelcase, rather than `box-sizing` hypentated style.\n    // Return values will also be the camelCase variant, if you need to translate that to hypenated style use:\n    //\n    //     str.replace(/([A-Z])/g, function(str,m1){ return '-' + m1.toLowerCase(); }).replace(/^ms-/,'-ms-');\n\n    // If you're trying to ascertain which transition end event to bind to, you might do something like...\n    //\n    //     var transEndEventNames = {\n    //       'WebkitTransition' : 'webkitTransitionEnd',\n    //       'MozTransition'    : 'transitionend',\n    //       'OTransition'      : 'oTransitionEnd',\n    //       'msTransition'     : 'MSTransitionEnd',\n    //       'transition'       : 'transitionend'\n    //     },\n    //     transEndEventName = transEndEventNames[ Modernizr.prefixed('transition') ];\n\n    Modernizr.prefixed      = function(prop, obj, elem){\n      if(!obj) {\n        return testPropsAll(prop, 'pfx');\n      } else {\n        // Testing DOM property e.g. Modernizr.prefixed('requestAnimationFrame', window) // 'mozRequestAnimationFrame'\n        return testPropsAll(prop, obj, elem);\n      }\n    };\n    /*>>prefixed*/\n\n\n    /*>>cssclasses*/\n    // Remove \"no-js\" class from <html> element, if it exists:\n    docElement.className = docElement.className.replace(/(^|\\s)no-js(\\s|$)/, '$1$2') +\n\n                            // Add the new classes to the <html> element.\n                            (enableClasses ? ' js ' + classes.join(' ') : '');\n    /*>>cssclasses*/\n\n    return Modernizr;\n\n})(this, this.document);\n"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/npm.js",
    "content": "// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.\nrequire('../../js/transition.js')\nrequire('../../js/alert.js')\nrequire('../../js/button.js')\nrequire('../../js/carousel.js')\nrequire('../../js/collapse.js')\nrequire('../../js/dropdown.js')\nrequire('../../js/modal.js')\nrequire('../../js/tooltip.js')\nrequire('../../js/popover.js')\nrequire('../../js/scrollspy.js')\nrequire('../../js/tab.js')\nrequire('../../js/affix.js')"
  },
  {
    "path": "src/VstsDemoBuilder/Scripts/tooltip.js",
    "content": "﻿/* ===========================================================\n * bootstrap-tooltip.js v2.2.2\n * http://twitter.github.com/bootstrap/javascript.html#tooltips\n * Inspired by the original jQuery.tipsy by Jason Frame\n * ===========================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ========================================================== */\n\n\n!function ($) {\n\n    \"use strict\"; // jshint ;_;\n\n\n    /* TOOLTIP PUBLIC CLASS DEFINITION\n     * =============================== */\n\n    var Tooltip = function (element, options) {\n        this.init('tooltip', element, options)\n    }\n\n    Tooltip.prototype = {\n\n        constructor: Tooltip\n\n    , init: function (type, element, options) {\n        var eventIn\n          , eventOut\n\n        this.type = type\n        this.$element = $(element)\n        this.options = this.getOptions(options)\n        this.enabled = true\n\n        if (this.options.trigger == 'click') {\n            this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))\n        } else if (this.options.trigger != 'manual') {\n            eventIn = this.options.trigger == 'hover' ? 'mouseenter' : 'focus'\n            eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur'\n            this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))\n            this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))\n        }\n\n        this.options.selector ?\n          (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :\n          this.fixTitle()\n    }\n\n    , getOptions: function (options) {\n        options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data())\n\n        if (options.delay && typeof options.delay == 'number') {\n            options.delay = {\n                show: options.delay\n            , hide: options.delay\n            }\n        }\n\n        return options\n    }\n\n    , enter: function (e) {\n        var self = $(e.currentTarget)[this.type](this._options).data(this.type)\n\n        if (!self.options.delay || !self.options.delay.show) return self.show()\n\n        clearTimeout(this.timeout)\n        self.hoverState = 'in'\n        this.timeout = setTimeout(function () {\n            if (self.hoverState == 'in') self.show()\n        }, self.options.delay.show)\n    }\n\n    , leave: function (e) {\n        var self = $(e.currentTarget)[this.type](this._options).data(this.type)\n\n        if (this.timeout) clearTimeout(this.timeout)\n        if (!self.options.delay || !self.options.delay.hide) return self.hide()\n\n        self.hoverState = 'out'\n        this.timeout = setTimeout(function () {\n            if (self.hoverState == 'out') self.hide()\n        }, self.options.delay.hide)\n    }\n\n    , show: function () {\n        var $tip\n          , inside\n          , pos\n          , actualWidth\n          , actualHeight\n          , placement\n          , tp\n\n        if (this.hasContent() && this.enabled) {\n            $tip = this.tip()\n            this.setContent()\n\n            if (this.options.animation) {\n                $tip.addClass('fade')\n            }\n\n            placement = typeof this.options.placement == 'function' ?\n              this.options.placement.call(this, $tip[0], this.$element[0]) :\n              this.options.placement\n\n            inside = /in/.test(placement)\n\n            $tip\n              .detach()\n              .css({ top: 0, left: 0, display: 'block' })\n              .insertAfter(this.$element)\n\n            pos = this.getPosition(inside)\n\n            actualWidth = $tip[0].offsetWidth\n            actualHeight = $tip[0].offsetHeight\n\n            switch (inside ? placement.split(' ')[1] : placement) {\n                case 'bottom':\n                    tp = { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 }\n                    break\n                case 'top':\n                    tp = { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 }\n                    break\n                case 'left':\n                    tp = { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth }\n                    break\n                case 'right':\n                    tp = { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }\n                    break\n            }\n\n            $tip\n              .offset(tp)\n              .addClass(placement)\n              .addClass('in')\n        }\n    }\n\n    , setContent: function () {\n        var $tip = this.tip()\n          , title = this.getTitle()\n\n        $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)\n        $tip.removeClass('fade in top bottom left right')\n    }\n\n    , hide: function () {\n        var that = this\n          , $tip = this.tip()\n\n        $tip.removeClass('in')\n\n        function removeWithAnimation() {\n            var timeout = setTimeout(function () {\n                $tip.off($.support.transition.end).detach()\n            }, 500)\n\n            $tip.one($.support.transition.end, function () {\n                clearTimeout(timeout)\n                $tip.detach()\n            })\n        }\n\n        $.support.transition && this.$tip.hasClass('fade') ?\n          removeWithAnimation() :\n          $tip.detach()\n\n        return this\n    }\n\n    , fixTitle: function () {\n        var $e = this.$element\n        if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') {\n            $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')\n        }\n    }\n\n    , hasContent: function () {\n        return this.getTitle()\n    }\n\n    , getPosition: function (inside) {\n        return $.extend({}, (inside ? { top: 0, left: 0 } : this.$element.offset()), {\n            width: this.$element[0].offsetWidth\n        , height: this.$element[0].offsetHeight\n        })\n    }\n\n    , getTitle: function () {\n        var title\n          , $e = this.$element\n          , o = this.options\n\n        title = $e.attr('data-original-title')\n          || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)\n\n        return title\n    }\n\n    , tip: function () {\n        return this.$tip = this.$tip || $(this.options.template)\n    }\n\n    , validate: function () {\n        if (!this.$element[0].parentNode) {\n            this.hide()\n            this.$element = null\n            this.options = null\n        }\n    }\n\n    , enable: function () {\n        this.enabled = true\n    }\n\n    , disable: function () {\n        this.enabled = false\n    }\n\n    , toggleEnabled: function () {\n        this.enabled = !this.enabled\n    }\n\n    , toggle: function (e) {\n        var self = $(e.currentTarget)[this.type](this._options).data(this.type)\n        self[self.tip().hasClass('in') ? 'hide' : 'show']()\n    }\n\n    , destroy: function () {\n        this.hide().$element.off('.' + this.type).removeData(this.type)\n    }\n\n    }\n\n\n    /* TOOLTIP PLUGIN DEFINITION\n     * ========================= */\n\n    var old = $.fn.tooltip\n\n    $.fn.tooltip = function (option) {\n        return this.each(function () {\n            var $this = $(this)\n              , data = $this.data('tooltip')\n              , options = typeof option == 'object' && option\n            if (!data) $this.data('tooltip', (data = new Tooltip(this, options)))\n            if (typeof option == 'string') data[option]()\n        })\n    }\n\n    $.fn.tooltip.Constructor = Tooltip\n\n    $.fn.tooltip.defaults = {\n        animation: true\n    , placement: 'top'\n    , selector: false\n    , template: '<div class=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>'\n    , trigger: 'hover'\n    , title: ''\n    , delay: 0\n    , html: false\n    }\n\n\n    /* TOOLTIP NO CONFLICT\n     * =================== */\n\n    $.fn.tooltip.noConflict = function () {\n        $.fn.tooltip = old\n        return this\n    }\n\n}(window.jQuery);"
  },
  {
    "path": "src/VstsDemoBuilder/Service References/Application Insights/ConnectedService.json",
    "content": "﻿{\n  \"ProviderId\": \"Microsoft.ApplicationInsights.ConnectedService.ConnectedServiceProvider\",\n  \"Version\": \"7.14.1128.2\",\n  \"GettingStartedDocument\": {\n    \"Uri\": \"https://go.microsoft.com/fwlink/?LinkID=613413\"\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/ServiceInterfaces/IAccountService.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Web;\nusing VstsDemoBuilder.Models;\n\nnamespace VstsDemoBuilder.ServiceInterfaces\n{\n    public interface IAccountService\n    {\n        string GenerateRequestPostData(string appSecret, string authCode, string callbackUrl);\n        AccessDetails GetAccessToken(string body);\n\n        ProfileDetails GetProfile(AccessDetails accessDetails);\n        AccessDetails Refresh_AccessToken(string refreshToken);\n        AccountsResponse.AccountList GetAccounts(string memberID, AccessDetails details);\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/ServiceInterfaces/IExtractorService.cs",
    "content": "﻿using System.Collections.Generic;\nusing VstsDemoBuilder.Models;\nusing VstsRestAPI;\n\nnamespace VstsDemoBuilder.ServiceInterfaces\n{\n    public interface IExtractorService\n    {\n        ProjectConfigurations ProjectConfiguration(Project model);\n        int GetTeamsCount(ProjectConfigurations appConfig);\n        int GetIterationsCount(ProjectConfigurations appConfig);\n        Dictionary<string, int> GetWorkItemsCount(ProjectConfigurations appConfig);\n        int GetBuildDefinitionCount(ProjectConfigurations appConfig);\n        int GetReleaseDefinitionCount(ProjectConfigurations appConfig);\n        string[] GenerateTemplateArifacts(Project model);\n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/ServiceInterfaces/IProjectService.cs",
    "content": "﻿using Newtonsoft.Json.Linq;\nusing System.Net.Http;\nusing VstsDemoBuilder.Models;\n\nnamespace VstsDemoBuilder.ServiceInterfaces\n{\n    public interface IProjectService\n    {\n        void RemoveKey(string id);\n\n        void AddMessage(string id, string message);\n\n        JObject GetStatusMessage(string id);\n\n        HttpResponseMessage GetprojectList(string accname, string pat);\n     \n        string GetJsonFilePath(bool IsPrivate, string TemplateFolder, string TemplateName, string FileName = \"\");\n\n        string[] CreateProjectEnvironment(Project model);\n\n        bool CheckForInstalledExtensions(string extensionJsonFile, string token, string account);\n\n        bool InstallExtensions(Project model, string accountName, string PAT);\n\n        bool WhereDoseTemplateBelongTo(string templatName);\n        \n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/ServiceInterfaces/ITemplateService.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusing VstsDemoBuilder.Models;\nusing static VstsDemoBuilder.Models.TemplateSelection;\n\nnamespace VstsDemoBuilder.ServiceInterfaces\n{\n    public interface ITemplateService\n    {\n        List<TemplateDetails> GetAllTemplates();\n\n        List<TemplateDetails> GetTemplatesByTags(string Tags);\n\n        string GetTemplate(string TemplateName);\n\n        string GetTemplateFromPath(string TemplateUrl, string ExtractedTemplate, string GithubToken, string UserID = \"\", string Password = \"\");\n\n        bool checkTemplateDirectory(string dir);\n\n        string FindPrivateTemplatePath(string privateTemplatePath);\n\n        string checkSelectedTemplateIsPrivate(string templatePath);\n\n        void deletePrivateTemplate(string Template);\n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Services/AccountService.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Net;\nusing System.Net.Http;\nusing System.Net.Http.Headers;\nusing System.Text;\nusing System.Web;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\n\nnamespace VstsDemoBuilder.Services\n{\n    public class AccountService :IAccountService\n    {\n        /// <summary>\n        /// Formatting the request for OAuth\n        /// </summary>\n        /// <param name=\"appSecret\"></param>\n        /// <param name=\"authCode\"></param>\n        /// <param name=\"callbackUrl\"></param>\n        /// <returns></returns>\n        public string GenerateRequestPostData(string appSecret, string authCode, string callbackUrl)\n        {\n            try\n            {\n                return String.Format(\"client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer&client_assertion={0}&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer&assertion={1}&redirect_uri={2}\",\n                            HttpUtility.UrlEncode(appSecret),\n                            HttpUtility.UrlEncode(authCode),\n                            callbackUrl\n                     );\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                //ViewBag.ErrorMessage = ex.Message;\n            }\n            return string.Empty;\n        }\n\n        /// <summary>\n        /// Generate Access Token\n        /// </summary>\n        /// <param name=\"body\"></param>\n        /// <returns></returns>\n        public AccessDetails GetAccessToken(string body)\n        {\n            try\n            {\n                string baseAddress = System.Configuration.ConfigurationManager.AppSettings[\"BaseAddress\"];\n                var client = new HttpClient\n                {\n                    BaseAddress = new Uri(baseAddress)\n                };\n                ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;\n                var request = new HttpRequestMessage(HttpMethod.Post, \"/oauth2/token\");\n\n                var requestContent = body;\n                request.Content = new StringContent(requestContent, Encoding.UTF8, \"application/x-www-form-urlencoded\");\n\n                var response = client.SendAsync(request).Result;\n                if (response.IsSuccessStatusCode)\n                {\n                    string result = response.Content.ReadAsStringAsync().Result;\n                    AccessDetails details = Newtonsoft.Json.JsonConvert.DeserializeObject<AccessDetails>(result);\n                    return details;\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                //ViewBag.ErrorMessage = ex.Message;\n            }\n            return new AccessDetails();\n        }\n\n        /// <summary>\n        /// Get Profile details\n        /// </summary>\n        /// <param name=\"accessDetails\"></param>\n        /// <returns></returns>\n        public ProfileDetails GetProfile(AccessDetails accessDetails)\n        {\n            ProfileDetails profile = new ProfileDetails();\n            using (var client = new HttpClient())\n            {\n                try\n                {\n                    string baseAddress = System.Configuration.ConfigurationManager.AppSettings[\"BaseAddress\"];\n\n                    client.BaseAddress = new Uri(baseAddress);\n                    client.DefaultRequestHeaders.Accept.Clear();\n                    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(\"application/json\"));\n                    client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(\"Bearer\", accessDetails.access_token);\n                    HttpResponseMessage response = client.GetAsync(\"_apis/profile/profiles/me?details=true&api-version=4.1\").Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        profile = JsonConvert.DeserializeObject<ProfileDetails>(result);\n                        return profile;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t Get Profile :\" + errorMessage + \"\\n\");\n                    }\n                }\n                catch (Exception ex)\n                {\n                    ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                }\n                return profile;\n            }\n        }\n\n\n        /// <summary>\n        /// Refresh access token\n        /// </summary>\n        /// <param name=\"refreshToken\"></param>\n        /// <returns></returns>\n        public AccessDetails Refresh_AccessToken(string refreshToken)\n        {\n            using (var client = new HttpClient())\n            {\n                string redirectUri = System.Configuration.ConfigurationManager.AppSettings[\"RedirectUri\"];\n                string cientSecret = System.Configuration.ConfigurationManager.AppSettings[\"ClientSecret\"];\n                string baseAddress = System.Configuration.ConfigurationManager.AppSettings[\"BaseAddress\"];\n\n                var request = new HttpRequestMessage(HttpMethod.Post, baseAddress + \"/oauth2/token\");\n                var requestContent = string.Format(\n                    \"client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer&client_assertion={0}&grant_type=refresh_token&assertion={1}&redirect_uri={2}\",\n                    HttpUtility.UrlEncode(cientSecret),\n                    HttpUtility.UrlEncode(refreshToken), redirectUri\n                    );\n\n                request.Content = new StringContent(requestContent, Encoding.UTF8, \"application/x-www-form-urlencoded\");\n                try\n                {\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        AccessDetails accesDetails = JsonConvert.DeserializeObject<AccessDetails>(result);\n                        return accesDetails;\n                    }\n                    else\n                    {\n                        return new AccessDetails();\n                    }\n                }\n                catch (Exception ex)\n                {\n                    ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                    return new AccessDetails();\n                }\n            }\n        }\n\n        /// <summary>\n        /// Get list of accounts\n        /// </summary>\n        /// <param name=\"memberID\"></param>\n        /// <param name=\"details\"></param>\n        /// <returns></returns>\n        public AccountsResponse.AccountList GetAccounts(string memberID, AccessDetails details)\n        {\n            AccountsResponse.AccountList accounts = new AccountsResponse.AccountList();\n            var client = new HttpClient();\n            string baseAddress = System.Configuration.ConfigurationManager.AppSettings[\"BaseAddress\"];\n\n            string requestContent = baseAddress + \"/_apis/Accounts?memberId=\" + memberID + \"&api-version=4.1\";\n            var request = new HttpRequestMessage(HttpMethod.Get, requestContent);\n            request.Headers.Add(\"Authorization\", \"Bearer \" + details.access_token);\n            try\n            {\n                var response = client.SendAsync(request).Result;\n                if (response.IsSuccessStatusCode && response.StatusCode == HttpStatusCode.OK)\n                {\n                    string result = response.Content.ReadAsStringAsync().Result;\n                    accounts = JsonConvert.DeserializeObject<Models.AccountsResponse.AccountList>(result);\n                    return accounts;\n                }\n                else\n                {\n                    var errorMessage = response.Content.ReadAsStringAsync();\n                    ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t Get Accounts :\" + errorMessage + \"\\t\" + \"\\n\");\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return accounts;\n        }\n\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Services/ExtractorService.cs",
    "content": "﻿using Common.Logging;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Linq;\nusing System.Threading;\nusing System.Web.Hosting;\nusing VstsDemoBuilder.Extensions;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsRestAPI;\nusing VstsRestAPI.DeliveryPlans;\nusing VstsRestAPI.ExtensionManagement;\nusing VstsRestAPI.Extractor;\nusing VstsRestAPI.ProjectsAndTeams;\nusing VstsRestAPI.QueriesAndWidgets;\nusing VstsRestAPI.Service;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing VstsRestAPI.Viewmodel.GitHub;\nusing VstsRestAPI.Viewmodel.Plans;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\nusing static VstsRestAPI.Viewmodel.Plans.DeliveryPlans;\nusing Parameters = VstsRestAPI.Viewmodel.Extractor.GetServiceEndpoints;\n\nnamespace VstsDemoBuilder.Services\n{\n    public class ExtractorService : IExtractorService\n    {\n        #region STATIC DECLARATIONS\n        public static ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        public static readonly object objLock = new object();\n        public static Dictionary<string, string> statusMessages;\n        public List<string> errorMessages = new List<string>();\n        public static string extractedTemplatePath = string.Empty;\n        private ProjectProperties.Properties projectProperties = new ProjectProperties.Properties();\n        public static void AddMessage(string id, string message)\n        {\n            lock (objLock)\n            {\n                if (id.EndsWith(\"_Errors\"))\n                {\n                    StatusMessages[id] = (StatusMessages.ContainsKey(id) ? StatusMessages[id] : string.Empty) + message;\n                }\n                else\n                {\n                    StatusMessages[id] = message;\n                }\n            }\n        }\n        public static Dictionary<string, string> StatusMessages\n        {\n            get\n            {\n                if (statusMessages == null)\n                {\n                    statusMessages = new Dictionary<string, string>();\n                }\n\n                return statusMessages;\n            }\n            set\n            {\n                statusMessages = value;\n            }\n        }\n        public static string GetStatusMessage(string id)\n        {\n            lock (objLock)\n            {\n                string message = string.Empty;\n                if (StatusMessages.Keys.Count(x => x == id) == 1)\n                {\n                    message = StatusMessages[id];\n                }\n                else\n                {\n                    return \"100\";\n                }\n\n                if (id.EndsWith(\"_Errors\"))\n                {\n                    RemoveKey(id);\n                }\n\n                return message;\n            }\n        }\n\n        public static void RemoveKey(string id)\n        {\n            lock (objLock)\n            {\n                StatusMessages.Remove(id);\n            }\n        }\n\n        #endregion  STATIC DECLARATIONS\n\n        #region ANALYSIS - GET COUNTS\n        public ProjectConfigurations ProjectConfiguration(Project model)\n        {\n            string repoVersion = System.Configuration.ConfigurationManager.AppSettings[\"RepoVersion\"];\n            string buildVersion = System.Configuration.ConfigurationManager.AppSettings[\"BuildVersion\"];\n            string releaseVersion = System.Configuration.ConfigurationManager.AppSettings[\"ReleaseVersion\"];\n            string wikiVersion = System.Configuration.ConfigurationManager.AppSettings[\"WikiVersion\"];\n            string boardVersion = System.Configuration.ConfigurationManager.AppSettings[\"BoardVersion\"];\n            string workItemsVersion = System.Configuration.ConfigurationManager.AppSettings[\"WorkItemsVersion\"];\n            string releaseHost = System.Configuration.ConfigurationManager.AppSettings[\"ReleaseHost\"];\n            string defaultHost = System.Configuration.ConfigurationManager.AppSettings[\"DefaultHost\"];\n            string extensionHost = System.Configuration.ConfigurationManager.AppSettings[\"ExtensionHost\"];\n            string getReleaseVersion = System.Configuration.ConfigurationManager.AppSettings[\"GetRelease\"];\n            string agentQueueVersion = System.Configuration.ConfigurationManager.AppSettings[\"AgentQueueVersion\"];\n            string extensionVersion = System.Configuration.ConfigurationManager.AppSettings[\"ExtensionVersion\"];\n            string endpointVersion = System.Configuration.ConfigurationManager.AppSettings[\"EndPointVersion\"];\n            string queriesVersion = System.Configuration.ConfigurationManager.AppSettings[\"QueriesVersion\"];\n            string variableGroupsApiVersion = System.Configuration.ConfigurationManager.AppSettings[\"VariableGroupsApiVersion\"];\n            ProjectConfigurations projectConfig = new ProjectConfigurations();\n\n            projectConfig.AgentQueueConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = wikiVersion };\n            projectConfig.WorkItemConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = wikiVersion };\n            projectConfig.BuildDefinitionConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = buildVersion };\n            projectConfig.ReleaseDefinitionConfig = new Configuration() { UriString = releaseHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = releaseVersion };\n            projectConfig.RepoConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = repoVersion };\n            projectConfig.BoardConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = boardVersion };\n            projectConfig.Config = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id };\n            projectConfig.GetReleaseConfig = new Configuration() { UriString = releaseHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = getReleaseVersion };\n            projectConfig.ExtensionConfig = new Configuration() { UriString = extensionHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = extensionVersion };\n            projectConfig.EndpointConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = endpointVersion };\n            projectConfig.QueriesConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = queriesVersion };\n            projectConfig.VariableGroupConfig = new Configuration() { UriString = defaultHost + model.accountName + \"/\", PersonalAccessToken = model.accessToken, Project = model.ProjectName, AccountName = model.accountName, Id = model.id, VersionNumber = variableGroupsApiVersion };\n\n            return projectConfig;\n        }\n        public int GetTeamsCount(ProjectConfigurations appConfig)\n        {\n            VstsRestAPI.Extractor.ClassificationNodes nodes = new VstsRestAPI.Extractor.ClassificationNodes(appConfig.BoardConfig);\n            TeamList teamList = nodes.ExportTeamList(\"\");\n            int count = 0;\n            if (teamList.value != null)\n            {\n                count = teamList.value.Count;\n            }\n            return count;\n        }\n        public int GetIterationsCount(ProjectConfigurations appConfig)\n        {\n            VstsRestAPI.Extractor.ClassificationNodes nodes = new VstsRestAPI.Extractor.ClassificationNodes(appConfig.BoardConfig);\n            GetINumIteration.Iterations iterations = new GetINumIteration.Iterations();\n            iterations = nodes.GetiterationCount();\n            if (iterations.count > 0)\n            {\n                return iterations.count;\n            }\n            else\n            {\n                if (!(string.IsNullOrEmpty(nodes.LastFailureMessage)))\n                {\n                    errorMessages.Add(\"Error while fetching iteration(s) count: \" + nodes.LastFailureMessage);\n                }\n                return 0;\n            }\n        }\n        public int GetBuildDefinitionCount(ProjectConfigurations appConfig)\n        {\n            int BuildDefCount = 0;\n            BuildandReleaseDefs buildandReleaseDefs = new BuildandReleaseDefs(appConfig.BuildDefinitionConfig);\n            GetBuildDefResponse.BuildDef buildDef = new GetBuildDefResponse.BuildDef();\n            buildDef = buildandReleaseDefs.GetBuildDefCount();\n            if (buildDef.count > 0)\n            {\n                BuildDefCount = buildDef.count;\n            }\n            else if (!string.IsNullOrEmpty(buildandReleaseDefs.LastFailureMessage))\n            {\n                errorMessages.Add(\"Error while fetching build definition count: \" + buildandReleaseDefs.LastFailureMessage);\n            }\n            return BuildDefCount;\n        }\n        public int GetReleaseDefinitionCount(ProjectConfigurations appConfig)\n        {\n            int ReleaseDefCount = 0;\n            BuildandReleaseDefs buildandReleaseDefs = new BuildandReleaseDefs(appConfig.ReleaseDefinitionConfig);\n            GetReleaseDefResponse.ReleaseDef releaseDef = new GetReleaseDefResponse.ReleaseDef();\n            releaseDef = buildandReleaseDefs.GetReleaseDefCount();\n            if (releaseDef.count > 0)\n            {\n                ReleaseDefCount = releaseDef.count;\n            }\n            else if (!string.IsNullOrEmpty(buildandReleaseDefs.LastFailureMessage))\n            {\n                errorMessages.Add(\"Error while fetching release definition count: \" + buildandReleaseDefs.LastFailureMessage);\n            }\n            return ReleaseDefCount;\n        }\n        #endregion ANALYSIS - GET COUNTS\n\n        #region GENERATE ARTIFACTS\n        public string[] GenerateTemplateArifacts(Project model)\n        {\n            extractedTemplatePath = HostingEnvironment.MapPath(\"~\") + @\"ExtractedTemplate\\\";\n\n            if (Directory.Exists(extractedTemplatePath))\n            {\n                string[] subdirs = Directory.GetDirectories(extractedTemplatePath)\n                               .Select(Path.GetFileName)\n                               .ToArray();\n                foreach (string folderName in subdirs)\n                {\n                    DirectoryInfo d = new DirectoryInfo(extractedTemplatePath + folderName);\n                    if (d.CreationTime < DateTime.Now.AddHours(-1))\n                        Directory.Delete(extractedTemplatePath + folderName, true);\n                }\n            }\n\n            AddMessage(model.id, \"\");\n            ProjectConfigurations appConfig = ProjectConfiguration(model);\n\n            GetInstalledExtensions(appConfig);\n\n            ExportQuries(appConfig);\n            ExportTeams(appConfig.BoardConfig, model.ProcessTemplate, model.ProjectId);\n\n            if (ExportIterations(appConfig))\n            {\n                AddMessage(model.id, \"Iterations Definition\");\n            }\n            string extractedFolderName = extractedTemplatePath + model.ProjectName;\n            string filePathToRead = HostingEnvironment.MapPath(\"~\") + @\"\\\\PreSetting\";\n\n            string projectSetting = \"\";\n            projectSetting = filePathToRead + \"\\\\ProjectSettings.json\";\n            projectSetting = File.ReadAllText(projectSetting);\n            projectSetting = projectSetting.Replace(\"$type$\", model.ProcessTemplate).Replace(\"$id$\", projectProperties.value.Where(x => x.name == \"System.ProcessTemplateType\").FirstOrDefault().value);\n            File.WriteAllText(extractedFolderName + \"\\\\ProjectSettings.json\", projectSetting);\n\n            string projectTemplate = \"\";\n            projectTemplate = filePathToRead + \"\\\\ProjectTemplate.json\";\n            projectTemplate = File.ReadAllText(projectTemplate);\n            File.WriteAllText(extractedFolderName + \"\\\\ProjectTemplate.json\", projectTemplate);\n\n            string teamArea = \"\";\n            teamArea = filePathToRead + \"\\\\TeamArea.json\";\n            teamArea = File.ReadAllText(teamArea);\n            File.WriteAllText(extractedFolderName + \"\\\\TeamArea.json\", teamArea);\n            AddMessage(model.id, \"Team Areas\");\n\n            ExportWorkItems(appConfig);\n            AddMessage(model.id, \"Work Items\");\n\n            ExportDeliveryPlans(appConfig);\n            AddMessage(model.id, \"Delivery Plans\");\n\n            ExportRepositoryList(appConfig);\n            AddMessage(model.id, \"Repository and Service Endpoint\");\n\n            GetServiceEndpoints(appConfig);\n            int count = GetBuildDefinitions(appConfig);\n            if (count >= 1)\n            {\n                AddMessage(model.id, \"Build Definition\");\n            }\n\n            int relCount = GeneralizingGetReleaseDefinitions(appConfig);\n            if (relCount >= 1)\n            {\n                AddMessage(model.id, \"Release Definition\");\n            }\n\n            StatusMessages[model.id] = \"100\";\n            return new string[] { model.id, \"\" };\n        }\n\n        public Dictionary<string, int> GetWorkItemsCount(ProjectConfigurations appConfig)\n        {\n            string[] workItemtypes = GetAllWorkItemsName(appConfig);//{ \"Epic\", \"Feature\", \"Product Backlog Item\", \"Task\", \"Test Case\", \"Bug\", \"User Story\", \"Test Suite\", \"Test Plan\", \"Issue\" };\n            GetWorkItemsCount itemsCount = new GetWorkItemsCount(appConfig.WorkItemConfig);\n            Dictionary<string, int> fetchedWorkItemsCount = new Dictionary<string, int>();\n            if (workItemtypes.Length > 0)\n            {\n                foreach (var workItem in workItemtypes)\n                {\n                    itemsCount.LastFailureMessage = \"\";\n                    WorkItemFetchResponse.WorkItems WITCount = itemsCount.GetWorkItemsfromSource(workItem);\n                    if (WITCount.count > 0)\n                    {\n                        fetchedWorkItemsCount.Add(workItem, WITCount.count);\n                    }\n                    else if (!string.IsNullOrEmpty(itemsCount.LastFailureMessage))\n                    {\n                        errorMessages.Add(string.Format(\"Error while querying work item - {0}: {1}\", workItem, itemsCount.LastFailureMessage));\n                    }\n                }\n            }\n\n            return fetchedWorkItemsCount;\n        }\n\n        public List<RequiredExtensions.ExtensionWithLink> GetInstalledExtensions(ProjectConfigurations appConfig)\n        {\n            try\n            {\n                GetListExtenison listExtenison = new GetListExtenison(appConfig.ExtensionConfig);\n                List<RequiredExtensions.ExtensionWithLink> extensionList = new List<RequiredExtensions.ExtensionWithLink>();\n                GetExtensions.ExtensionsList returnExtensionsList = listExtenison.GetInstalledExtensions();\n                if (returnExtensionsList != null && returnExtensionsList.count > 0)\n                {\n                    List<GetExtensions.Value> builtInExtensions = returnExtensionsList.value.Where(x => x.flags == null).ToList();\n                    List<GetExtensions.Value> trustedExtensions = returnExtensionsList.value.Where(x => x.flags != null && x.flags.ToString() == \"trusted\").ToList();\n                    builtInExtensions.AddRange(trustedExtensions);\n                    returnExtensionsList.value = builtInExtensions;\n\n                    foreach (GetExtensions.Value data in returnExtensionsList.value)\n                    {\n                        RequiredExtensions.ExtensionWithLink extension = new RequiredExtensions.ExtensionWithLink();\n                        if (data.extensionName.ToLower() != \"analytics\")\n                        {\n                            extension.extensionId = data.extensionId;\n                            extension.extensionName = data.extensionName;\n                            extension.publisherId = data.publisherId;\n                            extension.publisherName = data.publisherName;\n                            extension.link = \"<a href='\" + string.Format(\"https://marketplace.visualstudio.com/items?itemName={0}.{1}\", data.publisherId, data.extensionId) + \"' target='_blank'><b>\" + data.extensionName + \"</b></a>\";\n                            extension.License = \"<a href='\" + string.Format(\"https://marketplace.visualstudio.com/items?itemName={0}.{1}\", data.publisherId, data.extensionId) + \"' target='_blank'>License Terms</a>\";\n                            extensionList.Add(extension);\n                        }\n                    }\n                    RequiredExtensions.listExtension listExtension = new RequiredExtensions.listExtension();\n                    if (extensionList.Count > 0)\n                    {\n                        listExtension.Extensions = extensionList;\n                        if (!Directory.Exists(extractedTemplatePath + appConfig.ExtensionConfig.Project))\n                        {\n                            Directory.CreateDirectory(extractedTemplatePath + appConfig.ExtensionConfig.Project);\n                        }\n                        string fetchedJson = JsonConvert.SerializeObject(listExtension, Formatting.Indented);\n\n                        File.WriteAllText(extractedTemplatePath + appConfig.ExtensionConfig.Project + \"\\\\Extensions.json\", JsonConvert.SerializeObject(listExtension, Formatting.Indented));\n                    }\n                }\n                else if (!string.IsNullOrEmpty(listExtenison.LastFailureMessage))\n                {\n                    AddMessage(appConfig.ExtensionConfig.Id.ErrorId(), \"Some error occured while fetching extensions\");\n                }\n                return extensionList;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new List<RequiredExtensions.ExtensionWithLink>();\n        }\n\n        public void ExportQuries(ProjectConfigurations appConfig)\n        {\n            try\n            {\n                Queries queries = new Queries(appConfig.QueriesConfig);\n                GetQueries.Queries listQueries = queries.GetQueriesWiql();\n                if (listQueries.count > 0)\n                {\n                    foreach (var _queries in listQueries.value)\n                    {\n                        if (_queries.hasChildren)\n                        {\n                            foreach (var query in _queries.children)\n                            {\n                                if (!query.hasChildren)\n                                {\n                                    if (query.wiql != null)\n                                    {\n                                        query.wiql = query.wiql.Replace(appConfig.QueriesConfig.Project, \"$projectId$\");\n                                        JObject jobj = new JObject();\n                                        jobj[\"name\"] = query.name;\n                                        jobj[\"wiql\"] = query.wiql;\n                                        if (!Directory.Exists(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\"))\n                                        {\n                                            Directory.CreateDirectory(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\");\n                                            File.WriteAllText(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Dashboard.json\", JsonConvert.SerializeObject(\"text\", Formatting.Indented));\n                                        }\n                                        if (!Directory.Exists(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\"))\n                                        {\n                                            Directory.CreateDirectory(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\");\n                                            File.WriteAllText(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\\\\\" + query.name + \".json\", JsonConvert.SerializeObject(jobj, Formatting.Indented));\n                                        }\n                                        else\n                                        {\n                                            File.WriteAllText(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\\\\\" + query.name + \".json\", JsonConvert.SerializeObject(jobj, Formatting.Indented));\n                                        }\n                                    }\n                                }\n                                else\n                                {\n                                    foreach (var child1 in query.children)\n                                    {\n                                        if (child1.wiql != null)\n                                        {\n                                            child1.wiql = child1.wiql.Replace(appConfig.QueriesConfig.Project, \"$projectId$\");\n                                            JObject jobj = new JObject();\n                                            jobj[\"name\"] = child1.name;\n                                            jobj[\"wiql\"] = child1.wiql;\n                                            if (!Directory.Exists(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\"))\n                                            {\n                                                Directory.CreateDirectory(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\");\n\n                                                File.WriteAllText(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\\\\\" + child1.name + \".json\", JsonConvert.SerializeObject(jobj, Formatting.Indented));\n                                            }\n                                            else\n                                            {\n                                                File.WriteAllText(extractedTemplatePath + appConfig.QueriesConfig.Project + \"\\\\Dashboard\\\\Queries\\\\\" + child1.name + \".json\", JsonConvert.SerializeObject(jobj, Formatting.Indented));\n                                            }\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n                else if (!string.IsNullOrEmpty(queries.LastFailureMessage))\n                {\n                    AddMessage(appConfig.QueriesConfig.Id.ErrorId(), \"Error while fetching queries\");\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n\n        }\n\n        public bool ExportTeams(Configuration con, string processTemplate, string projectID)\n        {\n            try\n            {\n                string defaultTeamID = string.Empty;\n                VstsRestAPI.Extractor.ClassificationNodes nodes = new VstsRestAPI.Extractor.ClassificationNodes(con);\n                TeamList _team = new TeamList();\n                string ProjectPropertyVersion = System.Configuration.ConfigurationManager.AppSettings[\"ProjectPropertyVersion\"];\n                con.VersionNumber = ProjectPropertyVersion;\n                con.ProjectId = projectID;\n                Projects projects = new Projects(con);\n                projectProperties = projects.GetProjectProperties();\n                if (projectProperties.count > 0)\n                {\n                    defaultTeamID = projectProperties.value.Where(x => x.name == \"System.Microsoft.TeamFoundation.Team.Default\").FirstOrDefault().value;\n                }\n                _team = nodes.ExportTeamList(defaultTeamID);\n                if (_team.value != null)\n                {\n                    AddMessage(con.Id, \"Teams\");\n\n                    string fetchedJson = JsonConvert.SerializeObject(_team.value, Formatting.Indented);\n                    if (fetchedJson != \"\")\n                    {\n                        if (!Directory.Exists(extractedTemplatePath + con.Project + \"\\\\Teams\"))\n                        {\n                            Directory.CreateDirectory(extractedTemplatePath + con.Project + \"\\\\Teams\");\n                        }\n                        File.WriteAllText(extractedTemplatePath + con.Project + \"\\\\Teams\\\\Teams.json\", fetchedJson);\n\n                        List<string> boardTypes = new List<string>();\n                        boardTypes.Add(\"Epics\");\n                        if (processTemplate.ToLower() == \"agile\")\n                        {\n                            boardTypes.Add(\"Features\");\n                            boardTypes.Add(\"Stories\");\n                        }\n                        else if (processTemplate.ToLower() == \"basic\")\n                        {\n                            boardTypes.Add(\"Issues\");\n                        }\n                        else if (processTemplate.ToLower() == \"scrum\")\n                        {\n                            boardTypes.Add(\"Features\");\n                            boardTypes.Add(\"Backlog Items\");\n                        }\n\n                        foreach (var team in _team.value)\n                        {\n                            List<BoardColumnResponseScrum.ColumnResponse> columnResponsesScrum = new List<BoardColumnResponseScrum.ColumnResponse>();\n                            List<BoardColumnResponseAgile.ColumnResponse> columnResponsesAgile = new List<BoardColumnResponseAgile.ColumnResponse>();\n                            List<BoardColumnResponseBasic.ColumnResponse> columnResponsesBasic = new List<BoardColumnResponseBasic.ColumnResponse>();\n                            List<ExportBoardRows.Rows> boardRows = new List<ExportBoardRows.Rows>();\n\n                            ExportTeamSetting.Setting listTeamSetting = new ExportTeamSetting.Setting();\n\n                            List<JObject> jObjCardFieldList = new List<JObject>();\n                            List<JObject> jObjcardStyleList = new List<JObject>();\n                            string teamFolderPath = extractedTemplatePath + con.Project + \"\\\\Teams\\\\\" + team.name;\n                            if (!Directory.Exists(teamFolderPath))\n                            {\n                                Directory.CreateDirectory(teamFolderPath);\n                            }\n                            //Export Board Colums for each team\n                            con.Team = team.name;\n\n                            ClassificationNodes teamNodes = new ClassificationNodes(con);\n                            foreach (var boardType in boardTypes)\n                            {\n                                var response = teamNodes.ExportBoardColums(boardType);\n                                if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                                {\n                                    if (processTemplate.ToLower() == \"scrum\")\n                                    {\n                                        string res = response.Content.ReadAsStringAsync().Result;\n                                        BoardColumnResponseScrum.ColumnResponse scrumColumns = JsonConvert.DeserializeObject<BoardColumnResponseScrum.ColumnResponse>(res);\n                                        scrumColumns.BoardName = boardType;\n                                        columnResponsesScrum.Add(scrumColumns);\n                                    }\n                                    else if (processTemplate.ToLower() == \"agile\")\n                                    {\n                                        string res = response.Content.ReadAsStringAsync().Result;\n                                        BoardColumnResponseAgile.ColumnResponse agileColumns = JsonConvert.DeserializeObject<BoardColumnResponseAgile.ColumnResponse>(res);\n                                        agileColumns.BoardName = boardType;\n                                        columnResponsesAgile.Add(agileColumns);\n                                    }\n                                    else if (processTemplate.ToLower() == \"basic\")\n                                    {\n                                        string res = response.Content.ReadAsStringAsync().Result;\n                                        BoardColumnResponseBasic.ColumnResponse basicColumns = JsonConvert.DeserializeObject<BoardColumnResponseBasic.ColumnResponse>(res);\n                                        basicColumns.BoardName = boardType;\n                                        columnResponsesBasic.Add(basicColumns);\n                                    }\n                                    AddMessage(con.Id, \"Board Columns\");\n                                    Thread.Sleep(2000);\n                                }\n                                else\n                                {\n                                    var errorMessage = response.Content.ReadAsStringAsync();\n                                    string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                                    teamNodes.LastFailureMessage = error;\n                                    AddMessage(con.Id.ErrorId(), \"Error occured while exporting Board Columns: \" + teamNodes.LastFailureMessage);\n                                }\n\n                                //Export board rows for each team\n                                ExportBoardRows.Rows rows = teamNodes.ExportBoardRows(boardType);\n                                if (rows.value != null && rows.value.Count > 0)\n                                {\n                                    rows.BoardName = boardType;\n                                    boardRows.Add(rows);\n                                    AddMessage(con.Id, \"Board Rows\");\n                                    Thread.Sleep(2000);\n                                }\n                                else if (!string.IsNullOrEmpty(teamNodes.LastFailureMessage))\n                                {\n                                    AddMessage(con.Id.ErrorId(), \"Error occured while exporting Board Rows: \" + teamNodes.LastFailureMessage);\n                                }\n\n\n                                //Export Card Fields for each team\n                                var cardFieldResponse = teamNodes.ExportCardFields(boardType);\n                                if (cardFieldResponse.IsSuccessStatusCode && cardFieldResponse.StatusCode == System.Net.HttpStatusCode.OK)\n                                {\n                                    string res = cardFieldResponse.Content.ReadAsStringAsync().Result;\n                                    JObject jObj = JsonConvert.DeserializeObject<JObject>(res);\n                                    jObj[\"BoardName\"] = boardType;\n                                    jObjCardFieldList.Add(jObj);\n                                    AddMessage(con.Id, \"Card fields Definition\");\n\n                                }\n                                else\n                                {\n                                    var errorMessage = cardFieldResponse.Content.ReadAsStringAsync();\n                                    string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                                    teamNodes.LastFailureMessage = error;\n                                    AddMessage(con.Id.ErrorId(), \"Error occured while exporting Card Fields: \" + teamNodes.LastFailureMessage);\n                                }\n\n                                //// Export card styles for each team\n                                var cardStyleResponse = teamNodes.ExportCardStyle(boardType);\n                                if (cardStyleResponse.IsSuccessStatusCode && cardStyleResponse.StatusCode == System.Net.HttpStatusCode.OK)\n                                {\n                                    string res = cardStyleResponse.Content.ReadAsStringAsync().Result;\n                                    res = res.Replace(con.Project, \"$ProjectName$\");\n                                    JObject jObj = JsonConvert.DeserializeObject<JObject>(res);\n                                    jObj[\"BoardName\"] = boardType;\n                                    var style = jObj;\n                                    style[\"url\"] = \"\";\n                                    style[\"_links\"] = \"{}\";\n                                    var tagStyle = style[\"rules\"][\"tagStyle\"];\n                                    if (tagStyle == null)\n                                    {\n                                        style[\"rules\"][\"tagStyle\"] = new JArray();\n                                    }\n                                    jObjcardStyleList.Add(jObj);\n                                    AddMessage(con.Id, \"Card style\");\n\n                                }\n                                else\n                                {\n                                    var errorMessage = cardStyleResponse.Content.ReadAsStringAsync();\n                                    string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                                    teamNodes.LastFailureMessage = error;\n                                    AddMessage(con.Id.ErrorId(), \"Error occured while exporting Card Styles: \" + teamNodes.LastFailureMessage);\n                                }\n                            }\n                            //Export Team Setting for each team\n                            if (processTemplate.ToLower() != \"basic\")\n                            {\n                                ExportTeamSetting.Setting teamSetting = teamNodes.ExportTeamSetting();\n                                if (teamSetting.backlogVisibilities != null)\n                                {\n                                    listTeamSetting = teamSetting;\n                                    AddMessage(con.Id, \"Team Settings Definition\");\n                                }\n                            }\n                            else if (!string.IsNullOrEmpty(teamNodes.LastFailureMessage))\n                            {\n                                AddMessage(con.Id.ErrorId(), \"Error occured while exporting Team Setting: \" + teamNodes.LastFailureMessage);\n                            }\n\n                            if (columnResponsesAgile.Count > 0)\n                            {\n                                File.WriteAllText(teamFolderPath + \"\\\\BoardColumns.json\", JsonConvert.SerializeObject(columnResponsesAgile, Formatting.Indented, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }));\n                            }\n                            if (columnResponsesScrum.Count > 0)\n                            {\n                                File.WriteAllText(teamFolderPath + \"\\\\BoardColumns.json\", JsonConvert.SerializeObject(columnResponsesScrum, Formatting.Indented, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }));\n                            }\n                            if (columnResponsesBasic.Count > 0)\n                            {\n                                File.WriteAllText(teamFolderPath + \"\\\\BoardColumns.json\", JsonConvert.SerializeObject(columnResponsesBasic, Formatting.Indented, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }));\n                            }\n                            if (boardRows.Count > 0)\n                            {\n                                File.WriteAllText(teamFolderPath + \"\\\\BoardRows.json\", JsonConvert.SerializeObject(boardRows, Formatting.Indented));\n                            }\n                            if (!string.IsNullOrEmpty(listTeamSetting.bugsBehavior))\n                            {\n                                File.WriteAllText(teamFolderPath + \"\\\\TeamSetting.json\", JsonConvert.SerializeObject(listTeamSetting, Formatting.Indented));\n                            }\n                            if (jObjCardFieldList.Count > 0)\n                            {\n                                File.WriteAllText(teamFolderPath + \"\\\\CardFields.json\", JsonConvert.SerializeObject(jObjCardFieldList, Formatting.Indented));\n                            }\n                            if (jObjcardStyleList.Count > 0)\n                            {\n                                File.WriteAllText(teamFolderPath + \"\\\\CardStyles.json\", JsonConvert.SerializeObject(jObjcardStyleList, Formatting.Indented));\n                            }\n                        }\n\n                        return true;\n                    }\n                    else if (!string.IsNullOrEmpty(nodes.LastFailureMessage))\n                    {\n                        AddMessage(con.Id.ErrorId(), nodes.LastFailureMessage);\n                        string error = nodes.LastFailureMessage;\n                        return false;\n                    }\n                    else\n                    {\n                        return false;\n                    }\n                }\n                else\n                {\n                    AddMessage(con.Id.ErrorId(), nodes.LastFailureMessage);\n                    return false;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        public bool ExportIterations(ProjectConfigurations appConfig)\n        {\n            try\n            {\n                ClassificationNodes nodes = new VstsRestAPI.Extractor.ClassificationNodes(appConfig.BoardConfig);\n                ExportedIterations.Iterations viewModel = nodes.ExportIterationsToSave();\n                string fetchedJson = JsonConvert.SerializeObject(viewModel, Formatting.Indented);\n                if (fetchedJson != \"\")\n                {\n                    if (!Directory.Exists(extractedTemplatePath + appConfig.BoardConfig.Project))\n                    {\n                        Directory.CreateDirectory(extractedTemplatePath + appConfig.BoardConfig.Project);\n                    }\n                    File.WriteAllText(extractedTemplatePath + appConfig.BoardConfig.Project + \"\\\\Iterations.json\", fetchedJson);\n                    return true;\n                }\n                else\n                {\n                    string error = nodes.LastFailureMessage;\n                    AddMessage(appConfig.BoardConfig.Id.ErrorId(), error);\n                    return false;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        public void ExportWorkItems(ProjectConfigurations appConfig)\n        {\n            string[] workItemtypes = GetAllWorkItemsName(appConfig);//{ \"Epic\", \"Feature\", \"Product Backlog Item\", \"Task\", \"Test Case\", \"Bug\", \"User Story\", \"Test Suite\", \"Test Plan\", \"Issue\" };\n            if (!Directory.Exists(extractedTemplatePath + appConfig.WorkItemConfig.Project))\n            {\n                Directory.CreateDirectory(extractedTemplatePath + appConfig.WorkItemConfig.Project);\n            }\n\n            if (workItemtypes.Length > 0)\n            {\n                foreach (var WIT in workItemtypes)\n                {\n                    GetWorkItemsCount WorkitemsCount = new GetWorkItemsCount(appConfig.WorkItemConfig);\n                    WorkItemFetchResponse.WorkItems fetchedWorkItem = WorkitemsCount.GetWorkItemsfromSource(WIT);\n                    string workItemJson = JsonConvert.SerializeObject(fetchedWorkItem, Formatting.Indented);\n                    if (fetchedWorkItem.count > 0)\n                    {\n                        workItemJson = workItemJson.Replace(appConfig.WorkItemConfig.Project + \"\\\\\", \"$ProjectName$\\\\\");\n                        string item = WIT;\n                        if (!Directory.Exists(extractedTemplatePath + appConfig.WorkItemConfig.Project + \"\\\\WorkItems\"))\n                        {\n                            Directory.CreateDirectory(extractedTemplatePath + appConfig.WorkItemConfig.Project + \"\\\\WorkItems\");\n                        }\n                        File.WriteAllText(extractedTemplatePath + appConfig.WorkItemConfig.Project + \"\\\\WorkItems\\\\\" + item + \".json\", workItemJson);\n                    }\n                    else if (!string.IsNullOrEmpty(WorkitemsCount.LastFailureMessage))\n                    {\n                        AddMessage(appConfig.WorkItemConfig.Id.ErrorId(), WorkitemsCount.LastFailureMessage);\n                    }\n                }\n            }\n        }\n\n        public void ExportRepositoryList(ProjectConfigurations appConfig)\n        {\n            BuildandReleaseDefs repolist = new BuildandReleaseDefs(appConfig.RepoConfig);\n            RepositoryList.Repository repos = repolist.GetRepoList();\n            if (repos.count > 0)\n            {\n                foreach (var repo in repos.value)\n                {\n                    string preSettingPath = HostingEnvironment.MapPath(\"~\") + @\"PreSetting\";\n                    string templateFolderPath = extractedTemplatePath + appConfig.RepoConfig.Project;\n                    string host = appConfig.RepoConfig.UriString + appConfig.RepoConfig.Project;\n                    string sourceCodeJson = File.ReadAllText(preSettingPath + \"\\\\ImportSourceCode.json\");\n                    sourceCodeJson = sourceCodeJson.Replace(\"$Host$\", host).Replace(\"$Repo$\", repo.name);\n                    string endPointJson = File.ReadAllText(preSettingPath + \"\\\\ServiceEndPoint.json\");\n                    endPointJson = endPointJson.Replace(\"$Host$\", host).Replace(\"$Repo$\", repo.name);\n                    if (!Directory.Exists(templateFolderPath + \"\\\\ImportSourceCode\"))\n                    {\n                        Directory.CreateDirectory(templateFolderPath + \"\\\\ImportSourceCode\");\n                        File.WriteAllText(templateFolderPath + \"\\\\ImportSourceCode\\\\\" + repo.name + \".json\", sourceCodeJson);\n                    }\n                    else\n                    {\n                        File.WriteAllText(templateFolderPath + \"\\\\ImportSourceCode\\\\\" + repo.name + \".json\", sourceCodeJson);\n                    }\n                    if (!Directory.Exists(templateFolderPath + \"\\\\ServiceEndpoints\"))\n                    {\n                        Directory.CreateDirectory(templateFolderPath + \"\\\\ServiceEndpoints\");\n                        File.WriteAllText(templateFolderPath + \"\\\\ServiceEndpoints\\\\\" + repo.name + \"-code.json\", endPointJson);\n                    }\n                    else\n                    {\n                        File.WriteAllText(templateFolderPath + \"\\\\ServiceEndpoints\\\\\" + repo.name + \"-code.json\", endPointJson);\n                    }\n                }\n            }\n        }\n\n        /// <summary>\n        /// Get the Build definitions to write into file\n        /// </summary>\n        /// <param name=\"appConfig\"></param>\n        /// <returns></returns>\n        public int GetBuildDefinitions(ProjectConfigurations appConfig)\n        {\n            try\n            {\n                BuildandReleaseDefs buildandReleaseDefs = new BuildandReleaseDefs(appConfig.BuildDefinitionConfig);\n                List<JObject> builds = buildandReleaseDefs.ExportBuildDefinitions();\n                BuildandReleaseDefs repoDefs = new BuildandReleaseDefs(appConfig.RepoConfig);\n                Dictionary<string, string> variableGroupNameId = GetVariableGroups(appConfig);\n                RepositoryList.Repository repo = repoDefs.GetRepoList();\n                if (builds.Count > 0)\n                {\n                    int count = 1;\n                    //creating ImportCode Json file\n                    string templatePath = extractedTemplatePath + appConfig.BuildDefinitionConfig.Project;\n                    foreach (JObject def in builds)\n                    {\n                        string repoID = \"\";\n                        var buildName = def[\"name\"];\n                        string fileName = buildName.ToString().Replace(\".\", \"\") + \".json\";\n                        var repoName = def[\"repository\"][\"name\"];\n                        var type = def[\"repository\"][\"type\"];\n                        foreach (var re in repo.value)\n                        {\n                            if (re.name == repoName.ToString())\n                            {\n                                repoID = re.id;\n                            }\n                        }\n                        def[\"authoredBy\"] = \"{}\";\n                        def[\"project\"] = \"{}\";\n                        def[\"url\"] = \"\";\n                        def[\"uri\"] = \"\";\n                        def[\"id\"] = \"\";\n                        if (def[\"queue\"][\"pool\"].HasValues)\n                        {\n                            def[\"queue\"][\"pool\"][\"id\"] = \"\";\n                        }\n                        def[\"_links\"] = \"{}\";\n                        def[\"createdDate\"] = \"\";\n                        if (def[\"variableGroups\"] != null)\n                        {\n                            var variableGroup = def[\"variableGroups\"].HasValues ? def[\"variableGroups\"].ToArray() : new JToken[0];\n                            if (variableGroup.Length > 0)\n                            {\n                                foreach (var groupId in variableGroup)\n                                {\n                                    groupId[\"id\"] = \"$\" + variableGroupNameId.Where(x => x.Key == groupId[\"id\"].ToString()).FirstOrDefault().Value + \"$\";\n                                }\n                            }\n                        }\n                        var yamalfilename = def[\"process\"][\"yamlFilename\"];\n\n                        #region YML PIPELINES OF TYPE AZURE REPOS\n                        if (yamalfilename != null && type.ToString().ToLower() == \"tfsgit\")\n                        {\n                            count = YmlWithAzureRepos(appConfig, count, templatePath, def, fileName, type);\n                        }\n                        #endregion\n\n                        #region YML PIPELINE WITH GITHUB\n                        else if (yamalfilename != null && type.ToString().ToLower() == \"github\")\n                        {\n                            count = YmlWithGitHub(appConfig, count, templatePath, def, fileName, type);\n                        }\n                        #endregion\n\n                        #region OTHER\n                        else if (yamalfilename == null)\n                        {\n                            count = NormalPipeline(appConfig, count, templatePath, def, fileName, repoName, type);\n                        }\n                        #endregion\n                    }\n                    return count;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return 0;\n        }\n        /// <summary>\n        /// Normal Build pipeline, which could be either pointing from Azure Repos or GitHub\n        /// </summary>\n        /// <param name=\"appConfig\"></param>\n        /// <param name=\"count\"></param>\n        /// <param name=\"templatePath\"></param>\n        /// <param name=\"def\"></param>\n        /// <param name=\"fileName\"></param>\n        /// <param name=\"repoName\"></param>\n        /// <param name=\"type\"></param>\n        /// <returns></returns>\n        private static int NormalPipeline(ProjectConfigurations appConfig, int count, string templatePath, JObject def, string fileName, JToken repoName, JToken type)\n        {\n            try\n            {\n                def[\"queue\"][\"id\"] = \"\";\n                def[\"queue\"][\"url\"] = \"\";\n                def[\"queue\"][\"_links\"] = \"{}\";\n                def[\"queue\"][\"pool\"][\"id\"] = \"\";\n                def[\"_links\"] = \"{}\";\n                def[\"createdDate\"] = \"\";\n\n                var process = def[\"process\"];\n                if (process != null)\n                {\n                    var phases = process[\"phases\"];\n                    if (phases != null)\n                    {\n                        foreach (var phase in phases)\n                        {\n                            phase[\"target\"][\"queue\"] = \"{}\";\n                            var steps = phase[\"steps\"];\n                            if (steps != null)\n                            {\n                                foreach (var step in steps)\n                                {\n                                    string keyConfig = File.ReadAllText(HostingEnvironment.MapPath(\"~\") + @\"\\\\Templates\\EndpointKeyConfig.json\");\n                                    KeyConfig.Keys keyC = new KeyConfig.Keys();\n                                    keyC = JsonConvert.DeserializeObject<KeyConfig.Keys>(keyConfig);\n                                    foreach (var key in keyC.keys)\n                                    {\n                                        string keyVal = step[key] != null ? step[key].ToString() : \"\";\n                                        if (!string.IsNullOrEmpty(keyVal))\n                                        {\n                                            step[key] = \"\";\n                                        }\n                                    }\n                                    foreach (var key in keyC.keys)\n                                    {\n                                        string keyVal = step[\"inputs\"][key] != null ? step[\"inputs\"][key].ToString() : \"\";\n                                        if (!string.IsNullOrEmpty(keyVal))\n                                        {\n                                            step[\"inputs\"][key] = \"\";\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n\n                if (type.ToString().ToLower() == \"github\")\n                {\n\n                    Guid g = Guid.NewGuid();\n                    string randStr = g.ToString().Substring(0, 8);\n                    def[\"repository\"][\"type\"] = \"Git\";\n                    def[\"repository\"][\"properties\"][\"fullName\"] = \"repository\";\n                    def[\"repository\"][\"properties\"][\"connectedServiceId\"] = \"$GitHub_\" + randStr + \"$\";\n                    def[\"repository\"][\"name\"] = \"repository\";\n                    string url = def[\"repository\"][\"url\"].ToString();\n                    if (url != \"\")\n                    {\n                        string endPointString = File.ReadAllText(HostingEnvironment.MapPath(\"~\") + @\"PreSetting\\\\GitHubEndPoint.json\");\n                        endPointString = endPointString.Replace(\"$GitHubURL$\", url).Replace(\"$Name$\", \"GitHub_\" + randStr);\n\n                        if (!Directory.Exists(extractedTemplatePath + appConfig.RepoConfig.Project + \"\\\\ServiceEndpoints\"))\n                        {\n                            Directory.CreateDirectory(extractedTemplatePath + appConfig.RepoConfig.Project + \"\\\\ServiceEndpoints\");\n                            File.WriteAllText(extractedTemplatePath + appConfig.RepoConfig.Project + \"\\\\ServiceEndpoints\\\\GitHub\" + randStr + \"-EndPoint.json\", endPointString);\n                        }\n                        else\n                        {\n                            File.WriteAllText(extractedTemplatePath + appConfig.RepoConfig.Project + \"\\\\ServiceEndpoints\\\\GitHub\" + randStr + \"-EndPoint.json\", endPointString);\n                        }\n                    }\n                }\n                else if (type.ToString().ToLower() == \"git\")\n                {\n                    Guid g = Guid.NewGuid();\n                    string randStr = g.ToString().Substring(0, 8);\n                    string url = def[\"repository\"][\"url\"].ToString();\n                    string endPointString = File.ReadAllText(HostingEnvironment.MapPath(\"~\") + @\"PreSetting\\\\GitHubEndPoint.json\");\n                    endPointString = endPointString.Replace(\"$GitHubURL$\", url).Replace(\"$Name$\", \"GitHub_\" + randStr);\n\n                    if (!Directory.Exists(extractedTemplatePath + appConfig.RepoConfig.Project + \"\\\\ServiceEndpoints\"))\n                    {\n                        Directory.CreateDirectory(extractedTemplatePath + appConfig.RepoConfig.Project + \"\\\\ServiceEndpoints\");\n                        File.WriteAllText(extractedTemplatePath + appConfig.RepoConfig.Project + \"\\\\ServiceEndpoints\\\\GitHub_\" + randStr + \"-EndPoint.json\", endPointString);\n                    }\n                    else\n                    {\n                        File.WriteAllText(extractedTemplatePath + appConfig.RepoConfig.Project + \"\\\\ServiceEndpoints\\\\GitHub_\" + randStr + \"-EndPoint.json\", endPointString);\n                    }\n                    def[\"repository\"][\"properties\"][\"connectedServiceId\"] = \"$GitHub_\" + randStr + \"$\";\n                }\n                else\n                {\n                    def[\"repository\"][\"id\"] = \"$\" + repoName + \"$\";\n                    def[\"repository\"][\"url\"] = \"\";\n                    def[\"repository\"][\"properties\"][\"connectedServiceId\"] = \"\";\n                }\n                var input = def[\"processParameters\"][\"inputs\"];\n                if (input != null)\n                {\n                    if (input.HasValues)\n                    {\n                        foreach (var i in input)\n                        {\n                            i[\"defaultValue\"] = \"\";\n\n                        }\n                    }\n                }\n                var build = def[\"build\"];\n                if (build != null)\n                {\n                    if (build.HasValues)\n                    {\n                        foreach (var b in build)\n                        {\n                            b[\"inputs\"][\"serverEndpoint\"] = \"\";\n                        }\n                    }\n                }\n                count++;\n                if (!Directory.Exists(templatePath + \"\\\\BuildDefinitions\"))\n                {\n                    Directory.CreateDirectory(templatePath + \"\\\\BuildDefinitions\");\n                    File.WriteAllText(templatePath + \"\\\\BuildDefinitions\\\\\" + fileName, JsonConvert.SerializeObject(def, Formatting.Indented));\n                }\n                else\n                {\n                    File.WriteAllText(templatePath + \"\\\\BuildDefinitions\\\\\" + fileName, JsonConvert.SerializeObject(def, Formatting.Indented));\n                }\n\n                return count;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"Exporting normalPipeline \\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return count;\n        }\n        /// <summary>\n        /// YAML pipeline which is pointing to GitHub\n        /// </summary>\n        /// <param name=\"appConfig\"></param>\n        /// <param name=\"count\"></param>\n        /// <param name=\"templatePath\"></param>\n        /// <param name=\"def\"></param>\n        /// <param name=\"fileName\"></param>\n        /// <param name=\"type\"></param>\n        /// <returns></returns>\n        private static int YmlWithGitHub(ProjectConfigurations appConfig, int count, string templatePath, JObject def, string fileName, JToken type)\n        {\n            try\n            {\n                Guid g = Guid.NewGuid();\n                string randStr = g.ToString().Substring(0, 8);\n                var ymlRepoUrl = def[\"repository\"][\"url\"].ToString();\n                if (!Directory.Exists(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ImportSourceCode\"))\n                {\n                    Directory.CreateDirectory(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ImportSourceCode\");\n                }\n                if (type.ToString().ToLower() == \"github\")\n                {\n                    string gitHubRepo = def[\"repository\"][\"id\"].ToString();\n                    string[] gitHubIdSplit = gitHubRepo.Split('/');\n                    gitHubIdSplit[0] = \"$username$\";\n                    gitHubRepo = string.Join(\"/\", gitHubIdSplit);\n\n                    ForkRepos.Fork gitHubRepoList = new ForkRepos.Fork();\n                    gitHubRepoList.repositories = new List<ForkRepos.Repository>();\n                    if (File.Exists(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ImportSourceCode\\\\GitRepository.json\"))\n                    {\n                        string readrepo = File.ReadAllText(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ImportSourceCode\\\\GitRepository.json\");\n                        gitHubRepoList = JsonConvert.DeserializeObject<ForkRepos.Fork>(readrepo);\n                    }\n                    ForkRepos.Repository repoName = new ForkRepos.Repository\n                    {\n                        fullName = def[\"repository\"][\"id\"].ToString(),\n                        endPointName = \"GitHub_\" + randStr\n                    };\n                    gitHubRepoList.repositories.Add(repoName);\n\n                    File.WriteAllText(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ImportSourceCode\\\\GitRepository.json\", JsonConvert.SerializeObject(gitHubRepoList, Formatting.Indented));\n\n                    def[\"repository\"][\"properties\"][\"apiUrl\"] = \"https://api.github.com/repos/\" + gitHubRepo;\n                    def[\"repository\"][\"properties\"][\"branchesUrl\"] = \"https://api.github.com/repos/\" + gitHubRepo + \"/branches\";\n                    def[\"repository\"][\"properties\"][\"cloneUrl\"] = \"https://github.com/\" + gitHubRepo + \".git\";\n                    def[\"repository\"][\"properties\"][\"fullName\"] = \"repository\";\n                    def[\"repository\"][\"properties\"][\"manageUrl\"] = \"https://github.com/\" + gitHubRepo;\n                    def[\"repository\"][\"properties\"][\"connectedServiceId\"] = \"$GitHub_\" + randStr + \"$\";\n                    def[\"repository\"][\"name\"] = gitHubRepo;\n                    def[\"repository\"][\"url\"] = \"https://github.com/\" + gitHubRepo + \".git\";\n                    def[\"repository\"][\"id\"] = gitHubRepo;\n                }\n                if (ymlRepoUrl != \"\")\n                {\n                    string endPointString = File.ReadAllText(HostingEnvironment.MapPath(\"~\") + @\"PreSetting\\\\GitHubEndPoint.json\");\n                    endPointString = endPointString.Replace(\"$GitHubURL$\", ymlRepoUrl).Replace(\"$Name$\", \"GitHub_\" + randStr);\n\n                    if (!Directory.Exists(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ServiceEndpoints\"))\n                    {\n                        Directory.CreateDirectory(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ServiceEndpoints\");\n                        File.WriteAllText(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ServiceEndpoints\\\\GitHub_\" + randStr + \"-EndPoint.json\", endPointString);\n                    }\n                    else\n                    {\n                        File.WriteAllText(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ServiceEndpoints\\\\GitHub_\" + randStr + \"-EndPoint.json\", endPointString);\n                    }\n                }\n                count = count + 1;\n                if (!Directory.Exists(templatePath + \"\\\\BuildDefinitionGitHub\"))\n                {\n                    Directory.CreateDirectory(templatePath + \"\\\\BuildDefinitionGitHub\");\n                    File.WriteAllText(templatePath + \"\\\\BuildDefinitionGitHub\\\\\" + fileName, JsonConvert.SerializeObject(def, Formatting.Indented));\n                }\n                else\n                {\n                    File.WriteAllText(templatePath + \"\\\\BuildDefinitionGitHub\\\\\" + fileName, JsonConvert.SerializeObject(def, Formatting.Indented));\n                }\n\n                return count;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"Exporting ymlWithGitHub \\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return count;\n        }\n        /// <summary>\n        /// YAML pipeline which is pointing to Azure Repos\n        /// </summary>\n        /// <param name=\"appConfig\"></param>\n        /// <param name=\"count\"></param>\n        /// <param name=\"templatePath\"></param>\n        /// <param name=\"def\"></param>\n        /// <param name=\"fileName\"></param>\n        /// <param name=\"type\"></param>\n        /// <returns></returns>\n        private static int YmlWithAzureRepos(ProjectConfigurations appConfig, int count, string templatePath, JObject def, string fileName, JToken type)\n        {\n            try\n            {\n                Guid g = Guid.NewGuid();\n                string randStr = g.ToString().Substring(0, 8);\n                // def[\"triggers\"] = new JArray();\n                if (type.ToString().ToLower() == \"github\")\n                {\n                    def[\"repository\"][\"properties\"][\"fullName\"] = \"repository\";\n                    def[\"repository\"][\"properties\"][\"connectedServiceId\"] = \"$GitHub_\" + randStr + \"$\";\n                    def[\"repository\"][\"name\"] = \"repository\";\n                }\n                var ymlRepoUrl = def[\"repository\"][\"url\"].ToString();\n                if (ymlRepoUrl != \"\")\n                {\n                    string endPointString = File.ReadAllText(HostingEnvironment.MapPath(\"~\") + @\"PreSetting\\\\GitHubEndPoint.json\");\n                    endPointString = endPointString.Replace(\"$GitHubURL$\", ymlRepoUrl).Replace(\"$Name$\", \"GitHub_\" + randStr);\n                    if (!Directory.Exists(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ServiceEndpoints\"))\n                    {\n                        Directory.CreateDirectory(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ServiceEndpoints\");\n                        File.WriteAllText(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ServiceEndpoints\\\\GitHub-\" + randStr + \"-EndPoint.json\", endPointString);\n                    }\n                    else\n                    {\n                        File.WriteAllText(extractedTemplatePath + appConfig.BuildDefinitionConfig.Project + \"\\\\ServiceEndpoints\\\\GitHub-\" + randStr + \"-EndPoint.json\", endPointString);\n                    }\n                }\n                string[] splitYmlRepoUrl = ymlRepoUrl.Split('/');\n                if (splitYmlRepoUrl.Length > 0)\n                {\n                    splitYmlRepoUrl[2] = \"$Organization$@dev.azure.com\";\n                    splitYmlRepoUrl[3] = \"$Organization$\";\n                    splitYmlRepoUrl[4] = \"$ProjectName$\";\n                    ymlRepoUrl = string.Join(\"/\", splitYmlRepoUrl);\n                    def[\"repository\"][\"url\"] = ymlRepoUrl;\n                    def[\"repository\"][\"properties\"][\"cloneUrl\"] = ymlRepoUrl;\n                }\n                def[\"repository\"][\"properties\"][\"safeRepository\"] = string.Format(\"${0}$\", def[\"repository\"][\"name\"].ToString());\n                def[\"repository\"][\"id\"] = string.Format(\"${0}$\", def[\"repository\"][\"name\"].ToString());\n                var queueHref = def[\"queue\"][\"_links\"][\"self\"][\"href\"].ToString();\n                if (queueHref != \"\")\n                {\n                    string[] splitQhref = queueHref.Split('/');\n                    if (splitQhref.Length > 0)\n                    {\n                        splitQhref[3] = \"$Organization$\";\n                        splitQhref[splitQhref.Length - 1] = \"$\" + def[\"queue\"][\"name\"].ToString() + \"$\";\n                        def[\"queue\"][\"_links\"][\"self\"][\"href\"] = string.Join(\"/\", splitQhref);\n                    }\n                    def[\"queue\"][\"id\"] = \"$\" + def[\"queue\"][\"name\"] + \"$\";\n                    def[\"queue\"][\"url\"] = string.Join(\"/\", splitQhref);\n                }\n                count = count + 1;\n                if (!Directory.Exists(templatePath + \"\\\\BuildDefinitions\"))\n                {\n                    Directory.CreateDirectory(templatePath + \"\\\\BuildDefinitions\");\n                    File.WriteAllText(templatePath + \"\\\\BuildDefinitions\\\\\" + fileName, JsonConvert.SerializeObject(def, Formatting.Indented));\n                }\n                else\n                {\n                    File.WriteAllText(templatePath + \"\\\\BuildDefinitions\\\\\" + fileName, JsonConvert.SerializeObject(def, Formatting.Indented));\n                }\n\n                return count;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"Exporting ymlWithAzureRepos \\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return count;\n        }\n        /// <summary>\n        /// Generalizing the release definition method to make it work for All kind of Release definition\n        /// </summary>\n        /// <param name=\"appConfig\"></param>\n        /// <returns></returns>\n        public int GeneralizingGetReleaseDefinitions(ProjectConfigurations appConfig)\n        {\n            try\n            {\n                BuildandReleaseDefs releaseDefs = new BuildandReleaseDefs(appConfig.ReleaseDefinitionConfig);\n                List<JObject> releases = releaseDefs.GetReleaseDefs();\n                string rells = JsonConvert.SerializeObject(releases);\n                BuildandReleaseDefs agent = new BuildandReleaseDefs(appConfig.AgentQueueConfig);\n                Dictionary<string, string> variableGroupNameId = GetVariableGroups(appConfig);\n                Dictionary<string, int> queue = agent.GetQueues();\n                string templatePath = extractedTemplatePath + appConfig.ReleaseDefinitionConfig.Project;\n                int releasecount = 1;\n                if (releases.Count > 0)\n                {\n                    foreach (JObject rel in releases)\n                    {\n                        var name = rel[\"name\"];\n                        rel[\"id\"] = \"\";\n                        rel[\"url\"] = \"\";\n                        rel[\"_links\"] = \"{}\";\n                        rel[\"createdBy\"] = \"{}\";\n                        rel[\"createdOn\"] = \"\";\n                        rel[\"modifiedBy\"] = \"{}\";\n                        rel[\"modifiedOn\"] = \"\";\n\n                        var variableGroup = rel[\"variableGroups\"].HasValues ? rel[\"variableGroups\"].ToArray() : new JToken[0];\n                        if (variableGroup.Length > 0)\n                        {\n                            foreach (var groupId in variableGroup)\n                            {\n                                rel[\"variableGroups\"] = new JArray(\"$\" + variableGroupNameId.Where(x => x.Key == groupId.ToString()).FirstOrDefault().Value + \"$\");\n                            }\n                        }\n                        else\n                        {\n                            rel[\"variableGroups\"] = new JArray();\n                        }\n                        var env = rel[\"environments\"];\n                        foreach (var e in env)\n                        {\n                            e[\"badgeUrl\"] = \"\";\n                            var envVariableGroup = e[\"variableGroups\"].HasValues ? e[\"variableGroups\"].ToArray() : new JToken[0];\n                            if (envVariableGroup.Length > 0)\n                            {\n                                foreach (var envgroupId in envVariableGroup)\n                                {\n                                    e[\"variableGroups\"] = new JArray(\"$\" + variableGroupNameId.Where(x => x.Key == envgroupId.ToString()).FirstOrDefault().Value + \"$\");\n                                }\n                            }\n                            else\n                            {\n                                e[\"variableGroups\"] = new JArray();\n                            }\n                            var owner = e[\"owner\"];\n                            owner[\"id\"] = \"$OwnerId$\";\n                            owner[\"displayName\"] = \"$OwnerDisplayName$\";\n                            owner[\"uniqueName\"] = \"$OwnerUniqueName$\";\n                            owner[\"url\"] = \"\";\n                            owner[\"_links\"] = \"{}\";\n                            owner[\"imageUrl\"] = \"\";\n                            owner[\"descriptor\"] = \"\";\n\n                            var deployPhases = e[\"deployPhases\"];\n                            if (deployPhases.HasValues)\n                            {\n                                foreach (var dep in deployPhases)\n                                {\n\n                                    var deploymentInput = dep[\"deploymentInput\"];\n                                    var queueID = deploymentInput[\"queueId\"];\n                                    string queueName = \"\";\n                                    if (queue != null)\n                                    {\n                                        if (queue.Count > 0)\n                                        {\n                                            var q = queue.ContainsValue(Convert.ToInt32(queueID));\n                                            if (q)\n                                            {\n                                                var agenetName = queue.Where(x => x.Value.ToString() == queueID.ToString()).FirstOrDefault();\n                                                if (agenetName.Key != null)\n                                                {\n                                                    queueName = agenetName.Key.ToString();\n                                                }\n                                                else\n                                                {\n                                                    queueName = \"\";\n                                                }\n                                            }\n                                        }\n                                    }\n                                    if (queueName != \"\")\n                                    {\n                                        deploymentInput[\"queueId\"] = \"$\" + queueName + \"$\";\n                                    }\n                                    else\n                                    {\n                                        deploymentInput[\"queueId\"] = \"\";\n                                    }\n\n                                    var workflow = dep[\"workflowTasks\"];\n                                    if (workflow.HasValues)\n                                    {\n                                        foreach (var flow in workflow)\n                                        {\n                                            var input = flow[\"inputs\"];\n                                            string keyConfig = File.ReadAllText(HostingEnvironment.MapPath(\"~\") + @\"\\\\Templates\\EndpointKeyConfig.json\");\n                                            KeyConfig.Keys keyC = new KeyConfig.Keys();\n                                            keyC = JsonConvert.DeserializeObject<KeyConfig.Keys>(keyConfig);\n                                            foreach (var key in keyC.keys)\n                                            {\n                                                string keyVal = input[key] != null ? input[key].ToString() : \"\";\n                                                if (!string.IsNullOrEmpty(keyVal))\n                                                {\n                                                    input[key] = \"\";\n                                                }\n                                            }\n                                        }\n                                    }\n                                }\n                            }\n                        }\n\n                        var artifact = rel[\"artifacts\"];\n                        if (artifact.HasValues)\n                        {\n                            foreach (var art in artifact)\n                            {\n                                string buildName = art[\"definitionReference\"][\"definition\"][\"name\"].ToString();\n                                string type = art[\"type\"].ToString();\n                                if (type.ToLower() == \"build\")\n                                {\n                                    art[\"sourceId\"] = \"$ProjectId$:\" + \"$\" + buildName + \"-id$\";\n                                    art[\"definitionReference\"][\"definition\"][\"id\"] = \"$\" + buildName + \"-id$\";\n                                    art[\"definitionReference\"][\"project\"][\"id\"] = \"$ProjectId$\";\n                                    art[\"definitionReference\"][\"project\"][\"name\"] = \"$ProjectName$\";\n                                    art[\"definitionReference\"][\"artifactSourceDefinitionUrl\"] = \"{}\";\n                                }\n                                if (type.ToLower() == \"azurecontainerrepository\")\n                                {\n                                    art[\"sourceId\"] = \"$ProjectId$:\" + \"$\" + buildName + \"-id$\";\n                                    art[\"definitionReference\"][\"connection\"][\"id\"] = \"\";\n                                    art[\"definitionReference\"][\"definition\"][\"id\"] = \"\";\n                                    art[\"definitionReference\"][\"definition\"][\"name\"] = \"\";\n                                    art[\"definitionReference\"][\"registryurl\"][\"id\"] = \"\";\n                                    art[\"definitionReference\"][\"registryurl\"][\"name\"] = \"\";\n                                    art[\"definitionReference\"][\"resourcegroup\"][\"id\"] = \"\";\n                                    art[\"definitionReference\"][\"resourcegroup\"][\"name\"] = \"\";\n                                }\n                            }\n                        }\n                        if (!(Directory.Exists(templatePath + \"\\\\ReleaseDefinitions\")))\n                        {\n                            Directory.CreateDirectory(templatePath + \"\\\\ReleaseDefinitions\");\n                            File.WriteAllText(templatePath + \"\\\\ReleaseDefinitions\\\\\" + name + \".json\", JsonConvert.SerializeObject(rel, Formatting.Indented));\n                        }\n                        else\n                        {\n                            File.WriteAllText(templatePath + \"\\\\ReleaseDefinitions\\\\\" + name + \".json\", JsonConvert.SerializeObject(rel, Formatting.Indented));\n                        }\n                        releasecount++;\n                    }\n                }\n                return releasecount;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(appConfig.ReleaseDefinitionConfig.Id.ErrorId(), ex.Message + Environment.NewLine + ex.StackTrace);\n            }\n            return 0;\n        }\n        /// <summary>\n        /// Get different kinds of service endpoints and format it into POST json format\n        /// </summary>\n        /// <param name=\"appConfig\"></param>\n        public void GetServiceEndpoints(ProjectConfigurations appConfig)\n        {\n            try\n            {\n                ServiceEndPoint serviceEndPoint = new ServiceEndPoint(appConfig.EndpointConfig);\n                Parameters.ServiceEndPoint getServiceEndPoint = serviceEndPoint.GetServiceEndPoints();\n                if (getServiceEndPoint.count > 0)\n                {\n                    foreach (Parameters.Value endpoint in getServiceEndPoint.value)\n                    {\n                        switch (endpoint.authorization.scheme)\n                        {\n                            case \"OAuth\":\n                            case \"InstallationToken\":\n                                switch (endpoint.type)\n                                {\n                                    case \"github\":\n                                    case \"GitHub\":\n                                        if (endpoint.authorization.parameters == null)\n                                        {\n                                            endpoint.authorization.parameters = new Parameters.Parameters\n                                            {\n                                                AccessToken = \"AccessToken\"\n                                            };\n                                        }\n                                        else\n                                        {\n                                            endpoint.authorization.parameters.AccessToken = endpoint.authorization.parameters.AccessToken ?? \"AccessToken\";\n                                        }\n                                        break;\n                                }\n                                break;\n                            case \"UsernamePassword\":\n                                endpoint.authorization.parameters.username = endpoint.authorization.parameters.username ?? \"username\";\n                                endpoint.authorization.parameters.password = endpoint.authorization.parameters.password ?? \"password\";\n                                break;\n                            case \"ManagedServiceIdentity\":\n                                if (endpoint.authorization.parameters == null)\n                                {\n                                    endpoint.authorization.parameters = new Parameters.Parameters\n                                    {\n                                        tenantId = Guid.NewGuid().ToString()\n                                    };\n                                }\n                                else\n                                {\n                                    endpoint.authorization.parameters.tenantId = endpoint.authorization.parameters.tenantId ?? Guid.NewGuid().ToString();\n                                }\n                                break;\n                            case \"ServicePrincipal\":\n                                switch (endpoint.type)\n                                {\n                                    case \"devCenter\":\n                                        endpoint.authorization.parameters.servicePrincipalKey = endpoint.authorization.parameters.servicePrincipalKey ?? \"P2ssw0rd@123\";\n                                        break;\n                                    case \"azurerm\":\n                                        endpoint.authorization.parameters.url = null;\n                                        endpoint.authorization.parameters.servicePrincipalId = endpoint.authorization.parameters.servicePrincipalId ?? Guid.NewGuid().ToString();\n                                        endpoint.authorization.parameters.authenticationType = endpoint.authorization.parameters.authenticationType ?? \"spnKey\";\n                                        endpoint.authorization.parameters.tenantId = endpoint.authorization.parameters.tenantId ?? Guid.NewGuid().ToString();\n                                        endpoint.authorization.parameters.servicePrincipalKey = endpoint.authorization.parameters.servicePrincipalKey ?? \"spnKey\";\n                                        switch (endpoint.data.scopeLevel)\n                                        {\n                                            case \"ManagementGroup\":\n                                                endpoint.data.managementGroupId = endpoint.data.managementGroupId ?? \"managedgroup\";\n                                                endpoint.data.managementGroupName = endpoint.data.managementGroupName ?? \"groupname\";\n                                                break;\n                                        }\n                                        break;\n                                }\n                                break;\n                            case \"Certificate\":\n                                switch (endpoint.type)\n                                {\n                                    case \"dockerhost\":\n                                        if (endpoint.authorization.parameters == null)\n                                        {\n                                            endpoint.authorization.parameters = new Parameters.Parameters();\n                                            endpoint.authorization.parameters.cacert = endpoint.authorization.parameters.cacert ?? \"cacert\";\n                                            endpoint.authorization.parameters.cert = endpoint.authorization.parameters.cert ?? \"cert\";\n                                            endpoint.authorization.parameters.key = endpoint.authorization.parameters.key ?? \"key\";\n                                        }\n                                        else\n                                        {\n                                            endpoint.authorization.parameters.cacert = endpoint.authorization.parameters.cacert ?? \"cacert\";\n                                            endpoint.authorization.parameters.cert = endpoint.authorization.parameters.cert ?? \"cert\";\n                                            endpoint.authorization.parameters.key = endpoint.authorization.parameters.key ?? \"key\";\n                                        }\n                                        break;\n\n                                    case \"azure\":\n                                        if (endpoint.authorization.parameters == null)\n                                        {\n                                            endpoint.authorization.parameters = new Parameters.Parameters\n                                            {\n                                                certificate = \"certificate\"\n                                            };\n                                        }\n                                        else\n                                        {\n                                            endpoint.authorization.parameters.certificate = endpoint.authorization.parameters.certificate ?? \"certificate\";\n                                        }\n                                        break;\n                                }\n                                break;\n                            case \"Token\":\n                                if (endpoint.authorization.parameters == null)\n                                {\n                                    endpoint.authorization.parameters = new Parameters.Parameters\n                                    {\n                                        apitoken = \"apitoken\"\n                                    };\n                                }\n                                else\n                                {\n                                    endpoint.authorization.parameters.apitoken = endpoint.authorization.parameters.apitoken ?? \"apitoken\";\n                                }\n                                break;\n                            case \"None\":\n                                switch (endpoint.type)\n                                {\n                                    case \"AzureServiceBus\":\n                                        if (endpoint.authorization.parameters == null)\n                                        {\n                                            endpoint.authorization.parameters = new Parameters.Parameters\n                                            {\n                                                serviceBusConnectionString = \"connectionstring\"\n                                            };\n                                        }\n                                        else\n                                        {\n                                            endpoint.authorization.parameters.serviceBusConnectionString = endpoint.authorization.parameters.serviceBusConnectionString ?? \"connectionstring\";\n                                        }\n                                        break;\n                                    case \"externalnugetfeed\":\n                                        if (endpoint.authorization.parameters == null)\n                                        {\n                                            endpoint.authorization.parameters = new Parameters.Parameters\n                                            {\n                                                nugetkey = \"nugetkey\"\n                                            };\n                                        }\n                                        else\n                                        {\n                                            endpoint.authorization.parameters.nugetkey = endpoint.authorization.parameters.nugetkey ?? \"nugetkey\";\n                                        }\n                                        break;\n                                }\n                                break;\n\n                        }\n                        string endpointString = JsonConvert.SerializeObject(endpoint);\n                        if (!Directory.Exists(extractedTemplatePath + appConfig.EndpointConfig.Project + \"\\\\ServiceEndpoints\"))\n                        {\n                            Directory.CreateDirectory(extractedTemplatePath + appConfig.EndpointConfig.Project + \"\\\\ServiceEndpoints\");\n                            File.WriteAllText(extractedTemplatePath + appConfig.EndpointConfig.Project + \"\\\\ServiceEndpoints\\\\\", JsonConvert.SerializeObject(endpoint, Formatting.Indented, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }));\n                        }\n                        else\n                        {\n                            File.WriteAllText(extractedTemplatePath + appConfig.EndpointConfig.Project + \"\\\\ServiceEndpoints\\\\\" + endpoint.name + \".json\", JsonConvert.SerializeObject(endpoint, Formatting.Indented, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }));\n                        }\n                    }\n                }\n                else if (!string.IsNullOrEmpty(serviceEndPoint.LastFailureMessage))\n                {\n                    AddMessage(appConfig.EndpointConfig.Id.ErrorId(), \"Error occured while fetchin service endpoints\");\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n        /// <summary>\n        /// Get All work item names\n        /// </summary>\n        /// <param name=\"appConfig\"></param>\n        /// <returns></returns>\n        private string[] GetAllWorkItemsName(ProjectConfigurations appConfig)\n        {\n            GetWorkItemsCount getWorkItems = new GetWorkItemsCount(appConfig.WorkItemConfig);\n            WorkItemNames.Names workItems = getWorkItems.GetAllWorkItemNames();\n            List<string> workItemNames = new List<string>();\n            if (workItems.count > 0)\n            {\n                foreach (var workItem in workItems.value)\n                {\n                    workItemNames.Add(workItem.name);\n                }\n            }\n            return workItemNames.ToArray();\n        }\n\n        private Dictionary<string, string> GetVariableGroups(ProjectConfigurations appConfig)\n        {\n            VariableGroups variableGroups = new VariableGroups(appConfig.VariableGroupConfig);\n            GetVariableGroups.Groups groups = variableGroups.GetVariableGroups();\n            Dictionary<string, string> varibaleGroupDictionary = new Dictionary<string, string>();\n            string templatePath = extractedTemplatePath + appConfig.ReleaseDefinitionConfig.Project;\n            if (groups.count > 0)\n            {\n                if (!(Directory.Exists(templatePath + \"\\\\VariableGroups\")))\n                {\n                    Directory.CreateDirectory(templatePath + \"\\\\VariableGroups\");\n                    File.WriteAllText(templatePath + \"\\\\VariableGroups\\\\VariableGroup.json\", JsonConvert.SerializeObject(groups, Formatting.Indented));\n                }\n                else\n                {\n                    File.WriteAllText(templatePath + \"\\\\VariableGroups\\\\VariableGroup.json\", JsonConvert.SerializeObject(groups, Formatting.Indented));\n                }\n                foreach (var vg in groups.value)\n                {\n                    if (!varibaleGroupDictionary.ContainsKey(vg.id))\n                    {\n                        varibaleGroupDictionary.Add(vg.id, vg.name);\n                    }\n                }\n            }\n            return varibaleGroupDictionary;\n        }\n\n        public void ExportDeliveryPlans(ProjectConfigurations appConfig)\n        {\n            try\n            {\n                Plans plans = new Plans(appConfig.WorkItemConfig);\n                GetPlans.Root plansList = plans.GetDeliveryPlans(appConfig.WorkItemConfig.AccountName, appConfig.WorkItemConfig.Project);\n                if (plansList.count > 0)\n                {\n                    string templatePath = extractedTemplatePath + appConfig.WorkItemConfig.Project;\n\n                    VstsRestAPI.Extractor.ClassificationNodes nodes = new VstsRestAPI.Extractor.ClassificationNodes(appConfig.BoardConfig);\n                    string defaultTeamID = string.Empty;\n\n                    var teamsRes = nodes.GetTeams();\n                    RootTeams rootTeams = new RootTeams();\n                    if (teamsRes != null && teamsRes.IsSuccessStatusCode)\n                    {\n                        rootTeams = JsonConvert.DeserializeObject<RootTeams>(teamsRes.Content.ReadAsStringAsync().Result);\n                    }\n\n                    foreach (var plan in plansList.value)\n                    {\n                        APlan.Root aplan = plans.GetAPlan(appConfig.WorkItemConfig.AccountName, appConfig.WorkItemConfig.Project, plan.id);\n                        if (aplan.properties?.teamBacklogMappings != null)\n                        {\n                            foreach (var team in aplan.properties?.teamBacklogMappings)\n                            {\n                                if (rootTeams.count > 0)\n                                {\n                                    foreach (var teams in rootTeams.value)\n                                    {\n                                        if (team.teamId == teams.id)\n                                        {\n                                            team.teamId = $\"${teams.name}$\";\n                                            break;\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                        if (!string.IsNullOrEmpty(aplan.id))\n                        {\n                            if (!(Directory.Exists(templatePath + \"\\\\DeliveryPlans\")))\n                            {\n                                Directory.CreateDirectory(templatePath + \"\\\\DeliveryPlans\");\n                                File.WriteAllText(templatePath + $\"\\\\DeliveryPlans\\\\{aplan.name}.json\", JsonConvert.SerializeObject(aplan, Formatting.Indented));\n                            }\n                            else\n                            {\n                                File.WriteAllText(templatePath + $\"\\\\DeliveryPlans\\\\{aplan.name}.json\", JsonConvert.SerializeObject(aplan, Formatting.Indented));\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n\n            }\n\n        }\n        #endregion END GENERATE ARTIFACTS\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Services/ProjectService.cs",
    "content": "﻿using GoogleAnalyticsTracker.Simple;\nusing GoogleAnalyticsTracker.WebAPI2;\nusing log4net;\nusing Microsoft.VisualStudio.Services.Common;\nusing Microsoft.VisualStudio.Services.ExtensionManagement.WebApi;\nusing Microsoft.VisualStudio.Services.WebApi;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Diagnostics;\nusing System.IO;\nusing System.Linq;\nusing System.Net.Http;\nusing System.Threading;\nusing System.Threading.Tasks;\nusing System.Web.Hosting;\nusing System.Web.Http;\nusing VstsDemoBuilder.Extensions;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsRestAPI;\nusing VstsRestAPI.Build;\nusing VstsRestAPI.DeliveryPlans;\nusing VstsRestAPI.DeploymentGRoup;\nusing VstsRestAPI.Extractor;\nusing VstsRestAPI.Git;\nusing VstsRestAPI.ProjectsAndTeams;\nusing VstsRestAPI.QueriesAndWidgets;\nusing VstsRestAPI.Queues;\nusing VstsRestAPI.Release;\nusing VstsRestAPI.Service;\nusing VstsRestAPI.Services;\nusing VstsRestAPI.TestManagement;\nusing VstsRestAPI.Viewmodel.BranchPolicy;\nusing VstsRestAPI.Viewmodel.Build;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing VstsRestAPI.Viewmodel.GitHub;\nusing VstsRestAPI.Viewmodel.Importer;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\nusing VstsRestAPI.Viewmodel.QueriesAndWidgets;\nusing VstsRestAPI.Viewmodel.Repository;\nusing VstsRestAPI.Viewmodel.Sprint;\nusing VstsRestAPI.Viewmodel.Wiki;\nusing VstsRestAPI.Viewmodel.WorkItem;\nusing VstsRestAPI.Wiki;\nusing VstsRestAPI.WorkItemAndTracking;\nusing ClassificationNodes = VstsRestAPI.WorkItemAndTracking.ClassificationNodes;\n\nnamespace VstsDemoBuilder.Services\n{\n    public class ProjectService : IProjectService\n    {\n        public static readonly object objLock = new object();\n        public static Dictionary<string, string> statusMessages;\n        public static ILog logger = LogManager.GetLogger(\"ErrorLog\");\n\n        public bool isDefaultRepoTodetele = true;\n        public string websiteUrl = string.Empty;\n        public string templateUsed = string.Empty;\n        public static string projectName = string.Empty;\n        public static AccessDetails AccessDetails = new AccessDetails();\n\n        public string templateVersion = string.Empty;\n        public static string enableExtractor = \"\";\n\n        public static async void TrackFeature(string API)\n        {\n            SimpleTrackerEnvironment simpleTrackerEnvironment = new SimpleTrackerEnvironment(Environment.OSVersion.Platform.ToString(),\n                                                                        Environment.OSVersion.Version.ToString(),\n                                                                        Environment.OSVersion.VersionString);\n            string GAKey = System.Configuration.ConfigurationManager.AppSettings[\"AnalyticsKey\"];\n            if (!string.IsNullOrEmpty(GAKey))\n            {\n                using (Tracker tracker = new Tracker(GAKey, simpleTrackerEnvironment))\n                {\n                    var response = await tracker.TrackPageViewAsync(\"My API - Create\", API);\n                    bool issuccess = response.Success;\n                }\n            }\n\n        }\n        public static Dictionary<string, string> StatusMessages\n        {\n            get\n            {\n                if (statusMessages == null)\n                {\n                    statusMessages = new Dictionary<string, string>();\n                }\n\n                return statusMessages;\n            }\n            set\n            {\n                statusMessages = value;\n            }\n        }\n        public void AddMessage(string id, string message)\n        {\n            lock (objLock)\n            {\n                if (id.EndsWith(\"_Errors\"))\n                {\n                    StatusMessages[id] = (StatusMessages.ContainsKey(id) ? StatusMessages[id] : string.Empty) + message;\n                }\n                else\n                {\n                    StatusMessages[id] = message;\n                }\n            }\n        }\n        public void RemoveKey(string id)\n        {\n            lock (objLock)\n            {\n                StatusMessages.Remove(id);\n            }\n        }\n        public JObject GetStatusMessage(string id)\n        {\n            lock (ProjectService.objLock)\n            {\n                string message = string.Empty;\n                JObject obj = new JObject();\n                if (id.EndsWith(\"_Errors\"))\n                {\n                    //RemoveKey(id);\n                    obj[\"status\"] = \"Error: \\t\" + ProjectService.StatusMessages[id];\n                }\n                if (ProjectService.StatusMessages.Keys.Count(x => x == id) == 1)\n                {\n                    obj[\"status\"] = ProjectService.StatusMessages[id];\n                }\n                else\n                {\n                    obj[\"status\"] = \"Successfully Created\";\n\n                }\n                return obj;\n            }\n        }\n\n        public HttpResponseMessage GetprojectList(string accname, string pat)\n        {\n            string defaultHost = System.Configuration.ConfigurationManager.AppSettings[\"DefaultHost\"];\n            string ProjectCreationVersion = System.Configuration.ConfigurationManager.AppSettings[\"ProjectCreationVersion\"];\n\n            Configuration config = new Configuration() { AccountName = accname, PersonalAccessToken = pat, UriString = defaultHost + accname, VersionNumber = ProjectCreationVersion };\n            Projects projects = new Projects(config);\n            HttpResponseMessage response = projects.GetListOfProjects();\n            return response;\n        }\n\n        /// <summary>\n        /// Get the path where we can file template related json files for selected template\n        /// </summary>\n        /// <param name=\"TemplateFolder\"></param>\n        /// <param name=\"TemplateName\"></param>\n        /// <param name=\"FileName\"></param>\n        public string GetJsonFilePath(bool IsPrivate, string TemplateFolder, string TemplateName, string FileName = \"\")\n        {\n            string filePath = string.Empty;\n            if (IsPrivate && !string.IsNullOrEmpty(TemplateFolder))\n            {\n                filePath = string.Format(TemplateFolder + @\"\\{0}\", FileName);\n            }\n            else\n            {\n                filePath = string.Format(HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\\" + @\"{0}\\{1}\", TemplateName, FileName);\n            }\n            return filePath;\n        }\n\n        #region Project Setup Operations\n\n        /// <summary>\n        /// start provisioning project - calls required\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"pat\"></param>\n        /// <param name=\"accountName\"></param>\n        /// <returns></returns>\n        public string[] CreateProjectEnvironment(Project model)\n        {\n            string accountName = model.accountName;\n            //if (model.IsPrivatePath)\n            //{\n            //    templateUsed = model.PrivateTemplateName;\n            //}\n            //else\n            //{\n            templateUsed = model.SelectedTemplate;\n            //}\n            logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"Project Name: \" + model.ProjectName + \"\\t Template Selected: \" + templateUsed + \"\\t Organization Selected: \" + accountName);\n            string pat = model.accessToken;\n            //define versions to be use\n            string projectCreationVersion = System.Configuration.ConfigurationManager.AppSettings[\"ProjectCreationVersion\"];\n            string repoVersion = System.Configuration.ConfigurationManager.AppSettings[\"RepoVersion\"];\n            string buildVersion = System.Configuration.ConfigurationManager.AppSettings[\"BuildVersion\"];\n            string releaseVersion = System.Configuration.ConfigurationManager.AppSettings[\"ReleaseVersion\"];\n            string wikiVersion = System.Configuration.ConfigurationManager.AppSettings[\"WikiVersion\"];\n            string boardVersion = System.Configuration.ConfigurationManager.AppSettings[\"BoardVersion\"];\n            string workItemsVersion = System.Configuration.ConfigurationManager.AppSettings[\"WorkItemsVersion\"];\n            string queriesVersion = System.Configuration.ConfigurationManager.AppSettings[\"QueriesVersion\"];\n            string endPointVersion = System.Configuration.ConfigurationManager.AppSettings[\"EndPointVersion\"];\n            string extensionVersion = System.Configuration.ConfigurationManager.AppSettings[\"ExtensionVersion\"];\n            string dashboardVersion = System.Configuration.ConfigurationManager.AppSettings[\"DashboardVersion\"];\n            string agentQueueVersion = System.Configuration.ConfigurationManager.AppSettings[\"AgentQueueVersion\"];\n            string getSourceCodeVersion = System.Configuration.ConfigurationManager.AppSettings[\"GetSourceCodeVersion\"];\n            string testPlanVersion = System.Configuration.ConfigurationManager.AppSettings[\"TestPlanVersion\"];\n            string releaseHost = System.Configuration.ConfigurationManager.AppSettings[\"ReleaseHost\"];\n            string defaultHost = System.Configuration.ConfigurationManager.AppSettings[\"DefaultHost\"];\n            string deploymentGroup = System.Configuration.ConfigurationManager.AppSettings[\"DeloymentGroup\"];\n            string graphApiVersion = System.Configuration.ConfigurationManager.AppSettings[\"GraphApiVersion\"];\n            string graphAPIHost = System.Configuration.ConfigurationManager.AppSettings[\"GraphAPIHost\"];\n            string gitHubBaseAddress = System.Configuration.ConfigurationManager.AppSettings[\"GitHubBaseAddress\"];\n            string variableGroupsApiVersion = System.Configuration.ConfigurationManager.AppSettings[\"VariableGroupsApiVersion\"];\n\n            string processTemplateId = Default.SCRUM;\n            model.Environment = new EnvironmentValues\n            {\n                serviceEndpoints = new Dictionary<string, string>(),\n                repositoryIdList = new Dictionary<string, string>(),\n                pullRequests = new Dictionary<string, string>(),\n                GitHubRepos = new Dictionary<string, string>(),\n                VariableGroups = new Dictionary<int, string>(),\n                ReposImported = new Dictionary<string, bool>()\n            };\n            ProjectTemplate template = null;\n            ProjectSettings settings = null;\n            List<WIMapData> wiMapping = new List<WIMapData>();\n            AccountMembers.Account accountMembers = new AccountMembers.Account();\n            model.accountUsersForWi = new List<string>();\n            websiteUrl = model.websiteUrl;\n            projectName = model.ProjectName;\n\n            string logWIT = System.Configuration.ConfigurationManager.AppSettings[\"LogWIT\"];\n            if (logWIT == \"true\")\n            {\n                string patBase64 = System.Configuration.ConfigurationManager.AppSettings[\"PATBase64\"];\n                string url = System.Configuration.ConfigurationManager.AppSettings[\"URL\"];\n                string projectId = System.Configuration.ConfigurationManager.AppSettings[\"PROJECTID\"];\n                string reportName = string.Format(\"{0}\", \"AzureDevOps_Analytics-DemoGenerator\");\n                IssueWI objIssue = new IssueWI();\n                objIssue.CreateReportWI(patBase64, \"4.1\", url, websiteUrl, reportName, \"\", templateUsed, projectId, model.Region);\n            }\n\n            Configuration _gitHubConfig = new Configuration() { _gitbaseAddress = gitHubBaseAddress, _gitcredential = model.GitHubToken, _mediaType = \"application/json\", _scheme = \"Bearer\" };\n\n            if (model.GitHubFork && model.GitHubToken != null)\n            {\n                GitHubImportRepo gitHubImport = new GitHubImportRepo(_gitHubConfig);\n                HttpResponseMessage userResponse = gitHubImport.GetUserDetail();\n                GitHubUserDetail userDetail = new GitHubUserDetail();\n                if (userResponse.IsSuccessStatusCode)\n                {\n                    userDetail = JsonConvert.DeserializeObject<GitHubUserDetail>(userResponse.Content.ReadAsStringAsync().Result);\n                    _gitHubConfig.userName = userDetail.login;\n                    model.GitHubUserName = userDetail.login;\n                }\n            }\n            //configuration setup\n            string _credentials = model.accessToken;\n            Configuration _projectCreationVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = projectCreationVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _releaseVersion = new Configuration() { UriString = releaseHost + accountName + \"/\", VersionNumber = releaseVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _buildVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = buildVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName, _gitbaseAddress = gitHubBaseAddress, _gitcredential = model.GitHubToken };\n            Configuration _workItemsVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = workItemsVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _queriesVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = queriesVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _boardVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = boardVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _wikiVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = wikiVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _endPointVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = endPointVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName, _gitbaseAddress = gitHubBaseAddress, _gitcredential = model.GitHubToken };\n            Configuration _extensionVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = extensionVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _dashboardVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = dashboardVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _repoVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = repoVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName, _gitbaseAddress = gitHubBaseAddress, _gitcredential = model.GitHubToken };\n\n            Configuration _getSourceCodeVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = getSourceCodeVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName, _gitbaseAddress = gitHubBaseAddress, _gitcredential = model.GitHubToken };\n            Configuration _agentQueueVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = agentQueueVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _testPlanVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = testPlanVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _deploymentGroup = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = deploymentGroup, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _graphApiVersion = new Configuration() { UriString = graphAPIHost + accountName + \"/\", VersionNumber = graphApiVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n            Configuration _variableGroupApiVersion = new Configuration() { UriString = defaultHost + accountName + \"/\", VersionNumber = variableGroupsApiVersion, PersonalAccessToken = pat, Project = model.ProjectName, AccountName = accountName };\n\n            string projTemplateFile = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, \"ProjectTemplate.json\");\n            string projectSettingsFile = string.Empty;\n            string _checkIsPrivate = string.Empty;\n            ProjectSetting setting = new ProjectSetting();\n            if (File.Exists(projTemplateFile))\n            {\n                _checkIsPrivate = File.ReadAllText(projTemplateFile);\n            }\n            if (_checkIsPrivate != \"\")\n            {\n                setting = JsonConvert.DeserializeObject<ProjectSetting>(_checkIsPrivate);\n            }\n\n            //initialize project template and settings\n            try\n            {\n                if (File.Exists(projTemplateFile))\n                {\n                    string templateItems = model.ReadJsonFile(projTemplateFile);\n                    template = JsonConvert.DeserializeObject<ProjectTemplate>(templateItems);\n                    projectSettingsFile = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.ProjectSettings);\n\n                    if (File.Exists(projectSettingsFile))\n                    {\n                        settings = JsonConvert.DeserializeObject<ProjectSettings>(model.ReadJsonFile(projectSettingsFile));\n\n                        if (!string.IsNullOrWhiteSpace(settings.type))\n                        {\n                            if (settings.type.ToLower() == TemplateType.Scrum.ToString().ToLower())\n                            {\n                                processTemplateId = Default.SCRUM;\n                            }\n                            else if (settings.type.ToLower() == TemplateType.Agile.ToString().ToLower())\n                            {\n                                processTemplateId = Default.Agile;\n                            }\n                            else if (settings.type.ToLower() == TemplateType.CMMI.ToString().ToLower())\n                            {\n                                processTemplateId = Default.CMMI;\n                            }\n                            else if (settings.type.ToLower() == TemplateType.Basic.ToString().ToLower())\n                            {\n                                processTemplateId = Default.BASIC;\n                            }\n                            else if (!string.IsNullOrEmpty(settings.id))\n                            {\n                                processTemplateId = settings.id;\n                            }\n                            else\n                            {\n                                AddMessage(model.id.ErrorId(), \"Could not recognize process template. Make sure that the exported project template is belog to standard process template or project setting file has valid process template id.\");\n                                StatusMessages[model.id] = \"100\";\n                                return new string[] { model.id, accountName, templateUsed };\n                            }\n                        }\n                        else\n                        {\n                            settings.type = \"scrum\";\n                            processTemplateId = Default.SCRUM;\n                        }\n                    }\n                }\n                else\n                {\n                    AddMessage(model.id.ErrorId(), \"Project Template not found\");\n                    StatusMessages[model.id] = \"100\";\n                    return new string[] { model.id, accountName, templateUsed };\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            //create team project\n            string jsonProject = model.ReadJsonFile(HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\\" + \"CreateProject.json\");\n            jsonProject = jsonProject.Replace(\"$projectName$\", model.ProjectName).Replace(\"$processTemplateId$\", processTemplateId);\n\n            Projects proj = new Projects(_projectCreationVersion);\n            string projectID = proj.CreateTeamProject(jsonProject);\n\n            if (projectID == \"-1\")\n            {\n                if (!string.IsNullOrEmpty(proj.LastFailureMessage))\n                {\n                    if (proj.LastFailureMessage.Contains(\"TF400813\"))\n                    {\n                        AddMessage(model.id, \"OAUTHACCESSDENIED\");\n                    }\n                    else if (proj.LastFailureMessage.Contains(\"TF50309\"))\n                    {\n                        AddMessage(model.id.ErrorId(), proj.LastFailureMessage);\n                    }\n                    else\n                    {\n                        AddMessage(model.id.ErrorId(), proj.LastFailureMessage);\n                    }\n                }\n                Thread.Sleep(2000); // Adding Delay to Get Error message\n                return new string[] { model.id, accountName, templateUsed };\n            }\n            else\n            {\n                AddMessage(model.id, string.Format(\"Project {0} created\", model.ProjectName));\n            }\n            // waiting to add first message\n            Thread.Sleep(2000);\n\n            //Check for project state \n            Stopwatch watch = new Stopwatch();\n            watch.Start();\n            string projectStatus = string.Empty;\n            Projects objProject = new Projects(_projectCreationVersion);\n            while (projectStatus.ToLower() != \"wellformed\")\n            {\n                projectStatus = objProject.GetProjectStateByName(model.ProjectName);\n                if (watch.Elapsed.Minutes >= 5)\n                {\n                    return new string[] { model.id, accountName, templateUsed };\n                }\n            }\n            watch.Stop();\n\n            //get project id after successfull in VSTS\n            model.Environment.ProjectId = objProject.GetProjectIdByName(model.ProjectName);\n            model.Environment.ProjectName = model.ProjectName;\n\n            // Fork Repo\n            if (model.GitHubFork && model.GitHubToken != null)\n            {\n                ForkGitHubRepository(model, _gitHubConfig);\n            }\n\n            //Add user as project admin\n            bool isAdded = AddUserToProject(_graphApiVersion, model);\n            if (isAdded)\n            {\n                AddMessage(model.id, string.Format(\"Added user {0} as project admin \", model.Email));\n            }\n\n            //Install required extensions\n            if (!model.IsApi && model.isExtensionNeeded && model.isAgreeTerms)\n            {\n                bool isInstalled = InstallExtensions(model, model.accountName, model.accessToken);\n                Thread.Sleep(1000);\n                if (isInstalled) { AddMessage(model.id, \"Required extensions are installed\"); }\n            }\n\n            //current user Details\n            string teamName = model.ProjectName + \" team\";\n            TeamMemberResponse.TeamMembers teamMembers = GetTeamMembers(model.ProjectName, teamName, _projectCreationVersion, model.id);\n\n            var teamMember = teamMembers.value != null ? teamMembers.value.FirstOrDefault() : new TeamMemberResponse.Value();\n\n            if (teamMember != null)\n            {\n                model.Environment.UserUniquename = model.Environment.UserUniquename ?? teamMember.identity.uniqueName;\n            }\n            if (teamMember != null)\n            {\n                model.Environment.UserUniqueId = model.Environment.UserUniqueId ?? teamMember.identity.id;\n            }\n            //model.Environment.UserUniqueId = model.Email;\n            //model.Environment.UserUniquename = model.Email;\n            //update board columns and rows\n            // Checking for template version\n            string projectTemplate = File.ReadAllText(GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, \"ProjectTemplate.json\"));\n\n            if (!string.IsNullOrEmpty(projectTemplate))\n            {\n                JObject jObject = JsonConvert.DeserializeObject<JObject>(projectTemplate);\n                templateVersion = jObject[\"TemplateVersion\"] == null ? string.Empty : jObject[\"TemplateVersion\"].ToString();\n            }\n            if (templateVersion != \"2.0\")\n            {\n                UpdateIterations(model, _boardVersion, \"Iterations.json\");\n                //create teams\n                CreateTeams(model, template.Teams, _projectCreationVersion, model.id, template.TeamArea);\n\n                // for older templates\n                string projectSetting = File.ReadAllText(GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, \"ProjectSettings.json\"));\n                // File.ReadAllText( Path.Combine(templatesFolder + templateUsed, \"ProjectSettings.json\"));\n                JObject projectObj = JsonConvert.DeserializeObject<JObject>(projectSetting);\n                string processType = projectObj[\"type\"] == null ? string.Empty : projectObj[\"type\"].ToString();\n                string boardType = string.Empty;\n                if (processType == \"\" || processType == \"Scrum\")\n                {\n                    processType = \"Scrum\";\n                    boardType = \"Backlog%20items\";\n                }\n                else if (processType == \"Basic\")\n                {\n                    boardType = \"Issue\";\n                }\n                else\n                {\n                    boardType = \"Stories\";\n                }\n                BoardColumn objBoard = new BoardColumn(_boardVersion);\n                string updateSwimLanesJSON = \"\";\n                if (template.BoardRows != null)\n                {\n                    updateSwimLanesJSON = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.BoardRows);\n                    // Path.Combine(templatesFolder + templateUsed, template.BoardRows);\n                    SwimLanes objSwimLanes = new SwimLanes(_boardVersion);\n                    if (File.Exists(updateSwimLanesJSON))\n                    {\n                        updateSwimLanesJSON = File.ReadAllText(updateSwimLanesJSON);\n                        bool isUpdated = objSwimLanes.UpdateSwimLanes(updateSwimLanesJSON, model.ProjectName, boardType, model.ProjectName + \" Team\");\n                    }\n                }\n                if (template.SetEpic != null)\n                {\n                    string team = model.ProjectName + \" Team\";\n                    string json = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.SetEpic);\n                    //string.Format(templatesFolder + @\"{0}\\{1}\", templateUsed, template.SetEpic);\n                    if (File.Exists(json))\n                    {\n                        json = model.ReadJsonFile(json);\n                        EnableEpic(model, json, _boardVersion, model.id, team);\n                    }\n                }\n\n                if (template.BoardColumns != null)\n                {\n                    string team = model.ProjectName + \" Team\";\n                    string json = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.BoardColumns);\n                    //string.Format(templatesFolder + @\"{0}\\{1}\", templateUsed, template.BoardColumns);\n                    if (File.Exists(json))\n                    {\n                        json = model.ReadJsonFile(json);\n                        bool success = UpdateBoardColumn(model, json, _boardVersion, model.id, boardType, team);\n                        if (success)\n                        {\n                            //update Card Fields\n                            if (template.CardField != null)\n                            {\n                                string cardFieldJson = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.CardField);\n                                //string.Format(templatesFolder + @\"{0}\\{1}\", templateUsed, template.CardField);\n                                if (File.Exists(cardFieldJson))\n                                {\n                                    cardFieldJson = model.ReadJsonFile(cardFieldJson);\n                                    UpdateCardFields(model, cardFieldJson, _boardVersion, model.id, boardType, model.ProjectName + \" Team\");\n                                }\n                            }\n                            //Update card styles\n                            if (template.CardStyle != null)\n                            {\n                                string cardStyleJson = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.CardStyle);\n                                //string.Format(templatesFolder + @\"{0}\\{1}\", templateUsed, template.CardStyle);\n                                if (File.Exists(cardStyleJson))\n                                {\n                                    cardStyleJson = model.ReadJsonFile(cardStyleJson);\n                                    UpdateCardStyles(model, cardStyleJson, _boardVersion, model.id, boardType, model.ProjectName + \" Team\");\n                                }\n                            }\n                            //Enable Epic Backlog\n                            AddMessage(model.id, \"Board-Column, Swimlanes, Styles updated\");\n                        }\n                    }\n                }\n\n                //update sprint dates\n                UpdateSprintItems(model, _boardVersion, settings);\n                RenameIterations(model, _boardVersion, settings.renameIterations);\n            }\n            else\n            {\n                UpdateIterations(model, _boardVersion, \"Iterations.json\");\n                // for newer version of templates\n                string teamsJsonPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, \"Teams\\\\Teams.json\");\n                // Path.Combine(templatesFolder + templateUsed, \"Teams\\\\Teams.json\");\n                if (File.Exists(teamsJsonPath))\n                {\n                    template.Teams = \"Teams\\\\Teams.json\";\n                    template.TeamArea = \"TeamArea.json\";\n                    CreateTeams(model, template.Teams, _projectCreationVersion, model.id, template.TeamArea);\n                    string jsonTeams = model.ReadJsonFile(teamsJsonPath);\n                    JArray jTeams = JsonConvert.DeserializeObject<JArray>(jsonTeams);\n                    JContainer teamsParsed = JsonConvert.DeserializeObject<JContainer>(jsonTeams);\n                    _buildVersion.ProjectId = model.Environment.ProjectId;\n                    foreach (var jteam in jTeams)\n                    {\n                        string _teamName = string.Empty;\n                        string isDefault = jteam[\"isDefault\"] != null ? jteam[\"isDefault\"].ToString() : string.Empty;\n                        if (isDefault == \"true\")\n                        {\n                            _teamName = model.ProjectName + \" Team\";\n                        }\n                        else\n                        {\n                            _teamName = jteam[\"name\"].ToString();\n                        }\n                        string teamFolderPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"Teams\\\" + jteam[\"name\"].ToString());\n                        // Path.Combine(templatesFolder + templateUsed, \"Teams\", jteam[\"name\"].ToString());\n                        if (Directory.Exists(teamFolderPath))\n                        {\n                            BoardColumn objBoard = new BoardColumn(_boardVersion);\n\n                            // updating swimlanes for each teams each board(epic, feature, PBI, Stories) \n                            string updateSwimLanesJSON = \"\";\n                            SwimLanes objSwimLanes = new SwimLanes(_boardVersion);\n                            template.BoardRows = \"BoardRows.json\";\n                            updateSwimLanesJSON = Path.Combine(teamFolderPath, template.BoardRows);\n                            if (File.Exists(updateSwimLanesJSON))\n                            {\n                                updateSwimLanesJSON = File.ReadAllText(updateSwimLanesJSON);\n                                List<ImportBoardRows.Rows> importRows = JsonConvert.DeserializeObject<List<ImportBoardRows.Rows>>(updateSwimLanesJSON);\n                                foreach (var board in importRows)\n                                {\n                                    bool isUpdated = objSwimLanes.UpdateSwimLanes(JsonConvert.SerializeObject(board.value), model.ProjectName, board.BoardName, _teamName);\n                                }\n                            }\n\n                            // updating team setting for each team\n                            string teamSettingJson = \"\";\n                            template.SetEpic = \"TeamSetting.json\";\n                            teamSettingJson = Path.Combine(teamFolderPath, template.SetEpic);\n                            if (File.Exists(teamSettingJson))\n                            {\n                                teamSettingJson = File.ReadAllText(teamSettingJson);\n                                EnableEpic(model, teamSettingJson, _boardVersion, model.id, _teamName);\n                            }\n\n                            // updating board columns for each teams each board\n                            string teamBoardColumns = \"\";\n                            template.BoardColumns = \"BoardColumns.json\";\n                            teamBoardColumns = Path.Combine(teamFolderPath, template.BoardColumns);\n                            if (File.Exists(teamBoardColumns))\n                            {\n                                teamBoardColumns = File.ReadAllText(teamBoardColumns);\n                                List<ImportBoardColumns.ImportBoardCols> importBoardCols = JsonConvert.DeserializeObject<List<ImportBoardColumns.ImportBoardCols>>(teamBoardColumns);\n                                foreach (var board in importBoardCols)\n                                {\n                                    bool success = UpdateBoardColumn(model, JsonConvert.SerializeObject(board.value, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }), _boardVersion, model.id, board.BoardName, _teamName);\n                                }\n                            }\n\n                            // updating card fields for each team and each board\n                            try\n                            {\n                                string teamCardFields = \"\";\n                                template.CardField = \"CardFields.json\";\n                                teamCardFields = Path.Combine(teamFolderPath, template.CardField);\n                                if (File.Exists(teamCardFields))\n                                {\n                                    teamCardFields = File.ReadAllText(teamCardFields);\n                                    List<ImportCardFields.CardFields> cardFields = new List<ImportCardFields.CardFields>();\n                                    cardFields = JsonConvert.DeserializeObject<List<ImportCardFields.CardFields>>(teamCardFields);\n                                    foreach (var card in cardFields)\n                                    {\n                                        UpdateCardFields(model, JsonConvert.SerializeObject(card, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore }), _boardVersion, model.id, card.BoardName, _teamName);\n                                    }\n                                }\n                            }\n                            catch (Exception ex)\n                            {\n\n                            }\n                            // updating card styles for each team and each board\n                            string teamCardStyle = \"\";\n                            template.CardStyle = \"CardStyles.json\";\n                            teamCardStyle = Path.Combine(teamFolderPath, template.CardStyle);\n                            if (File.Exists(teamCardStyle))\n                            {\n                                teamCardStyle = File.ReadAllText(teamCardStyle);\n                                List<CardStyle.Style> cardStyles = new List<CardStyle.Style>();\n                                cardStyles = JsonConvert.DeserializeObject<List<CardStyle.Style>>(teamCardStyle);\n                                foreach (var cardStyle in cardStyles)\n                                {\n                                    if (cardStyle.rules.fill != null)\n                                    {\n                                        UpdateCardStyles(model, JsonConvert.SerializeObject(cardStyle), _boardVersion, model.id, cardStyle.BoardName, _teamName);\n                                    }\n                                }\n                            }\n\n                            template.IncludeSubAreas = \"IncludeSubAreas.json\";\n                            string includeSubArea = Path.Combine(teamFolderPath, template.IncludeSubAreas);\n                            if (File.Exists(includeSubArea))\n                            {\n                                Teams objTeam = new Teams(_boardVersion);\n                                TeamResponse teamRes = objTeam.GetTeamByName(model.ProjectName, _teamName);\n                                _boardVersion.ProjectId = model.Environment.ProjectId;\n\n                                includeSubArea = File.ReadAllText(includeSubArea);\n                                IncludeSubAreas.Root subAreas = JsonConvert.DeserializeObject<IncludeSubAreas.Root>(includeSubArea);\n\n                                subAreas.defaultValue = model.Environment.ProjectName;\n                                subAreas.values.FirstOrDefault().includeChildren = true;\n                                subAreas.values.FirstOrDefault().value = model.Environment.ProjectName;\n\n                                BoardColumn board = new BoardColumn(_boardVersion);\n                                board.IncludeSubAreas(JsonConvert.SerializeObject(subAreas), _boardVersion, teamRes);\n                            }\n                        }\n                        AddMessage(model.id, \"Board-Column, Swimlanes, Styles updated\");\n                    }\n                    UpdateSprintItems(model, _boardVersion, settings);\n\n                    RenameIterations(model, _boardVersion, settings.renameIterations);\n                }\n            }\n            //Create Deployment Group\n            //CreateDeploymentGroup(templatesFolder, model, _deploymentGroup);\n\n            //create service endpoint\n            List<string> listEndPointsJsonPath = new List<string>();\n            string serviceEndPointsPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"ServiceEndpoints\");\n            if (Directory.Exists(serviceEndPointsPath))\n            {\n                Directory.GetFiles(serviceEndPointsPath).ToList().ForEach(i => listEndPointsJsonPath.Add(i));\n            }\n            CreateServiceEndPoint(model, listEndPointsJsonPath, _endPointVersion);\n            //create agent queues on demand\n            Queue queue = new Queue(_agentQueueVersion);\n            model.Environment.AgentQueues = queue.GetQueues();\n            if (settings.queues != null && settings.queues.Count > 0)\n            {\n                foreach (string aq in settings.queues)\n                {\n                    if (model.Environment.AgentQueues.ContainsKey(aq))\n                    {\n                        continue;\n                    }\n\n                    var id = queue.CreateQueue(aq);\n                    if (id > 0)\n                    {\n                        model.Environment.AgentQueues[aq] = id;\n                    }\n                }\n            }\n\n            //import source code from GitHub\n            List<string> listImportSourceCodeJsonPaths = new List<string>();\n            string importSourceCodePath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\ImportSourceCode\");\n            //templatesFolder + templateUsed + @\"\\ImportSourceCode\";\n            if (Directory.Exists(importSourceCodePath))\n            {\n                Directory.GetFiles(importSourceCodePath).ToList().ForEach(i => listImportSourceCodeJsonPaths.Add(i));\n                if (listImportSourceCodeJsonPaths.Contains(importSourceCodePath + \"\\\\GitRepository.json\"))\n                {\n                    listImportSourceCodeJsonPaths.Remove(importSourceCodePath + \"\\\\GitRepository.json\");\n                }\n            }\n            foreach (string importSourceCode in listImportSourceCodeJsonPaths)\n            {\n                ImportSourceCode(model, importSourceCode, _repoVersion, model.id, _getSourceCodeVersion);\n            }\n            if (isDefaultRepoTodetele)\n            {\n                Repository objRepository = new Repository(_repoVersion);\n                string repositoryToDelete = objRepository.GetRepositoryToDelete(model.ProjectName);\n                bool isDeleted = objRepository.DeleteRepository(repositoryToDelete);\n            }\n\n            //Create Pull request\n            Thread.Sleep(10000); //Adding delay to wait for the repository to create and import from the source\n\n            //Create WIKI\n            CreateProjetWiki(HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\\", model, _wikiVersion);\n            CreateCodeWiki(model, _wikiVersion);\n\n            List<string> listPullRequestJsonPaths = new List<string>();\n            string pullRequestFolder = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\PullRequests\");\n            //templatesFolder + templateUsed + @\"\\PullRequests\";\n            if (Directory.Exists(pullRequestFolder))\n            {\n                Directory.GetFiles(pullRequestFolder).ToList().ForEach(i => listPullRequestJsonPaths.Add(i));\n            }\n            foreach (string pullReq in listPullRequestJsonPaths)\n            {\n                CreatePullRequest(model, pullReq, _workItemsVersion);\n            }\n\n            //Configure account users\n            if (model.UserMethod == \"Select\")\n            {\n                model.selectedUsers = model.selectedUsers.TrimEnd(',');\n                model.accountUsersForWi = model.selectedUsers.Split(',').ToList();\n            }\n            else if (model.UserMethod == \"Random\")\n            {\n                //GetAccount Members\n                VstsRestAPI.ProjectsAndTeams.Accounts objAccount = new VstsRestAPI.ProjectsAndTeams.Accounts(_projectCreationVersion);\n                //accountMembers = objAccount.GetAccountMembers(accountName, AccessToken);\n                foreach (var member in accountMembers.value)\n                {\n                    model.accountUsersForWi.Add(member.member.mailAddress);\n                }\n            }\n            Dictionary<string, string> workItems = new Dictionary<string, string>();\n\n            if (templateVersion != \"2.0\")\n            {\n\n                //import work items\n                string featuresFilePath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.FeaturefromTemplate == null ? string.Empty : template.FeaturefromTemplate);\n                // Path.Combine(templatesFolder + templateUsed, template.FeaturefromTemplate == null ? string.Empty : template.FeaturefromTemplate);\n                string productBackLogPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.PBIfromTemplate == null ? string.Empty : template.PBIfromTemplate);\n                // Path.Combine(templatesFolder + templateUsed, template.PBIfromTemplate == null ? string.Empty : template.PBIfromTemplate);\n                string taskPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.TaskfromTemplate == null ? string.Empty : template.TaskfromTemplate);\n                // Path.Combine(templatesFolder + templateUsed, template.TaskfromTemplate == null ? string.Empty : template.TaskfromTemplate);\n                string testCasePath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.TestCasefromTemplate == null ? string.Empty : template.TestCasefromTemplate);\n                // Path.Combine(templatesFolder + templateUsed, template.TestCasefromTemplate == null ? string.Empty : template.TestCasefromTemplate);\n                string bugPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.BugfromTemplate == null ? string.Empty : template.BugfromTemplate);\n                // Path.Combine(templatesFolder + templateUsed, template.BugfromTemplate == null ? string.Empty : template.BugfromTemplate);\n                string epicPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.EpicfromTemplate == null ? string.Empty : template.EpicfromTemplate);\n                // Path.Combine(templatesFolder + templateUsed, template.EpicfromTemplate == null ? string.Empty : template.EpicfromTemplate);\n                string userStoriesPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.UserStoriesFromTemplate == null ? string.Empty : template.UserStoriesFromTemplate);\n                // Path.Combine(templatesFolder + templateUsed, template.UserStoriesFromTemplate == null ? string.Empty : template.UserStoriesFromTemplate);\n                string testPlansPath = string.Empty;\n                string testSuitesPath = string.Empty;\n                if (templateUsed.ToLower() == \"myshuttle2\")\n                {\n                    testPlansPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.TestPlanfromTemplate);\n                    // Path.Combine(templatesFolder + templateUsed, template.TestPlanfromTemplate);\n                    testSuitesPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.TestSuitefromTemplate);\n                    // Path.Combine(templatesFolder + templateUsed, template.TestSuitefromTemplate);\n                }\n\n                if (templateUsed.ToLower() == \"myshuttle\")\n                {\n                    testPlansPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.TestPlanfromTemplate);\n                    // Path.Combine(templatesFolder + templateUsed, template.TestPlanfromTemplate);\n                    testSuitesPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, template.TestSuitefromTemplate);\n                    // Path.Combine(templatesFolder + templateUsed, template.TestSuitefromTemplate);\n                }\n\n                if (File.Exists(featuresFilePath))\n                {\n                    workItems.Add(\"Feature\", model.ReadJsonFile(featuresFilePath));\n                }\n\n                if (File.Exists(productBackLogPath))\n                {\n                    workItems.Add(\"Product Backlog Item\", model.ReadJsonFile(productBackLogPath));\n                }\n\n                if (File.Exists(taskPath))\n                {\n                    workItems.Add(\"Task\", model.ReadJsonFile(taskPath));\n                }\n\n                if (File.Exists(testCasePath))\n                {\n                    workItems.Add(\"Test Case\", model.ReadJsonFile(testCasePath));\n                }\n\n                if (File.Exists(bugPath))\n                {\n                    workItems.Add(\"Bug\", model.ReadJsonFile(bugPath));\n                }\n\n                if (File.Exists(userStoriesPath))\n                {\n                    workItems.Add(\"User Story\", model.ReadJsonFile(userStoriesPath));\n                }\n\n                if (File.Exists(epicPath))\n                {\n                    workItems.Add(\"Epic\", model.ReadJsonFile(epicPath));\n                }\n\n                if (File.Exists(testPlansPath))\n                {\n                    workItems.Add(\"Test Plan\", model.ReadJsonFile(testPlansPath));\n                }\n\n                if (File.Exists(testSuitesPath))\n                {\n                    workItems.Add(\"Test Suite\", model.ReadJsonFile(testSuitesPath));\n                }\n            }\n            //// Modified Work Item import logic\n            else\n            {\n                string _WitPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\WorkItems\");\n                //Path.Combine(templatesFolder + templateUsed + \"\\\\WorkItems\");\n                if (Directory.Exists(_WitPath))\n                {\n                    string[] workItemFilePaths = Directory.GetFiles(_WitPath);\n                    if (workItemFilePaths.Length > 0)\n                    {\n                        foreach (var workItem in workItemFilePaths)\n                        {\n                            string[] workItemPatSplit = workItem.Split('\\\\');\n                            if (workItemPatSplit.Length > 0)\n                            {\n                                string workItemName = workItemPatSplit[workItemPatSplit.Length - 1];\n                                if (!string.IsNullOrEmpty(workItemName))\n                                {\n                                    string[] nameExtension = workItemName.Split('.');\n                                    string name = nameExtension[0];\n                                    if (!workItems.ContainsKey(name))\n                                    {\n                                        workItems.Add(name, model.ReadJsonFile(workItem));\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n\n            ImportWorkItems import = new ImportWorkItems(_workItemsVersion, model.Environment.BoardRowFieldName);\n            if (File.Exists(projectSettingsFile))\n            {\n                string attchmentFilesFolder = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\WorkItemAttachments\");\n                //string.Format(templatesFolder + @\"{0}\\WorkItemAttachments\", templateUsed);\n                if (listPullRequestJsonPaths.Count > 0)\n                {\n                    if (templateUsed == \"MyHealthClinic\")\n                    {\n                        wiMapping = import.ImportWorkitems(workItems, model.ProjectName, model.Environment.UserUniquename, model.ReadJsonFile(projectSettingsFile), attchmentFilesFolder, model.Environment.repositoryIdList.ContainsKey(\"MyHealthClinic\") ? model.Environment.repositoryIdList[\"MyHealthClinic\"] : string.Empty, model.Environment.ProjectId, model.Environment.pullRequests, model.UserMethod, model.accountUsersForWi, templateUsed);\n                    }\n                    else if (templateUsed == \"SmartHotel360\")\n                    {\n                        wiMapping = import.ImportWorkitems(workItems, model.ProjectName, model.Environment.UserUniquename, model.ReadJsonFile(projectSettingsFile), attchmentFilesFolder, model.Environment.repositoryIdList.ContainsKey(\"PublicWeb\") ? model.Environment.repositoryIdList[\"PublicWeb\"] : string.Empty, model.Environment.ProjectId, model.Environment.pullRequests, model.UserMethod, model.accountUsersForWi, templateUsed);\n                    }\n                    else\n                    {\n                        wiMapping = import.ImportWorkitems(workItems, model.ProjectName, model.Environment.UserUniquename, model.ReadJsonFile(projectSettingsFile), attchmentFilesFolder, model.Environment.repositoryIdList.ContainsKey(templateUsed) ? model.Environment.repositoryIdList[templateUsed] : string.Empty, model.Environment.ProjectId, model.Environment.pullRequests, model.UserMethod, model.accountUsersForWi, templateUsed);\n                    }\n                }\n                else\n                {\n                    wiMapping = import.ImportWorkitems(workItems, model.ProjectName, model.Environment.UserUniquename, model.ReadJsonFile(projectSettingsFile), attchmentFilesFolder, string.Empty, model.Environment.ProjectId, model.Environment.pullRequests, model.UserMethod, model.accountUsersForWi, templateUsed);\n                }\n                AddMessage(model.id, \"Work Items created\");\n            }\n            //Creat TestPlans and TestSuites\n            List<string> listTestPlansJsonPaths = new List<string>();\n            string testPlansFolder = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\TestPlans\");\n            //templatesFolder + templateUsed + @\"\\TestPlans\";\n            if (Directory.Exists(testPlansFolder))\n            {\n                Directory.GetFiles(testPlansFolder).ToList().ForEach(i => listTestPlansJsonPaths.Add(i));\n            }\n            foreach (string testPlan in listTestPlansJsonPaths)\n            {\n                CreateTestManagement(wiMapping, model, testPlan, _testPlanVersion);\n            }\n            if (listTestPlansJsonPaths.Count > 0)\n            {\n                //AddMessage(model.id, \"TestPlans, TestSuites and TestCases created\");\n            }\n            // create varibale groups\n\n            CreateVaribaleGroups(model, _variableGroupApiVersion);\n            // create delivery plans\n            CreateDeliveryPlans(model, _workItemsVersion);\n            //create build Definition\n            string buildDefinitionsPath = string.Empty;\n            model.BuildDefinitions = new List<BuildDef>();\n            // if the template is private && agreed to GitHubFork && GitHub Token is not null\n            if (setting.IsPrivate == \"true\" && model.GitHubFork && !string.IsNullOrEmpty(model.GitHubToken))\n            {\n                buildDefinitionsPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\BuildDefinitions\");\n                if (Directory.Exists(buildDefinitionsPath))\n                {\n                    Directory.GetFiles(buildDefinitionsPath, \"*.json\", SearchOption.AllDirectories).ToList().ForEach(i => model.BuildDefinitions.Add(new BuildDef() { FilePath = i }));\n                }\n                buildDefinitionsPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\BuildDefinitionGitHub\");\n                if (Directory.Exists(buildDefinitionsPath))\n                {\n                    Directory.GetFiles(buildDefinitionsPath, \"*.json\", SearchOption.AllDirectories).ToList().ForEach(i => model.BuildDefinitions.Add(new BuildDef() { FilePath = i }));\n                }\n            }\n            // if the template is private && not agreed to GitHubFork && GitHub Token is null\n            else if (setting.IsPrivate == \"true\" && !model.GitHubFork && string.IsNullOrEmpty(model.GitHubToken))\n            {\n                buildDefinitionsPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\BuildDefinitions\");\n                if (Directory.Exists(buildDefinitionsPath))\n                {\n                    Directory.GetFiles(buildDefinitionsPath, \"*.json\", SearchOption.AllDirectories).ToList().ForEach(i => model.BuildDefinitions.Add(new BuildDef() { FilePath = i }));\n                }\n            }\n            // if the template is not private && agreed to GitHubFork && GitHub Token is not null\n            else if (string.IsNullOrEmpty(setting.IsPrivate) && model.GitHubFork && !string.IsNullOrEmpty(model.GitHubToken))\n            {\n                buildDefinitionsPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\BuildDefinitionGitHub\");\n                if (Directory.Exists(buildDefinitionsPath))\n                {\n                    Directory.GetFiles(buildDefinitionsPath, \"*.json\", SearchOption.AllDirectories).ToList().ForEach(i => model.BuildDefinitions.Add(new BuildDef() { FilePath = i }));\n                }\n            }\n            // if the template is not private && not agreed to GitHubFork && GitHub Token is null\n            else if (string.IsNullOrEmpty(setting.IsPrivate) && !model.GitHubFork && string.IsNullOrEmpty(model.GitHubToken))\n            {\n                buildDefinitionsPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\BuildDefinitions\");\n                if (Directory.Exists(buildDefinitionsPath))\n                {\n                    Directory.GetFiles(buildDefinitionsPath, \"*.json\", SearchOption.AllDirectories).ToList().ForEach(i => model.BuildDefinitions.Add(new BuildDef() { FilePath = i }));\n                }\n            }\n            bool isBuild = CreateBuildDefinition(model, _buildVersion, model.id);\n            if (isBuild)\n            {\n                AddMessage(model.id, \"Build definition created\");\n            }\n\n            //Queue a Build\n            string buildJson = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, \"QueueBuild.json\");\n            //string.Format(templatesFolder + @\"{0}\\QueueBuild.json\", templateUsed);\n            if (File.Exists(buildJson))\n            {\n                QueueABuild(model, buildJson, _buildVersion);\n            }\n\n            //create release Definition\n            string releaseDefinitionsPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\ReleaseDefinitions\");\n            //templatesFolder + templateUsed + @\"\\ReleaseDefinitions\";\n            model.ReleaseDefinitions = new List<ReleaseDef>();\n            if (Directory.Exists(releaseDefinitionsPath))\n            {\n                Directory.GetFiles(releaseDefinitionsPath, \"*.json\", SearchOption.AllDirectories).ToList().ForEach(i => model.ReleaseDefinitions.Add(new Models.ReleaseDef() { FilePath = i }));\n            }\n            bool isReleased = CreateReleaseDefinition(model, _releaseVersion, model.id, teamMembers);\n            if (isReleased)\n            {\n                AddMessage(model.id, \"Release definition created\");\n            }\n\n            //Create Branch Policy\n            bool isBuildPolicyCreated = CreateBranchPolicy(model,_buildVersion);\n            if (isBuildPolicyCreated)\n            {\n                AddMessage(model.id, \"Branch Policy created\");\n            }\n\n            //Create query and widgets\n            List<string> listDashboardQueriesPath = new List<string>();\n            string dashboardPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\Dashboard\");\n            List<string> dashboardDirectories = new List<string>();\n            if (Directory.Exists(dashboardPath))\n            {\n                dashboardDirectories = Directory.GetDirectories(dashboardPath).ToList();\n            }\n            teamName = string.Empty;\n            if (dashboardDirectories.Count > 0)\n            {\n                foreach (string dashboardDirectory in dashboardDirectories)\n                {\n                    if (Path.GetFileName(dashboardDirectory) == \"Queries\")\n                    {\n                        teamName = null;\n                    }\n                    else\n                    {\n                        teamName = Path.GetFileName(dashboardDirectory);\n                    }\n                    string dashboardQueryPath = string.Empty;\n                    dashboardQueryPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\Dashboard\\Queries\");\n                    if(teamName != null)\n                    {\n                        dashboardQueryPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, $\"\\\\Dashboard\\\\{teamName}\\\\Queries\");\n                    }\n                    if (Directory.Exists(dashboardQueryPath))\n                    {\n                        listDashboardQueriesPath = Directory.GetFiles(dashboardQueryPath).ToList();\n                        if (listDashboardQueriesPath.Count > 0)\n                        {\n                            CreateQueryAndWidgets(model, listDashboardQueriesPath, _queriesVersion, _dashboardVersion, _releaseVersion, _projectCreationVersion, _boardVersion,teamName);\n                        }\n                    }\n                }\n                AddMessage(model.id, \"Queries, Widgets and Charts created\");\n            }\n            StatusMessages[model.id] = \"100\";\n            return new string[] { model.id, accountName, templateUsed };\n        }\n\n        private bool CreateBranchPolicy(Project model, Configuration buildConfig)\n        {\n            bool isBranchPolicyCreated = false;\n            try\n            {\n                string branchPolicyPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\BranchPolicy\");\n                List<string> branchPolicyPaths = new List<string>();\n                if (Directory.Exists(branchPolicyPath))\n                {\n                    Directory.GetFiles(branchPolicyPath, \"*.json\", SearchOption.AllDirectories).ToList().ForEach(i => branchPolicyPaths.Add(i));\n                }\n                BuildandReleaseDefs objBuild = new BuildandReleaseDefs(buildConfig);\n                List<JObject> buildDefsList = objBuild.ExportBuildDefinitions();\n                if (buildDefsList!=null && buildDefsList.Count > 0)\n                {\n                    int buildDefId = 0;\n                    foreach(JObject buildDef in buildDefsList)\n                    {\n                        var yamalfilename = buildDef[\"process\"][\"yamlFilename\"];\n                        if (yamalfilename!=null && !string.IsNullOrEmpty(yamalfilename.ToString()))\n                        {\n                            buildDefId = Convert.ToInt32(buildDef[\"id\"]);\n                        }\n                    }\n                    BranchPolicyTypes.PolicyTypes policyTypes = objBuild.GetPolicyTypes();\n                    if (policyTypes != null)\n                    {\n                        if(branchPolicyPaths.Count > 0)\n                        {\n                            foreach (string branchPolicyJsonPath in branchPolicyPaths)\n                            {\n                                string policyJson = File.ReadAllText(branchPolicyJsonPath);\n                                if (!string.IsNullOrEmpty(policyJson))\n                                {\n                                    BranchPolicy.Policy branchPolicy = JsonConvert.DeserializeObject<BranchPolicy.Policy>(policyJson);\n                                    if (branchPolicy != null)\n                                    {\n                                        string policyTypeId = policyTypes.value.Where(x => x.displayName == branchPolicy.type.displayName).Select(x => x.id).FirstOrDefault();\n                                        string policyUrl = policyTypes.value.Where(x => x.displayName == branchPolicy.type.displayName).Select(x => x.url).FirstOrDefault();\n                                        policyJson = policyJson.Replace(\"$policyTypeId$\", policyTypeId).Replace(\"$policyTypeUrl$\", policyUrl);\n                                        foreach (string repository in model.Environment.repositoryIdList.Keys)\n                                        {\n                                            string placeHolder = string.Format(\"${0}$\", repository.ToLower());\n                                            policyJson = policyJson.Replace(placeHolder, model.Environment.repositoryIdList[repository]);\n                                        }\n                                        policyJson = policyJson.Replace(\"$buildDefId$\", buildDefId.ToString());\n                                        bool isBuildPolicyCreated = objBuild.CreateBranchPolicy(policyJson, model.ProjectName);\n                                    }\n                                }\n                            }\n                            isBranchPolicyCreated = true;\n                        }\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while creating branch policy : \"+ex.Message);\n            }\n            return isBranchPolicyCreated;\n        }\n\n        private void ForkGitHubRepository(Project model, Configuration _gitHubConfig)\n        {\n            try\n            {\n                List<string> listRepoFiles = new List<string>();\n                string repoFilePath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, @\"\\ImportSourceCode\\GitRepository.json\");\n                if (File.Exists(repoFilePath))\n                {\n                    string readRepoFile = model.ReadJsonFile(repoFilePath);\n                    if (!string.IsNullOrEmpty(readRepoFile))\n                    {\n                        ForkRepos.Fork forkRepos = new ForkRepos.Fork();\n                        forkRepos = JsonConvert.DeserializeObject<ForkRepos.Fork>(readRepoFile);\n                        if (forkRepos.repositories != null && forkRepos.repositories.Count > 0)\n                        {\n                            foreach (var repo in forkRepos.repositories)\n                            {\n                                GitHubImportRepo user = new GitHubImportRepo(_gitHubConfig);\n                                GitHubUserDetail userDetail = new GitHubUserDetail();\n                                GitHubRepoResponse.RepoCreated GitHubRepo = new GitHubRepoResponse.RepoCreated();\n                                //HttpResponseMessage listForks = user.ListForks(repo.fullName);\n                                HttpResponseMessage forkResponse = user.ForkRepo(repo.fullName);\n                                if (forkResponse.IsSuccessStatusCode)\n                                {\n                                    string forkedRepo = forkResponse.Content.ReadAsStringAsync().Result;\n                                    dynamic fr = JsonConvert.DeserializeObject<dynamic>(forkedRepo);\n                                    model.GitRepoName = fr.name;\n                                    model.GitRepoURL = fr.html_url;\n                                    if (!model.Environment.GitHubRepos.ContainsKey(model.GitRepoName))\n                                    {\n                                        model.Environment.GitHubRepos.Add(model.GitRepoName, model.GitRepoURL);\n                                    }\n                                    AddMessage(model.id, string.Format(\"Forked {0} repository to {1} user\", model.GitRepoName, _gitHubConfig.userName));\n                                }\n                                else\n                                {\n                                    AddMessage(model.id.ErrorId(), \"Error while forking the repository: \" + forkResponse.Content.ReadAsStringAsync().Result);\n                                    logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + \"Error while forking the repository: \" + forkResponse.Content.ReadAsStringAsync().Result + \"\\n\");\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while forking repository :\" + ex.Message);\n            }\n        }\n\n        /// <summary>\n        /// Create Teams\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"teamsJSON\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"id\"></param>\n        /// <param name=\"teamAreaJSON\"></param>\n        private void CreateTeams(Project model, string teamsJSON, VstsRestAPI.Configuration _projectConfig, string id, string teamAreaJSON)\n        {\n            try\n            {\n                string jsonTeams = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, teamsJSON);\n                if (File.Exists(jsonTeams))\n                {\n                    Teams objTeam = new Teams(_projectConfig);\n                    jsonTeams = model.ReadJsonFile(jsonTeams);\n                    JArray jTeams = JsonConvert.DeserializeObject<JArray>(jsonTeams);\n                    JContainer teamsParsed = JsonConvert.DeserializeObject<JContainer>(jsonTeams);\n\n                    //get Backlog Iteration Id\n                    string backlogIteration = objTeam.GetTeamSetting(model.ProjectName);\n                    //get all Iterations\n                    TeamIterationsResponse.Iterations iterations = objTeam.GetAllIterations(model.ProjectName);\n\n                    foreach (var jTeam in jTeams)\n                    {\n                        string teamIterationMap = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, \"TeamIterationMap.json\");\n                        if (File.Exists(teamIterationMap))\n                        {\n                            //BEGIN - Mapping only given iterations for team in Team Iteration Mapping file\n                            if (!string.IsNullOrEmpty(teamIterationMap))\n                            {\n                                string data = model.ReadJsonFile(teamIterationMap);\n                                TeamIterations.Map iterationMap = new TeamIterations.Map();\n                                iterationMap = JsonConvert.DeserializeObject<TeamIterations.Map>(data);\n                                if (iterationMap.TeamIterationMap.Count > 0)\n                                {\n                                    foreach (var teamMap in iterationMap.TeamIterationMap)\n                                    {\n                                        if (teamMap.TeamName.ToLower() == jTeam[\"name\"].ToString().ToLower())\n                                        {\n                                            // AS IS\n\n                                            GetTeamResponse.Team teamResponse = objTeam.CreateNewTeam(jTeam.ToString(), model.ProjectName);\n                                            if (!(string.IsNullOrEmpty(teamResponse.id)))\n                                            {\n                                                string areaName = objTeam.CreateArea(model.ProjectName, teamResponse.name);\n                                                string updateAreaJSON = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, teamAreaJSON);\n\n                                                //updateAreaJSON = string.Format(templatesFolder + @\"{0}\\{1}\", model.SelectedTemplate, teamAreaJSON);\n\n                                                if (File.Exists(updateAreaJSON))\n                                                {\n                                                    updateAreaJSON = model.ReadJsonFile(updateAreaJSON);\n                                                    updateAreaJSON = updateAreaJSON.Replace(\"$ProjectName$\", model.ProjectName).Replace(\"$AreaName$\", areaName);\n                                                    bool isUpdated = objTeam.SetAreaForTeams(model.ProjectName, teamResponse.name, updateAreaJSON);\n                                                }\n                                                bool isBackLogIterationUpdated = objTeam.SetBackLogIterationForTeam(backlogIteration, model.ProjectName, teamResponse.name);\n                                                if (iterations.count > 0)\n                                                {\n                                                    foreach (var iteration in iterations.value)\n                                                    {\n                                                        if (iteration.structureType == \"iteration\")\n                                                        {\n                                                            foreach (var child in iteration.children)\n                                                            {\n                                                                if (teamMap.Iterations.Contains(child.name))\n                                                                {\n                                                                    bool isIterationUpdated = objTeam.SetIterationsForTeam(child.identifier, teamResponse.name, model.ProjectName);\n                                                                }\n                                                            }\n                                                        }\n                                                    }\n                                                }\n                                            }\n\n                                            // TILL HERE\n                                        }\n                                    }\n\n                                }\n                            }\n                            // END\n                        }\n                        else\n                        {\n                            string isDefault = jTeam[\"isDefault\"] != null ? jTeam[\"isDefault\"].ToString() : string.Empty;\n                            if (isDefault == \"false\" || isDefault == \"\")\n                            {\n                                GetTeamResponse.Team teamResponse = objTeam.CreateNewTeam(jTeam.ToString(), model.ProjectName);\n                                if (!(string.IsNullOrEmpty(teamResponse.id)))\n                                {\n                                    string areaName = objTeam.CreateArea(model.ProjectName, teamResponse.name);\n                                    string updateAreaJSON = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, teamAreaJSON);\n\n                                    //updateAreaJSON = string.Format(templatesFolder + @\"{0}\\{1}\", model.SelectedTemplate, teamAreaJSON);\n\n                                    if (File.Exists(updateAreaJSON))\n                                    {\n                                        updateAreaJSON = model.ReadJsonFile(updateAreaJSON);\n                                        updateAreaJSON = updateAreaJSON.Replace(\"$ProjectName$\", model.ProjectName).Replace(\"$AreaName$\", areaName);\n                                        bool isUpdated = objTeam.SetAreaForTeams(model.ProjectName, teamResponse.name, updateAreaJSON);\n                                    }\n                                    bool isBackLogIterationUpdated = objTeam.SetBackLogIterationForTeam(backlogIteration, model.ProjectName, teamResponse.name);\n                                    if (iterations.count > 0)\n                                    {\n                                        foreach (var iteration in iterations.value)\n                                        {\n                                            if (iteration.structureType == \"iteration\")\n                                            {\n                                                foreach (var child in iteration.children)\n                                                {\n                                                    bool isIterationUpdated = objTeam.SetIterationsForTeam(child.identifier, teamResponse.name, model.ProjectName);\n                                                }\n                                            }\n                                        }\n                                    }\n                                }\n                            }\n                            if (!(string.IsNullOrEmpty(objTeam.LastFailureMessage)))\n                            {\n                                AddMessage(id.ErrorId(), \"Error while creating teams: \" + objTeam.LastFailureMessage + Environment.NewLine);\n                            }\n                            else\n                            {\n                                AddMessage(id, string.Format(\"{0} team(s) created\", teamsParsed.Count));\n                            }\n                            if (model.SelectedTemplate.ToLower() == \"smarthotel360\")\n                            {\n                                string updateAreaJSON = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, \"UpdateTeamArea.json\");\n\n                                //updateAreaJSON = string.Format(templatesFolder + @\"{0}\\{1}\", model.SelectedTemplate, \"UpdateTeamArea.json\");\n                                if (File.Exists(updateAreaJSON))\n                                {\n                                    updateAreaJSON = model.ReadJsonFile(updateAreaJSON);\n                                    updateAreaJSON = updateAreaJSON.Replace(\"$ProjectName$\", model.ProjectName);\n                                    bool isUpdated = objTeam.UpdateTeamsAreas(model.ProjectName, updateAreaJSON);\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while creating teams: \" + ex.Message);\n\n            }\n        }\n\n        /// <summary>\n        /// Get Team members\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"teamName\"></param>\n        /// <param name=\"_configuration\"></param>\n        /// <param name=\"id\"></param>\n        /// <returns></returns>\n        private TeamMemberResponse.TeamMembers GetTeamMembers(string projectName, string teamName, VstsRestAPI.Configuration _configuration, string id)\n        {\n            try\n            {\n                TeamMemberResponse.TeamMembers viewModel = new TeamMemberResponse.TeamMembers();\n                VstsRestAPI.ProjectsAndTeams.Teams objTeam = new VstsRestAPI.ProjectsAndTeams.Teams(_configuration);\n                viewModel = objTeam.GetTeamMembers(projectName, teamName);\n\n                if (!(string.IsNullOrEmpty(objTeam.LastFailureMessage)))\n                {\n                    AddMessage(id.ErrorId(), \"Error while getting team members: \" + objTeam.LastFailureMessage + Environment.NewLine);\n                }\n                return viewModel;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while getting team members: \" + ex.Message);\n            }\n\n            return new TeamMemberResponse.TeamMembers();\n        }\n\n        /// <summary>\n        /// Create Work Items\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"workItemJSON\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"id\"></param>\n        private void CreateWorkItems(Project model, string workItemJSON, VstsRestAPI.Configuration _defaultConfiguration, string id)\n        {\n            try\n            {\n                string jsonWorkItems = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, workItemJSON);\n                //string.Format(templatesFolder + @\"{0}\\{1}\", model.SelectedTemplate, workItemJSON);\n                if (File.Exists(jsonWorkItems))\n                {\n                    WorkItem objWorkItem = new WorkItem(_defaultConfiguration);\n                    jsonWorkItems = model.ReadJsonFile(jsonWorkItems);\n                    JContainer workItemsParsed = JsonConvert.DeserializeObject<JContainer>(jsonWorkItems);\n\n                    AddMessage(id, \"Creating \" + workItemsParsed.Count + \" work items...\");\n\n                    jsonWorkItems = jsonWorkItems.Replace(\"$version$\", _defaultConfiguration.VersionNumber);\n                    bool workItemResult = objWorkItem.CreateWorkItemUsingByPassRules(model.ProjectName, jsonWorkItems);\n\n                    if (!(string.IsNullOrEmpty(objWorkItem.LastFailureMessage)))\n                    {\n                        AddMessage(id.ErrorId(), \"Error while creating workitems: \" + objWorkItem.LastFailureMessage + Environment.NewLine);\n                    }\n                }\n\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while creating workitems: \" + ex.Message);\n\n            }\n        }\n\n        /// <summary>\n        /// Update Board Columns styles\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"BoardColumnsJSON\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"id\"></param>\n        /// <returns></returns>\n        private bool UpdateBoardColumn(Project model, string BoardColumnsJSON, VstsRestAPI.Configuration _BoardConfig, string id, string BoardType, string team)\n        {\n            bool result = false;\n            try\n            {\n                BoardColumn objBoard = new BoardColumn(_BoardConfig);\n                bool boardColumnResult = objBoard.UpdateBoard(model.ProjectName, BoardColumnsJSON, BoardType, team);\n                if (boardColumnResult)\n                {\n                    model.Environment.BoardRowFieldName = objBoard.rowFieldName;\n                    result = true;\n                }\n                else if (!(string.IsNullOrEmpty(objBoard.LastFailureMessage)))\n                {\n                    AddMessage(id.ErrorId(), \"Error while updating board column \" + objBoard.LastFailureMessage + Environment.NewLine);\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while updating board column \" + ex.Message);\n            }\n            return result;\n        }\n\n        /// <summary>\n        /// Updates Card Fields\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"json\"></param>\n        /// <param name=\"_configuration\"></param>\n        /// <param name=\"id\"></param>\n        private void UpdateCardFields(Project model, string json, Configuration _configuration, string id, string boardType, string team)\n        {\n            try\n            {\n                json = json.Replace(\"null\", \"\\\"\\\"\");\n                Cards objCards = new Cards(_configuration);\n                objCards.UpdateCardField(model.ProjectName, json, boardType, team);\n\n                if (!string.IsNullOrEmpty(objCards.LastFailureMessage))\n                {\n                    AddMessage(id.ErrorId(), \"Error while updating card fields: \" + objCards.LastFailureMessage + Environment.NewLine);\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while updating card fields: \" + ex.Message);\n\n            }\n\n        }\n\n        /// <summary>\n        /// Udpate Card Styles\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"json\"></param>\n        /// <param name=\"_configuration\"></param>\n        /// <param name=\"id\"></param>\n        private void UpdateCardStyles(Project model, string json, Configuration _configuration, string id, string boardType, string team)\n        {\n            try\n            {\n                Cards objCards = new Cards(_configuration);\n                objCards.ApplyRules(model.ProjectName, json, boardType, team);\n\n                if (!string.IsNullOrEmpty(objCards.LastFailureMessage))\n                {\n                    AddMessage(id.ErrorId(), \"Error while updating card styles: \" + objCards.LastFailureMessage + Environment.NewLine);\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while updating card styles: \" + ex.Message);\n            }\n\n        }\n\n        /// <summary>\n        /// Enable Epic\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"json\"></param>\n        /// <param name=\"_config3_0\"></param>\n        /// <param name=\"id\"></param>\n        private void EnableEpic(Project model, string json, VstsRestAPI.Configuration _boardVersion, string id, string team)\n        {\n            try\n            {\n                Cards objCards = new Cards(_boardVersion);\n                Projects project = new Projects(_boardVersion);\n                objCards.EnablingEpic(model.ProjectName, json, model.ProjectName, team);\n\n                if (!string.IsNullOrEmpty(objCards.LastFailureMessage))\n                {\n                    AddMessage(id.ErrorId(), \"Error while Setting Epic Settings: \" + objCards.LastFailureMessage + Environment.NewLine);\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while Setting Epic Settings: \" + ex.Message);\n            }\n\n        }\n\n        /// <summary>\n        /// Updates work items with parent child links\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"workItemUpdateJSON\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"id\"></param>\n        /// <param name=\"currentUser\"></param>\n        /// <param name=\"projectSettingsJSON\"></param>\n        private void UpdateWorkItems(Project model, string workItemUpdateJSON, VstsRestAPI.Configuration _defaultConfiguration, string id, string currentUser, string projectSettingsJSON)\n        {\n            try\n            {\n                string jsonWorkItemsUpdate = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, workItemUpdateJSON);\n                //string.Format(templatesFolder + @\"{0}\\{1}\", model.SelectedTemplate, workItemUpdateJSON);\n                string jsonProjectSettings = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, projectSettingsJSON);\n                //string.Format(templatesFolder + @\"{0}\\{1}\", model.SelectedTemplate, projectSettingsJSON);\n                if (File.Exists(jsonWorkItemsUpdate))\n                {\n                    WorkItem objWorkItem = new WorkItem(_defaultConfiguration);\n                    jsonWorkItemsUpdate = model.ReadJsonFile(jsonWorkItemsUpdate);\n                    jsonProjectSettings = model.ReadJsonFile(jsonProjectSettings);\n\n                    bool workItemUpdateResult = objWorkItem.UpdateWorkItemUsingByPassRules(jsonWorkItemsUpdate, model.ProjectName, currentUser, jsonProjectSettings);\n                    if (!(string.IsNullOrEmpty(objWorkItem.LastFailureMessage)))\n                    {\n                        AddMessage(id.ErrorId(), \"Error while updating work items: \" + objWorkItem.LastFailureMessage + Environment.NewLine);\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n\n                AddMessage(id.ErrorId(), \"Error while updating work items: \" + ex.Message);\n\n            }\n        }\n\n        /// <summary>\n        /// Update Iterations\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"iterationsJSON\"></param>\n        private void UpdateIterations(Project model, VstsRestAPI.Configuration _boardConfig, string iterationsJSON)\n        {\n            try\n            {\n                string jsonIterations = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, iterationsJSON);\n                //string.Format(templatesFolder + @\"{0}\\{1}\", model.SelectedTemplate, iterationsJSON);\n                if (File.Exists(jsonIterations))\n                {\n                    iterationsJSON = model.ReadJsonFile(jsonIterations);\n                    VstsRestAPI.WorkItemAndTracking.ClassificationNodes objClassification = new VstsRestAPI.WorkItemAndTracking.ClassificationNodes(_boardConfig);\n\n                    GetNodesResponse.Nodes nodes = objClassification.GetIterations(model.ProjectName);\n\n                    GetNodesResponse.Nodes projectNode = JsonConvert.DeserializeObject<GetNodesResponse.Nodes>(iterationsJSON);\n\n                    if (projectNode.hasChildren)\n                    {\n                        foreach (var child in projectNode.children)\n                        {\n                            CreateIterationNode(model, objClassification, child, nodes);\n                        }\n                    }\n\n                    if (projectNode.hasChildren)\n                    {\n                        foreach (var child in projectNode.children)\n                        {\n                            path = string.Empty;\n                            MoveIterationNode(model, objClassification, child);\n                        }\n                    }\n                }\n\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n\n                AddMessage(model.id.ErrorId(), \"Error while updating iteration: \" + ex.Message);\n            }\n        }\n\n        /// <summary>\n        /// Create Iterations\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"objClassification\"></param>\n        /// <param name=\"child\"></param>\n        /// <param name=\"currentIterations\"></param>\n        private void CreateIterationNode(Project model, VstsRestAPI.WorkItemAndTracking.ClassificationNodes objClassification, GetNodesResponse.Child child, GetNodesResponse.Nodes currentIterations)\n        {\n            string[] defaultSprints = new string[] { \"Sprint 1\", \"Sprint 2\", \"Sprint 3\", \"Sprint 4\", \"Sprint 5\", \"Sprint 6\", };\n            if (defaultSprints.Contains(child.name))\n            {\n                var nd = (currentIterations.hasChildren) ? currentIterations.children.FirstOrDefault(i => i.name == child.name) : null;\n                if (nd != null)\n                {\n                    child.id = nd.id;\n                }\n                else\n                {\n                    var node = objClassification.CreateIteration(model.ProjectName, child.name);\n                    child.id = node.id;\n                }\n            }\n            else\n            {\n                var node = objClassification.CreateIteration(model.ProjectName, child.name);\n                child.id = node.id;\n            }\n\n            if (child.hasChildren && child.children != null)\n            {\n                foreach (var c in child.children)\n                {\n                    CreateIterationNode(model, objClassification, c, currentIterations);\n                }\n            }\n        }\n\n        private string path = string.Empty;\n        /// <summary>\n        /// Move Iterations to nodes\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"objClassification\"></param>\n        /// <param name=\"child\"></param>\n        private void MoveIterationNode(Project model, VstsRestAPI.WorkItemAndTracking.ClassificationNodes objClassification, GetNodesResponse.Child child)\n        {\n            if (child.hasChildren && child.children != null)\n            {\n                foreach (var c in child.children)\n                {\n                    path += child.name + \"\\\\\";\n                    var nd = objClassification.MoveIteration(model.ProjectName, path, c.id);\n\n                    if (c.hasChildren)\n                    {\n                        MoveIterationNode(model, objClassification, c);\n                    }\n                }\n            }\n        }\n\n        /// <summary>\n        /// Udpate Sprints dates\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"settings\"></param>\n        private void UpdateSprintItems(Project model, VstsRestAPI.Configuration _boardConfig, ProjectSettings settings)\n        {\n            try\n            {\n                if (settings.type.ToLower() == \"scrum\" || settings.type.ToLower() == \"agile\" || settings.type.ToLower() == \"basic\")\n                {\n                    string teamIterationMap = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, \"TeamIterationMap.json\");\n\n                    ClassificationNodes objClassification = new ClassificationNodes(_boardConfig);\n                    bool classificationNodesResult = objClassification.UpdateIterationDates(model.ProjectName, settings.type, model.SelectedTemplate, teamIterationMap);\n\n                    if (!(string.IsNullOrEmpty(objClassification.LastFailureMessage)))\n                    {\n                        AddMessage(model.id.ErrorId(), \"Error while updating sprint items: \" + objClassification.LastFailureMessage + Environment.NewLine);\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while updating sprint items: \" + ex.Message);\n\n            }\n        }\n\n        /// <summary>\n        /// Rename Iterations\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"renameIterations\"></param>\n        public void RenameIterations(Project model, VstsRestAPI.Configuration _defaultConfiguration, Dictionary<string, string> renameIterations)\n        {\n            try\n            {\n                if (renameIterations != null && renameIterations.Count > 0)\n                {\n                    VstsRestAPI.WorkItemAndTracking.ClassificationNodes objClassification = new VstsRestAPI.WorkItemAndTracking.ClassificationNodes(_defaultConfiguration);\n                    bool IsRenamed = objClassification.RenameIteration(model.ProjectName, renameIterations);\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while renaming iterations: \" + ex.Message);\n            }\n        }\n\n        /// <summary>\n        /// Import source code from sourec repo or GitHub\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"sourceCodeJSON\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"importSourceConfiguration\"></param>\n        /// <param name=\"id\"></param>\n        private void ImportSourceCode(Project model, string sourceCodeJSON, VstsRestAPI.Configuration _repo, string id, VstsRestAPI.Configuration _retSourceCodeVersion)\n        {\n\n            try\n            {\n                string[] repositoryDetail = new string[2];\n                if (model.GitHubFork)\n                {\n\n                }\n                if (File.Exists(sourceCodeJSON))\n                {\n                    Repository objRepository = new Repository(_repo);\n                    string repositoryName = Path.GetFileName(sourceCodeJSON).Replace(\".json\", \"\");\n                    if (model.ProjectName.ToLower() == repositoryName.ToLower())\n                    {\n                        repositoryDetail = objRepository.GetDefaultRepository(model.ProjectName);\n                    }\n                    else\n                    {\n                        repositoryDetail = objRepository.CreateRepository(repositoryName, model.Environment.ProjectId);\n                    }\n                    if (repositoryDetail.Length > 0)\n                    {\n                        model.Environment.repositoryIdList[repositoryDetail[1]] = repositoryDetail[0];\n                    }\n\n                    string jsonSourceCode = model.ReadJsonFile(sourceCodeJSON);\n\n                    //update endpoint ids\n                    foreach (string endpoint in model.Environment.serviceEndpoints.Keys)\n                    {\n                        string placeHolder = string.Format(\"${0}$\", endpoint);\n                        jsonSourceCode = jsonSourceCode.Replace(placeHolder, model.Environment.serviceEndpoints[endpoint]);\n                    }\n\n                    Repository objRepositorySourceCode = new Repository(_retSourceCodeVersion);\n                    bool copySourceCode = objRepositorySourceCode.GetSourceCodeFromGitHub(jsonSourceCode, model.ProjectName, repositoryDetail[0]);\n                    if (!model.Environment.ReposImported.ContainsKey(repositoryDetail[0]))\n                    {\n                        model.Environment.ReposImported.Add(repositoryDetail[0], copySourceCode);\n                    }\n\n                    if (!(string.IsNullOrEmpty(objRepository.LastFailureMessage)))\n                    {\n                        AddMessage(id.ErrorId(), \"Error while importing source code: \" + objRepository.LastFailureMessage + Environment.NewLine);\n                    }\n                }\n\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while importing source code: \" + ex.Message);\n            }\n        }\n\n        /// <summary>\n        /// Creates pull request\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"pullRequestJsonPath\"></param>\n        /// <param name=\"_configuration3_0\"></param>\n        private void CreatePullRequest(Project model, string pullRequestJsonPath, VstsRestAPI.Configuration _workItemConfig)\n        {\n            try\n            {\n                if (File.Exists(pullRequestJsonPath))\n                {\n                    string commentFile = Path.GetFileName(pullRequestJsonPath);\n                    string repositoryId = string.Empty;\n                    if (model.SelectedTemplate == \"MyHealthClinic\") { repositoryId = model.Environment.repositoryIdList[\"MyHealthClinic\"]; }\n                    if (model.SelectedTemplate == \"SmartHotel360\") { repositoryId = model.Environment.repositoryIdList[\"PublicWeb\"]; }\n                    else { repositoryId = model.Environment.repositoryIdList.ContainsKey(model.SelectedTemplate) ? model.Environment.repositoryIdList[model.SelectedTemplate] : \"\"; }\n\n                    pullRequestJsonPath = model.ReadJsonFile(pullRequestJsonPath);\n                    pullRequestJsonPath = pullRequestJsonPath.Replace(\"$reviewer$\", model.Environment.UserUniqueId);\n                    Repository objRepository = new Repository(_workItemConfig);\n                    string[] pullReqResponse = new string[2];\n\n                    pullReqResponse = objRepository.CreatePullRequest(pullRequestJsonPath, repositoryId);\n                    if (pullReqResponse.Length > 0)\n                    {\n                        if (!string.IsNullOrEmpty(pullReqResponse[0]) && !string.IsNullOrEmpty(pullReqResponse[1]))\n                        {\n                            model.Environment.pullRequests.Add(pullReqResponse[1], pullReqResponse[0]);\n                            commentFile = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, @\"\\PullRequests\\Comments\\\" + commentFile);\n                            //string.Format(templatesFolder + @\"{0}\\PullRequests\\Comments\\{1}\", model.SelectedTemplate, commentFile);\n                            if (File.Exists(commentFile))\n                            {\n                                commentFile = model.ReadJsonFile(commentFile);\n                                PullRequestComments.Comments commentsList = JsonConvert.DeserializeObject<PullRequestComments.Comments>(commentFile);\n                                if (commentsList.count > 0)\n                                {\n                                    foreach (PullRequestComments.Value thread in commentsList.value)\n                                    {\n                                        string threadID = objRepository.CreateCommentThread(repositoryId, pullReqResponse[0], JsonConvert.SerializeObject(thread));\n                                        if (!string.IsNullOrEmpty(threadID))\n                                        {\n                                            if (thread.Replies != null && thread.Replies.Count > 0)\n                                            {\n                                                foreach (var reply in thread.Replies)\n                                                {\n                                                    objRepository.AddCommentToThread(repositoryId, pullReqResponse[0], threadID, JsonConvert.SerializeObject(reply));\n                                                }\n                                            }\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while creating pull Requests: \" + ex.Message);\n            }\n        }\n\n        /// <summary>\n        /// Creates service end points\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"jsonPaths\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        private void CreateServiceEndPoint(Project model, List<string> jsonPaths, Configuration _endpointConfig)\n        {\n            try\n            {\n                string serviceEndPointId = string.Empty;\n                foreach (string jsonPath in jsonPaths)\n                {\n                    string fileName = Path.GetFileName(jsonPath);\n                    string jsonCreateService = jsonPath;\n                    if (File.Exists(jsonCreateService))\n                    {\n                        string username = System.Configuration.ConfigurationManager.AppSettings[\"UserID\"];\n                        string password = System.Configuration.ConfigurationManager.AppSettings[\"Password\"];\n                        //string extractPath = HostingEnvironment.MapPath(\"~/Templates/\" + model.SelectedTemplate);\n                        string projectFileData = File.ReadAllText(GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, \"ProjectTemplate.json\"));\n                        ProjectSetting settings = JsonConvert.DeserializeObject<ProjectSetting>(projectFileData);\n                        ServiceEndPoint objService = new ServiceEndPoint(_endpointConfig);\n\n                        string gitUserName = System.Configuration.ConfigurationManager.AppSettings[\"GitUserName\"];\n                        string gitUserPassword = System.Configuration.ConfigurationManager.AppSettings[\"GitUserPassword\"];\n\n                        jsonCreateService = model.ReadJsonFile(jsonCreateService);\n\n                        if (!string.IsNullOrEmpty(settings.IsPrivate))\n                        {\n                            jsonCreateService = jsonCreateService.Replace(\"$ProjectName$\", model.ProjectName);\n                            jsonCreateService = jsonCreateService.Replace(\"$username$\", model.Email).Replace(\"$password$\", model.accessToken);\n                        }\n                        // File contains \"GitHub_\" means - it contains GitHub URL, user wanted to fork repo to his github\n                        if (fileName.Contains(\"GitHub_\") && model.GitHubFork && model.GitHubToken != null)\n                        {\n                            JObject jsonToCreate = JObject.Parse(jsonCreateService);\n                            string type = jsonToCreate[\"type\"].ToString();\n                            string url = jsonToCreate[\"url\"].ToString();\n                            string repoNameInUrl = Path.GetFileName(url);\n                            // Endpoint type is Git(External Git), so we should point Build def to his repo by creating endpoint of Type GitHub(Public)\n                            foreach (var repo in model.Environment.GitHubRepos.Keys)\n                            {\n                                if (repoNameInUrl.Contains(repo))\n                                {\n                                    if (type.ToLower() == \"git\")\n                                    {\n                                        jsonToCreate[\"type\"] = \"GitHub\"; //Changing endpoint type\n                                        jsonToCreate[\"url\"] = model.Environment.GitHubRepos[repo].ToString(); // updating endpoint URL with User forked repo URL\n                                    }\n                                    // Endpoint type is GitHub(Public), so we should point the build def to his repo by updating the URL\n                                    else if (type.ToLower() == \"github\")\n                                    {\n                                        jsonToCreate[\"url\"] = model.Environment.GitHubRepos[repo].ToString(); // Updating repo URL to user repo\n                                    }\n                                    else\n                                    {\n\n                                    }\n                                }\n                            }\n                            jsonCreateService = jsonToCreate.ToString();\n                            jsonCreateService = jsonCreateService.Replace(\"$GitUserName$\", model.GitHubUserName).Replace(\"$GitUserPassword$\", model.GitHubToken);\n                        }\n                        // user doesn't want to fork repo\n                        else\n                        {\n                            jsonCreateService = jsonCreateService.Replace(\"$ProjectName$\", model.ProjectName); // Replaces the Place holder with project name if exists\n                            jsonCreateService = jsonCreateService.Replace(\"$username$\", username).Replace(\"$password$\", password) // Replaces user name and password with app setting username and password if require[to import soure code to Azure Repos]\n                                .Replace(\"$GitUserName$\", gitUserName).Replace(\"$GitUserPassword$\", gitUserPassword); // Replaces GitUser name and passwords with Demo gen username and password [Just to point build def to respective repo]\n                        }\n                        if (model.SelectedTemplate.ToLower() == \"bikesharing360\")\n                        {\n                            string bikeSharing360username = System.Configuration.ConfigurationManager.AppSettings[\"UserID\"];\n                            string bikeSharing360password = System.Configuration.ConfigurationManager.AppSettings[\"BikeSharing360Password\"];\n                            jsonCreateService = jsonCreateService.Replace(\"$BikeSharing360username$\", bikeSharing360username).Replace(\"$BikeSharing360password$\", bikeSharing360password);\n                        }\n                        else if (model.SelectedTemplate.ToLower() == \"contososhuttle\" || model.SelectedTemplate.ToLower() == \"contososhuttle2\")\n                        {\n                            string contosousername = System.Configuration.ConfigurationManager.AppSettings[\"ContosoUserID\"];\n                            string contosopassword = System.Configuration.ConfigurationManager.AppSettings[\"ContosoPassword\"];\n                            jsonCreateService = jsonCreateService.Replace(\"$ContosoUserID$\", contosousername).Replace(\"$ContosoPassword$\", contosopassword);\n                        }\n                        else if (model.SelectedTemplate.ToLower() == \"sonarqube\")\n                        {\n                            if (!string.IsNullOrEmpty(model.SonarQubeDNS))\n                            {\n                                jsonCreateService = jsonCreateService.Replace(\"$URL$\", model.SonarQubeDNS);\n                            }\n                        }\n                        else if (model.SelectedTemplate.ToLower() == \"octopus\")\n                        {\n                            var url = model.Parameters[\"OctopusURL\"];\n                            var apiKey = model.Parameters[\"APIkey\"];\n                            if (!string.IsNullOrEmpty(url.ToString()) && !string.IsNullOrEmpty(apiKey.ToString()))\n                            {\n                                jsonCreateService = jsonCreateService.Replace(\"$URL$\", url).Replace(\"$Apikey$\", apiKey);\n\n                            }\n                        }\n                        var endpoint = objService.CreateServiceEndPoint(jsonCreateService, model.ProjectName);\n\n                        if (!(string.IsNullOrEmpty(objService.LastFailureMessage)))\n                        {\n                            AddMessage(model.id.ErrorId(), \"Error while creating service endpoint: \" + objService.LastFailureMessage + Environment.NewLine);\n                        }\n                        else\n                        {\n                            model.Environment.serviceEndpoints[endpoint.name] = endpoint.id;\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while creating service endpoint: \" + ex.Message);\n            }\n        }\n\n        /// <summary>\n        /// Create Test Cases\n        /// </summary>\n        /// <param name=\"wiMapping\"></param>\n        /// <param name=\"model\"></param>\n        /// <param name=\"testPlanJson\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        private void CreateTestManagement(List<WIMapData> wiMapping, Project model, string testPlanJson, VstsRestAPI.Configuration _testPlanVersion)\n        {\n            try\n            {\n                if (File.Exists(testPlanJson))\n                {\n                    List<WIMapData> testCaseMap = new List<WIMapData>();\n                    testCaseMap = wiMapping.Where(x => x.WIType == \"Test Case\").ToList();\n\n                    string fileName = Path.GetFileName(testPlanJson);\n                    testPlanJson = model.ReadJsonFile(testPlanJson);\n\n                    testPlanJson = testPlanJson.Replace(\"$project$\", model.ProjectName);\n                    TestManagement objTest = new TestManagement(_testPlanVersion);\n                    string[] testPlanResponse = new string[2];\n                    testPlanResponse = objTest.CreateTestPlan(testPlanJson, model.ProjectName);\n\n                    if (testPlanResponse.Length > 0)\n                    {\n                        string testSuiteJson = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, @\"\\TestPlans\\TestSuites\\\" + fileName);\n                        //string.Format(templateFolder + @\"{0}\\TestPlans\\TestSuites\\{1}\", model.SelectedTemplate, fileName);\n                        if (File.Exists(testSuiteJson))\n                        {\n                            testSuiteJson = model.ReadJsonFile(testSuiteJson);\n                            testSuiteJson = testSuiteJson.Replace(\"$planID$\", testPlanResponse[0]).Replace(\"$planName$\", testPlanResponse[1]);\n                            foreach (var wi in wiMapping)\n                            {\n                                string placeHolder = string.Format(\"${0}$\", wi.OldID);\n                                testSuiteJson = testSuiteJson.Replace(placeHolder, wi.NewID);\n                            }\n                            TestSuite.TestSuites listTestSuites = JsonConvert.DeserializeObject<TestSuite.TestSuites>(testSuiteJson);\n                            if (listTestSuites.count > 0)\n                            {\n                                foreach (var TS in listTestSuites.value)\n                                {\n                                    string[] testSuiteResponse = new string[2];\n                                    string testSuiteJSON = JsonConvert.SerializeObject(TS);\n                                    testSuiteResponse = objTest.CreatTestSuite(testSuiteJSON, testPlanResponse[0], model.ProjectName);\n                                    if (testSuiteResponse[0] != null && testSuiteResponse[1] != null)\n                                    {\n                                        string testCasesToAdd = string.Empty;\n                                        foreach (string id in TS.TestCases)\n                                        {\n                                            foreach (var wiMap in testCaseMap)\n                                            {\n                                                if (wiMap.OldID == id)\n                                                {\n                                                    testCasesToAdd = testCasesToAdd + wiMap.NewID + \",\";\n                                                }\n                                            }\n                                        }\n                                        testCasesToAdd = testCasesToAdd.TrimEnd(',');\n                                        bool isTestCasesAddded = objTest.AddTestCasesToSuite(testCasesToAdd, testPlanResponse[0], testSuiteResponse[0], model.ProjectName);\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while creating test plan and test suites: \" + ex.Message);\n            }\n        }\n\n        /// <summary>\n        /// Creates Build Definitions\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"id\"></param>\n        /// <returns></returns>\n        private bool CreateBuildDefinition(Project model, VstsRestAPI.Configuration _buildConfig, string id)\n        {\n            bool flag = false;\n            try\n            {\n                foreach (BuildDef buildDef in model.BuildDefinitions)\n                {\n                    if (File.Exists(buildDef.FilePath))\n                    {\n                        BuildDefinition objBuild = new BuildDefinition(_buildConfig);\n                        string jsonBuildDefinition = model.ReadJsonFile(buildDef.FilePath);\n                        jsonBuildDefinition = jsonBuildDefinition.Replace(\"$ProjectName$\", model.Environment.ProjectName)\n                                             .Replace(\"$ProjectId$\", model.Environment.ProjectId)\n                                             .Replace(\"$username$\", model.GitHubUserName)\n                                             .Replace(\"$Organization$\", model.accountName);\n\n                        if (model.Environment.VariableGroups.Count > 0)\n                        {\n                            foreach (var vGroupsId in model.Environment.VariableGroups)\n                            {\n                                string placeHolder = string.Format(\"${0}$\", vGroupsId.Value);\n                                jsonBuildDefinition = jsonBuildDefinition.Replace(placeHolder, vGroupsId.Key.ToString());\n                            }\n                        }\n\n                        //update repositoryId \n                        foreach (string repository in model.Environment.repositoryIdList.Keys)\n                        {\n                            string placeHolder = string.Format(\"${0}$\", repository);\n                            jsonBuildDefinition = jsonBuildDefinition.Replace(placeHolder, model.Environment.repositoryIdList[repository]);\n                        }\n                        //update endpoint ids\n                        foreach (string endpoint in model.Environment.serviceEndpoints.Keys)\n                        {\n                            string placeHolder = string.Format(\"${0}$\", endpoint);\n                            jsonBuildDefinition = jsonBuildDefinition.Replace(placeHolder, model.Environment.serviceEndpoints[endpoint]);\n                        }\n                        if (model.Environment.AgentQueues.Count > 0)\n                        {\n                            foreach (var agentPool in model.Environment.AgentQueues.Keys)\n                            {\n                                string placeHolder = string.Format(\"${0}$\", agentPool);\n                                jsonBuildDefinition = jsonBuildDefinition.Replace(placeHolder, Convert.ToString(model.Environment.AgentQueues[agentPool]));\n                            }\n                        }\n\n                        string[] buildResult = objBuild.CreateBuildDefinition(jsonBuildDefinition, model.ProjectName, model.SelectedTemplate);\n\n                        if (!(string.IsNullOrEmpty(objBuild.LastFailureMessage)))\n                        {\n                            AddMessage(id.ErrorId(), \"Error while creating build definition: \" + objBuild.LastFailureMessage + Environment.NewLine);\n                        }\n                        if (buildResult.Length > 0)\n                        {\n                            buildDef.Id = buildResult[0];\n                            buildDef.Name = buildResult[1];\n                        }\n                    }\n                    flag = true;\n                }\n                return flag;\n            }\n\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while creating build definition: \" + ex.Message);\n            }\n            return flag;\n        }\n\n        /// <summary>\n        /// Queue build after provisioning project\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"json\"></param>\n        /// <param name=\"_configuration\"></param>\n        private void QueueABuild(Project model, string json, VstsRestAPI.Configuration _buildConfig)\n        {\n            try\n            {\n                string jsonQueueABuild = json;\n                if (File.Exists(jsonQueueABuild))\n                {\n                    string buildId = model.BuildDefinitions.FirstOrDefault().Id;\n\n                    jsonQueueABuild = model.ReadJsonFile(jsonQueueABuild);\n                    jsonQueueABuild = jsonQueueABuild.Replace(\"$buildId$\", buildId.ToString());\n                    BuildDefinition objBuild = new BuildDefinition(_buildConfig);\n                    int queueId = objBuild.QueueBuild(jsonQueueABuild, model.ProjectName);\n\n                    if (!string.IsNullOrEmpty(objBuild.LastFailureMessage))\n                    {\n                        AddMessage(model.id.ErrorId(), \"Error while Queueing build: \" + objBuild.LastFailureMessage + Environment.NewLine);\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while Queueing Build: \" + ex.Message);\n            }\n        }\n\n        /// <summary>\n        /// Create Release Definitions\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"_releaseConfiguration\"></param>\n        /// <param name=\"_config3_0\"></param>\n        /// <param name=\"id\"></param>\n        /// <param name=\"teamMembers\"></param>\n        /// <returns></returns>\n        private bool CreateReleaseDefinition(Project model, VstsRestAPI.Configuration _releaseConfiguration, string id, TeamMemberResponse.TeamMembers teamMembers)\n        {\n            bool flag = false;\n            try\n            {\n                var teamMember = teamMembers.value.FirstOrDefault();\n                foreach (ReleaseDef relDef in model.ReleaseDefinitions)\n                {\n                    if (File.Exists(relDef.FilePath))\n                    {\n                        ReleaseDefinition objRelease = new ReleaseDefinition(_releaseConfiguration);\n                        string jsonReleaseDefinition = model.ReadJsonFile(relDef.FilePath);\n                        jsonReleaseDefinition = jsonReleaseDefinition.Replace(\"$ProjectName$\", model.Environment.ProjectName)\n                                             .Replace(\"$ProjectId$\", model.Environment.ProjectId)\n                                             .Replace(\"$OwnerUniqueName$\", teamMember.identity.uniqueName)\n                                             .Replace(\"$OwnerId$\", teamMember.identity.id)\n                                  .Replace(\"$OwnerDisplayName$\", teamMember.identity.displayName);\n\n                        if (model.Environment.VariableGroups.Count > 0)\n                        {\n                            foreach (var vGroupsId in model.Environment.VariableGroups)\n                            {\n                                string placeHolder = string.Format(\"${0}$\", vGroupsId.Value);\n                                jsonReleaseDefinition = jsonReleaseDefinition.Replace(placeHolder, vGroupsId.Key.ToString());\n                            }\n                        }\n                        //Adding randon UUID to website name\n                        string uuid = Guid.NewGuid().ToString();\n                        uuid = uuid.Substring(0, 8);\n                        jsonReleaseDefinition = jsonReleaseDefinition.Replace(\"$UUID$\", uuid).Replace(\"$RandomNumber$\", uuid).Replace(\"$AccountName$\", model.accountName); ;\n\n                        //update agent queue ids\n                        foreach (string queue in model.Environment.AgentQueues.Keys)\n                        {\n                            string placeHolder = string.Format(\"${0}$\", queue);\n                            jsonReleaseDefinition = jsonReleaseDefinition.Replace(placeHolder, model.Environment.AgentQueues[queue].ToString());\n                        }\n\n                        //update endpoint ids\n                        foreach (string endpoint in model.Environment.serviceEndpoints.Keys)\n                        {\n                            string placeHolder = string.Format(\"${0}$\", endpoint);\n                            jsonReleaseDefinition = jsonReleaseDefinition.Replace(placeHolder, model.Environment.serviceEndpoints[endpoint]);\n                        }\n\n                        foreach (BuildDef objBuildDef in model.BuildDefinitions)\n                        {\n                            //update build ids\n                            string placeHolder = string.Format(\"${0}-id$\", objBuildDef.Name);\n                            jsonReleaseDefinition = jsonReleaseDefinition.Replace(placeHolder, objBuildDef.Id);\n                        }\n                        string[] releaseDef = objRelease.CreateReleaseDefinition(jsonReleaseDefinition, model.ProjectName);\n                        if (!(string.IsNullOrEmpty(objRelease.LastFailureMessage)))\n                        {\n                            if (objRelease.LastFailureMessage.TrimEnd() == \"Tasks with versions 'ARM Outputs:3.*' are not valid for deploy job 'Function' in stage Azure-Dev.\")\n                            {\n                                jsonReleaseDefinition = jsonReleaseDefinition.Replace(\"3.*\", \"4.*\");\n                                releaseDef = objRelease.CreateReleaseDefinition(jsonReleaseDefinition, model.ProjectName);\n                                if (releaseDef.Length > 0)\n                                {\n                                    relDef.Id = releaseDef[0];\n                                    relDef.Name = releaseDef[1];\n                                }\n                                if (!string.IsNullOrEmpty(relDef.Name))\n                                {\n                                    objRelease.LastFailureMessage = string.Empty;\n                                }\n                            }\n                        }\n                        relDef.Id = releaseDef[0];\n                        relDef.Name = releaseDef[1];\n\n                        if (!(string.IsNullOrEmpty(objRelease.LastFailureMessage)))\n                        {\n                            AddMessage(id.ErrorId(), \"Error while creating release definition: \" + objRelease.LastFailureMessage + Environment.NewLine);\n                        }\n                    }\n                    flag = true;\n                }\n                return flag;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(id.ErrorId(), \"Error while creating release definition: \" + ex.Message);\n            }\n            flag = false;\n            return flag;\n        }\n\n        /// <summary>\n        /// Dashboard set up operations\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"listQueries\"></param>\n        /// <param name=\"_defaultConfiguration\"></param>\n        /// <param name=\"_configuration2\"></param>\n        /// <param name=\"_configuration3\"></param>\n        /// <param name=\"releaseConfig\"></param>\n        public void CreateQueryAndWidgets(Project model, List<string> listQueries, VstsRestAPI.Configuration _queriesVersion, VstsRestAPI.Configuration _dashboardVersion, VstsRestAPI.Configuration _releaseConfig, VstsRestAPI.Configuration _projectConfig, VstsRestAPI.Configuration _boardConfig,string teamName=null)\n        {\n            try\n            {\n                Queries objWidget = new Queries(_dashboardVersion);\n                Queries objQuery = new Queries(_queriesVersion);\n                List<QueryResponse> queryResults = new List<QueryResponse>();\n\n                //GetDashBoardDetails\n                string dashBoardId = objWidget.GetDashBoardId(model.ProjectName,teamName);\n                Thread.Sleep(2000); // Adding delay to get the existing dashboard ID \n\n                if (!string.IsNullOrEmpty(objQuery.LastFailureMessage))\n                {\n                    AddMessage(model.id.ErrorId(), \"Error while getting dashboardId: \" + objWidget.LastFailureMessage + Environment.NewLine);\n                }\n                Queries _newobjQuery = new Queries(_queriesVersion);\n                bool isFolderCreated=false;\n                if (!string.IsNullOrEmpty(teamName))\n                {\n                    string createQueryFolderJson = File.ReadAllText(HostingEnvironment.MapPath(\"~\") + @\"PreSetting\\\\CreateQueryFolder.json\");\n                    createQueryFolderJson = createQueryFolderJson.Replace(\"$TeamName$\", teamName);\n                    QueryResponse createFolderResponse = _newobjQuery.CreateQuery(model.ProjectName, createQueryFolderJson);\n                    isFolderCreated=createFolderResponse.id!=null? true : false;\n                }\n                foreach (string query in listQueries)\n                {\n                    //create query\n                    string json = model.ReadJsonFile(query);\n                    json = json.Replace(\"$projectId$\", model.Environment.ProjectName);\n                    QueryResponse response = new QueryResponse();\n                    if (isFolderCreated)\n                    {\n                        response = _newobjQuery.CreateQuery(model.ProjectName, json,teamName);\n                    }\n                    else\n                    {\n                        response = _newobjQuery.CreateQuery(model.ProjectName, json);\n                    }\n                    queryResults.Add(response);\n\n                    if (!string.IsNullOrEmpty(_newobjQuery.LastFailureMessage))\n                    {\n                        AddMessage(model.id.ErrorId(), \"Error while creating query: \" + _newobjQuery.LastFailureMessage + Environment.NewLine);\n                    }\n\n                }\n                //Create DashBoards\n                string dashBoardTemplate = string.Empty;\n                if(!string.IsNullOrEmpty(teamName))\n                {\n                    dashBoardTemplate = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, $\"\\\\Dashboard\\\\{teamName}\\\\Dashboard.json\");\n                }\n                else\n                {\n                    dashBoardTemplate = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, @\"\\Dashboard\\Dashboard.json\");\n                }\n                if (File.Exists(dashBoardTemplate))\n                {\n                    dynamic dashBoard = new System.Dynamic.ExpandoObject();\n                    dashBoard.name = \"Working\";\n                    dashBoard.position = 4;\n\n                    string jsonDashBoard = Newtonsoft.Json.JsonConvert.SerializeObject(dashBoard);\n                    string dashBoardIdToDelete = objWidget.CreateNewDashBoard(model.ProjectName, jsonDashBoard,teamName);\n\n                    bool isDashboardDeleted = objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardId,teamName);\n\n                    if (model.SelectedTemplate.ToLower() == \"bikesharing360\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n\n                            string xamarin_DroidBuild = model.BuildDefinitions.Where(x => x.Name == \"Xamarin.Droid\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"Xamarin.Droid\").FirstOrDefault().Id : string.Empty;\n                            string xamarin_IOSBuild = model.BuildDefinitions.Where(x => x.Name == \"Xamarin.iOS\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"Xamarin.iOS\").FirstOrDefault().Id : string.Empty;\n                            string ridesApiBuild = model.BuildDefinitions.Where(x => x.Name == \"RidesApi\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"RidesApi\").FirstOrDefault().Id : string.Empty;\n\n                            ReleaseDefinition objrelease = new ReleaseDefinition(_releaseConfig);\n                            int[] androidEnvironmentIds = objrelease.GetEnvironmentIdsByName(model.ProjectName, \"Xamarin.Android\", \"Test in HockeyApp\", \"Publish to store\");\n                            string androidbuildDefId = model.BuildDefinitions.Where(x => x.Name == \"Xamarin.Droid\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"Xamarin.Droid\").FirstOrDefault().Id : string.Empty;\n                            string androidreleaseDefId = model.ReleaseDefinitions.Where(x => x.Name == \"Xamarin.Android\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"Xamarin.Android\").FirstOrDefault().Id : string.Empty;\n\n                            int[] iosEnvironmentIds = objrelease.GetEnvironmentIdsByName(model.ProjectName, \"Xamarin.iOS\", \"Test in HockeyApp\", \"Publish to store\");\n                            string iosBuildDefId = model.BuildDefinitions.Where(x => x.Name == \"Xamarin.iOS\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"Xamarin.iOS\").FirstOrDefault().Id : string.Empty;\n                            string iosReleaseDefId = model.ReleaseDefinitions.Where(x => x.Name == \"Xamarin.iOS\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"Xamarin.iOS\").FirstOrDefault().Id : string.Empty;\n\n                            string ridesApireleaseDefId = model.ReleaseDefinitions.Where(x => x.Name == \"RidesApi\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"RidesApi\").FirstOrDefault().Id : string.Empty;\n                            QueryResponse openUserStories = objQuery.GetQueryByPathAndName(model.ProjectName, \"Open User Stories\", \"Shared%20Queries/Current%20Iteration\");\n\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$RidesAPIReleaseId$\", ridesApireleaseDefId)\n                            .Replace(\"$RidesAPIBuildId$\", ridesApiBuild)\n                            .Replace(\"$repositoryId$\", model.Environment.repositoryIdList.Where(x => x.Key.ToLower() == \"bikesharing360\").FirstOrDefault().Value)\n                            .Replace(\"$IOSBuildId$\", iosBuildDefId).Replace(\"$IOSReleaseId$\", iosReleaseDefId).Replace(\"$IOSEnv1$\", iosEnvironmentIds[0].ToString()).Replace(\"$IOSEnv2$\", iosEnvironmentIds[1].ToString())\n                            .Replace(\"$Xamarin.iOS$\", xamarin_IOSBuild)\n                            .Replace(\"$Xamarin.Droid$\", xamarin_DroidBuild)\n                            .Replace(\"$AndroidBuildId$\", androidbuildDefId).Replace(\"$AndroidreleaseDefId$\", androidreleaseDefId).Replace(\"$AndroidEnv1$\", androidEnvironmentIds[0].ToString()).Replace(\"$AndroidEnv2$\", androidEnvironmentIds[1].ToString())\n                            .Replace(\"$OpenUserStoriesId$\", openUserStories.id)\n                            .Replace(\"$projectId$\", model.Environment.ProjectId);\n\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n                        }\n                    }\n                    if (model.SelectedTemplate == \"Gen-MyHealthClinic\" || model.SelectedTemplate == \"Gen-PartsUnlimited\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n\n                            QueryResponse feedBack = objQuery.GetQueryByPathAndName(model.ProjectName, \"Feedback_WI\", \"Shared%20Queries\");\n                            QueryResponse unfinishedWork = objQuery.GetQueryByPathAndName(model.ProjectName, \"Unfinished Work_WI\", \"Shared%20Queries\");\n\n\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$Feedback$\", feedBack.id).\n                                         Replace(\"$AllItems$\", queryResults.Where(x => x.name == \"All Items_WI\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"All Items_WI\").FirstOrDefault().id : string.Empty).\n                                         Replace(\"$UserStories$\", queryResults.Where(x => x.name == \"User Stories\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"User Stories\").FirstOrDefault().id : string.Empty).\n                                         Replace(\"$TestCase$\", queryResults.Where(x => x.name == \"Test Case-Readiness\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Test Case-Readiness\").FirstOrDefault().id : string.Empty).\n                                         Replace(\"$teamID$\", \"\").\n                                         Replace(\"$teamName$\", model.ProjectName + \" Team\").\n                                         Replace(\"$projectID$\", model.Environment.ProjectId).\n                                         Replace(\"$Unfinished Work$\", unfinishedWork.id).\n                                         Replace(\"$projectId$\", model.Environment.ProjectId).\n                                         Replace(\"$projectName$\", model.ProjectName);\n\n\n                            if (model.SelectedTemplate == \"Gen-MyHealthClinic\")\n                            {\n                                dashBoardTemplate = dashBoardTemplate.Replace(\"$ReleaseDefId$\", model.ReleaseDefinitions.Where(x => x.Name == \"MyHealthClinicE2E\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"MyHealthClinicE2E\").FirstOrDefault().Id : string.Empty).\n                                             Replace(\"$ActiveBugs$\", queryResults.Where(x => x.name == \"Active Bugs_WI\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Active Bugs_WI\").FirstOrDefault().id : string.Empty).\n                                             Replace(\"$MyHealthClinicE2E$\", model.BuildDefinitions.Where(x => x.Name == \"MyHealthClinicE2E\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"MyHealthClinicE2E\").FirstOrDefault().Id : string.Empty).\n                                                 Replace(\"$RepositoryId$\", model.Environment.repositoryIdList.Any(i => i.Key.ToLower().Contains(\"myhealthclinic\")) ? model.Environment.repositoryIdList.Where(x => x.Key.ToLower() == \"myhealthclinic\").FirstOrDefault().Value : string.Empty);\n                            }\n                            if (model.SelectedTemplate == \"Gen-MyHealthClinic\" || model.SelectedTemplate == \"Gen-PartsUnlimited\")\n                            {\n                                QueryResponse workInProgress = objQuery.GetQueryByPathAndName(model.ProjectName, \"Work in Progress_WI\", \"Shared%20Queries\");\n\n                                dashBoardTemplate = dashBoardTemplate.Replace(\"$ReleaseDefId$\", model.ReleaseDefinitions.Where(x => x.Name == \"PartsUnlimitedE2E\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"PartsUnlimitedE2E\").FirstOrDefault().Id : string.Empty).\n                                          Replace(\"$ActiveBugs$\", queryResults.Where(x => x.name == \"Critical Bugs\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Critical Bugs\").FirstOrDefault().id : string.Empty).\n                                          Replace(\"$PartsUnlimitedE2E$\", model.BuildDefinitions.Where(x => x.Name == \"PartsUnlimitedE2E\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"PartsUnlimitedE2E\").FirstOrDefault().Id : string.Empty)\n                                          .Replace(\"$WorkinProgress$\", workInProgress.id)\n                                .Replace(\"$RepositoryId$\", model.Environment.repositoryIdList.Any(i => i.Key.ToLower().Contains(\"partsunlimited\")) ? model.Environment.repositoryIdList.Where(x => x.Key.ToLower() == \"partsunlimited\").FirstOrDefault().Value : string.Empty);\n\n                            }\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n\n                        }\n                    }\n                    if (model.SelectedTemplate.ToLower() == \"bikesharing 360\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n                            QueryResponse unfinishedWork = objQuery.GetQueryByPathAndName(model.ProjectName, \"Unfinished Work_WI\", \"Shared%20Queries\");\n                            string allItems = queryResults.Where(x => x.name == \"All Items_WI\").FirstOrDefault().id;\n                            string repositoryId = model.Environment.repositoryIdList.Where(x => x.Key.ToLower() == \"bikesharing360\").FirstOrDefault().Key;\n                            string bikeSharing360_PublicWeb = model.BuildDefinitions.Where(x => x.Name == \"BikeSharing360-PublicWeb\").FirstOrDefault().Id;\n\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$BikeSharing360-PublicWeb$\", bikeSharing360_PublicWeb)\n                                         .Replace(\"$All Items$\", allItems)\n                                         .Replace(\"$repositoryId$\", repositoryId)\n                                         .Replace(\"$Unfinished Work$\", unfinishedWork.id)\n                                         .Replace(\"$projectId$\", model.Environment.ProjectId);\n\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n                        }\n                    }\n                    if (model.SelectedTemplate == \"DL-Docker\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n                            var buildDefId = model.BuildDefinitions.FirstOrDefault();\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$BuildDefId$\", buildDefId.Id)\n                                  .Replace(\"$projectId$\", model.Environment.ProjectId)\n                                  .Replace(\"$PBI$\", queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id != null ? queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$Bugs$\", queryResults.Where(x => x.name == \"Bugs\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Bugs\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$AllWorkItems$\", queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$Feature$\", queryResults.Where(x => x.name == \"Feature\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Feature\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$Task$\", queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$Epic$\", queryResults.Where(x => x.name == \"Epics\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$RepoMyShuttleDocker$\", model.Environment.repositoryIdList.Where(x => x.Key == \"Docker\").FirstOrDefault().ToString() != \"\" ? model.Environment.repositoryIdList.Where(x => x.Key == \"MyShuttleDocker\").FirstOrDefault().Value : string.Empty)\n                                  .Replace(\"$Task$\", queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$AllWorkItems$\", queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$Feature$\", queryResults.Where(x => x.name == \"Feature\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Feature\").FirstOrDefault().id : string.Empty)\n                                  .Replace(\"$Projectid$\", model.Environment.ProjectId)\n                                  .Replace(\"$BuildDocker$\", model.BuildDefinitions.Where(x => x.Name == \"MHCDocker.build\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"MHCDocker.build\").FirstOrDefault().Id : string.Empty)\n                                  .Replace(\"$ReleaseDocker$\", model.ReleaseDefinitions.Where(x => x.Name == \"MHCDocker.release\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"MHCDocker.release\").FirstOrDefault().Id : string.Empty);\n\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n                        }\n                    }\n                    if (model.SelectedTemplate == \"Gen-MyShuttle\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n                            dashBoardTemplate = dashBoardTemplate\n                            .Replace(\"$PBI$\", queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id : string.Empty)\n                            .Replace(\"$Bugs$\", queryResults.Where(x => x.name == \"Bugs\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Bugs\").FirstOrDefault().id : string.Empty)\n                            .Replace(\"$AllWorkItems$\", queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault().id : string.Empty)\n                            .Replace(\"$TestPlan$\", queryResults.Where(x => x.name == \"Test Plans\").FirstOrDefault().id != null ? queryResults.Where(x => x.name == \"Test Plans\").FirstOrDefault().id : string.Empty)\n                            .Replace(\"$Test Cases$\", queryResults.Where(x => x.name == \"Test Cases\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Test Cases\").FirstOrDefault().id : string.Empty)\n                            .Replace(\"$Features$\", queryResults.Where(x => x.name == \"Feature\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Feature\").FirstOrDefault().id : string.Empty)\n                            .Replace(\"$Tasks$\", queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault().id : string.Empty)\n                            .Replace(\"$TestSuite$\", queryResults.Where(x => x.name == \"Test Suites\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Test Suites\").FirstOrDefault().id : string.Empty);\n\n\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n                        }\n                    }\n                    if (model.SelectedTemplate.ToLower() == \"myshuttle2\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$TestCases$\", queryResults.Where(x => x.name == \"Test Cases\").FirstOrDefault().id != null ? queryResults.Where(x => x.name == \"Test Cases\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$AllWorkItems$\", queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$PBI$\", queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$RepoMyShuttleCalc$\", model.Environment.repositoryIdList[\"MyShuttleCalc\"] != null ? model.Environment.repositoryIdList[\"MyShuttleCalc\"] : string.Empty)\n                                         .Replace(\"$TestPlan$\", queryResults.Where(x => x.name == \"Test Plans\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Test Plans\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$Tasks$\", queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$Bugs$\", queryResults.Where(x => x.name == \"Bugs\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Bugs\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$Features$\", queryResults.Where(x => x.name == \"Feature\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Feature\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$RepoMyShuttle2$\", model.Environment.repositoryIdList.Where(x => x.Key.ToLower() == \"myshuttle2\").FirstOrDefault().ToString() != \"\" ? model.Environment.repositoryIdList.Where(x => x.Key.ToLower() == \"myshuttle2\").FirstOrDefault().Value : string.Empty);\n\n\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n                        }\n                    }\n                    if (model.SelectedTemplate.ToLower() == \"dl-docker\" || model.SelectedTemplate.ToLower() == \"dl-php\" || model.SelectedTemplate.ToLower() == \"dl-sonarqube\" || model.SelectedTemplate.ToLower() == \"dl-github\" || model.SelectedTemplate.ToLower() == \"dl-whitesource bolt\" || model.SelectedTemplate.ToLower() == \"dl-DeploymentGroups\" || model.SelectedTemplate.ToLower() == \"dl-octopus\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$Task$\", queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Tasks\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$AllWorkItems$\", queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"All Work Items\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$Feature$\", queryResults.Where(x => x.name == \"Feature\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Feature\").FirstOrDefault().id : string.Empty)\n                                         .Replace(\"$Projectid$\", model.Environment.ProjectId)\n                                         .Replace(\"$Epic$\", queryResults.Where(x => x.name == \"Epics\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Epics\").FirstOrDefault().id : string.Empty);\n\n                            if (model.SelectedTemplate.ToLower() == \"dl-php\")\n                            {\n                                dashBoardTemplate = dashBoardTemplate.Replace(\"$buildPHP$\", model.BuildDefinitions.Where(x => x.Name == \"PHP\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"PHP\").FirstOrDefault().Id : string.Empty)\n                        .Replace(\"$releasePHP$\", model.ReleaseDefinitions.Where(x => x.Name == \"PHP\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"PHP\").FirstOrDefault().Id : string.Empty)\n                                 .Replace(\"$PBI$\", queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id : string.Empty);\n                            }\n                            else if (model.SelectedTemplate.ToLower() == \"dl-sonarqube\")\n                            {\n                                dashBoardTemplate = dashBoardTemplate.Replace(\"$BuildSonarQube$\", model.BuildDefinitions.Where(x => x.Name == \"SonarQube\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"SonarQube\").FirstOrDefault().Id : string.Empty)\n                                .Replace(\"$PBI$\", queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id : string.Empty);\n\n                            }\n                            else if (model.SelectedTemplate.ToLower() == \"dl-github\")\n                            {\n                                dashBoardTemplate = dashBoardTemplate.Replace(\"$PBI$\", queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id : string.Empty)\n                                             .Replace(\"$buildGitHub$\", model.BuildDefinitions.Where(x => x.Name == \"GitHub\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"GitHub\").FirstOrDefault().Id : string.Empty)\n                                             .Replace(\"$Hosted$\", model.Environment.AgentQueues[\"Hosted\"].ToString())\n                                             .Replace(\"$releaseGitHub$\", model.ReleaseDefinitions.Where(x => x.Name == \"GitHub\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"GitHub\").FirstOrDefault().Id : string.Empty);\n\n                            }\n                            else if (model.SelectedTemplate.ToLower() == \"dl-whitesource bolt\")\n                            {\n                                dashBoardTemplate = dashBoardTemplate.Replace(\"$PBI$\", queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id : string.Empty)\n                                          .Replace(\"$buildWhiteSource$\", model.BuildDefinitions.Where(x => x.Name == \"WhiteSourceBolt\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"WhiteSourceBolt\").FirstOrDefault().Id : string.Empty);\n                            }\n\n                            else if (model.SelectedTemplate.ToLower() == \"dl-deploymentGroups\")\n                            {\n                                QueryResponse WorkInProgress = objQuery.GetQueryByPathAndName(model.ProjectName, \"Work in Progress_WI\", \"Shared%20Queries\");\n                                dashBoardTemplate = dashBoardTemplate.Replace(\"$WorkinProgress$\", WorkInProgress.id);\n                            }\n\n                            else if (model.SelectedTemplate.ToLower() == \"dl-octopus\")\n                            {\n                                var BuildDefId = model.BuildDefinitions.FirstOrDefault();\n                                if (BuildDefId != null)\n                                {\n                                    dashBoardTemplate = dashBoardTemplate.Replace(\"$BuildDefId$\", BuildDefId.Id)\n                                            .Replace(\"$PBI$\", queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault() != null ? queryResults.Where(x => x.name == \"Product Backlog Items\").FirstOrDefault().id : string.Empty);\n                                }\n                            }\n\n\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n                        }\n                    }\n\n                    if (model.SelectedTemplate.ToLower() == \"gen-smarthotel360\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            string startdate = DateTime.Now.ToString(\"yyyy-MM-dd\");\n                            VstsRestAPI.ProjectsAndTeams.Teams objTeam = new VstsRestAPI.ProjectsAndTeams.Teams(_projectConfig);\n                            TeamResponse defaultTeam = objTeam.GetTeamByName(model.ProjectName, model.ProjectName + \" team\");\n                            VstsRestAPI.WorkItemAndTracking.ClassificationNodes objnodes = new VstsRestAPI.WorkItemAndTracking.ClassificationNodes(_boardConfig);\n                            SprintResponse.Sprints sprints = objnodes.GetSprints(model.ProjectName);\n                            QueryResponse allItems = objQuery.GetQueryByPathAndName(model.ProjectName, \"All Items_WI\", \"Shared%20Queries\");\n                            QueryResponse backlogBoardWI = objQuery.GetQueryByPathAndName(model.ProjectName, \"BacklogBoard WI\", \"Shared%20Queries\");\n                            QueryResponse boardWI = objQuery.GetQueryByPathAndName(model.ProjectName, \"Board WI\", \"Shared%20Queries\");\n                            QueryResponse bugsWithoutReproSteps = objQuery.GetQueryByPathAndName(model.ProjectName, \"Bugs without Repro Steps\", \"Shared%20Queries\");\n                            QueryResponse feedback = objQuery.GetQueryByPathAndName(model.ProjectName, \"Feedback_WI\", \"Shared%20Queries\");\n                            QueryResponse mobileTeamWork = objQuery.GetQueryByPathAndName(model.ProjectName, \"MobileTeam_Work\", \"Shared%20Queries\");\n                            QueryResponse webTeamWork = objQuery.GetQueryByPathAndName(model.ProjectName, \"WebTeam_Work\", \"Shared%20Queries\");\n                            QueryResponse stateofTestCase = objQuery.GetQueryByPathAndName(model.ProjectName, \"State of TestCases\", \"Shared%20Queries\");\n                            QueryResponse bugs = objQuery.GetQueryByPathAndName(model.ProjectName, \"Open Bugs_WI\", \"Shared%20Queries\");\n\n                            QueryResponse unfinishedWork = objQuery.GetQueryByPathAndName(model.ProjectName, \"Unfinished Work_WI\", \"Shared%20Queries\");\n                            QueryResponse workInProgress = objQuery.GetQueryByPathAndName(model.ProjectName, \"Work in Progress_WI\", \"Shared%20Queries\");\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$WorkinProgress$\", workInProgress.id)\n                                .Replace(\"$projectId$\", model.Environment.ProjectId != null ? model.Environment.ProjectId : string.Empty)\n                                .Replace(\"$PublicWebBuild$\", model.BuildDefinitions.Where(x => x.Name == \"SmartHotel_Petchecker-Web\").FirstOrDefault() != null ? model.BuildDefinitions.Where(x => x.Name == \"SmartHotel_Petchecker-Web\").FirstOrDefault().Id : string.Empty)\n                                .Replace(\"$DefaultTeamId$\", defaultTeam.id != null ? defaultTeam.id : string.Empty).Replace(\"$AllItems$\", allItems.id != null ? allItems.id : string.Empty)\n                                .Replace(\"$BacklogBoardWI$\", backlogBoardWI.id != null ? backlogBoardWI.id : string.Empty)\n                                .Replace(\"$StateofTestCases$\", stateofTestCase.id != null ? stateofTestCase.id : string.Empty)\n                                .Replace(\"$Feedback$\", feedback.id != null ? feedback.id : string.Empty)\n                                .Replace(\"$RepoPublicWeb$\", model.Environment.repositoryIdList.ContainsKey(\"PublicWeb\") ? model.Environment.repositoryIdList[\"PublicWeb\"] : string.Empty)\n                                .Replace(\"$MobileTeamWork$\", mobileTeamWork.id != null ? mobileTeamWork.id : string.Empty).Replace(\"$WebTeamWork$\", webTeamWork.id != null ? webTeamWork.id : string.Empty)\n                                .Replace(\"$Bugs$\", bugs.id != null ? bugs.id : string.Empty)\n                                .Replace(\"$sprint2$\", sprints.value.Where(x => x.name == \"Sprint 2\").FirstOrDefault() != null ? sprints.value.Where(x => x.name == \"Sprint 2\").FirstOrDefault().id : string.Empty)\n                                .Replace(\"$sprint3$\", sprints.value.Where(x => x.name == \"Sprint 3\").FirstOrDefault() != null ? sprints.value.Where(x => x.name == \"Sprint 3\").FirstOrDefault().id : string.Empty)\n                                .Replace(\"$startDate$\", startdate)\n                                .Replace(\"$BugswithoutRepro$\", bugsWithoutReproSteps.id != null ? bugsWithoutReproSteps.id : string.Empty).Replace(\"$UnfinishedWork$\", unfinishedWork.id != null ? unfinishedWork.id : string.Empty)\n                                .Replace(\"$RepoSmartHotel360$\", model.Environment.repositoryIdList.ContainsKey(\"SmartHotel360\") ? model.Environment.repositoryIdList[\"SmartHotel360\"] : string.Empty)\n                                .Replace(\"$SmartHotel360_Website-Deploy$\", model.ReleaseDefinitions.Where(x => x.Name == \"SmartHotel360_Website-Deploy\").FirstOrDefault() != null ? model.ReleaseDefinitions.Where(x => x.Name == \"SmartHotel360_Website-Deploy\").FirstOrDefault().Id : string.Empty);\n\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n\n                        }\n                    }\n                    if (model.SelectedTemplate.ToLower() == \"contososhuttle\" || model.SelectedTemplate.ToLower() == \"contososhuttle2\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            QueryResponse workInProgress = objQuery.GetQueryByPathAndName(model.ProjectName, \"Work in Progress_WI\", \"Shared%20Queries\");\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$WorkinProgress$\", workInProgress.id);\n\n                            string isDashBoardCreated = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete);\n                        }\n                    }\n                    if (model.SelectedTemplate.ToLower() == \"gen-eshoponweb\")\n                    {\n                        if (isDashboardDeleted)\n                        {\n                            string startDate = DateTime.Now.AddDays(-3).ToString(\"yyyy-MM-dd\");\n                            string endDate = DateTime.Now.AddDays(3).ToString(\"yyyy-MM-dd\");\n                            dashBoardTemplate = model.ReadJsonFile(dashBoardTemplate);\n                            Teams objTeam = new Teams(_projectConfig);\n                            TeamResponse teamDetails = objTeam.GetTeamByName(model.ProjectName, teamName != null ? teamName : model.ProjectName + \" team\");\n                            foreach (string queries in listQueries)\n                            {\n                                string queryName = Path.GetFileName(queries).Replace(\".json\", string.Empty);\n                                string placeHolder = \"$\" + queryName + \"$\";\n                                QueryResponse query = objQuery.GetQueryByPathAndName(model.ProjectName, queryName, \"Shared%20Queries/\"+teamName);\n                                dashBoardTemplate = dashBoardTemplate.Replace(placeHolder, query.id != null ? query.id : string.Empty);\n                            }\n                            dashBoardTemplate = dashBoardTemplate.Replace(\"$projectId$\", model.Environment.ProjectId != null ? model.Environment.ProjectId : string.Empty).\n                                Replace(\"$DefaultTeamId$\", teamDetails.id != null ? teamDetails.id : string.Empty).Replace(\"$startDate$\", startDate).Replace(\"$endDate$\", endDate);\n                            string dashboardId = objWidget.CreateNewDashBoard(model.ProjectName, dashBoardTemplate,teamName);\n                            objWidget.DeleteDefaultDashboard(model.ProjectName, dashBoardIdToDelete,teamName);\n                        }\n                    }\n                }\n            }\n            catch (OperationCanceledException oce)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + oce.Message + \"\\t\" + oce.InnerException.Message + \"\\n\" + oce.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while creating Queries and Widgets: Operation cancelled exception \" + oce.Message + \"\\r\\n\");\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while creating Queries and Widgets: \" + ex.Message);\n            }\n        }\n\n        public bool InstallExtensions(Project model, string accountName, string PAT)\n        {\n            try\n            {\n                //string templatesFolder = HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\\";\n                string projTemplateFile = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, \"Extensions.json\");\n                //string.Format(templatesFolder + @\"{0}\\Extensions.json\", model.SelectedTemplate);\n                if (!(File.Exists(projTemplateFile)))\n                {\n                    return false;\n                }\n                string templateItems = File.ReadAllText(projTemplateFile);\n                var template = JsonConvert.DeserializeObject<RequiredExtensions.Extension>(templateItems);\n                string requiresExtensionNames = string.Empty;\n\n                //Check for existing extensions\n                if (template.Extensions.Count > 0)\n                {\n                    Dictionary<string, bool> dict = new Dictionary<string, bool>();\n                    foreach (RequiredExtensions.ExtensionWithLink ext in template.Extensions)\n                    {\n                        if (!dict.ContainsKey(ext.extensionName))\n                        {\n                            dict.Add(ext.extensionName, false);\n                        }\n                    }\n                    //var connection = new VssConnection(new Uri(string.Format(\"https://{0}.visualstudio.com\", accountName)), new Microsoft.VisualStudio.Services.OAuth.VssOAuthAccessTokenCredential(PAT));// VssOAuthCredential(PAT));\n                    var connection = new VssConnection(new Uri(string.Format(\"https://{0}.visualstudio.com\", accountName)), new VssBasicCredential(string.Empty, PAT));// VssOAuthCredential(PAT));\n\n                    var client = connection.GetClient<ExtensionManagementHttpClient>();\n                    var installed = client.GetInstalledExtensionsAsync().Result;\n                    var extensions = installed.Where(x => x.Flags == 0).ToList();\n\n                    var trustedFlagExtensions = installed.Where(x => x.Flags == ExtensionFlags.Trusted).ToList();\n                    var builtInExtensions = installed.Where(x => x.Flags.ToString() == \"BuiltIn, Trusted\").ToList();\n                    extensions.AddRange(trustedFlagExtensions);\n                    extensions.AddRange(builtInExtensions);\n\n                    foreach (var ext in extensions)\n                    {\n                        foreach (var extension in template.Extensions)\n                        {\n                            if (extension.extensionName.ToLower() == ext.ExtensionDisplayName.ToLower() && extension.extensionId.ToLower() == ext.ExtensionName.ToLower())\n                            {\n                                dict[extension.extensionName] = true;\n                            }\n                        }\n                    }\n                    var required = dict.Where(x => x.Value == false).ToList();\n\n                    if (required.Count > 0)\n                    {\n                        Parallel.ForEach(required, async req =>\n                        {\n                            string publisherName = template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().publisherId;\n                            string extensionName = template.Extensions.Where(x => x.extensionName == req.Key).FirstOrDefault().extensionId;\n                            try\n                            {\n                                InstalledExtension extension = null;\n                                extension = await client.InstallExtensionByNameAsync(publisherName, extensionName);\n                            }\n                            catch (OperationCanceledException cancelException)\n                            {\n                                AddMessage(model.id.ErrorId(), \"Error while Installing extensions - operation cancelled: \" + cancelException.Message + Environment.NewLine);\n                            }\n                            catch (Exception exc)\n                            {\n                                AddMessage(model.id.ErrorId(), \"Error while Installing extensions: \" + exc.Message);\n                            }\n                        });\n                    }\n                }\n                return true;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while Installing extensions: \" + ex.Message);\n                return false;\n            }\n        }\n        /// <summary>\n        /// WIKI set up operations \n        /// Project as Wiki and Code as Wiki\n        /// </summary>\n        /// <param name=\"model\"></param>\n        /// <param name=\"_wikiConfiguration\"></param>\n        public void CreateProjetWiki(string templatesFolder, Project model, Configuration _wikiConfiguration)\n        {\n            try\n            {\n                ManageWiki manageWiki = new ManageWiki(_wikiConfiguration);\n                string projectWikiFolderPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, @\"\\Wiki\\ProjectWiki\");\n                //templatesFolder + model.SelectedTemplate + \"\\\\Wiki\\\\ProjectWiki\";\n                if (Directory.Exists(projectWikiFolderPath))\n                {\n                    string createWiki = string.Format(templatesFolder + \"\\\\CreateWiki.json\"); // check is path\n                    if (File.Exists(createWiki))\n                    {\n                        string jsonString = File.ReadAllText(createWiki);\n                        jsonString = jsonString.Replace(\"$ProjectID$\", model.Environment.ProjectId)\n                            .Replace(\"$Name$\", model.Environment.ProjectName);\n                        ProjectwikiResponse.Projectwiki projectWikiResponse = manageWiki.CreateProjectWiki(jsonString, model.Environment.ProjectId);\n                        string[] subDirectories = Directory.GetDirectories(projectWikiFolderPath);\n                        foreach (var dir in subDirectories)\n                        {\n                            //dirName==parentName//\n                            string[] dirSplit = dir.Split('\\\\');\n                            string dirName = dirSplit[dirSplit.Length - 1];\n                            string sampleContent = File.ReadAllText(templatesFolder + \"\\\\SampleContent.json\");\n                            sampleContent = sampleContent.Replace(\"$Content$\", \"Sample wiki content\");\n                            bool isPage = manageWiki.CreateUpdatePages(sampleContent, model.Environment.ProjectName, projectWikiResponse.id, dirName);//check is created\n\n                            if (isPage)\n                            {\n                                string[] getFiles = Directory.GetFiles(dir);\n                                if (getFiles.Length > 0)\n                                {\n                                    List<string> childFileNames = new List<string>();\n                                    foreach (var file in getFiles)\n                                    {\n                                        string[] fileNameExtension = file.Split('\\\\');\n                                        string fileName = (fileNameExtension[fileNameExtension.Length - 1].Split('.'))[0];\n                                        string fileContent = model.ReadJsonFile(file);\n                                        bool isCreated = false;\n                                        Dictionary<string, string> dic = new Dictionary<string, string>();\n                                        dic.Add(\"content\", fileContent);\n                                        string newContent = JsonConvert.SerializeObject(dic);\n                                        if (fileName == dirName)\n                                        {\n                                            manageWiki.DeletePage(model.Environment.ProjectName, projectWikiResponse.id, fileName);\n                                            isCreated = manageWiki.CreateUpdatePages(newContent, model.Environment.ProjectName, projectWikiResponse.id, fileName);\n                                        }\n                                        else\n                                        {\n                                            isCreated = manageWiki.CreateUpdatePages(newContent, model.Environment.ProjectName, projectWikiResponse.id, fileName);\n                                        }\n                                        if (isCreated)\n                                        {\n                                            childFileNames.Add(fileName);\n                                        }\n                                    }\n                                    if (childFileNames.Count > 0)\n                                    {\n                                        foreach (var child in childFileNames)\n                                        {\n                                            if (child != dirName)\n                                            {\n                                                string movePages = File.ReadAllText(templatesFolder + @\"\\MovePages.json\");\n                                                if (!string.IsNullOrEmpty(movePages))\n                                                {\n                                                    movePages = movePages.Replace(\"$ParentFile$\", dirName).Replace(\"$ChildFile$\", child);\n                                                    manageWiki.MovePages(movePages, model.Environment.ProjectId, projectWikiResponse.id);\n                                                }\n                                            }\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n        public void CreateCodeWiki(Project model, VstsRestAPI.Configuration _wikiConfiguration)\n        {\n            try\n            {\n                string wikiFolder = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, @\"\\Wiki\");\n                //templatesFolder + model.SelectedTemplate + \"\\\\Wiki\";\n                if (Directory.Exists(wikiFolder))\n                {\n                    string[] wikiFilePaths = Directory.GetFiles(wikiFolder);\n                    if (wikiFilePaths.Length > 0)\n                    {\n                        ManageWiki manageWiki = new ManageWiki(_wikiConfiguration);\n\n                        foreach (string wiki in wikiFilePaths)\n                        {\n                            string[] nameExtension = wiki.Split('\\\\');\n                            string name = (nameExtension[nameExtension.Length - 1]).Split('.')[0];\n                            string json = model.ReadJsonFile(wiki);\n                            bool isImported = false;\n                            foreach (string repository in model.Environment.repositoryIdList.Keys)\n                            {\n                                if (model.Environment.repositoryIdList.ContainsKey(repository) && !string.IsNullOrEmpty(model.Environment.repositoryIdList[repository]))\n                                {\n                                    if (model.Environment.ReposImported.ContainsKey(model.Environment.repositoryIdList[repository]))\n                                    {\n                                        isImported = model.Environment.ReposImported[model.Environment.repositoryIdList[repository]];\n                                    }\n\n                                    string placeHolder = string.Format(\"${0}$\", repository);\n                                    if (json.Contains(placeHolder))\n                                    {\n                                        json = json.Replace(placeHolder, model.Environment.repositoryIdList[repository])\n                                            .Replace(\"$Name$\", name).Replace(\"$ProjectID$\", model.Environment.ProjectId);\n                                        break;\n                                    }\n                                }\n                            }\n                            if (isImported)\n                            {\n                                bool isWiki = manageWiki.CreateCodeWiki(json);\n                                if (isWiki)\n                                {\n                                    AddMessage(model.id, \"Created Wiki\");\n                                }\n                                else if (!string.IsNullOrEmpty(manageWiki.LastFailureMessage))\n                                {\n                                    AddMessage(model.id.ErrorId(), \"Error while creating wiki: \" + manageWiki.LastFailureMessage);\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                AddMessage(model.id.ErrorId(), \"Error while creating wiki: \" + ex.Message);\n            }\n        }\n        public void CreateDeploymentGroup(string templateFolder, Project model, Configuration _deploymentGroup)\n        {\n            string path = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, @\"\\DeploymentGroups\\CreateDeploymentGroup.json\");\n            //templateFolder + model.SelectedTemplate + \"\\\\DeploymentGroups\\\\CreateDeploymentGroup.json\";\n            if (File.Exists(path))\n            {\n                string json = model.ReadJsonFile(path);\n                if (!string.IsNullOrEmpty(json))\n                {\n                    DeploymentGroup deploymentGroup = new DeploymentGroup(_deploymentGroup);\n                    bool isCreated = deploymentGroup.CreateDeploymentGroup(json);\n                    if (isCreated) { } else if (!string.IsNullOrEmpty(deploymentGroup.LastFailureMessage)) { AddMessage(model.id.ErrorId(), \"Error while creating deployment group: \" + deploymentGroup.LastFailureMessage); }\n                }\n            }\n        }\n        [AllowAnonymous]\n        [HttpPost]\n        public string GetTemplateMessage(string TemplateName)\n        {\n            try\n            {\n                string groupDetails = \"\";\n                TemplateSelection.Templates templates = new TemplateSelection.Templates();\n                string templatesPath = \"\"; templatesPath = HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\\";\n                if (File.Exists(templatesPath + \"TemplateSetting.json\"))\n                {\n                    groupDetails = File.ReadAllText(templatesPath + @\"\\TemplateSetting.json\");\n                    templates = JsonConvert.DeserializeObject<TemplateSelection.Templates>(groupDetails);\n                    foreach (var template in templates.GroupwiseTemplates.FirstOrDefault().Template)\n                    {\n                        if (template.TemplateFolder.ToLower() == TemplateName.ToLower())\n                        {\n                            return template.Message;\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return string.Empty;\n        }\n\n        private bool AddUserToProject(Configuration con, Project model)\n        {\n            try\n            {\n                HttpServices httpService = new HttpServices(con);\n                string PAT = string.Empty;\n                string descriptorUrl = string.Format(\"_apis/graph/descriptors/{0}?api-version={1}\", Convert.ToString(model.Environment.ProjectId), con.VersionNumber);\n                var groups = httpService.Get(descriptorUrl);\n                //dynamic obj = new dynamic();\n                if (groups.IsSuccessStatusCode)\n                {\n                    dynamic obj = JsonConvert.DeserializeObject<dynamic>(groups.Content.ReadAsStringAsync().Result);\n                    string getGroupDescriptor = string.Format(\"_apis/graph/groups?scopeDescriptor={0}&api-version={1}\", Convert.ToString(obj.value), con.VersionNumber);\n                    var getAllGroups = httpService.Get(getGroupDescriptor);\n                    if (getAllGroups.IsSuccessStatusCode)\n                    {\n                        GetAllGroups.GroupList allGroups = JsonConvert.DeserializeObject<GetAllGroups.GroupList>(getAllGroups.Content.ReadAsStringAsync().Result);\n                        foreach (var group in allGroups.value)\n                        {\n                            if (group.displayName.ToLower() == \"project administrators\")\n                            {\n                                string urpParams = string.Format(\"_apis/graph/users?groupDescriptors={0}&api-version={1}\", Convert.ToString(group.descriptor), con.VersionNumber);\n                                var json = CreatePrincipalReqBody(model.Email);\n                                var response = httpService.Post(json, urpParams);\n                            }\n                            if (group.displayName.ToLower() == model.ProjectName.ToLower() + \" team\")\n                            {\n                                string urpParams = string.Format(\"_apis/graph/users?groupDescriptors={0}&api-version={1}\", Convert.ToString(group.descriptor), con.VersionNumber);\n                                var json = CreatePrincipalReqBody(model.Email);\n                                var response = httpService.Post(json, urpParams);\n                            }\n                        }\n                        return true;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        public static string CreatePrincipalReqBody(string name)\n        {\n            return \"{\\\"principalName\\\": \\\"\" + name + \"\\\"}\";\n        }\n        #endregion\n\n        public bool CheckForInstalledExtensions(string extensionJsonFile, string token, string account)\n        {\n            bool ExtensionRequired = false;\n            try\n            {\n                string accountName = account;\n                string pat = token;\n                string listedExtension = File.ReadAllText(extensionJsonFile);\n                var template = JsonConvert.DeserializeObject<RequiredExtensions.Extension>(listedExtension);\n                string requiresExtensionNames = string.Empty;\n                string requiredMicrosoftExt = string.Empty;\n                string requiredThirdPartyExt = string.Empty;\n                string finalExtensionString = string.Empty;\n\n                //Check for existing extensions\n                if (template.Extensions.Count > 0)\n                {\n                    Dictionary<string, bool> dict = new Dictionary<string, bool>();\n                    foreach (RequiredExtensions.ExtensionWithLink ext in template.Extensions)\n                    {\n                        dict.Add(ext.extensionName, false);\n                    }\n                    //pat = Convert.ToBase64String(System.Text.Encoding.ASCII.GetBytes(string.Format(\"{0}:{1}\", \"\", pat)));//configuration.PersonalAccessToken;\n\n                    //var connection = new VssConnection(new Uri(string.Format(\"https://{0}.visualstudio.com\", accountName)), new Microsoft.VisualStudio.Services.OAuth.VssOAuthAccessTokenCredential(pat));// VssOAuthCredential(PAT));\n                    var connection = new VssConnection(new Uri(string.Format(\"https://{0}.visualstudio.com\", accountName)), new VssBasicCredential(string.Empty, pat));// VssOAuthCredential(PAT));\n\n                    var client = connection.GetClient<ExtensionManagementHttpClient>();\n                    var installed = client.GetInstalledExtensionsAsync().Result;\n                    var extensions = installed.Where(x => x.Flags == 0).ToList();\n\n                    var trustedFlagExtensions = installed.Where(x => x.Flags == ExtensionFlags.Trusted).ToList();\n                    var builtInExtensions = installed.Where(x => x.Flags.ToString() == \"BuiltIn, Trusted\").ToList();\n\n                    extensions.AddRange(trustedFlagExtensions);\n                    extensions.AddRange(builtInExtensions);\n\n                    foreach (var ext in extensions)\n                    {\n                        foreach (var extension in template.Extensions)\n                        {\n                            if (extension.extensionName.ToLower() == ext.ExtensionDisplayName.ToLower())\n                            {\n                                dict[extension.extensionName] = true;\n                            }\n                        }\n                    }\n                    var required = dict.Where(x => x.Value == false).ToList();\n                    if (required.Count > 0)\n                    {\n                        ExtensionRequired = true;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                //return Json(new { message = \"Error\", status = \"false\" }, JsonRequestBehavior.AllowGet);\n                ExtensionRequired = false;\n            }\n            return ExtensionRequired;\n        }\n\n        private void CreateVaribaleGroups(Project model, Configuration _variableGroups)\n        {\n            VariableGroups variableGroups = new VariableGroups(_variableGroups);\n            model.Environment.VariableGroups = new Dictionary<int, string>();\n            string filePath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, model.SelectedTemplate, @\"\\VariableGroups\\VariableGroup.json\");\n            if (File.Exists(filePath))\n            {\n                string jsonString = model.ReadJsonFile(filePath);\n                GetVariableGroups.Groups groups = JsonConvert.DeserializeObject<GetVariableGroups.Groups>(jsonString);\n                if (groups.count > 0)\n                {\n                    foreach (var group in groups.value)\n                    {\n                        GetVariableGroups.VariableGroupsCreateResponse response = variableGroups.PostVariableGroups(JsonConvert.SerializeObject(group));\n                        if (!string.IsNullOrEmpty(response.name))\n                        {\n                            model.Environment.VariableGroups.Add(response.id, response.name);\n                        }\n                    }\n                }\n            }\n        }\n\n        /// <summary>\n        /// Checkign for template existance - if template is present in private path, return true else return false\n        /// </summary>\n        /// <param name=\"templatName\"></param>\n        /// <returns></returns>\n        public bool WhereDoseTemplateBelongTo(string templatName)\n        {\n            string privatePath = HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\";\n            string privateTemplate = Path.Combine(privatePath, templatName);\n\n            if (!Directory.Exists(privatePath))\n            {\n                Directory.CreateDirectory(privatePath);\n            }\n            string[] privatedirs = Directory.GetDirectories(privatePath);\n\n            if (privatedirs.Contains(privateTemplate))\n            {\n                return true;\n            }\n            return false;\n        }\n\n        public void CreateDeliveryPlans(Project model, VstsRestAPI.Configuration _projectConfig)\n        {\n            try\n            {\n                Plans plans = new Plans(_projectConfig);\n                string plansPath = GetJsonFilePath(model.IsPrivatePath, model.PrivateTemplatePath, templateUsed, @\"\\DeliveryPlans\");\n                if (Directory.Exists(plansPath))\n                {\n                    string[] files = Directory.GetFiles(plansPath);\n                    if (files.Length > 0)\n                    {\n                        _projectConfig.ProjectId = model.Environment.ProjectId;\n                        VstsRestAPI.Extractor.ClassificationNodes nodes = new VstsRestAPI.Extractor.ClassificationNodes(_projectConfig);\n                        string defaultTeamID = string.Empty;\n                        var teamsRes = nodes.GetTeams();\n                        RootTeams rootTeams = new RootTeams();\n                        if (teamsRes != null && teamsRes.IsSuccessStatusCode)\n                        {\n                            rootTeams = JsonConvert.DeserializeObject<RootTeams>(teamsRes.Content.ReadAsStringAsync().Result);\n                        }\n                        foreach (var dfile in files)\n                        {\n                            string content = File.ReadAllText(dfile);\n                            foreach(var team in rootTeams.value)\n                            {\n                                content = content.Replace($\"${team.name}$\", team.id);\n                            }\n                            Dictionary<object, object> dict = new Dictionary<object, object>();\n                            dict = JsonConvert.DeserializeObject<Dictionary<object, object>>(content);\n                            var planCreated = plans.AddDeliveryPlan(content, _projectConfig.Project);\n                            if (!string.IsNullOrEmpty(planCreated.id))\n                            {\n                                if (dict.ContainsKey(\"revision\"))\n                                {\n                                    dict[\"revision\"] = 1;\n                                }\n                                else\n                                {\n                                    dict.Add(\"revision\", 1);\n                                }\n                                plans.UpdateDeliveryPlan(JsonConvert.SerializeObject(dict), _projectConfig.Project, planCreated.id);\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n\n            }\n        }\n\n        public void IncludeSubAreas(string json, VstsRestAPI.Configuration _projectConfig, TeamResponse teamRes)\n        {\n            try\n            {\n            }\n            catch(Exception ex)\n            {\n\n            }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Services/TemplateService.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Linq;\nusing System.Net;\nusing System.Net.Http;\nusing System.Web;\nusing System.Web.Hosting;\nusing VstsDemoBuilder.Extensions;\nusing VstsDemoBuilder.Models;\nusing VstsDemoBuilder.ServiceInterfaces;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing static VstsDemoBuilder.Models.TemplateSelection;\n\nnamespace VstsDemoBuilder.Services\n{\n    public class TemplateService : ITemplateService\n    {\n\n        public List<TemplateDetails> GetAllTemplates()\n        {\n            var templates = new TemplateSelection.Templates();\n            var TemplateDetails = new List<TemplateDetails>();\n            try\n            {\n                Project model = new Project();\n                string[] dirTemplates = Directory.GetDirectories(System.Web.Hosting.HostingEnvironment.MapPath(\"~\") + @\"\\Templates\");\n                List<string> TemplateNames = new List<string>();\n                //Taking all the template folder and adding to list\n                foreach (string template in dirTemplates)\n                {\n                    TemplateNames.Add(Path.GetFileName(template));\n                    // Reading Template setting file to check for private templates                   \n                }\n\n                if (System.IO.File.Exists(System.Web.Hosting.HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\TemplateSetting.json\"))\n                {\n                    string templateSetting = model.ReadJsonFile(System.Web.Hosting.HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\TemplateSetting.json\");\n                    templates = JsonConvert.DeserializeObject<TemplateSelection.Templates>(templateSetting);\n\n                    foreach (var templateList in templates.GroupwiseTemplates)\n                    {\n                        foreach (var template in templateList.Template)\n                        {\n                            TemplateDetails tmp = new TemplateDetails();\n\n                            tmp.Name = template.Name;\n                            tmp.ShortName = template.ShortName;\n                            tmp.Tags = template.Tags;\n                            tmp.Description = template.Description;\n                            //tmp.TemplateFolder = template.TemplateFolder;\n                            TemplateDetails.Add(tmp);\n                        }\n                    }\n\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t BulkProject \\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return TemplateDetails;\n        }\n\n        public List<TemplateDetails> GetTemplatesByTags(string Tags)\n        {\n            var templates = new TemplateSelection.Templates();\n            var Selectedtemplates = new List<TemplateDetails>();\n            char delimiter = ',';\n            string[] strComponents = Tags.Split(delimiter);\n            try\n            {\n                Project model = new Project();\n                string[] dirTemplates = Directory.GetDirectories(System.Web.Hosting.HostingEnvironment.MapPath(\"~\") + @\"\\Templates\");\n                List<string> TemplateNames = new List<string>();\n                //Taking all the template folder and adding to list\n                foreach (string template in dirTemplates)\n                {\n                    TemplateNames.Add(Path.GetFileName(template));\n                    // Reading Template setting file to check for private templates                   \n                }\n\n                if (System.IO.File.Exists(System.Web.Hosting.HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\TemplateSetting.json\"))\n                {\n                    string templateSetting = model.ReadJsonFile(System.Web.Hosting.HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\TemplateSetting.json\");\n                    templates = JsonConvert.DeserializeObject<TemplateSelection.Templates>(templateSetting);\n\n                    foreach (var groupwiseTemplates in templates.GroupwiseTemplates)\n                    {\n                        foreach (var tmp in groupwiseTemplates.Template)\n                        {\n                            if (tmp.Tags != null)\n                            {\n                                foreach (string str in strComponents)\n                                {\n                                    if (tmp.Tags.Contains(str))\n                                    {\n                                        TemplateDetails template = new TemplateDetails();\n\n                                        template.Name = tmp.Name;\n                                        template.ShortName = tmp.ShortName;\n                                        template.Tags = tmp.Tags;\n                                        template.Description = tmp.Description;\n                                        //template.TemplateFolder = tmp.TemplateFolder;\n                                        Selectedtemplates.Add(template);\n                                        break;\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t BulkProject \\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return Selectedtemplates;\n        }\n\n        public string GetTemplate(string TemplateName)\n        {\n            string template = string.Empty;\n            try\n            {\n                string templatesPath = HostingEnvironment.MapPath(\"~\") + @\"\\Templates\\\";\n\n                if (System.IO.File.Exists(templatesPath + Path.GetFileName(TemplateName) + @\"\\ProjectTemplate.json\"))\n                {\n                    Project objP = new Project();\n                    template = objP.ReadJsonFile(templatesPath + Path.GetFileName(TemplateName) + @\"\\ProjectTemplate.json\");\n                }\n                else\n                {\n                    template = \"Template Not Found!\";\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return template;\n        }\n\n        /// <summary>\n        /// Get extracted template path from the given templatepath(url) in request body\n        /// </summary>\n        /// <param name=\"TemplateUrl\"></param>\n        /// <param name=\"ExtractedTemplate\"></param>\n        public string GetTemplateFromPath(string TemplateUrl, string ExtractedTemplate, string GithubToken, string UserID = \"\", string Password = \"\")\n        {\n            string templatePath = string.Empty;\n            try\n            {\n                Uri uri = new Uri(TemplateUrl);\n                string fileName = Path.GetFileName(TemplateUrl);\n                string extension = Path.GetExtension(fileName);\n                string templateName = ExtractedTemplate.ToLower().Replace(\".zip\", \"\").Trim();\n                if (!Directory.Exists(HostingEnvironment.MapPath(\"~\") + @\"\\ExtractedZipFile\"))\n                {\n                    Directory.CreateDirectory(HostingEnvironment.MapPath(\"~\") + @\"\\ExtractedZipFile\");\n                }\n                var path = HostingEnvironment.MapPath(\"~\") + @\"\\ExtractedZipFile\\\" + ExtractedTemplate;\n                if (uri.Host == \"github.com\")\n                {\n                    string gUri = uri.ToString();\n                    gUri = gUri.Replace(\"github.com\", \"raw.githubusercontent.com\").Replace(\"/blob/\", \"/\");\n                    uri = new Uri(gUri);\n                    TemplateUrl = uri.ToString();\n                }\n                //Downloading template from source of type github\n                if (uri.Host == \"raw.githubusercontent.com\")\n                {\n                    var githubToken = GithubToken;\n                    //var url = TemplateUrl.Replace(\"github.com/\", \"raw.githubusercontent.com/\").Replace(\"/blob/master/\", \"/master/\");\n\n                    using (var client = new System.Net.Http.HttpClient())\n                    {\n                        var credentials = string.Format(System.Globalization.CultureInfo.InvariantCulture, \"{0}:\", githubToken);\n                        credentials = Convert.ToBase64String(System.Text.Encoding.ASCII.GetBytes(credentials));\n                        client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue(\"Basic\", credentials);\n                        var contents = client.GetByteArrayAsync(TemplateUrl).Result;\n                        System.IO.File.WriteAllBytes(path, contents);\n                    }\n                }\n                //Downloading file from other source type (ftp or https)\n                else\n                {\n                    WebClient webClient = new WebClient();\n                    if (UserID != null && Password != null)\n                        webClient.Credentials = new NetworkCredential(UserID, Password);\n                    webClient.DownloadFile(TemplateUrl, path);\n                    webClient.Dispose();\n                }\n                templatePath = ExtractZipFile(path, templateName);\n\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            finally\n            {\n                var zippath = HostingEnvironment.MapPath(\"~\") + @\"\\ExtractedZipFile\\\" + ExtractedTemplate;\n                if (File.Exists(zippath))\n                    File.Delete(zippath);\n            }\n            return templatePath;\n        }\n\n        public string ExtractZipFile(string path, string templateName)\n        {\n            string templatePath = string.Empty;\n            bool isExtracted = false;\n            try\n            {\n                if (File.Exists(path))\n                {\n                    if (!Directory.Exists(HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\"))\n                    {\n                        Directory.CreateDirectory(HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\");\n                    }\n                    var Extractedpath = HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\" + templateName;\n                    System.IO.Compression.ZipFile.ExtractToDirectory(path, Extractedpath);\n\n                    isExtracted = checkTemplateDirectory(Extractedpath);\n                    if (isExtracted)\n                        templatePath = FindPrivateTemplatePath(Extractedpath);\n                    else\n                        Directory.Delete(Extractedpath, true);\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return templatePath;\n\n        }\n\n        /// <summary>\n        /// Check the valid files from extracted files from zip file in PrivateTemplate Folder \n        /// </summary>\n        /// <param name=\"dir\"></param>\n        public bool checkTemplateDirectory(string dir)\n        {\n            try\n            {\n                string[] filepaths = Directory.GetFiles(dir);\n                foreach (var file in filepaths)\n                {\n                    if (Path.GetExtension(Path.GetFileName(file)) != \".json\")\n                    {\n                        return false;\n                    }\n                }\n                string[] subdirectoryEntries = Directory.GetDirectories(dir);\n                foreach (string subdirectory in subdirectoryEntries)\n                {\n                    checkTemplateDirectory(subdirectory);\n                }\n\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return true;\n        }\n\n        /// <summary>\n        /// Get the private template path from the private template folder \n        /// </summary>\n        /// <param name=\"privateTemplatePath\"></param>\n        public string FindPrivateTemplatePath(string privateTemplatePath)\n        {\n            string templatePath = \"\";\n            try\n            {\n                DirectoryInfo di = new DirectoryInfo(privateTemplatePath);\n                FileInfo[] TXTFiles = di.GetFiles(\"*.json\");\n                if (TXTFiles.Length > 0)\n                {\n                    templatePath = privateTemplatePath;\n                }\n                else\n                {\n                    string[] subdirs = Directory.GetDirectories(privateTemplatePath);\n                    templatePath = FindPrivateTemplatePath(subdirs[0] + @\"\\\");\n                }\n\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return templatePath;\n        }\n\n        public string checkSelectedTemplateIsPrivate(string extractPath)\n        {\n            string response = string.Empty;\n            try\n            {\n                bool isExtracted = checkTemplateDirectory(extractPath);\n                if (!isExtracted)\n                {\n                    response = \"File or the folder contains unwanted entries, so discarding the files, please try again\";\n                }\n                else\n                {\n                    bool settingFile = (System.IO.File.Exists(extractPath + \"\\\\ProjectSettings.json\") ? true : false);\n                    bool projectFile = (System.IO.File.Exists(extractPath + \"\\\\ProjectTemplate.json\") ? true : false);\n\n                    if (settingFile && projectFile)\n                    {\n                        string projectFileData = System.IO.File.ReadAllText(extractPath + \"\\\\ProjectTemplate.json\");\n                        ProjectSetting settings = JsonConvert.DeserializeObject<ProjectSetting>(projectFileData);\n                        response = \"SUCCESS\";\n                    }\n                    else if (!settingFile && !projectFile)\n                    {\n                        string[] folderName = System.IO.Directory.GetDirectories(extractPath);\n                        string subDir = \"\";\n                        if (folderName.Length > 0)\n                        {\n                            subDir = folderName[0];\n                        }\n                        else\n                        {\n                            response = \"Could not find required preoject setting and project template file.\";\n                        }\n                        if (subDir != \"\")\n                        {\n                            response = checkSelectedTemplateIsPrivate(subDir);\n                        }\n                        if (response != \"SUCCESS\")\n                        {\n                            Directory.Delete(extractPath, true);\n                            response = \"Project setting and project template files not found! plase include the files in zip and try again\";\n                        }\n                    }\n                    else\n                    {\n                        if (!settingFile)\n                        {\n                            Directory.Delete(extractPath, true);\n                            response = \"Project setting file not found! plase include the files in zip and try again\";\n                            //return Json(\"SETTINGNOTFOUND\");\n                        }\n                        if (!projectFile)\n                        {\n                            Directory.Delete(extractPath, true);\n                            response = \"Project template file not found! plase include the files in zip and try again\";\n                            //return Json(\"PROJECTFILENOTFOUND\");\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return response;\n        }\n\n        public void deletePrivateTemplate(string Template)\n        {\n            try\n            {\n                if (!string.IsNullOrEmpty(Template))\n                {\n                    var templatepath = HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\" + Template;\n                    if (Directory.Exists(templatepath))\n                    {\n                        Directory.Delete(templatepath, true);\n                    }\n                    string[] subdirs = Directory.GetDirectories(HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\")\n                            .Select(Path.GetFileName)\n                            .ToArray();\n                    foreach (string folderName in subdirs)\n                    {\n                        DirectoryInfo d = new DirectoryInfo(HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\" + folderName);\n                        if (d.CreationTime < DateTime.Now.AddHours(-1))\n                            Directory.Delete(HostingEnvironment.MapPath(\"~\") + @\"\\PrivateTemplates\\\" + folderName, true);\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                ProjectService.logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/ImportSourceCode/Azure Sentinel Template.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/crmuno/AzureSentinelDeployment/_git/Azure Sentinel Template\"\n    },\n    \"serviceEndpointId\": \"$Azure Sentinel Template-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"AzureSentinelDeployment\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/ServiceEndpoints/Azure Sentinel Template-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Azure Sentinel Template-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vandyr/Azure Sentinel Template/_git/Azure Sentinel Template\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/Teams/AzureSentinelDeployment Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/Teams/AzureSentinelDeployment Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/Teams/AzureSentinelDeployment Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/Teams/AzureSentinelDeployment Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/Teams/AzureSentinelDeployment Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"8edca2f3-18c7-416b-9739-1e294543fa11\",\n    \"name\": \"AzureSentinelDeployment Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/WorkItems/Feature.json",
    "content": "{\n  \"count\": 11,\n  \"value\": [\n    {\n      \"id\": 241,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-06-03T14:58:45.553Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:26:08.433Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"1. Define Use Cases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0px 0px 30px;box-sizing:border-box;font-variant:normal;font-weight:400;font-size:16px;font-family:ubuntu, Verdana, Arial, sans-serif;letter-spacing:0.2px;\\\"><span style=\\\"margin:0px;box-sizing:border-box;\\\">A well-structured approach to use case definition and application expertise are needed to ensure an efficient deployment of Azure Sentinel.</span></p><p style=\\\"margin:0px 0px 30px;box-sizing:border-box;font-variant:normal;font-weight:400;font-size:16px;font-family:ubuntu, Verdana, Arial, sans-serif;letter-spacing:0.2px;\\\"><span style=\\\"margin:0px;box-sizing:border-box;\\\">Gartner -&nbsp;<a href=\\\"https://www.gartner.com/en/documents/3950486/how-to-build-security-use-cases-for-your-siem\\\">https://www.gartner.com/en/documents/3950486/how-to-build-security-use-cases-for-your-siem</a></span></p><br></div>\",\n        \"System.AssignedTo\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/241\"\n    },\n    {\n      \"id\": 42,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:22:59.993Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:26:15.44Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"2. Get Started with Azure Sentinel | Tutorials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/18\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/40\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/42\"\n    },\n    {\n      \"id\": 8,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:57.737Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:26:21.677Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"3. On-board Azure Sentinel - Prerequisites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"\\\">Pre-requisites to on-board Azure Sentinel</span><br></div><div><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/azure/sentinel/quickstart-onboard\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://docs.microsoft.com/azure/sentinel/quickstart-onboard</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/23\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/8\"\n    },\n    {\n      \"id\": 11,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:58.19Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:26:28.913Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"4. Azure Sentinel Architecture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/37\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/38\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/11\"\n    },\n    {\n      \"id\": 48,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T14:56:05.97Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:26:52.76Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"5. Setup Azure Sentinel\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/242\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/49\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/52\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/34\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/48\"\n    },\n    {\n      \"id\": 1,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:55.427Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:27:02.25Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"6. Data Collection \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<b><span style=\\\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;text-transform:uppercase;\\\">DATA Collection is FUNDAMENTAL</span></b><div><span style=\\\"font-size:9.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><span style=\\\"text-transform:uppercase;\\\"><b><br></b></span>Azure Sentinel improves the ability to collect and use data from a variety of sources to unblock\\ncustomer deployments and unlock full SIEM value. Azure Sentinel supports a\\nset of standard patterns for ingesting data at scale. Customers have the ability to easily onboard data sources via an extensive gallery of connectors.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/58\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/55\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 9,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:57.87Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:27:08.327Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"7. Visualize your security data with Workbooks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>To visualize and get analysis of what's happening on your environment, first, take a look at the overview dashboard to get an idea of the security posture of your organization. You can click on each element of these tiles to drill down to the raw data from which they are created. To help you reduce noise and minimize the number of alerts you have to review and investigate, Azure Sentinel uses a fusion technique to correlate alerts into incidents. incidents are groups of related alerts that together create an actionable incident that you can investigate and resolve.<br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/quickstart-get-visibility\\\">https://docs.microsoft.com/azure/sentinel/quickstart-get-visibility</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/17\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/9\"\n    },\n    {\n      \"id\": 10,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:58.05Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:27:14.447Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"8. Enabling Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>After you connected your data sources to Azure Sentinel, you want to be notified when something suspicious happens. To enable you to do this, Azure Sentinel provides you with out-of-the-box built-in templates. These templates were designed by Microsoft's team of security experts and analysts based on known threats, common attack vectors, and suspicious activity escalation chains. After enabling these templates, they will automatically search for any activity that looks suspicious across your environment. Many of the templates can be customized to search for, or filter out, activities, according to your needs. The alerts generated by these templates will create incidents that you can assign and investigate in your environment.<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/tutorial-detect-threats-built-in\\\">https://docs.microsoft.com/azure/sentinel/tutorial-detect-threats-built-in</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/20\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/21\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/10\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:56.84Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:27:31.77Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"9. Respond to threats\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;font-family:Calibri, sans-serif;font-size:14.6667px;text-align:left;\\\"><span>Use security playbooks in Azure Sentinel to set automated threat responses to security-related issues detected by Azure Sentinel.<br></span><div><br></div><div>Understand playbooks<br></div><div>Create a playbook<br></div><div>Run a playbook<br></div><span>Automate threat responses</span></div><div style=\\\"box-sizing:border-box;font-family:Calibri, sans-serif;font-size:14.6667px;text-align:left;\\\"><span><br></span></div><a href=\\\"https://docs.microsoft.com/azure/sentinel/tutorial-respond-threats-playbook\\\">https://docs.microsoft.com/azure/sentinel/tutorial-respond-threats-playbook</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/27\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/25\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/22d26ba3-a7c7-430f-b021-c6c66e028469\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-19T20:17:20.2Z\",\n            \"id\": \"2813193\",\n            \"resourceCreatedDate\": \"2020-05-19T20:17:17.15Z\",\n            \"resourceModifiedDate\": \"2020-05-11T14:36:17.95Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"199027\",\n            \"name\": \"CrossWS.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:57.063Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:27:39.697Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"10. Proactive Threat Hunting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Sentinel powerful hunting search and query tools to hunt for security threats across your organization’s data sources. <br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/hunting\\\">https://docs.microsoft.com/azure/sentinel/hunting</a><br></div><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/29\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/30\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/33\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/28\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 43,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:28:00.723Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-13T19:27:45.587Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"11. Advanced Topics \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/36\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/43\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/WorkItems/Task.json",
    "content": "{\n  \"count\": 26,\n  \"value\": [\n    {\n      \"id\": 63,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T19:11:07.187Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-08T13:48:40.35Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - F5 BIG IP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\">This is a preloaded task, feel free to create or modify this task to reflect data ingest needs.</span><br></div><div><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\"><br></span></div><div><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\"><p style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">In\\nAzure Sentinel, select </span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">Data\\nconnectors </span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">and </span></p><p style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">then\\nclick the </span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">F5 </span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">tile.</span></p><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.49in;text-indent:-.49in;text-align:left;unicode-bidi:embed;\\\"><br></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.37in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">1.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">The\\nF5 connector can be deployed either Automatic or Manually. </span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.37in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><br></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.37in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">2.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">Configure\\nF5 to forward logs to a Syslog Agent.</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.37in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><br></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.37in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">3.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">Go\\nto F5&nbsp;Configuring Application Security Event Logging guide and follow the\\ninstructions to set up remote logging, using the following guidelines:</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.87in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">1.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">Set\\nthe&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">Remote\\nstorage type</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">&nbsp;to&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">CEF</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">.</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.87in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">2.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">Set\\nthe&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">Protocol&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">to&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">UDP</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">.</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.87in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">3.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">Set\\nthe&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">IP\\naddress</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">&nbsp;to the Syslog server IP\\naddress.</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.87in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">4.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">Set\\nthe&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">port\\nnumber</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">&nbsp;to&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">514</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">,\\nor the port you set your agent to use.</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.87in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">5.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">Set\\nthe&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">facility</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">&nbsp;to\\nthe one that you set in the Syslog agent (by default, the agent sets this\\nto&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">local4</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">).</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.87in;text-indent:-.37in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:16.7pt;\\\"><span style=\\\"\\\">6.</span></span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">You\\ncan set the&nbsp;</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;font-weight:bold;\\\">Maximum\\nQuery String Size</span><span style=\\\"font-size:16.7pt;font-family:&quot;Segoe UI&quot;;color:#505050;\\\">&nbsp;to the size you set in your\\nagent.</span></div><br></span></div><div><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\"><br></span></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-f5-big-ip\\\">https://docs.microsoft.com/azure/sentinel/connect-f5-big-ip</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/55\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/63\"\n    },\n    {\n      \"id\": 61,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T19:07:09.45Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-28T13:13:51.94Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Barracuda CloudGen Firewall\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\">This is a preloaded task, feel free to create or modify this task to reflect data ingest needs.</span><br></div><div><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\"><br></span></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-barracuda-cloudgen-firewall\\\">https://docs.microsoft.com/azure/sentinel/connect-barracuda-cloudgen-firewall</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/55\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/61\"\n    },\n    {\n      \"id\": 59,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T18:37:23Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T14:52:40.2Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Forcepoint DLP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\">This is a preloaded task, feel free to create or modify this task to reflect data ingest needs.</span><br style=\\\"box-sizing:border-box;\\\"></div><br><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-forcepoint-dlp\\\">https://docs.microsoft.com/azure/sentinel/connect-forcepoint-dlp</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/55\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/59\"\n    },\n    {\n      \"id\": 64,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T19:21:13.147Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-28T13:14:03.92Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Symantec ICDX\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\">This is a preloaded task, feel free to create or modify this task to reflect data ingest needs.</span><br></div><div><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;display:inline !important;\\\"><br></span></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-symantec\\\">https://docs.microsoft.com/azure/sentinel/connect-symantec</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/55\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/64\"\n    },\n    {\n      \"id\": 13,\n      \"rev\": 22,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:58.567Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-04T18:36:33.75Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Review existing critical data sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span style=\\\"display:inline !important;\\\"></span></span></div><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;display:inline !important;\\\">To on-board Azure Sentinel, you first need to connect to your data sources. It is imperative to review your existing critical sources to better understand the data collection requirements.&nbsp;</span><div><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;display:inline !important;\\\"><br></span></div><div><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;display:inline !important;\\\">Azure Sentinel comes with a number of connectors for Microsoft solutions, available out of the box and providing real-time integration, including Microsoft Threat Protection solutions, and Microsoft 365 sources, including Office 365, Azure AD, Azure ATP, and Microsoft Cloud App Security, and more. In addition, there are built-in connectors to the broader security ecosystem for non-Microsoft solutions. You can also use common event format, Syslog or REST-API to connect your data sources with Azure Sentinel as well.</span><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-data-sources\\\">https://docs.microsoft.com/azure/sentinel/connect-data-sources</a><br></div></div>\",\n        \"System.AssignedTo\": \"Matthew Lowe <malowe@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/13\"\n    },\n    {\n      \"id\": 41,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:20:46.82Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-20T20:09:11.62Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Azure Active Directory \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">This is a preloaded task,\\nfeel free to create or modify this task to reflect data ingest needs.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"><br></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;\\\">In Azure Sentinel, select <b>Data\\nconnectors </b>and then click the <b>Azure AD </b>tile. </span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b><span style=\\\"font-size:12.0pt;\\\">Important: </span></b><span style=\\\"font-size:12.0pt;\\\">You must have an Azure P1 or P2 license to\\nenable the Azure AD logs.</span></p><ol style=\\\"margin-bottom:0in;margin-top:0in;\\\" start=1 type=1>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Click <b>Connect\\n     </b>on the Azure logs you want to stream into Sentinel. </span><span style=\\\"font-size:12.0pt;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">You will\\n     have to login with an account that has Global Admin or Security Admin\\n     permissions on the tenant.</span><span style=\\\"font-size:12.0pt;line-height:107%;\\\"></span></li></ol><br></span></p><span></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/558b0790-5356-4ed9-87b1-de5145bffa2c\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T20:09:11.62Z\",\n            \"id\": \"2813826\",\n            \"resourceCreatedDate\": \"2020-05-20T20:09:09.03Z\",\n            \"resourceModifiedDate\": \"2020-05-20T20:08:40.417Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"465876\",\n            \"name\": \"ConnectAAD.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/41\"\n    },\n    {\n      \"id\": 72,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T15:18:08.273Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-29T18:21:25.2Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Azure ATP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">This is a preloaded task,\\nfeel free to create or modify this task to reflect data ingest needs.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;\\\">In Azure Sentinel, select <b>Data\\nconnectors </b>and then click the <b>Azure ATP </b>tile.</span></p><ol style=\\\"margin-bottom:0in;margin-top:0in;\\\" start=1 type=1>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Click <b>Connect\\n     </b>to stream the Alerts from Azure ATP into Sentinel.</span><span style=\\\"font-size:12.0pt;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">You will\\n     have to login with an account that has Global Admin or Security Admin\\n     permissions on the tenant.</span><span style=\\\"font-size:12.0pt;line-height:107%;\\\"></span></li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Data Source\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/64ca58eb-d351-41d6-a1d8-c762fa0b6602\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T19:54:50.613Z\",\n            \"id\": \"2813820\",\n            \"resourceCreatedDate\": \"2020-05-20T19:54:46.333Z\",\n            \"resourceModifiedDate\": \"2020-05-20T19:54:08.303Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"761998\",\n            \"name\": \"ConnectAzureATP.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/72\"\n    },\n    {\n      \"id\": 46,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2020-05-19T13:50:31.18Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-04T18:37:58.48Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Azure Activity \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">This is a preloaded task,\\nfeel free to create or modify this task to reflect data ingest needs.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"><br></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;background:white;\\\">&nbsp;</span><span style=\\\"font-size:12pt;\\\">In Azure Sentinel, select </span><b style=\\\"font-size:12pt;\\\">Data\\nconnectors </b><span style=\\\"font-size:12pt;\\\">and then click the </span><b style=\\\"font-size:12pt;\\\">Azure Activity </b><span style=\\\"font-size:12pt;\\\">tile.</span></p><ol style=\\\"margin-bottom:0in;margin-top:0in;\\\" start=1 type=1>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;\\\">In the Azure Activity log pane, Click <b>Select\\n     Configure Azure Activity logs</b> then select the subscriptions you want\\n     to stream into Sentinel.</span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;\\\">Click <b>Connect</b>.</span></li></ol><br></span></p><br><br>\",\n        \"System.AssignedTo\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/9fb56d96-0ae6-494a-9669-ad29bda15aab\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T23:41:05.777Z\",\n            \"id\": \"2813900\",\n            \"resourceCreatedDate\": \"2020-05-20T23:40:59.313Z\",\n            \"resourceModifiedDate\": \"2020-05-20T23:39:10.92Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"651217\",\n            \"name\": \"Activity.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/46\"\n    },\n    {\n      \"id\": 44,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T13:25:49.203Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-28T13:12:06.88Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \" Connect - Azure Security Center \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">This is a preloaded task,\\nfeel free to create or modify this task to reflect data ingest needs.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"><br></span></p></span><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;\\\">In Azure Sentinel, select <b>Data\\nconnectors </b>and then click the <b>Azure Security Center </b>tile.</span></p><ol style=\\\"margin-bottom:0in;margin-top:0in;\\\" start=1 type=1>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Click <b>Connect\\n     </b></span><span style=\\\"font-size:12.0pt;\\\">next to each subscription whose\\n     alerts you want to stream into Sentinel.</span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">You will\\n     have to login with an account that has <i>Contributor permissions </i>on the\\n     tenant.</span><span style=\\\"font-size:12.0pt;\\\"></span></li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/44\"\n    },\n    {\n      \"id\": 73,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T15:31:03.153Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-28T13:12:26.157Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Azure Identity Protection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"margin-top:0px;margin-bottom:0px;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"><div style=\\\"margin:0px 0in 10.6667px;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b><span style=\\\"font-size:12.0pt;color:red;background:white;\\\"></span></b><span style=\\\"font-size:12pt;background:white;\\\"><span style=\\\"box-sizing:border-box;\\\"><p style=\\\"color:black;margin:0in 0in 8pt;font-size:11pt;\\\"><span style=\\\"font-size:12.0pt;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;font-size:14px;text-align:start;display:inline !important;\\\">This is a preloaded task, feel free to create or modify this task to reflect data ingest needs.</span><br></span></p><p style=\\\"color:black;margin:0in 0in 8pt;font-size:11pt;\\\"><span style=\\\"font-size:12.0pt;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;font-size:14px;text-align:start;display:inline !important;\\\"><br></span></span></p><p style=\\\"color:black;margin:0in 0in 8pt;font-size:11pt;\\\"><span style=\\\"font-size:12.0pt;\\\">In Azure Sentinel, select <b>Data\\nconnectors </b>and then click the <b>Azure AD Identity Protection </b>tile.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;\\\"><span style=\\\"color:black;\\\"><span style=\\\"font-size:12pt;\\\"><br></span></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;\\\"><span style=\\\"color:black;\\\"><span style=\\\"font-size:12pt;color:rgb(200, 38, 19);\\\">Important:</span><span style=\\\"font-weight:bold;font-size:12pt;\\\"> </span></span><span style=\\\"color:black;font-size:12pt;\\\">You must have an Azure P1 or P2 license to\\nenable the Azure AD logs.</span></p><ol style=\\\"color:black;margin-bottom:0in;margin-top:0in;\\\" start=1 type=1>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Click <b>Connect\\n     </b>to stream the Azure AD Identity Protection events into Sentinel. </span><span style=\\\"font-size:12.0pt;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">You will\\n     have to login with an account that has Global Admin or Security Admin\\n     permissions on the tenant.</span><span style=\\\"font-size:12.0pt;\\\"></span></li></ol></span></span><span style=\\\"font-size:12.0pt;\\\"></span></div><br></div><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/73\"\n    },\n    {\n      \"id\": 57,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T15:39:27.79Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-20T15:40:28.603Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Office 365\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">This is a preloaded task,\\nfeel free to create or modify this task to reflect data ingest needs.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"><br></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;\\\">In Azure Sentinel, select <b>Data\\nconnectors </b>and then click the <b>Office 365 </b>tile.</span></p><ol style=\\\"margin-bottom:0in;margin-top:0in;\\\" start=1 type=1>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Select <b>Click\\n     here to install solution.</b></span><span style=\\\"font-size:12.0pt;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Click <b>Add\\n     tenant</b>, then login with an account that has Global Admin permissions\\n     on the tenant.</span><span style=\\\"font-size:12.0pt;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;\\\">Under Stream Office 365 activity logs,\\n     click <b>Select </b>to choose which log types you want to stream into\\n     Sentinel. Currently, Azure Sentinel supports Exchange and SharePoint.</span></li></ol><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">To stream mailbox auditing from your tenants use<span style=\\\"\\\">&nbsp; </span>Exchange Online Powershell:</span><span style=\\\"font-size:12.0pt;\\\"></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Get-OrganizationConfig | FL AuditDisabled</span><span style=\\\"font-size:12.0pt;\\\"></span></p><br></span></p></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/57\"\n    },\n    {\n      \"id\": 45,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T13:45:17.49Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-20T15:19:28.487Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect -  Microsoft Defender ATP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">This is a preloaded task,\\nfeel free to create or modify this task to reflect data ingest needs.</span></p></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/45\"\n    },\n    {\n      \"id\": 54,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T15:14:45.107Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-28T13:13:22.887Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect - Microsoft Cloud App Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">This is a preloaded task,\\nfeel free to create or modify this task to reflect data ingest needs.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"><br></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\"></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:12.0pt;\\\">In Azure Sentinel, select <b>Data\\nconnectors </b>and then click the <b>Cloud App Security </b>tile.</span></p><ol style=\\\"margin-bottom:0in;margin-top:0in;\\\" start=1 type=1>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Click <b>Connect\\n     </b>to stream the Alerts from Cloud App Security into Sentinel<b>.</b></span><span style=\\\"font-size:12.0pt;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">Click <b>Connect\\n     </b>to stream the Discovery logs from Cloud App Security into Sentinel<b>.</b></span><span style=\\\"font-size:12.0pt;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-GB style=\\\"font-size:12.0pt;\\\">You will\\n     have to login with an account that has Global Admin or Security Admin\\n     permissions on the tenant.</span><span style=\\\"font-size:12.0pt;\\\"></span></li></ol><br></span><p></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/54\"\n    },\n    {\n      \"id\": 49,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T14:57:39.307Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-27T20:19:58.073Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Create or use existing Log Analytics Workspace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/azure/azure-monitor/learn/quick-create-workspace\\\">https://docs.microsoft.com/azure/azure-monitor/learn/quick-create-workspace</a><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/48\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/45260a50-010c-4036-841d-8d71e47168ee\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T19:54:26.75Z\",\n            \"id\": \"2813819\",\n            \"resourceCreatedDate\": \"2020-05-20T19:54:11.04Z\",\n            \"resourceModifiedDate\": \"2020-05-20T19:49:22.907Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"717482\",\n            \"name\": \"CreateWS.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/49\"\n    },\n    {\n      \"id\": 52,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T15:02:23.983Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-04T18:32:27.32Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect Azure Sentinel to Azure Log Analytics Workspace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Detailed steps to enable Azure Sentinel:</div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/quickstart-onboard#enable-azure-sentinel-\\\">https://docs.microsoft.com/azure/sentinel/quickstart-onboard#enable-azure-sentinel-</a><br></div><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/48\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/cda761bf-44d7-4d7a-b37f-8bbaeba6f9fe\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T20:04:46.333Z\",\n            \"id\": \"2813825\",\n            \"resourceCreatedDate\": \"2020-05-20T20:04:43.05Z\",\n            \"resourceModifiedDate\": \"2020-05-20T20:04:12.49Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"535418\",\n            \"name\": \"EnableAzSentinel.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/52\"\n    },\n    {\n      \"id\": 34,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:02.38Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-04T18:34:44.193Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"RBAC - Define User Access\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"margin-right:0in;margin-left:0in;font-size:12pt;font-family:&quot;Times New Roman&quot;, serif;\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif;color:#171717;\\\">Azure\\nSentinel uses&nbsp;<a href=\\\"https://docs.microsoft.com/azure/role-based-access-control/role-assignments-portal\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Role-Based\\nAccess Control(RBAC)</a>, to provide&nbsp;<a href=\\\"https://docs.microsoft.com/azure/role-based-access-control/built-in-roles\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">built-in\\nroles</a>&nbsp;that can be assigned to users, groups, and services in Azure. These roles can be mapped to the Tier 1 - Tier 3 structured model.</span></p><p style=\\\"margin-right:0in;margin-left:0in;font-size:12pt;font-family:&quot;Times New Roman&quot;, serif;box-sizing:border-box;margin:1rem 0px 0px;\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif;color:#171717;\\\">Using\\nRBAC, you can use and create roles within your security operations team to grant\\nappropriate access to Azure Sentinel. Based on the roles, you have fine-grained\\ncontrol over what users with access to Azure Sentinel can see. You can assign\\nRBAC roles in the Azure Sentinel workspace directly, or to a subscription or\\nresource group that the workspace belongs to.</span></p><p style=\\\"margin-right:0in;margin-left:0in;font-size:12pt;font-family:&quot;Times New Roman&quot;, serif;box-sizing:border-box;margin:1rem 0px 0px;\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif;color:#171717;\\\">There\\nare three specific built-in Azure Sentinel roles.</span></p><p style=\\\"margin-right:0in;margin-left:0in;font-size:12pt;font-family:&quot;Times New Roman&quot;, serif;box-sizing:border-box;margin:1rem 0px 0px;\\\"><span style=\\\"font-family:&quot;Calibri&quot;,sans-serif;color:#171717;\\\"><br style=\\\"box-sizing:border-box;\\\"><strong style=\\\"box-sizing:border-box;\\\"><span>All Azure Sentinel built-in roles grant read access to the data in\\nyour Azure Sentinel workspace.</span></strong></span></p><ul style=\\\"margin-bottom:0in;\\\"><li><span style=\\\"color:#171717;\\\"><a href=\\\"https://docs.microsoft.com/azure/role-based-access-control/built-in-roles#azure-sentinel-reader\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Azure\\nSentinel reader</a></span></li><li><span style=\\\"color:#171717;\\\"><a href=\\\"https://docs.microsoft.com/azure/role-based-access-control/built-in-roles#azure-sentinel-responder\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Azure\\nSentinel responder</a></span></li><li><span style=\\\"color:#171717;\\\"><a href=\\\"https://docs.microsoft.com/azure/role-based-access-control/built-in-roles#azure-sentinel-contributor\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Azure\\nSentinel contributor</a></span><br><br><span style=\\\"font-size:10.5pt;color:black;\\\"><a href=\\\"https://docs.microsoft.com/azure/sentinel/roles\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">https://docs.microsoft.com/azure/sentinel/roles</a></span></li></ul>\",\n        \"System.AssignedTo\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/48\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/34\"\n    },\n    {\n      \"id\": 242,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-06-03T14:59:45.623Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T15:03:40.843Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"RBAC - Define Table or Resource Access \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div></div><a href=\\\"https://docs.microsoft.com/azure/azure-monitor/platform/manage-access#table-level-rbac\\\" target=_blank rel=\\\"noopener noopener noreferrer\\\" style=\\\"box-sizing:border-box;color:rgb(20, 108, 172);text-decoration:underline;font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;font-weight:300;text-align:left;\\\"><strong style=\\\"box-sizing:border-box;font-weight:bold;\\\">Table level RBAC and</strong>&nbsp;</a><span style=\\\"color:rgb(51, 51, 51);font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;font-weight:300;text-align:left;display:inline !important;\\\">allows you to define more granular control to data in a Log Analytics workspace.</span><div><br></div><div><a href=\\\"https://techcommunity.microsoft.com/t5/azure-sentinel/controlling-access-to-azure-sentinel-data-resource-rbac/ba-p/1301463\\\">https://techcommunity.microsoft.com/t5/azure-sentinel/controlling-access-to-azure-sentinel-data-resource-rbac/ba-p/1301463</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/48\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/242\"\n    },\n    {\n      \"id\": 80,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T20:36:25.773Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-20T20:36:25.773Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Configure your security solution to send CEF messages\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"\\\">In this step you will perform the necessary configuration changes\\non your security solution itself to send logs to the CEF agent.</span></p><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-cef-solution-config\\\">https://docs.microsoft.com/azure/sentinel/connect-cef-solution-config</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/62\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/80\"\n    },\n    {\n      \"id\": 79,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T20:35:23.69Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-20T20:35:23.69Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Run the deployment script on log forwarder\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/62\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/79\"\n    },\n    {\n      \"id\": 78,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T20:18:25.21Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T15:06:23.657Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Import Open ServiceNow Playbook\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">This is a preloaded task, feel free to modify to reflect your automated response needs.</p><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">This playbook will open a Service Now incident when a new incident is opened in Azure Sentinel.</p><br></div><div><a href=\\\"https://github.com/Azure/Azure-Sentinel/tree/master/Playbooks/Open-SNOW-Ticket\\\">https://github.com/Azure/Azure-Sentinel/tree/master/Playbooks/Open-SNOW-Ticket</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/25\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/78\"\n    },\n    {\n      \"id\": 76,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T18:34:35.36Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-20T20:33:39.507Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Deploy the Log Forwarder\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"margin:16px 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\"><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\">In this step, you will designate and configure\\nthe Linux machine that will forward the logs from your security solution to\\nyour Azure Sentinel workspace. This machine can be a physical or virtual\\nmachine in your on-premises environment, an Azure VM, or a VM in another cloud.</span><br></div><div style=\\\"margin:16px 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\"><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b><span style=\\\"\\\">Prerequisites</span></b></p><ul style=\\\"margin-bottom:0in;\\\"><li><span style=\\\"\\\">You must have elevated permissions (sudo) on\\nyour designated Linux machine.</span></li><li><span style=\\\"\\\">You must have python installed on the Linux\\nmachine.</span></li><li><span style=\\\"\\\">Use the python -version command to check.</span></li><li><span style=\\\"\\\">The Linux machine must not be connected to any\\nAzure workspaces before you install the Log Analytics agent</span></li></ul></span></div><div style=\\\"margin:16px 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\"><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-cef-agent?tabs=rsyslog\\\">https://docs.microsoft.com/azure/sentinel/connect-cef-agent?tabs=rsyslog</a><br></span></div><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/62\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/76\"\n    },\n    {\n      \"id\": 75,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T18:32:53.993Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-27T20:17:10.61Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Enable applicable analytics \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review the list of applicable analytics out the box</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/tutorial-detect-threats-built-in\\\">https://docs.microsoft.com/azure/sentinel/tutorial-detect-threats-built-in</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/20\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/75\"\n    },\n    {\n      \"id\": 67,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T00:36:50.117Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-04T18:53:38.477Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Enable Palo Alto Workbook\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">This is a preloaded task. Feel free to modify to reflect your visualization needs.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/17\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/67\"\n    },\n    {\n      \"id\": 66,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T00:36:29.437Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-04T18:53:32.333Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Enable Insecure Protocols Workbook\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">This is a preloaded task. Feel free to modify to reflect your visualization needs.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/17\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/66\"\n    },\n    {\n      \"id\": 65,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-20T00:35:57.47Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-04T18:53:16.99Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Enable Azure AD Sign in & Audit Workbook\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>This is a preloaded task. Feel free to modify to reflect your visualization needs.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/17\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/65\"\n    },\n    {\n      \"id\": 60,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T18:48:09.72Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-04T18:53:05.07Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Review list of built-in workbooks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Make sure to review the list of workbooks that are built in that can enable your security team to visualize and investigate your critical security data.&nbsp;</div><div><br></div><div>Navigate to the <b>Workbook </b>tile, click <b>Templates.&nbsp;</b></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/17\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/adde7222-19b8-479c-83de-7b0984fe536c\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-06-03T14:46:00.307Z\",\n            \"id\": \"2818993\",\n            \"resourceCreatedDate\": \"2020-06-03T14:45:55.703Z\",\n            \"resourceModifiedDate\": \"2020-06-03T14:42:45.973Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"417875\",\n            \"name\": \"reviewworkbooks.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/60\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-AzureSentinel/WorkItems/User Story.json",
    "content": "{\n  \"count\": 21,\n  \"value\": [\n    {\n      \"id\": 53,\n      \"rev\": 20,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-05-19T15:06:39.81Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-24T15:03:59.89Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect Microsoft Sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/73\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/57\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/72\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/13\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/54\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/41\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/46\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/45\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/44\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/1\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/53\"\n    },\n    {\n      \"id\": 55,\n      \"rev\": 19,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-05-19T15:30:20.497Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-24T15:04:02.123Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Connect 3rd Party Data Sources \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;outline:none;\\\"><span style=\\\"box-sizing:border-box;outline:none;\\\">In this section, we are providing a few preloaded tasks to 3rd party data sources. This is not the complete list of the 3rd party data sources available in Azure Sentinel. Please reference the &quot;Azure Sentinel&nbsp;<b>Data Connectors&quot; </b>gallery to view the list of all data connectors. Additionally, reference the&nbsp;following documentation to understand the supported data connection methods:</span></div><div style=\\\"box-sizing:border-box;outline:none;\\\"><span style=\\\"box-sizing:border-box;outline:none;\\\"><br></span></div><div style=\\\"box-sizing:border-box;outline:none;\\\"><span style=\\\"box-sizing:border-box;outline:none;\\\"><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-data-sources#data-connection-methods\\\">https://docs.microsoft.com/azure/sentinel/connect-data-sources#data-connection-methods</a></span></div><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/1\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/64\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/62\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/61\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/63\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/59\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/e1fbae30-8b9e-4b39-b1d7-9ef48d413d95\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T23:32:25.393Z\",\n            \"id\": \"2813896\",\n            \"resourceCreatedDate\": \"2020-05-20T23:32:21.417Z\",\n            \"resourceModifiedDate\": \"2020-05-20T20:23:47.013Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"3239090\",\n            \"name\": \"syslogcef.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/55\"\n    },\n    {\n      \"id\": 58,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-19T15:58:58.073Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-19T18:40:28.59Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"[BLOG] Collecting logs from Microsoft Services and Applications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://techcommunity.microsoft.com/t5/azure-sentinel/azure-sentinel-collecting-logs-from-microsoft-services-and/ba-p/792669\\\">https://techcommunity.microsoft.com/t5/azure-sentinel/azure-sentinel-collecting-logs-from-microsoft-services-and/ba-p/792669</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/1\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/58\"\n    },\n    {\n      \"id\": 62,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-05-19T19:08:20.367Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-24T15:04:03.96Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \" Connect Common Event Format Based solutions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"color:#171717;background:white;\\\">Azure Sentinel can be connected to\\nall other data sources that can perform real-time log streaming using the\\nSyslog protocol, via an agent.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"color:#171717;\\\"><span style=\\\"background:white;\\\"><span style=\\\"box-sizing:border-box;\\\">Most appliances use the Syslog protocol to send event messages that\\ninclude the log itself and data about the log. The format of the logs varies,\\nbut most appliances support the Common Event Format (CEF) based formatting for\\nlogs data.</span></span></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"color:#171717;\\\"><span style=\\\"background:white;\\\"><span style=\\\"box-sizing:border-box;\\\">The Azure Sentinel agent, which is based on the Log Analytics agent,\\nconverts CEF formatted logs into a format that can be ingested by Log\\nAnalytics. Depending on the appliance type, the agent is installed either\\ndirectly on the appliance, or on a dedicated Linux server. The agent for Linux\\nreceives events from the Syslog daemon over UDP, but if a Linux machine is\\nexpected to collect a high volume of Syslog events, they are sent over TCP from\\nthe Syslog daemon to the agent and from there to Log Analytics.</span></span></span><span style=\\\"\\\"></span></p></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/connect-common-event-format\\\">https://docs.microsoft.com/azure/sentinel/connect-common-event-format</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/79\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/80\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/76\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/55\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/f79a9c38-f489-4947-a416-3d6340173db5\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T23:32:48.713Z\",\n            \"id\": \"2813897\",\n            \"resourceCreatedDate\": \"2020-05-20T23:32:43.93Z\",\n            \"resourceModifiedDate\": \"2020-05-20T20:23:47.013Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"3239090\",\n            \"name\": \"syslogcef.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/62\"\n    },\n    {\n      \"id\": 17,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:59.32Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:22.07Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Workbooks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>After you connected your data sources to Azure Sentinel, you can visualize and monitor the data using the Azure Sentinel adoption of Azure Monitor Workbooks, which provides versatility in creating custom dashboards. While the Workbooks are displayed differently in Azure Sentinel, it may be useful for you to see how to Create interactive reports with Azure Monitor Workbooks. Azure Sentinel allows you to create custom workbooks across your data, and also comes with built-in workbook templates to allow you to quickly gain insights across your data as soon as you connect a data source.<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/tutorial-monitor-your-data\\\">https://docs.microsoft.com/azure/sentinel/tutorial-monitor-your-data</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/66\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/65\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/67\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/60\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/9\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/17\"\n    },\n    {\n      \"id\": 20,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:59.85Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:24.897Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Detect threats with built in analytic templates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>The following analytic template types are available:<br></span><div><br></div><div>Microsoft security - Microsoft security templates automatically create Azure Sentinel incidents from the alerts generated in other Microsoft security solutions, in real time. You can use Microsoft security rules as a template to create new rules with similar logic. For more information about security rules, see Automatically create incidents from Microsoft security alerts.<br></div><div><br></div><div>Fusion - Based on Fusion technology, advanced multistage attack detection in Azure Sentinel uses scalable machine learning algorithms that can correlate many low-fidelity alerts and events across multiple products into high-fidelity and actionable incidents. Fusion is enabled by default. Because the logic is hidden, you cannot use this as a template to create more than one rule.<br></div><div><br></div><div>Machine learning behavioral analytics - These templates are based on proprietary Microsoft machine learning algorithms, so you cannot see the internal logic of how they work and when they run. Because the logic is hidden, you cannot use this as a template to create more than one rule.<br></div><div><br></div><span>Scheduled – Scheduled analytic rules are scheduled queries written by Microsoft security experts. You can see the query logic and make changes to it. You can use scheduled rules as a template to create new rules with similar logic.</span><br></div><div><span><br></span></div><div><span><a href=\\\"https://docs.microsoft.com/azure/sentinel/tutorial-detect-threats-built-in\\\">https://docs.microsoft.com/azure/sentinel/tutorial-detect-threats-built-in</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/75\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/10\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/f195c9fe-42e3-45fd-94be-872a1413a215\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T23:21:32.397Z\",\n            \"id\": \"2813893\",\n            \"resourceCreatedDate\": \"2020-05-20T23:21:27.903Z\",\n            \"resourceModifiedDate\": \"2020-05-20T20:34:09.877Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"3384158\",\n            \"name\": \"Scheduled Rule.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/20\"\n    },\n    {\n      \"id\": 21,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:59.99Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:50:39.753Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \" Create custom analytic rules to detect suspicious threats\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>After you connected your data sources to Azure Sentinel, you can create custom rules that can search for specific criteria across your environment and generate incidents when the criteria are matched so that you can investigate them. This tutorial helps you create custom rules to detect threats with Azure Sentinel.<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/tutorial-detect-threats-custom\\\">https://docs.microsoft.com/azure/sentinel/tutorial-detect-threats-custom</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/10\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/6e464fc6-e49f-4c19-8f2d-687689b38d49\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T23:21:45.5Z\",\n            \"id\": \"2813894\",\n            \"resourceCreatedDate\": \"2020-05-20T23:21:42.523Z\",\n            \"resourceModifiedDate\": \"2020-05-20T20:43:43.483Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"2254216\",\n            \"name\": \"Custom rule.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/21\"\n    },\n    {\n      \"id\": 22,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:00.227Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:50:42.433Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Use the investigation graph to deep dive\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Use the investigation graph to deep dive\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/22\"\n    },\n    {\n      \"id\": 23,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:00.48Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:27.937Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Prerequisites to Deploy Azure Sentinel\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><br><span style=\\\"color:rgb(0, 90, 158);text-decoration:underline;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/azure/sentinel/quickstart-onboard\\\">https://docs.microsoft.com/azure/sentinel/quickstart-onboard</a></span><br></span></div><div><span><br></span></div><div><ul><li>Active Azure Subscription, if you don't have one, create a free account before you begin.</li><li>Log Analytics workspace.<a href=\\\"https://docs.microsoft.com/azure/log-analytics/log-analytics-quick-create-workspace\\\"> Learn how to create a Log Analytics workspace.</a> For more information about Log Analytics workspaces, see<a href=\\\"https://docs.microsoft.com/azure/azure-monitor/platform/design-logs-deployment\\\"> Designing your Azure Monitor Logs deployment.</a></li><li>To enable Azure Sentinel, you need <b>contributor permissions to the subscription </b>in which the Azure Sentinel workspace resides.</li><li>To use Azure Sentinel, you need either contributor or reader permissions on the resource group that the workspace belongs to.</li><li>Additional permissions may be needed to connect specific data sources.</li></ul><div><br></div>Azure Sentinel is a paid service. For pricing information see <a href=\\\"https://go.microsoft.com/fwlink/?linkid=2104058\\\">About Azure Sentinel.</a><br></div><div><br></div><div><span><a href=\\\"https://azure.microsoft.com/pricing/details/azure-sentinel/\\\">https://azure.microsoft.com/pricing/details/azure-sentinel/</a><br></span></div><div><span><a href=\\\"https://azure.microsoft.com/pricing/details/monitor/\\\">https://azure.microsoft.com/pricing/details/monitor/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/8\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/23\"\n    },\n    {\n      \"id\": 27,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:01.07Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:31.48Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Automate threat response\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><b>Automate threat responses</b></span></div><div><span><b><br></b></span><div>SIEM/SOC teams can be inundated with security alerts on a regular basis. The volume of alerts generated from a SIEM can cause alert fatigue and increase friction across your security analysts. This results all too often in situations where many alerts can't be investigated, leaving the organization vulnerable to attacks that go unnoticed.<br></div><div><br></div><a href=\\\"https://docs.microsoft.com/azure/sentinel/tutorial-respond-threats-playbook\\\">https://docs.microsoft.com/azure/sentinel/tutorial-respond-threats-playbook</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/5\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/86c6c421-2dde-4231-a065-01af434c9650\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T23:33:32.25Z\",\n            \"id\": \"2813899\",\n            \"resourceCreatedDate\": \"2020-05-20T23:33:29.853Z\",\n            \"resourceModifiedDate\": \"2020-05-18T00:59:44.567Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"792502\",\n            \"name\": \"Actions.gif\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/attachments/37746e22-c517-4a95-b557-8522d6a21faf\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-20T23:33:32.25Z\",\n            \"id\": \"2813898\",\n            \"resourceCreatedDate\": \"2020-05-20T23:33:24.853Z\",\n            \"resourceModifiedDate\": \"2020-05-18T01:07:15.293Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"337682\",\n            \"name\": \"Triggers.gif\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/27\"\n    },\n    {\n      \"id\": 28,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:01.217Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:35.01Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Built-in Hunting Queries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Built-in queries: To get you started, a starting page provides preloaded query examples designed to get you started and get you familiar with the tables and the query language. These built-in hunting queries are developed by Microsoft security researchers on a continuous basis, adding new queries, and fine-tuning existing queries to provide you with an entry point to look for new detections and figure out where to start hunting for the beginnings of new attacks.<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/hunting\\\">https://docs.microsoft.com/azure/sentinel/hunting</a><br></div><div><br></div><div>Public hunting query GitHub repository<br></div><div><a href=\\\"https://github.com/Azure/Azure-Sentinel\\\">https://github.com/Azure/Azure-Sentinel</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/6\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/28\"\n    },\n    {\n      \"id\": 29,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:01.4Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:37.913Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Bookmarks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Threat hunting typically requires reviewing mountains of log data looking for evidence of malicious behavior. During this process, investigators find events that they want to remember, revisit, and analyze as part of validating potential hypotheses and understanding the full story of a compromise.<br></span><div><br></div><span>Hunting bookmarks in Azure Sentinel help you do this, by preserving the queries you ran in Azure Sentinel - Logs, along with the query results that you deem relevant. You can also record your contextual observations and reference your findings by adding notes and tags. Bookmarked data is visible to you and your teammates for easy collaboration.</span><br></div><div><span><br></span></div><div><span><a href=\\\"https://docs.microsoft.com/azure/sentinel/bookmarks\\\">https://docs.microsoft.com/azure/sentinel/bookmarks</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/6\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/29\"\n    },\n    {\n      \"id\": 30,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:01.57Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:40.683Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Notebooks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The foundation of Azure Sentinel is the data store; it combines high performance querying, dynamic schema, and scales to massive data volumes. The Azure portal and all Azure Sentinel tools use a common API to access this data store. The same API is also available for external tools such as Jupyter notebooks and Python. While many common tasks can be carried out in the portal, Jupyter extends the scope of what you can do with this data. It combines full programmability with a huge collection of libraries for machine learning, visualization, and data analysis. These attributes make Jupyter a compelling tool for security investigation and hunting.<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/notebooks\\\">https://docs.microsoft.com/azure/sentinel/notebooks</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/6\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/30\"\n    },\n    {\n      \"id\": 33,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:02.227Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:43.353Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Livestream\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Use hunting livestream to create interactive sessions that let you test newly created queries as events occur, get notifications from the sessions when a match is found, and launch investigations if necessary. You can quickly create a livestream session using any Log Analytics query.<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/azure/sentinel/livestream\\\">https://docs.microsoft.com/azure/sentinel/livestream</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/6\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/33\"\n    },\n    {\n      \"id\": 36,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:02.917Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:46.677Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Deploying and Managing Azure Sentinel as Code\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;margin:0px;font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;color:rgb(51, 51, 51);font-size:16px;font-weight:300;text-align:left;\\\"><span>Deploying and Managing Azure Sentinel as Code<br></span></div><div style=\\\"box-sizing:border-box;margin:0px;font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;color:rgb(51, 51, 51);font-size:16px;font-weight:300;text-align:left;\\\"><span><br></span></div><div style=\\\"box-sizing:border-box;margin:0px;font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;color:rgb(51, 51, 51);font-size:16px;font-weight:300;text-align:left;\\\">How can I programmatically configure connectors? As a partner, how do I push to my new customer all the custom analytics rules/workbooks/playbooks that I have created for other customers?<br></div><div style=\\\"box-sizing:border-box;margin:0px;font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;color:rgb(51, 51, 51);font-size:16px;font-weight:300;text-align:left;\\\"><br></div><div style=\\\"box-sizing:border-box;margin:0px;font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;color:rgb(51, 51, 51);font-size:16px;font-weight:300;text-align:left;\\\"><a href=\\\"https://techcommunity.microsoft.com/t5/azure-sentinel/deploying-and-managing-azure-sentinel-as-code/ba-p/1131928\\\">https://techcommunity.microsoft.com/t5/azure-sentinel/deploying-and-managing-azure-sentinel-as-code/ba-p/1131928</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/43\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/36\"\n    },\n    {\n      \"id\": 37,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:03.177Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:49.243Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"[BLOG] Best practices for designing an Azure Sentinel or Azure Security Center Log Analytics workspace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\">This blog provides the top 8 best practices for an optimal\\nLog Analytics workspace design in Azure Sentinel, make sure to review.</p></div><div><a href=\\\"https://techcommunity.microsoft.com/t5/azure-sentinel/best-practices-for-designing-an-azure-sentinel-or-azure-security/ba-p/832574\\\">https://techcommunity.microsoft.com/t5/azure-sentinel/best-practices-for-designing-an-azure-sentinel-or-azure-security/ba-p/832574</a><br></div><div><br></div><div>For additional blogs, please visit:</div><div><a href=\\\"https://techcommunity.microsoft.com/t5/Azure-Sentinel/\\\">https://techcommunity.microsoft.com/t5/Azure-Sentinel/</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/11\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/37\"\n    },\n    {\n      \"id\": 38,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:03.31Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:51:53.19Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Azure Sentinel - Cost estimation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(76, 76, 81);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Sentinel provides intelligent security analytics across your enterprise. The data for this analysis is stored in an Azure Monitor Log Analytics workspace. Azure Sentinel is billed based on the volume of data ingested for analysis in Azure Sentinel and stored in the Azure Monitor Log Analytics workspace. Azure Sentinel offers a flexible and predictable pricing model. There are two ways to pay for the Azure Sentinel service: Capacity Reservations and Pay-As-You-Go.</span><br></div><div><span style=\\\"color:rgb(76, 76, 81);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(76, 76, 81);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><a href=\\\"https://azure.microsoft.com/pricing/details/azure-sentinel/\\\">https://azure.microsoft.com/pricing/details/azure-sentinel/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/11\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/38\"\n    },\n    {\n      \"id\": 40,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:03.623Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:52:05.953Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Become an Azure Sentinel Ninja: The complete level 400 training\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(51, 51, 51);font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;font-weight:300;text-align:left;display:inline !important;\\\">Become an Azure Sentinel Ninja: The complete level 400 training<br></span></div><div><span style=\\\"color:rgb(51, 51, 51);font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;font-weight:300;text-align:left;display:inline !important;\\\">This training program includes 16 modules. For each module, the post includes a presentation, preferably recorder (when still not, we are working on the recording) as well as supporting information: relevant product documentation, blog posts, and other resources.</span><br></div><div><br></div><div><a href=\\\"https://techcommunity.microsoft.com/t5/azure-sentinel/become-an-azure-sentinel-ninja-the-complete-level-400-training/ba-p/1246310#.XpRjWP8Xb1Q.linkedin\\\">https://techcommunity.microsoft.com/t5/azure-sentinel/become-an-azure-sentinel-ninja-the-complete-level-400-training/ba-p/1246310#.XpRjWP8Xb1Q.linkedin</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/42\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/40\"\n    },\n    {\n      \"id\": 18,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:08:59.47Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-06-03T16:52:09.37Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Kusto Query Language - Tutorial / Training\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-family:SegoeUI, Lato, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;color:rgb(51, 51, 51);font-size:16px;font-weight:300;text-align:left;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span style=\\\"color:black;\\\">Most Azure Sentinel capabilities use&nbsp;<a href=\\\"https://docs.microsoft.com/azure/kusto/query/\\\" target=_blank><span>KQL</span></a>&nbsp;or Kusto Query\\nLanguage. When you search in your logs, write rules, creating hunting queries\\nor create workbooks, you use KQL.&nbsp;</span><span></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span style=\\\"color:black;\\\"><br></span><span>A Kusto query is a read-only request to process data\\nand return results. The request is stated in plain text, using a data-flow\\nmodel designed to make the syntax easy to read, author, and automate. The query\\nuses schema entities that are organized in a hierarchy similar to SQL's:\\ndatabases, tables, and columns.</span><span style=\\\"color:black;\\\"><br></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span>&nbsp;</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span style=\\\"color:black;\\\"><a href=\\\"https://docs.microsoft.com/azure/kusto/query/\\\"><span>https://docs.microsoft.com/azure/kusto/query/</span></a></span><span></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span>&nbsp;</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span style=\\\"color:black;\\\">Additional Resources:</span><span></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span>&nbsp;</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span style=\\\"color:black;\\\">KQL Cheat Sheet -&nbsp;<span><a href=\\\"https://github.com/marcusbakker/KQL/blob/master/kql_cheat_sheet.pdf\\\">https://github.com/marcusbakker/KQL/blob/master/kql_cheat_sheet.pdf</a></span></span><span></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\"><span style=\\\"color:black;\\\">Pluralsight KQL Course -&nbsp;<a href=\\\"https://www.pluralsight.com/courses/kusto-query-language-kql-from-scratch\\\">https://www.pluralsight.com/courses/kusto-query-language-kql-from-scratch</a><br></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;background:white;\\\">[WEBINAR] Learn the KQL you need&nbsp;<a href=\\\"https://www.youtube.com/watch?v=EDCBLULjtCM\\\">https://www.youtube.com/watch?v=EDCBLULjtCM</a></p></div><div style=\\\"box-sizing:border-box;\\\"><br></div><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/42\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/18\"\n    },\n    {\n      \"id\": 240,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"AzureSentinelDeployment\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-27T20:18:18.5Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-28T13:07:31.357Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Explore Github Content in Azure Sentinel Repo\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/Azure/Azure-Sentinel/tree/master/Playbooks\\\">https://github.com/Azure/Azure-Sentinel/tree/master/Playbooks</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/5\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/240\"\n    },\n    {\n      \"id\": 25,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"AzureSentinelDeployment\",\n        \"System.TeamProject\": \"AzureSentinelDeployment\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-11T19:09:00.803Z\",\n        \"System.CreatedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-27T20:18:29.913Z\",\n        \"System.ChangedBy\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"System.Title\": \"Integrate with existing Case Management Systems \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Azure Sentinel Side-by-Side with Splunk<br></span><div>This blog is intent to describe how Azure Sentinel can be used as Side-by-Side approach with Splunk.<br></div><div><br></div><div><span style=\\\"\\\">As most of the enterprises consume more and more cloud services, there is a huge requirement for Cloud-Native SIEM where Azure Sentinel comes in play and has following advantages.</span><br></div><div><br></div><div><span style=\\\"\\\">Easy collection from cloud sources</span><br></div><div>Effortless infinite scale<br></div><div>Integrated automation capabilities<br></div><div>Continually maintained cloud and onprem use cases enhanced with Microsoft TI and ML<br></div><div>Github community<br></div><div>Microsoft research and ML capabilities<br></div><div>Avoid sending cloud telemetry downstream<br></div><span>There are several best practice integration options available how to operate Azure Sentinel in Side-by-Side.</span><br></div><div><span><a href=\\\"https://techcommunity.microsoft.com/t5/azure-sentinel/azure-sentinel-side-by-side-with-splunk/ba-p/1211266\\\">https://techcommunity.microsoft.com/t5/azure-sentinel/azure-sentinel-side-by-side-with-splunk/ba-p/1211266</a><br></span></div>\",\n        \"System.AssignedTo\": \"Cristhofer Munoz <crmuno@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/78\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/5\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/crmuno/_apis/wit/workItems/25\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Dashboard/Queries/All items, all states.json",
    "content": "{\n  \"name\": \"All items, all states\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Dashboard/Queries/Assigned to me.json",
    "content": "{\n  \"name\": \"Assigned to me\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Dashboard/Queries/Followed work items.json",
    "content": "{\n  \"name\": \"Followed work items\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Dashboard/Queries/Workload Template.json",
    "content": "{\n  \"name\": \"Workload Template\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.Description], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and Source.[System.WorkItemType] <> '' and Source.[System.State] <> '' and Source.[System.Tags] contains 'Workload Template') and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and Target.[System.WorkItemType] <> '') mode (Recursive)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/ImportSourceCode/Cloud Adoption Plan Master.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/vandyr/NIST 800-171 Template/_git/Cloud Adoption Plan Master\"\n    },\n    \"serviceEndpointId\": \"$Cloud Adoption Plan Master-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"NIST 800-171 Template\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": [],\n  \"userAssignment\": \"Any\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator - NIST 800-171 Template\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/ServiceEndpoints/Cloud Adoption Plan Master-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Cloud Adoption Plan Master-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/CAFTemplate/Cloud Adoption Plan Master/_git/Cloud Adoption Plan Master\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"h.akshay@outlook.com\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Teams/NIST 800-171 Template Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Teams/NIST 800-171 Template Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Teams/NIST 800-171 Template Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Teams/NIST 800-171 Template Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Teams/NIST 800-171 Template Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"87c3234e-01e7-411d-ae0d-0b8cb6831a93\",\n    \"name\": \"NIST 800-171 Template Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/WorkItems/Epic.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 908,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T11:59:49.11Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T15:28:06.517Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Azure Security Stack vs NIST CSF\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\">The\\nfive Functions included in the Framework Core are:</span></p><p style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"></p><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.19in;text-indent:-.19in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;\\\"><span style=\\\"font-family:Arial;\\\">•</span></span><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\">Identify</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.19in;text-indent:-.19in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;\\\"><span style=\\\"font-family:Arial;\\\">•</span></span><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\">Protect</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.19in;text-indent:-.19in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;\\\"><span style=\\\"font-family:Arial;\\\">•</span></span><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\">Detect</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.19in;text-indent:-.19in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;\\\"><span style=\\\"font-family:Arial;\\\">•</span></span><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\">Respond</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.19in;text-indent:-.19in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;\\\"><span style=\\\"font-family:Arial;\\\">•</span></span><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\">Recover</span></div><div style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:.19in;text-indent:-.19in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\"><br></span></div><p style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"></p><p style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\">The\\nFunctions are the highest level of abstraction included in the Framework. They\\nact as the backbone of the Framework Core that all other elements are organized\\naround.</span></p><p style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"></p><p style=\\\"margin-top:0pt;margin-bottom:0pt;margin-left:0in;text-align:left;unicode-bidi:embed;\\\"><span style=\\\"font-size:12.0pt;font-family:Calibri;color:black;font-weight:normal;\\\">These\\nfive Functions were included in the Core because they represent the\\nfive&nbsp;primary pillars for a successful and holistic cybersecurity program.\\nThey aid organizations in easily expressing their management of cybersecurity\\nrisk at a high level and enabling risk management decisions.</span></p><br></div><div><br></div><div>NIST CSF V 1.1</div><div><a href=\\\"https://www.nist.gov/cyberframework/framework\\\">https://www.nist.gov/cyberframework/framework</a><br></div><div><br></div><div><div style=\\\"box-sizing:border-box;\\\">Azure Security Stack vs NIST CSF</div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://www.managedsentinel.com/2019/06/18/azure-vs-nist/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://www.managedsentinel.com/2019/06/18/azure-vs-nist/</a></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"NIST\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/931\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/933\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/915\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/908\"\n    },\n    {\n      \"id\": 631,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:32.147Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-10T15:23:34.317Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Adoption Plan\",\n        \"System.AssignedTo\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/639\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/631\"\n    },\n    {\n      \"id\": 864,\n      \"rev\": 15,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-04-02T15:17:59.643Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-10T15:23:32.547Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"NIST 800-171 Control Family\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Protecting Controlled Unclassified Information in Nonfederal Systems and Organizations<br></div><div><a href=\\\"https://csrc.nist.gov/publications/detail/sp/800-171/rev-2/final\\\">https://csrc.nist.gov/publications/detail/sp/800-171/rev-2/final</a><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"NIST\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/936\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/937\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/819\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/816\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/818\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/815\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/817\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/826\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/827\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/824\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/822\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/823\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/938\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/820\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/821\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/825\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/828\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/864\"\n    },\n    {\n      \"id\": 630,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:31.583Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T17:05:45.56Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Cloud Adoption Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">The cloud delivers fundamental technology benefits that can help your enterprise execute multiple business strategies. By using cloud-based approaches, you can improve business agility, reduce costs, accelerate time to market, and enable expansion into new markets. To take advantage of this great potential, start by documenting your business strategy in a way that's both understandable to cloud technicians and palatable to your business stakeholders.</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/640\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/630\"\n    },\n    {\n      \"id\": 632,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:32.463Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:59:52.1Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cloud Ready\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Ready\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/632\"\n    },\n    {\n      \"id\": 633,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:32.7Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:59:52.1Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cloud Innovation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Innovation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Innovation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/633\"\n    },\n    {\n      \"id\": 634,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:32.873Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:59:52.1Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cloud Migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/635\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/636\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/634\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/WorkItems/Feature.json",
    "content": "{\n  \"count\": 14,\n  \"value\": [\n    {\n      \"id\": 635,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:33.217Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T12:22:37.05Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"First Workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Migrate the first workload to learn and refine your migration process.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/634\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/692\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/651\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/663\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/674\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/683\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/635\"\n    },\n    {\n      \"id\": 636,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:33.643Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T12:22:37.05Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"First Host\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Migrate your first VMWare Host</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/710\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/709\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/634\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/708\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/636\"\n    },\n    {\n      \"id\": 637,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:33.817Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T12:22:37.05Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Workload Template\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Using Excel's Team add-on, copy all work items with the tag &quot;Workload Template&quot;. Past those tags in the excel table &amp; change the Tags &amp; the name of the feature to match your workload's name.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/634\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/700\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/705\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/706\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/699\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/704\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/701\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/707\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/702\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/703\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\"\n    },\n    {\n      \"id\": 638,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:34.113Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T12:22:37.05Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Landing zone creation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Landing zone creation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/713\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/939\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/874\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/941\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/880\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/711\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/712\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/632\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\"\n    },\n    {\n      \"id\": 639,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:34.287Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T12:22:37.05Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Define the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Define the Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/717\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/716\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/715\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/631\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/718\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/639\"\n    },\n    {\n      \"id\": 640,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:34.463Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T17:05:58.82Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Define Adoption Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">The exercises in this section can help you document your business strategy efficiently. By using this approach, you can drive adoption efforts that capture targeted business value in a cross-functional model. You can then map your cloud adoption strategy to specific cloud capabilities and business strategies to reach your desired state of transformation.</span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/722\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/721\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/630\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/719\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/720\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/640\"\n    },\n    {\n      \"id\": 909,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:01:05.3Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T13:49:31.077Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Identify\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The Identify Function assists in developing an organizational understanding of managing cybersecurity risk to systems, people, assets, data, and capabilities.</div><div><br></div><div><span>Example Outcomes:<br></span><div><ul><li>Identifying physical and software assets to establish an Asset Management program</li><li><span style=\\\"\\\">Identifying cybersecurity policies to define a Governance program</span></li><li><span style=\\\"\\\">Identifying a Risk Management Strategy for the organization</span></li></ul><div>Category</div></div></div><div><ul><li>Asset Management</li><li>Business Environment</li><li>Governance</li><li>Risk Assessment</li><li>Risk Management Strategy</li><li>Supply Chain Risk Management</li></ul></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/912\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/910\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/914\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/911\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/909\"\n    },\n    {\n      \"id\": 919,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:05:04.877Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T13:51:24.337Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Protect\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">The Protect Function supports the ability to limit or contain the impact of potential cybersecurity events and outlines safeguards for delivery of critical services.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Example Outcomes:<br style=\\\"box-sizing:border-box;\\\"></span><div style=\\\"box-sizing:border-box;\\\"><ul><li><span style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\">Establishing Data Security protection to protect the confidentiality, integrity, and availability</div></span></li><li><span style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"\\\">Managing Protective Technology to ensure the security and resilience of systems and assists</span></div></span></li><li><span style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"\\\">Empowering staff within the organization through Awareness and Training</span></div></span></li></ul></div><span style=\\\"box-sizing:border-box;\\\"></span></span></div><br>Category</div><div><ul><li>Identity Management and Access Control</li><li>Awareness and Training</li><li>Data Security</li><li>Information Protection Process and Procedures</li><li>Maintenance</li><li>Proactive Technologies</li></ul></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/926\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/928\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/929\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/927\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/921\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/925\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/930\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\"\n    },\n    {\n      \"id\": 915,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:04:02.84Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T13:52:19.737Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Detect\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The Detect Function defines the appropriate activities to identify the occurrence of a cybersecurity event in a timely manner.<br></div><div><br></div><div><span>Example Outcomes:<br></span><div><ul><li>Implementing Security Continuous Monitoring capabilities to monitor cybersecurity events</li><li><span style=\\\"\\\">Ensuring Anomalies and Events are detected, and their potential impact is understood</span></li><li><span style=\\\"\\\">Verifying the effectiveness of protective measures</span></li></ul><div>Category</div></div></div><div><ul><li>Anomalies and Events</li><li>Security Continuous Monitoring</li><li>Detection Process</li></ul></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/918\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/916\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/917\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/915\"\n    },\n    {\n      \"id\": 931,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:08:38.943Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T13:53:11.247Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Respond\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The Respond Function includes appropriate activities to take action regarding a detected cybersecurity incident to minimize impact.<br></div><div><br></div><div><span>Example Outcomes:<br></span><div><ul><li>Ensuring Response Planning processes are executed during and after an incident</li><li><span>Managing Communications during and after an event</span></li><li><span>Analyzing effectiveness of response activities</span></li></ul><div>Category</div></div></div><div><ul><li>Response Planning</li><li>Communications</li><li>Analysis</li><li>Mitigation</li><li>Improvements</li></ul></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/931\"\n    },\n    {\n      \"id\": 933,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:09:34.187Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T13:53:49.563Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Recover\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The Recover Function identifies appropriate activities to maintain plans for resilience and to restore services impaired during cybersecurity incidents.<br></div><div><br></div><div><span>Example Outcomes:<br></span><div><ul><li>Ensuring the organization implements Recovery Planning processes and procedures</li><li><span style=\\\"\\\">Implementing improvements based on lessons learned</span></li><li><span style=\\\"\\\">Coordinating communications during recovery activities</span></li></ul><div>Category</div></div></div><div><ul><li>Recovery Planning</li><li>Improvements</li><li>Communications</li></ul></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/935\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/933\"\n    },\n    {\n      \"id\": 938,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T14:39:56.85Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:58:57.113Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"NIST Readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<ul><li>Gather data to understand an organization’s\\ncurrent security posture. </li><li>Evaluating data to measure the effectiveness\\nof security controls and identify gaps in the\\nperformance of these controls with respect to a\\nsecurity framework (in this case, NIST SP 800-171).</li><li>Developing recommendations to create the required\\nreporting documentation for the DoD CIO and the\\nroadmap and action plan to address shortcomings.</li></ul>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/864\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/938\"\n    },\n    {\n      \"id\": 937,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T13:57:01.76Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T21:23:47.83Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Customer Responsibility Control Matrix\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"color:rgb(68, 68, 68);font-family:Calibri, sans-serif, &quot;Mongolian Baiti&quot;, &quot;Microsoft Yi Baiti&quot;, &quot;Javanese Text&quot;, &quot;Yu Gothic&quot;;font-size:14.6667px;text-align:left;\\\">This Excel Spreadsheet enumerates each control and provides an implementation matrix that lists all security controls required by NIST SP 800-171. <br><br>The matrix denotes, for each control that is designated, a customer-responsibility in the NIST SP 800-171 Customer Responsibility Matrix, 1) if the Azure Security and Compliance Blueprint - Data Analytics for NIST SP 800-171 reference architecture demonstrates implementation of the control, and 2) a description of how the implementation aligns with the control requirement(s). </div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/864\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/937\"\n    },\n    {\n      \"id\": 936,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:33:35.897Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T12:33:54.62Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"NIST 800-171 Handbook Self Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">NIST 800-171 Hanbook 162</div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://nvlpubs.nist.gov/nistpubs/hb/2017/nist.hb.162.pdf\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://nvlpubs.nist.gov/nistpubs/hb/2017/nist.hb.162.pdf</a></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/864\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/936\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/WorkItems/Task.json",
    "content": "{\n  \"count\": 84,\n  \"value\": [\n    {\n      \"id\": 881,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:39:38.98Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:32:14.163Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cost Management and Billing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/881\"\n    },\n    {\n      \"id\": 892,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:53:49.323Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:32:18.43Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cloud Services Due Diligent Checklist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Cloud Services Due Diligence Checklist</span><br></div><div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://www.microsoft.com/en-us/trust-center/compliance/due-diligence-checklist\\\">https://www.microsoft.com/en-us/trust-center/compliance/due-diligence-checklist</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/892\"\n    },\n    {\n      \"id\": 905,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T11:31:20.133Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:31:27.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Corporate Policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Cloud Governance Corporate Policy</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/policy-definition\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/policy-definition</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/905\"\n    },\n    {\n      \"id\": 882,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:40:23.457Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:29:14.6Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cloud Security Readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>CISO Cloud readiness guide</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/cloud-security-readiness\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/cloud-security-readiness</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/882\"\n    },\n    {\n      \"id\": 883,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:40:59.013Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:30:15.557Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Regulatory Compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Regulatory Compliance</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/regulatory-compliance\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/regulatory-compliance</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/883\"\n    },\n    {\n      \"id\": 904,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T11:18:24.503Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:18:33.107Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Manage Remote Access\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/904\"\n    },\n    {\n      \"id\": 875,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:27:11.907Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:37:58.877Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Azure Regions - Production and DR\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/874\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/875\"\n    },\n    {\n      \"id\": 877,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:31:44.487Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:32:04.09Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Organize Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Set up a management hierarchy to consistently apply access control, policy, and compliance to groups of resources and use tagging to track related resources.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/874\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/877\"\n    },\n    {\n      \"id\": 876,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:28:19.13Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:28:54.677Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Azure Naming Convention\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Microsoft recommendations:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/874\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/876\"\n    },\n    {\n      \"id\": 940,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T15:19:12.813Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T15:19:36.04Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Security Pillar\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Overview of the security pillar<br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/framework/security/overview\\\">https://docs.microsoft.com/en-us/azure/architecture/framework/security/overview</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/940\"\n    },\n    {\n      \"id\": 902,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T11:11:39.103Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:11:39.103Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Automation Tools\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/902\"\n    },\n    {\n      \"id\": 900,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T11:03:39.173Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:03:39.173Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Security Information Event Management - SIEM\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/900\"\n    },\n    {\n      \"id\": 899,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T11:03:13.23Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:03:54.8Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cloud Security Posture Management - CSPM\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/899\"\n    },\n    {\n      \"id\": 898,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:59:14.57Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:59:14.57Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Usage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/898\"\n    },\n    {\n      \"id\": 897,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:58:44.403Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:58:44.403Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/897\"\n    },\n    {\n      \"id\": 896,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:58:26.347Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:58:26.347Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Recover\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/896\"\n    },\n    {\n      \"id\": 895,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:58:10.91Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:58:10.91Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Performance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/895\"\n    },\n    {\n      \"id\": 894,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:58:00.223Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:21:11.163Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Configuration Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/894\"\n    },\n    {\n      \"id\": 893,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:57:43.217Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:57:43.217Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Inventory\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/893\"\n    },\n    {\n      \"id\": 891,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:47:25.743Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:47:25.743Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"DMZ\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/891\"\n    },\n    {\n      \"id\": 890,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:47:16.04Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:16:07.073Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Internal and External Routing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/890\"\n    },\n    {\n      \"id\": 889,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:46:20.32Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:46:20.32Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Inspection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/889\"\n    },\n    {\n      \"id\": 888,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:46:10.71Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:46:10.71Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Data Isolation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/888\"\n    },\n    {\n      \"id\": 887,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:45:51.317Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:48:50.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"VPN and ER\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/887\"\n    },\n    {\n      \"id\": 886,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:45:39.24Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:45:39.24Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"DNS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/886\"\n    },\n    {\n      \"id\": 885,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:44:23.393Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:44:23.393Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"IAM - Map Roles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/880\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/885\"\n    },\n    {\n      \"id\": 698,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:47.343Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:47.343Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migrate VMs using backup and disaster recovery tools\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-backup-and-disaster-recovery-tools\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-backup-and-disaster-recovery-tools</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/709\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/698\"\n    },\n    {\n      \"id\": 697,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:47.183Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:47.183Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Update the migration tooling decision tree to reflect VMWare migration options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Download and modify the migration tool decision tree to align to your expanded migration processes&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/710\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/697\"\n    },\n    {\n      \"id\": 696,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:47Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:47Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Configure workload DNS and DHCP setup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/dns-dhcp-setup/\\\">https://docs.azure.cloudsimple.com/dns-dhcp-setup/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/708\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/696\"\n    },\n    {\n      \"id\": 695,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:46.83Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:46.83Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Document configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Document Configuration of the VM in the User Story\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/702\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/695\"\n    },\n    {\n      \"id\": 694,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:46.667Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:46.667Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Document configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Document Configuration of the VM in the User Story\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/703\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/694\"\n    },\n    {\n      \"id\": 693,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:46.49Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:46.49Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Change approval process\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Approve proposed changes with necessary change control mechanisms:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/approve\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/approve</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/700\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/693\"\n    },\n    {\n      \"id\": 692,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:46.327Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:46.327Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Update the adoption plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Update the migration plan with any process or task changes based on the first workload<br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/635\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/692\"\n    },\n    {\n      \"id\": 691,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:46.167Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:46.167Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Promotion\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Re-route production traffic to deployed assets&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/706\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/691\"\n    },\n    {\n      \"id\": 690,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:45.77Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:45.77Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Document change\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Record the change in sizing in the parent feature, along with the reason for change\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/705\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/690\"\n    },\n    {\n      \"id\": 689,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:45.607Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:45.607Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Scale Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Execute the test at scale to test asset performance under load.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/704\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/689\"\n    },\n    {\n      \"id\": 688,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:45.447Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:45.447Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Document configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Document Configuration of the VM in the User Story\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/701\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/688\"\n    },\n    {\n      \"id\": 687,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:45.3Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:45.3Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Decommission\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Terminate or resuse the allocated resources&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/707\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/687\"\n    },\n    {\n      \"id\": 686,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:45.157Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:45.157Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Environment readiness (Landing Zone)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Has the cloud migration target been established? Are the necessary migration tools in place? Has a resource organization and naming standard been set for this workload's assets?&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/planning-checklist\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/planning-checklist</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/699\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/686\"\n    },\n    {\n      \"id\": 685,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:44.9Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:44.9Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Secure and Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Ideally governance, security, and operations have each been factored into the operating model for your cloud environments. If they have not, take a moment to validate security and management constraints for this asset.</div><div>Guide: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/secure-and-manage\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/secure-and-manage</a></div><div>Considerations:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/secure-and-manage/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/secure-and-manage/</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/701\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/685\"\n    },\n    {\n      \"id\": 684,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:44.743Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:44.743Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Final test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Validate availability of all assets before production\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/706\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/684\"\n    },\n    {\n      \"id\": 683,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:44.597Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:44.597Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Review Best Practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Review migration best practices to identify additional technical requirements that would aid in the success of your migration effort:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-best-practices/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-best-practices/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/635\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/683\"\n    },\n    {\n      \"id\": 682,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:44.443Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:44.443Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migration tool choice(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Evaluate the approach to migrate the workload based on future state architecture decisions&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/700\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/682\"\n    },\n    {\n      \"id\": 681,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:44.143Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:44.143Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Secure and Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ideally governance, security, and operations have each been factored into the operating model for your cloud environments. If they have not, take a moment to validate security and management constraints for this asset.\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/secure-and-manage\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/secure-and-manage/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/703\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/681\"\n    },\n    {\n      \"id\": 680,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:43.97Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:43.97Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Secure and Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ideally governance, security, and operations have each been factored into the operating model for your cloud environments. If they have not, take a moment to validate security and management constraints for this asset.\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/secure-and-manage\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/secure-and-manage/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/702\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/680\"\n    },\n    {\n      \"id\": 679,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:43.817Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:43.817Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migrate VMs using NSX Layer 2 VPN\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-nsx-layer-2-vpn\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-nsx-layer-2-vpn</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/709\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/679\"\n    },\n    {\n      \"id\": 678,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:43.667Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:43.667Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migrate VMs using PowerCLI\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-powercli\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-powercli</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/709\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/678\"\n    },\n    {\n      \"id\": 677,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:43.507Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:43.507Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Optimize workload(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Test, measure performance, and optimize workloads. When ready promote the workload to production\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/optimize-and-transform\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/702\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/677\"\n    },\n    {\n      \"id\": 676,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:43.213Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:43.213Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Optimize workload(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Test, measure performance, and optimize workloads. When ready promote the workload to production\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/optimize-and-transform\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/703\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/676\"\n    },\n    {\n      \"id\": 675,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:43.047Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:43.047Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Estimate Cloud Costs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Estimate cost of the proposed workload. Update the business justification and budget accordingly.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/estimate\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/estimate</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/700\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/675\"\n    },\n    {\n      \"id\": 674,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:42.893Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:42.893Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Review Expanded Scope Checklist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Review the expanded scope checklist to identify any scope requirements which would cause significant deviations from the Azure Migration Guide:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/expanded-scope/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/expanded-scope/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/635\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/674\"\n    },\n    {\n      \"id\": 673,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:42.733Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:42.733Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Governance Review\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate adherence to governance or compliance requirements&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/706\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/673\"\n    },\n    {\n      \"id\": 672,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:42.583Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:42.583Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Optimize workload(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Test, measure performance, and optimize workloads. When ready promote the workload to production</div><div>Guide:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/optimize-and-transform\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/optimize-and-transform</a></div><div>Considerations:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/701\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/672\"\n    },\n    {\n      \"id\": 671,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:42.423Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:42.423Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Create/select automated test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Use an existing test or create a test script based on power user testing.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/704\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/671\"\n    },\n    {\n      \"id\": 670,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:42.08Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:42.08Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Adjust sizing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Change the size of the deployed asset&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/705\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/670\"\n    },\n    {\n      \"id\": 669,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:41.917Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:41.917Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Decide on optimization timing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Decide if testing is sufficient to optimize (Or if optimization should happen after promotion)&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/705\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/669\"\n    },\n    {\n      \"id\": 668,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:41.76Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:41.76Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Manual test with power users\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Observe power users from the business performing manual validation of the workload&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/business-test\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/business-test</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/704\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/668\"\n    },\n    {\n      \"id\": 667,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:41.61Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:41.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Leverage the define migration solution to automate migration of the asset to the cloud. This step may be best executed as a single task for all assets associated with this workload.</div><div>Guide&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/migrate\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/migrate</a></div><div>Considerations:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/migrate/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/migrate/</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/701\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/667\"\n    },\n    {\n      \"id\": 666,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:41.247Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:41.247Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Roles and Responsibilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The various functions required during this migration are represented by one or more members of the team.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/culture-complexity?branch=pr-en-us-47\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/culture-complexity</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/699\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/666\"\n    },\n    {\n      \"id\": 665,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:41.067Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:41.067Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Workload monitoring period\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Monitor application performance for a period of time to validate that the application is free of unplanned dependencies on decommissioned assets&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/707\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/665\"\n    },\n    {\n      \"id\": 664,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:40.757Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:40.757Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Security Review\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate adherence to security baseline&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/706\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/664\"\n    },\n    {\n      \"id\": 663,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:40.603Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:40.603Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Select the first workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Select a first workload that is suitable as a trial run or pilot of your migration process.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/digital-estate/rationalize#selecting-the-first-workload\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/digital-estate/rationalize#selecting-the-first-workload</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/635\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/663\"\n    },\n    {\n      \"id\": 662,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:40.44Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:40.44Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Architect workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Define future state architecture for the workload:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/architect\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/architect</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/700\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/662\"\n    },\n    {\n      \"id\": 661,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:40.277Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:40.277Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Leverage the define migration solution to automate migration of the asset to the cloud. This step may be best executed as a single task for all assets associated with this workload.\\n<br>Guide https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/migrate\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/migrate/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/703\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/661\"\n    },\n    {\n      \"id\": 660,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:39.943Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:39.943Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Leverage the define migration solution to automate migration of the asset to the cloud. This step may be best executed as a single task for all assets associated with this workload.\\n<br>Guide https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/migrate\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/migrate/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/702\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/660\"\n    },\n    {\n      \"id\": 659,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:39.78Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:39.78Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migrate ISOs and Templates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-isos-and-templates\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-isos-and-templates</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/709\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/659\"\n    },\n    {\n      \"id\": 658,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:39.603Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:39.603Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Configure on-premises DNS for private cloud\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/on-premises-dns-setup/\\\">https://docs.azure.cloudsimple.com/on-premises-dns-setup/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/708\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/658\"\n    },\n    {\n      \"id\": 657,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:39.45Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:39.45Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Escalate private cloud privileges\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/escalate-privileges/\\\">https://docs.azure.cloudsimple.com/escalate-privileges/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/708\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/657\"\n    },\n    {\n      \"id\": 656,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:39.28Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:39.28Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Evaluate migration options used to migrate the first host\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Determine which approaches are to be supported during iterative migration processes</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/710\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/656\"\n    },\n    {\n      \"id\": 655,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:39.117Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:39.117Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Prerequisites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#prerequisites\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#prerequisites</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/709\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/655\"\n    },\n    {\n      \"id\": 654,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:38.893Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:38.893Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Assess\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Evaluate readiness, architecture, cost, and appropriate migration tooling\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/assess\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/\\n<br>Decision Tree: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/702\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/654\"\n    },\n    {\n      \"id\": 653,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:38.43Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:38.43Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Assess\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Evaluate readiness, architecture, cost, and appropriate migration tooling\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/assess\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/\\n<br>Decision Tree: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/703\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/653\"\n    },\n    {\n      \"id\": 652,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:38.26Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:38.26Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Evaluate workload and asset readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/evaluate\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/evaluate</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/700\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/652\"\n    },\n    {\n      \"id\": 651,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:38.11Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:38.11Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Azure Migration Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Follow the Azure Migration Guide to deploy the first workload in the cloud adoption plan. <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/?tabs=Overview\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/?tabs=Overview</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/635\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/651\"\n    },\n    {\n      \"id\": 650,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:37.943Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:37.943Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Network dependencies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate network traffic based on scale test to identify unplanned dependencies&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/706\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/650\"\n    },\n    {\n      \"id\": 649,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:37.653Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:37.653Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Power down assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Turn off existing VMs&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/707\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/649\"\n    },\n    {\n      \"id\": 648,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:37.477Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:37.477Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Decisions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Evaluate decisions that impact migration efforts:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/decisions\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/decisions</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/699\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/648\"\n    },\n    {\n      \"id\": 647,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:37.263Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:37.263Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Assess\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Evaluate readiness, architecture, cost, and appropriate migration tooling</div><div>Guide:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/assess\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/assess</a></div><div>Considerations: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/</a></div><div>Decision Tree:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/701\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/647\"\n    },\n    {\n      \"id\": 646,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:36.87Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:36.87Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Set up Azure Monitor to track performance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Azure monitor to track CPU, Memory, and other performance metrics on VMs\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/704\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/646\"\n    },\n    {\n      \"id\": 645,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:36.697Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:36.697Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Review test results\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review results of the workload test to evaluate data and proper sizing&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/705\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/645\"\n    },\n    {\n      \"id\": 644,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:35.43Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:35.43Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Create timelines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/timelines\\\">Create timelines</a> to align expectations across the business and IT teams.</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/718\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/644\"\n    },\n    {\n      \"id\": 643,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:35.25Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:35.25Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Define iterations and releases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/iteration-paths\\\">Update the iteration path</a> of each workload to define iterations of work and iterations of production workload releases.</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/718\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/643\"\n    },\n    {\n      \"id\": 642,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:34.91Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:34.91Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Align assets to workloads\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Ensure that all <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/assets\\\">assets are aligned</a> to at least one workload</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/718\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/642\"\n    },\n    {\n      \"id\": 641,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:34.73Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-01T18:05:34.73Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Prioritize workloads\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/workloads\\\">Define and prioritize workloads</a> in the backlog</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/718\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/641\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-NIST800171Rev2/WorkItems/User Story.json",
    "content": "{\n  \"count\": 53,\n  \"value\": [\n    {\n      \"id\": 699,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:47.517Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Prerequisites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Validate completion of prerequisites &amp; document answers\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/648\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/666\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/686\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/699\"\n    },\n    {\n      \"id\": 700,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:47.71Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Assess the workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/?branch=pr-en-us-47\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/?branch=pr-en-us-47</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/662\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/675\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/682\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/693\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/652\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/700\"\n    },\n    {\n      \"id\": 701,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:47.87Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"VM - UX Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"VM to be migrated\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/688\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/672\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/685\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/647\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/667\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/701\"\n    },\n    {\n      \"id\": 702,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:48.03Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"VM - Middle Tier\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"VM to be migrated\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/654\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/677\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/680\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/695\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/702\"\n    },\n    {\n      \"id\": 703,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:48.193Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"VM 3 - SQL Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"VM to be migrated\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/661\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/653\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/694\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/681\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/676\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/703\"\n    },\n    {\n      \"id\": 704,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:48.413Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Test Workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Validate funcationality of the workload\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/668\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/689\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/646\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/704\"\n    },\n    {\n      \"id\": 705,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:49.043Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Optimize Workload Assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Tune the migrated assets based on observations\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/670\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/645\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/690\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/705\"\n    },\n    {\n      \"id\": 706,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:49.213Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Promote Workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Tune the migrated assets based on testing feedback\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/650\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/684\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/664\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/691\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/673\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/706\"\n    },\n    {\n      \"id\": 707,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:49.37Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Decomission Retired Assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Realize cost savings by terminating retired assets\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/649\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/665\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/687\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/707\"\n    },\n    {\n      \"id\": 708,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:49.523Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Extend the landing zone for VMWare\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Resolve defined prerequisites necessary to migrate VMWare assets to Azure</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/657\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/658\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/636\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/696\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/708\"\n    },\n    {\n      \"id\": 709,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:49.68Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Migrate VMs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Migrate a select group of VMs from the on-premises host to a host on Azure</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/636\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/678\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/679\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/655\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/698\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/659\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/709\"\n    },\n    {\n      \"id\": 710,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:49.853Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Update migration assessment, decision tree, and tooling\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Evaluate the results of the migration from the first host to inform iterative processes</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/697\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/656\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/636\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/710\"\n    },\n    {\n      \"id\": 941,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T15:23:03.553Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T15:23:09.747Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Azure Architecture Framework\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The Azure architecture framework is a set of guiding tenets that can be used to improve the quality of a workload. The framework consists of five pillars of architecture excellence: Cost, DevOps, Resiliency, Scalability, and Security.<br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/framework/\\\">https://docs.microsoft.com/en-us/azure/architecture/framework/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/941\"\n    },\n    {\n      \"id\": 711,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:50.043Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Azure Readiness Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Review the </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/azure-readiness-guide/index\\\">Azure Readiness Guide</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to become familiar with the tools and approaches needed in landing zone creation.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/711\"\n    },\n    {\n      \"id\": 713,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:50.453Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:06:11.7Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Landing zone considerations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Review </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/considerations/index\\\">landing zone considerations</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to understand the alternative decisions which could impact your landing zone design.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/713\"\n    },\n    {\n      \"id\": 874,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:26:13.257Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Azure Subscription Architecture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/876\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/877\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/874\"\n    },\n    {\n      \"id\": 880,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:39:08.827Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:42:38.853Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Identity and Access Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/885\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/880\"\n    },\n    {\n      \"id\": 884,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:42:25.03Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:51:39.517Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Azure Network Architecture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Virtual Datacenter: A network perspective</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/reference/networking-vdc\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/reference/networking-vdc</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/886\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/890\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/891\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/888\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/889\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/887\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/884\"\n    },\n    {\n      \"id\": 879,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:37:27.24Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T15:17:12.28Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Governance, Security and Compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Enforce and automate policies and security settings that help you follow applicable legal requirements.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/881\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/904\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/940\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/882\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/892\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/905\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/900\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/883\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/899\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/879\"\n    },\n    {\n      \"id\": 878,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T10:35:51.717Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:42:54.553Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Monitoring and Reporting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Get visibility across resources to find and fix problems, optimize performance, and gain insight into customer behavior.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/894\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/896\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/895\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/897\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/893\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/878\"\n    },\n    {\n      \"id\": 901,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T11:10:58.8Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:11:08.6Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Cloud Automation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/902\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/901\"\n    },\n    {\n      \"id\": 712,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:50.233Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T11:08:04.3Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"CAF Migrate Landing Zone blueprint\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Evaluate the </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/azure-readiness-guide/migration-landing-zone\\\">CAF Migrate Landing Zone blueprint</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">. If the assumptions and decisions in that article align to your business and technical objectives, the blueprint can be used to create your landing zone.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/712\"\n    },\n    {\n      \"id\": 715,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:50.78Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Digital Estate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/digital-estate/inventory\\\">Inventory</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> and </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/digital-estate/rationalize\\\">rationalize the digital estate</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> based on assumptions which align with motivations and business outcomes.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/639\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/715\"\n    },\n    {\n      \"id\": 716,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:50.94Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Initial organizational alignment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Establish a plan for </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/organization/index\\\">organizational alignment</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">, included defined </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/organization/raci-alignment\\\">RACI diagrams</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/639\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/716\"\n    },\n    {\n      \"id\": 717,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:51.12Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Skills readiness plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Create a plan for addressing </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-in/azure/cloud-adoption-framework/ready/suggested-skills\\\">skills readiness gaps</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/639\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/717\"\n    },\n    {\n      \"id\": 718,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:51.283Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Update this Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Update this </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/plan-intro\\\">cloud adoption plan</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to manage effort and change.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/639\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/644\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/643\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/642\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/641\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/718\"\n    },\n    {\n      \"id\": 719,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:51.44Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T17:08:05.377Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Motivations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;\\\"><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;display:inline !important;\\\">Business transformations that are supported by cloud adoption can be driven by various motivations. It's likely that several motivations apply at the same time. The goal of the lists in the following table is to help spark ideas about which motivations are relevant. From there, you can prioritize and assess the potential impacts of the motivations. In this article, we recommend that your cloud adoption team meet with various executives and business leaders using the list below to understand which of these motivations are affected by the cloud adoption effort.&nbsp;<br><br><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/motivations\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/motivations</a></p></span></span></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/640\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/719\"\n    },\n    {\n      \"id\": 720,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:51.59Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Business Outcomes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Engage motivated stakeholders and executives to document specific </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/business-outcomes/index\\\">business outcomes</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/640\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/720\"\n    },\n    {\n      \"id\": 721,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:51.76Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Business Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Develop a </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/cloud-migration-business-case\\\">business case</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to validate the financial model supporting the motivations and outcomes.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/640\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/721\"\n    },\n    {\n      \"id\": 722,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-01T18:05:52.053Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T10:26:22.61Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"First Adoption Project\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">In parallel to strategy and plan development, technical staff should begin implementation of a </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/first-adoption-project\\\">first adoption project</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to expand cloud skills.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/640\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/722\"\n    },\n    {\n      \"id\": 939,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T15:18:02.72Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-07T15:18:02.72Z\",\n        \"System.ChangedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.Title\": \"Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/939\"\n    },\n    {\n      \"id\": 935,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:09:56.793Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:53:57.567Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Site Recovery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Site Recovery helps ensure business continuity by keeping business apps and workloads running during outages. Site Recovery replicates workloads running on physical and virtual machines (VMs) from a primary site to a secondary location. When an outage occurs at your primary site, you fail over to secondary location, and access apps from there. After the primary location is running again, you can fail back to it.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/site-recovery/\\\">https://docs.microsoft.com/en-us/azure/site-recovery/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/933\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/935\"\n    },\n    {\n      \"id\": 934,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:09:46.973Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:52:57.367Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Backup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">The Azure Backup service provides simple, secure, and cost-effective solutions to back up your data and recover it from the Microsoft Azure cloud.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/backup/\\\">https://docs.microsoft.com/en-us/azure/backup/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/933\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/934\"\n    },\n    {\n      \"id\": 932,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:08:58.777Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:14:26.127Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Log Analytics Workspace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">All log data collected by Azure Monitor is stored in a Log Analytics workspace. A workspace is essentially a container where log data is collected from a variety of sources. You may have a single Log Analytics workspace for all your monitoring data or may have requirements for multiple workspaces.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/design-logs-deployment\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/platform/design-logs-deployment</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/931\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/932\"\n    },\n    {\n      \"id\": 930,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:08:19.233Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:06:35.49Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Advanced Threat Protection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure offers built in advanced threat detection functionality through services such as Azure Active Directory (Azure AD), Azure Monitor logs, and Azure Security Center. This collection of security services and capabilities provides a simple and fast way to understand what is happening within your Azure deployments.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/security/fundamentals/threat-detection\\\">https://docs.microsoft.com/en-us/azure/security/fundamentals/threat-detection</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/930\"\n    },\n    {\n      \"id\": 929,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:07:45.533Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:05:42.73Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure VPN & ER\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">A VPN gateway is a specific type of virtual network gateway that is used to send encrypted traffic between an Azure virtual network and an on-premises location over the public Internet. You can also use a VPN gateway to send encrypted traffic between Azure virtual networks over the Microsoft network.<br><br><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;display:inline !important;\\\">ExpressRoute lets you extend your on-premises networks into the Microsoft cloud over a private connection facilitated by a connectivity provider.</span><br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/\\\">https://docs.microsoft.com/en-us/azure/vpn-gateway/</a><br><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/\\\">https://docs.microsoft.com/en-us/azure/expressroute/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/929\"\n    },\n    {\n      \"id\": 928,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:07:29.497Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:03:22.99Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Bastion\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"margin:16px 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\">The Azure Bastion service is a new fully platform-managed PaaS service that you provision inside your virtual network. It provides secure and seamless RDP/SSH connectivity to your virtual machines directly in the Azure portal over TLS. When you connect via Azure Bastion, your virtual machines do not need a public IP address.<br><br><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/bastion/\\\">https://docs.microsoft.com/en-us/azure/bastion/</a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/928\"\n    },\n    {\n      \"id\": 927,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:07:18.587Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:01:57.483Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Encryption\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure offers a variety of options for encryption, including encryption at rest, encryption in flight, and key management with Azure Key Vault.<span>&nbsp;<br></span></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/security/fundamentals/encryption-overview\\\">https://docs.microsoft.com/en-us/azure/security/fundamentals/encryption-overview</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/927\"\n    },\n    {\n      \"id\": 926,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:07:05.93Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:52:08.003Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Network Security Groups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">You can filter network traffic to and from Azure resources in an Azure virtual network with a network security group. A network security group contains security rules that allow or deny inbound network traffic to, or outbound network traffic from, several types of Azure resources. To learn about which Azure resources can be deployed into a virtual network and have network security groups associated to them.</span><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">&nbsp;For each rule, you can specify source and destination, port, and protocol.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/security-overview\\\">https://docs.microsoft.com/en-us/azure/virtual-network/security-overview</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/926\"\n    },\n    {\n      \"id\": 925,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:06:45.897Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:51:24.1Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure DDoS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Distributed denial of service (DDoS) attacks are some of the largest availability and security concerns facing customers that are moving their applications to the cloud. A DDoS attack attempts to exhaust an application's resources, making the application unavailable to legitimate users. DDoS attacks can be targeted at any endpoint that is publicly reachable through the internet.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/ddos-protection-overview\\\">https://docs.microsoft.com/en-us/azure/virtual-network/ddos-protection-overview</a></p></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/925\"\n    },\n    {\n      \"id\": 924,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:06:16.157Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:50:21.84Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Key Vault\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\">Azure Key Vault helps solve the following problems:</p><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\"><li style=\\\"margin:0px;outline:0px;list-style:outside none disc;\\\"><strong style=\\\"font-weight:bolder;\\\">Secrets Management</strong><span>&nbsp;</span>- Azure Key Vault can be used to Securely store and tightly control access to tokens, passwords, certificates, API keys, and other secrets</li><li style=\\\"margin:0px;outline:0px;list-style:outside none disc;\\\"><strong style=\\\"font-weight:bolder;\\\">Key Management</strong><span>&nbsp;</span>- Azure Key Vault can also be used as a Key Management solution. Azure Key Vault makes it easy to create and control the encryption keys used to encrypt your data.</li><li style=\\\"margin:0px;outline:0px;list-style:outside none disc;\\\"><strong style=\\\"font-weight:bolder;\\\">Certificate Management</strong><span>&nbsp;</span>- Azure Key Vault is also a service that lets you easily provision, manage, and deploy public and private Transport Layer Security/Secure Sockets Layer (TLS/SSL) certificates for use with Azure and your internal connected resources.</li><li style=\\\"margin:0px;outline:0px;list-style:outside none disc;\\\"><strong style=\\\"font-weight:bolder;\\\">Store secrets backed by Hardware Security Modules</strong><span>&nbsp;</span>- The secrets and keys can be protected either by software or FIPS 140-2 Level 2 validated HSMs</li></ul><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/key-vault/\\\">https://docs.microsoft.com/en-us/azure/key-vault/</a></p></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/924\"\n    },\n    {\n      \"id\": 923,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:06:02.67Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:49:09.467Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Active Directory\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/923\"\n    },\n    {\n      \"id\": 922,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:05:53.153Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:46:08.693Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Firewall\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"></span></div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;\\\"><span style=\\\"font-size:12.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;\\\">Azure Firewall is a\\nmanaged, cloud-based network security service that protects your Azure Virtual\\nNetwork resources. It's a fully stateful firewall as a service with built-in\\nhigh availability and unrestricted cloud scalability.</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\"></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;\\\"><span style=\\\"font-size:12.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;\\\"><br style=\\\"\\\"><br style=\\\"\\\"></span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\"></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;margin-bottom:.0001pt;\\\"><u><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:blue;\\\"><span><a href=\\\"https://docs.microsoft.com/en-us/azure/firewall/overview\\\">https://docs.microsoft.com/en-us/azure/firewall/overview</a></span></span></u></p>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/922\"\n    },\n    {\n      \"id\": 921,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:05:43.043Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:41:20.38Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Web Application Firewall\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Web Application Firewall (WAF) provides centralized protection of your web applications from common exploits and vulnerabilities. Web applications are increasingly targeted by malicious attacks that exploit commonly known vulnerabilities. SQL injection and cross-site scripting are among the most common attacks.</span><div><span style=\\\"\\\"><br></span></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/web-application-firewall/\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/web-application-firewall/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/921\"\n    },\n    {\n      \"id\": 920,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:05:16.34Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:36:27.297Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Application Gateway\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Application Gateway is a web traffic load balancer that enables you to manage traffic to your web applications. Traditional load balancers operate at the transport layer (OSI layer 4 - TCP and UDP) and route traffic based on source IP address and port, to a destination IP address and port.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/application-gateway/\\\">https://docs.microsoft.com/en-us/azure/application-gateway/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/919\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/920\"\n    },\n    {\n      \"id\": 918,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:04:34.687Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:08:54.61Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Sentinel\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Microsoft Azure Sentinel is a scalable, cloud-native,<span>&nbsp;</span></span><strong style=\\\"font-weight:bolder;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\">security information event management (SIEM)</strong><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>and<span>&nbsp;</span></span><strong style=\\\"font-weight:bolder;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\">security orchestration automated response (SOAR)</strong><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>solution. Azure Sentinel delivers intelligent security analytics and threat intelligence across the enterprise, providing a single solution for alert detection, threat visibility, proactive hunting, and threat response.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/\\\">https://docs.microsoft.com/en-us/azure/sentinel/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/915\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/918\"\n    },\n    {\n      \"id\": 917,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:04:23.88Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:08:16.223Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Monitor maximizes the availability and performance of your applications and services by delivering a comprehensive solution for collecting, analyzing, and acting on telemetry from your cloud and on-premises environments. It helps you understand how your applications are performing and proactively identifies issues affecting them and the resources they depend on.<br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/</a></p></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/915\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/917\"\n    },\n    {\n      \"id\": 916,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:04:12.22Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T16:07:16.643Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Security Center\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Security Center is a unified infrastructure security management system that strengthens the security posture of your data centers, and provides advanced threat protection across your hybrid workloads in the cloud - whether they're in Azure or not - as well as on premises.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/\\\">https://docs.microsoft.com/en-us/azure/security-center/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/915\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/916\"\n    },\n    {\n      \"id\": 914,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:02:19.373Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:21:45.38Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Service Map\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Service Map automatically discovers application components on Windows and Linux systems and maps the communication between services. With Service Map, you can view your servers in the way that you think of them: as interconnected systems that deliver critical services. Service Map shows connections between servers, processes, inbound and outbound connection latency, and ports across any TCP-connected architecture, with no configuration required other than the installation of an agent.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/service-map\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/insights/service-map</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/914\"\n    },\n    {\n      \"id\": 913,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:02:01.833Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:20:25.233Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Automation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Automation delivers a cloud-based automation and configuration service that provides consistent management across your Azure and non-Azure environments. It consists of process automation, update management, and configuration features. Azure Automation provides complete control during deployment, operations, and decommissioning of workloads and resources. This article provides a brief overview of Azure Automation and answers some common questions. For more information about the different capabilities, visit the links throughout this overview.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/automation/\\\">https://docs.microsoft.com/en-us/azure/automation/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/913\"\n    },\n    {\n      \"id\": 912,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:01:50.677Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:19:34.09Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Policy is a service in Azure that you use to create, assign, and manage policies. These policies enforce different rules and effects over your resources, so those resources stay compliant with your corporate standards and service level agreements. Azure Policy meets this need by evaluating your resources for non-compliance with assigned policies. All data stored by Azure Policy is encrypted at rest.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/policy/\\\">https://docs.microsoft.com/en-us/azure/governance/policy/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/912\"\n    },\n    {\n      \"id\": 911,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:01:40.753Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:18:42.327Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Network Watcher\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Network Watcher provides tools to monitor, diagnose, view metrics, and enable or disable logs for resources in an Azure virtual network. Network Watcher is designed to monitor and repair the network health of IaaS (Infrastructure-as-a-Service) products which includes Virtual Machines, Virtual Networks, Application Gateways, Load balancers, etc. Note: It is not intended for and will not work for PaaS monitoring or Web analytics.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/network-watcher/\\\">https://docs.microsoft.com/en-us/azure/network-watcher/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/911\"\n    },\n    {\n      \"id\": 910,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"NIST 800-171 Template\",\n        \"System.TeamProject\": \"NIST 800-171 Template\",\n        \"System.IterationPath\": \"NIST 800-171 Template\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-04-07T12:01:30.867Z\",\n        \"System.CreatedBy\": \"Vandy Rodrigues <vandyr@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-04-08T15:17:46Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Azure Information Protection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Information Protection (sometimes referred to as AIP) is a cloud-based solution that helps an organization to classify and optionally, protect its documents and emails by applying labels. Labels can be applied automatically by administrators who define rules and conditions, manually by users, or a combination where users are given recommendations.<br></span><br><a href=\\\"https://docs.microsoft.com/en-us/azure/information-protection/\\\">https://docs.microsoft.com/en-us/azure/information-protection/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vandyr/_apis/wit/workItems/910\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Dashboard.json",
    "content": "\"text\""
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Queries/Assigned to me.json",
    "content": "{\n  \"name\": \"Assigned to me\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Queries/Followed work items.json",
    "content": "{\n  \"name\": \"Followed work items\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Queries/SAP Integration and Data.json",
    "content": "{\n  \"name\": \"SAP Integration and Data\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and (Source.[System.WorkItemType] <> '' and Source.[System.Tags] contains 'General' or Source.[System.Tags] contains 'BCDR' or Source.[System.Tags] contains 'High Availability')) and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and (Target.[System.Tags] contains 'Integration' or Target.[System.Tags] contains 'General' or Target.[System.Tags] contains 'BCDR')) order by [System.Id] mode (MustContain)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Queries/SAP on HANA.json",
    "content": "{\n  \"name\": \"SAP on HANA\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and (Source.[System.WorkItemType] <> '' and Source.[System.Tags] contains 'General' or Source.[System.Tags] contains 'BCDR' or Source.[System.Tags] contains 'High Availability')) and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and (Target.[System.Tags] contains 'HANA' or Target.[System.Tags] contains 'General' or Target.[System.Tags] contains 'BCDR')) order by [System.Id] mode (MustContain)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Queries/SAP on MaxDB.json",
    "content": "{\n  \"name\": \"SAP on MaxDB\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and (Source.[System.WorkItemType] <> '' and Source.[System.Tags] contains 'General' or Source.[System.Tags] contains 'BCDR' or Source.[System.Tags] contains 'High Availability')) and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and (Target.[System.Tags] contains 'MaxDB' or Target.[System.Tags] contains 'General' or Target.[System.Tags] contains 'BCDR')) order by [System.Id] mode (MustContain)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Queries/SAP on Oracle.json",
    "content": "{\n  \"name\": \"SAP on Oracle\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and (Source.[System.WorkItemType] <> '' and Source.[System.Tags] contains 'General' or Source.[System.Tags] contains 'BCDR' or Source.[System.Tags] contains 'High Availability')) and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and (Target.[System.Tags] contains 'Oracle' or Target.[System.Tags] contains 'General' or Target.[System.Tags] contains 'BCDR')) order by [System.Id] mode (MustContain)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Queries/SAP on SAP ASE.json",
    "content": "{\n  \"name\": \"SAP on SAP ASE\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and (Source.[System.WorkItemType] <> '' and Source.[System.Tags] contains 'General' or Source.[System.Tags] contains 'BCDR' or Source.[System.Tags] contains 'High Availability')) and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and (Target.[System.Tags] contains 'SAP ASE' or Target.[System.Tags] contains 'General' or Target.[System.Tags] contains 'BCDR')) order by [System.Id] mode (MustContain)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Dashboard/Queries/SAP on SQL Server.json",
    "content": "{\n  \"name\": \"SAP on SQL Server\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and (Source.[System.WorkItemType] <> '' and Source.[System.Tags] contains 'General' or Source.[System.Tags] contains 'BCDR' or Source.[System.Tags] contains 'High Availability')) and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and (Target.[System.Tags] contains 'SQL Server' or Target.[System.Tags] contains 'General' or Target.[System.Tags] contains 'BCDR')) order by [System.Id] mode (MustContain)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/ImportSourceCode/SAP on Azure quick-start guide.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/bobsmess/SAP on Azure quick-start guide/_git/SAP on Azure quick-start guide\"\n    },\n    \"serviceEndpointId\": \"$SAP on Azure quick-start guide-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"SAP on Azure quick-start guide\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/ServiceEndpoints/SAP on Azure quick-start guide-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"SAP on Azure quick-start guide-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/bobsmess/SAP on Azure quick-start guide/_git/SAP on Azure quick-start guide\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Teams/SAP on Azure quick-start guide Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Teams/SAP on Azure quick-start guide Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Teams/SAP on Azure quick-start guide Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Teams/SAP on Azure quick-start guide Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Teams/SAP on Azure quick-start guide Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"e386c158-ca32-4306-ba7b-eb690e8e3611\",\n    \"name\": \"SAP on Azure quick-start guide Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/WorkItems/Task.json",
    "content": "{\n  \"count\": 63,\n  \"value\": [\n    {\n      \"id\": 310,\n      \"rev\": 15,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:51:50.073Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:01:12.427Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Oracle using managed disks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"display:inline !important;\\\"><span style=\\\"display:inline !important;\\\"><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\">Direct link to the official documentation:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_oracle\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_oracle</a> </div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\"><br style=\\\"box-sizing:border-box;\\\"> </div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\">Depending on the OS used, the following caveats must bear in mind: </div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\"><ol style=\\\"box-sizing:border-box;padding-left:25px;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Windows Server:</span> </li><ol style=\\\"box-sizing:border-box;padding-left:25px;list-style:lower-alpha;\\\"><li style=\\\"box-sizing:border-box;\\\">No SMB support. Locally attached storage. </li><li style=\\\"box-sizing:border-box;\\\">Use Storage Pool for Premium Disks </li> </ol><li style=\\\"box-sizing:border-box;\\\">Oracle Linux options: </li><ol style=\\\"box-sizing:border-box;padding-left:25px;list-style:lower-alpha;\\\"><li style=\\\"box-sizing:border-box;\\\">Oracle ASM highly recommended </li><li style=\\\"box-sizing:border-box;\\\">Without ASM - filesystem: xfs and ext4 are supported. LVM or MDADM with premium disks. </li> </ol> </ol><div><span style=\\\"display:inline !important;\\\">For M series, enable write accelerator to the online redo log files, and for non M series, consider using UltraSSD.</span><br></div><div><span style=\\\"display:inline !important;\\\"><br></span></div><div>Detailed information about filesystems supported for the different OS and Oracle versions are in SAP note&nbsp;<a href=\\\"https://launchpad.support.sap.com/#/notes/2039619\\\">https://launchpad.support.sap.com/#/notes/2039619</a>.</div><div><br></div><div>Key metrics to use for sizing storage requirements <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/oracle/oracle-design\\\">using Oracle AWR reports</a>.</div></div></span></span>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Oracle\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div>added AWR note at bottom</div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/310\"\n    },\n    {\n      \"id\": 359,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-22T11:27:44.123Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:10:26.28Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Understand challenges with SAP data extraction to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Before jumping into connectors we recommend checking the pre-requisites for the data load:</div><div><ul><li><b>SAP GRC investment</b>: Many customers have a sophisticated, audit relevent setup that ensures data can only be seen/edited by authorized employees. When you extract data from SAP with context-less adapters like table connector, ODBC or OpenHub that mechanism is lost. You need to remodel or ensure that data is only extracted in a form that all people further downstream are allowed to consume. Usually this is done through aggregation.</li><li><b>Time slices</b>: Some objects within SAP are subject to time dependent changes, so called time slicing (e.g. renaming of master data). You need to be aware that this impacts your data loads because you create redundancy or even misleading data entries. A typical approach would be excluding historic queries to avoid the conflict</li><li><b>SAP Data archiving</b>: To reduce storage but retain data for audit purposes for instance, there is a built-in archiving mechanism&nbsp;<span style=\\\"display:inline !important;\\\">on the SAP system. Be aware that your data queries won't reflect data since it has no access to archived data outside of SAP.</span></li><li><span style=\\\"display:inline !important;\\\"><b>Delta-Extraction (aka Change Data Capture)</b>: Raw extractions like with the table connector have no built-in mechanism to identify deltas. You need to take care of that in your implementation yourself.</span></li><li><span style=\\\"display:inline !important;\\\"><b>Data loading times from ECC/S4 into BW</b>: Many loads into BW are only done on a batch basis overnight. In case you need a higher frequency you might consider &quot;hooking&quot; into the source system directly.</span></li></ul></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Integration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/343\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/359\"\n    },\n    {\n      \"id\": 304,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:24:27.123Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:53:39.17Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Azure subscription and access management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Decide on a model for Azure landing zone and subscription design. <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/landing-zone/choose-landing-zone-option#overview-of-landing-zone-options\\\">Documentation link</a> </div><div>Use <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/landing-zone/implementation-options#implementation-options\\\">implementation options </a>available for chosen landing zone and thus Azure subscription(s) </div><div><br></div><div>Ensure sufficient vCPU quota for a subscription is <a href=\\\"https://docs.microsoft.com/en-us/azure/azure-portal/supportability/resource-manager-core-quotas-request\\\">requested early</a>. </div><div><br></div><div>As for most resources names cannot be changed, ensure<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging\\\"> strong naming standards</a> are agreed on early in project. <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/resource-naming\\\">Link 2 </a>and <a href=\\\"https://raw.githubusercontent.com/microsoft/CloudAdoptionFramework/master/ready/naming-and-tagging-conventions-tracking-template.xlsx\\\">example Excel </a>for Azure naming. </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-access\\\">Manage access to your Azure</a> environment through Azure role-based access control (RBAC) </div><div><br> </div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/304\"\n    },\n    {\n      \"id\": 311,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:52:09.073Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:01:19.053Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"HANA using managed disks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Direct link to full documentation:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-storage\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-storage</a></div><div><br></div><div>Azure VM running SAP HANA need to meet SAP's requirements of 400MB/s throughput for /hana/data filesystem and 250MB/s throughput as well as sub 1ms write I/O for /hana/log filesystem, both peak KPIs for different I/O block sizes.</div><div><br></div><div>In order to meet this requirement in cost-efficient manner, the following is required:</div><div><ul><li>Own Azure managed disks for /hana/data, /hana/log, /hana/shared, /usr/sap and, if needed /hana/backup filesystems</li><li>Using LVM striping or Linux software raid0 through mdadm to spread I/O over multiple disks for /hana/data and /hana/log</li><li>Correct Azure VM caching for all data disks, with write accelerator enabled for disks containing /hana/log</li><li>Recommended to use strong naming for managed disks - &lt;vm-name&gt;-datadisk&lt;lun#&gt;-&lt;purpose&gt; - sapt01db1-datadisk0-hanadata</li></ul><div>List of recommended storage design is contained in <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-storage#production-recommended-storage-solution-based-on-azure-premium-storage\\\">this documentation</a>.</div><div>Correct caching settings for managed disks and striping information is contained in this <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-storage#solutions-with-premium-storage-and-azure-write-accelerator-for-azure-m-series-virtual-machines\\\">documentation section.</a></div><div>Linux I/O scheduler settings are contained in same documentation, <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-storage#linux-io-scheduler-mode\\\">direct link to section.</a></div><div><br></div><div>As an alternative to using LVM/mdadm striping across many disks, one can use SAP HANA data volume partitioning. One benefit of this approach is no need for LVM initial setup and allowing extending storage for a growing SAP HANA system. <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-storage#stripe-sets-versus-sap-hana-data-volume-partitioning\\\">Direct link to section</a>.</div></div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"HANA\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/311\"\n    },\n    {\n      \"id\": 344,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-09T17:26:05.753Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:10:35.303Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Azure Data Factory with SAP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Data Facoty is the Ingestion part of the data manipulation in Azure (Ingest, Prepare, Transform &amp; Enrich, Serve, and Visualise)</div><div><br></div><div>Guide:</div><div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://github.com/Azure/Azure-DataFactory/blob/main/whitepaper/SAP%20Data%20Integration%20using%20Azure%20Data%20Factory.pdf\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://github.com/Azure/Azure-DataFactory/blob/main/whitepaper/SAP%20Data%20Integration%20using%20Azure%20Data%20Factory.pdf</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div></div><div><img src=\\\"https://dev.azure.com/bobsmess/17f98c08-1f1f-400a-8147-2e386e3115a3/_apis/wit/attachments/7ed44c23-7b5e-4700-8870-4670f30b82d5?fileName=image.png\\\" alt=Image style=\\\"width:599px;height:337px;\\\" id=_idgpn_8487 width=599 height=337><br></div><div>The the data extraction are managed by connectors. For SAP workloads we currently have the following connectors:</div><div><br></div><div><span>SAP ECC</span><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-ecc\\\">https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-ecc</a><br></div><div><br></div><div>SAP HANA (only recommended if customer have full HANA license)</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-hana\\\">https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-hana</a><br></div><div><br></div><div>SAP Table</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-table\\\">https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-table</a><br></div><div><br></div><div>SAP BW</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-business-warehouse-open-hub\\\">https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-business-warehouse-open-hub</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/load-sap-bw-data\\\">https://docs.microsoft.com/en-us/azure/data-factory/load-sap-bw-data</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-business-warehouse\\\">https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-business-warehouse</a><br></div><div><br></div><div>SAP Cloud for customer</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-cloud-for-customer\\\">https://docs.microsoft.com/en-us/azure/data-factory/connector-sap-cloud-for-customer</a><br></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"ADF; Data Factory; Integration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/343\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/344\"\n    },\n    {\n      \"id\": 328,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-03T22:00:22.92Z\",\n        \"System.CreatedBy\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-26T15:22:18.89Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"SAP on Azure Architecture Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>This guide is a start point for new customers on their endeavour to deploy SAP on Azure:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/sap/sap-overview\\\">https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/sap/sap-overview</a><br></div><div><br></div><div>Customers also can use this document as a guide to implement their SAP solutions on Azure</div><div><a href=\\\"https://azure.microsoft.com/en-us/resources/sap-on-azure-implementation-guide/\\\">https://azure.microsoft.com/en-us/resources/sap-on-azure-implementation-guide/</a><br></div><div><br></div><div>Customers can also leverage the Enterprise Scale Construction Set for SAP which contains detailed guides and architecture for all aspects of deploying SAP on Azure including automation as part of the Cloud Adoption Framework:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/sap/enterprise-scale-landing-zone\\\">Enterprise-scale support for SAP on Azure construction set - Cloud Adoption Framework | Microsoft Docs</a></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/328\"\n    },\n    {\n      \"id\": 312,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:52:27.427Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:01:26.403Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"HANA using managed disks - cost conscious\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>For HANA non-production scenarios cost conscious storage configurations can be considered. These configurations are still based on Premium SSD, but combining /data and /log on Premium SSD and Standard SSD. VM SLA is impacted by using Standard SSD!</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-storage#cost-conscious-solution-with-azure-premium-storage\\\">SAP HANA Azure virtual machine storage configurations - Azure Virtual Machines | Microsoft Docs</a><br></div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"HANA\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/312\"\n    },\n    {\n      \"id\": 355,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-22T07:54:06.93Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:31:20.71Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Snooze SAP with Automation & PowerPlatform\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>There is an automation effort on the SAP on Azure community to leverage Azure capabilities to save cost by Starting/stopping systems on-demand, converting disc SKUs and reserving systems for demos for instance.</div><div><ul><li>Blog post&nbsp;<a href=\\\"https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/optimize-your-azure-costs-by-automating-sap-system-start-stop/ba-p/2120675\\\">Optimize your Azure Costs by Automating SAP System Start – Stop</a></li><li>Blog post <a href=\\\"https://blogs.sap.com/2021/02/10/hey-sap-systems-my-powerapp-says-snooze-but-only-if-youre-ready-yet/\\\">Hey, SAP Systems! My PowerApp says Snooze! But only if you’re ready yet</a></li></ul></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div>Link as text + link, easier for reader. Changed.</div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/355\"\n    },\n    {\n      \"id\": 351,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-16T17:07:25.95Z\",\n        \"System.CreatedBy\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:12:34.153Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"SAP ASE disaster recovery architecture options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The Disaster Recovery to ASE can be obtained by using SAP ASE Always on</div><div><br></div><div><div style=\\\"box-sizing:border-box;\\\">Important:</div><div style=\\\"box-sizing:border-box;\\\"><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;\\\"><li style=\\\"box-sizing:border-box;\\\">Know your desirable RPO and RTO</li><li style=\\\"box-sizing:border-box;\\\">Chose between Zonal (sync) and Regional DR (async)</li></ul></div></div><div><br></div><div><img src=\\\"https://dev.azure.com/bobsmess/17f98c08-1f1f-400a-8147-2e386e3115a3/_apis/wit/attachments/efa89c99-2423-4403-afee-01e44cee44bb?fileName=image.png\\\" alt=Image width=491 height=194 style=\\\"width:491px;\\\"><br></div><div><br></div><div><b>Documentation:</b></div><div><a href=\\\"https://blogs.sap.com/2018/01/04/disaster-recovery-for-sap-adaptive-server-enterprise/\\\">https://blogs.sap.com/2018/01/04/disaster-recovery-for-sap-adaptive-server-enterprise/</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sapase#high-availability-of-sap-ase-on-azure\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sapase#high-availability-of-sap-ase-on-azure</a><br></div><div><a href=\\\"https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/installation-procedure-for-sybase-16-3-patch-level-3-always-on/ba-p/368199\\\">https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/installation-procedure-for-sybase-16-3-patch-level-3-always-on/ba-p/368199</a><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"SAP ASE\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/351\"\n    },\n    {\n      \"id\": 350,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-16T17:07:10.5Z\",\n        \"System.CreatedBy\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:14:07.397Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Oracle Data Guard and Golden Gate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><img src=\\\"https://dev.azure.com/bobsmess/17f98c08-1f1f-400a-8147-2e386e3115a3/_apis/wit/attachments/67c703a8-f82f-4358-bc0f-68192840ba3d?fileName=image.png\\\" alt=Image><br></div><div>Data Guard</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/oracle/configure-oracle-dataguard\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/oracle/configure-oracle-dataguard</a><br></div><div><br></div><div>Golden Gate</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/oracle/configure-oracle-golden-gate\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/oracle/configure-oracle-golden-gate</a><br></div><div>However do consider limitations on use of Oracle Golden Gate for SAP workloads in general as per SAP note <a href=\\\"https://launchpad.support.sap.com/#/notes/105047\\\">105047</a>.</div><div><br></div><div>SAP Note:</div><div><a href=\\\"https://launchpad.support.sap.com/#/notes/2039619\\\">2039619 - SAP Applications on Microsoft Azure using the Oracle Database: Supported Products and Versions</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Oracle\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/350\"\n    },\n    {\n      \"id\": 349,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-16T17:06:32.933Z\",\n        \"System.CreatedBy\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:15:13.36Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"HANA Disaster Recovery architecture options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Important:</div><div><ul><li>Know your desirable RPO and RTO</li><li>Chose between Zonal (sync) and Regional DR (async)</li></ul></div><div>Documents:</div><div><ul><li>Blog post <a href=\\\"https://azure.microsoft.com/en-us/blog/disaster-recovery-for-sap-hana-systems-on-azure/\\\">Disaster recovery for SAP HANA Systems on Azure</a></li><li><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-hana-high-availability\\\">High availability of SAP HANA on Azure VMs on SUSE Linux Enterprise Server</a></li><li>Blog post <a href=\\\"https://azure.microsoft.com/en-us/blog/sap-on-azure-designing-for-availability-and-recoverability/\\\">SAP on Azure–Designing for availability and recoverability</a></li></ul></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"HANA\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/349\"\n    },\n    {\n      \"id\": 354,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-22T07:47:20.06Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T09:25:38.183Z\",\n        \"System.ChangedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.Title\": \"SAP Principal Propagation with Azure AD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>There are multiple angles to SingleSignOn to SAP. Below sources focus on web-based communication and integration with SAP Business Technology Platform. However, the approach can be adapted to use the Microsoft on-premise data gateway alternatively.</div><div><br></div><div>For SAP GUI you either need to rely on SAP GUI for HTML to be able to use Azure AD or consider Azure AD Domain Services/ Active Directory Domain Services (self-managed domain) so you can setup Kerberos. With local AD there is a synching mechanism to Azure AD but SAML based sign-in is not supported with SAP GUI Desktop.</div><div><ul><li><a href=\\\"https://www.youtube.com/watch?v=qklktE9FPCI&amp;t=1408s\\\">Detailed YouTube session on Teams Chatbot with SAP including principal propagation</a></li><li><a href=\\\"https://blogs.sap.com/2020/07/17/principal-propagation-in-a-multi-cloud-solution-between-microsoft-azure-and-sap-cloud-platform-scp/\\\">Entry into blog series on SAP Principal Propagation with Azure AD</a></li><li><a href=\\\"https://blogs.sap.com/2018/08/03/your-sap-on-azure-part-8-single-sign-on-using-azure-ad-domain-services/\\\">Blog post focusing on SSO for SAP GUI on Azure</a><br></li></ul></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/354\"\n    },\n    {\n      \"id\": 358,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-22T11:26:25.21Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:40:29.26Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"High Availability for SAP Business Technology Platform services (former SCP)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Cloudfoundry SAP Cloud Platform specific post for CPI with Azure currently under construction.</div><div><ul><li>NEO environment: <a href=\\\"https://blogs.sap.com/2021/01/07/sap-cpi-high-availability-using-azure-traffic-manager/\\\">SAP CPI – High Availability using Azure Traffic Manager</a></li><li>Cloudfoundry environment:&nbsp;</li></ul></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"High Availability; SAP Cloud Platform\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div>changed link to text</div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/358\"\n    },\n    {\n      \"id\": 357,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-22T11:24:22.95Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:15:20.793Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Disaster Recovery for SAP Business Technology Platform on Azure (former SCP)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>DR and failover are often considered from the SAP backend view only. But what happens to your SAP PaaS services on BTP? Is your Cloud Platform Integration mission critical too?</div><div><ul><li><a href=\\\"https://blogs.sap.com/2020/11/23/how-to-crash-your-iflows-and-watch-them-failover-beautifully/\\\">Azure FrontDoor setup and high level view on DR for SAP CPI</a>. The approach can be adopted for other BTP services too.</li><li><a href=\\\"https://blogs.sap.com/2021/01/18/second-round-of-crashing-iflows-in-cpi-and-failing-over-with-azure-even-simpler/\\\">Azure Traffic Manager setup for DR for SAP CPI</a>.</li></ul></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"SAP Cloud Platform\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/357\"\n    },\n    {\n      \"id\": 346,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-09T17:26:58.97Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:10:44.043Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Azure Logic Apps with SAP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">SAP resources can be connected with Logic Apps by using the<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/connectors/sap/\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\" id=_idgpn_11910>SAP connector</a><br></div><div><br></div><div>Documentation:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-using-sap-connector\\\" id=_idgpn_11903>https://docs.microsoft.com/en-us/azure/logic-apps/logic-apps-using-sap-connector</a><br></div><div><a href=\\\"https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/azure-logic-apps-integration-with-sap/ba-p/1043002\\\" id=_idgpn_12169>https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/azure-logic-apps-integration-with-sap/ba-p/1043002</a><br></div><div><br></div><div><a href=\\\"https://www.youtube.com/c/SAPonAzure\\\" id=_idgpn_12124>SAP on Azure Youtube Channel</a>:</div><div><a href=\\\"https://www.youtube.com/watch?v=mK8B8YhTHrA&amp;t=281s\\\" id=_idgpn_12026>Using Logic Apps to connect to an SAP System</a></div><div><a href=\\\"https://www.youtube.com/watch?v=m5ekXV2wGOo\\\" id=_idgpn_12036 style=\\\"\\\">Series1 Episode1 Azure Logic Apps Integration with SAP</a><br></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Integration; Logic Apps\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/343\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/346\"\n    },\n    {\n      \"id\": 353,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-22T07:28:56.28Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T09:15:07.75Z\",\n        \"System.ChangedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.Title\": \"SIEM tool integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>There is native integration of the Hana syslog to Azure Sentinel. Currently below two sources lead you in the right direction.</div><div><br></div><div><ul><li>SAP <a href=\\\"https://launchpad.support.sap.com/#/notes/0002624117\\\">note </a>on syslog integration</li><li>Microsoft <a href=\\\"https://techcommunity.microsoft.com/t5/azure-sentinel/azure-sentinel-the-connectors-grand-cef-syslog-direct-agent/ba-p/803891\\\">source </a>on sentinel for syslog integration</li></ul></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/353\"\n    },\n    {\n      \"id\": 320,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-02-25T08:47:11.97Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:02:39.623Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"HANA using Azure Netapp Files\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Main document:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-netapp\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-netapp</a></div><div><br></div><div><b>Important </b><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-netapp#important-considerations\\\">observations and considerations</a>:</div><div></div><div><ul><li>Volumes requires the usage of the v4.1 NFS protocol. </li><li>The minimum capacity pool is 4 TiB currently</li><li><span>The minimum volume size is 100 GiB currently</span></li><li>ANF and VMS should be in the same VNET</li><li>ANF needs their on subnet</li><li>Verify latency (<span style=\\\"\\\">&lt;1ms</span><span style=\\\"\\\">), if in you have question about where (zone) that the ANF cluster is deployed, ask your customer to open a ticket on support due to have it checked out. After that ask the customer to build the VM in the same zone as the ANG is placed, if possible.</span></li></ul></div><div><div><br></div></div><div><span><br></span></div><div><br></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure NetApp Files; HANA\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div>made some minor changes from below comments, sorry Carlos :)</div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/320\"\n    },\n    {\n      \"id\": 352,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-17T19:47:35.88Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:53:58.537Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"SAP deployment project planning and milestone checklist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Defined SAP project and compile required technical documents, details for deployment about the existing SAP landscape.</div><div>Throughout the project milestones leverage&nbsp;<span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-deployment-checklist\\\">SAP workloads on Azure: planning and deployment checklist</a></span></div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/352\"\n    },\n    {\n      \"id\": 321,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-25T08:47:50.563Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:02:46.673Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"HANA using Azure Netapp Files - cost conscious\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Main document:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-netapp#sizing-for-hana-database-on-azure-netapp-files\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-netapp#sizing-for-hana-database-on-azure-netapp-files</a>.</div><div><br></div><div><span style=\\\"\\\">All the recommendations from a cost-conscious perspective are included in the following document:&nbsp;</span><a href=\\\"https://www.netapp.com/pdf.html?item=/media/17152-tr4746pdf.pdf\\\" style=\\\"\\\">https://www.netapp.com/pdf.html?item=/media/17152-tr4746pdf.pdf</a><span style=\\\"\\\">.&nbsp;</span><br></div><div><div><br></div><div>In summary, these are:</div></div><div><ol><li><b style=\\\"\\\">Overprovisioning:</b><span style=\\\"\\\">&nbsp;Volumes might have to be overprovisioned for non-productive SAP HANA systems, depending on customer performance requirements.&nbsp;</span></li><li><b>Optimization for Shared Files Data:&nbsp;</b>Creation of only one volume for all shared files of a single system and create a folder structure within that volume.<br></li><li><b>Optimization for Multiple SIDs</b>: Combining data or log volumes from multiple independent SIDs into a single volume.&nbsp;<br></li><li><b>Use of snapshots (Public Preview): </b>Azure Application Consistent Snapshot tool (AzAcSnap) is a command-line tool that enables the use of snapshots instead of backup tools.</li><li><b>Use of CRR (Public Preview):</b> CRR could be used to replicate volumes between different tiers (Ultra to Standard) in a DR scenario.</li></ol><div><br></div></div><div><br></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure NetApp Files; HANA\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/321\"\n    },\n    {\n      \"id\": 361,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-22T12:00:03.797Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:10:55.27Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Use SAP Business Events framework with Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>SAP's implementation describes the use of BTP enterprise messaging (now Service Mesh). Since it relies on AMQTT/AMQP you can exchange with any messaging component, that supports such protocols.&nbsp;</div><div><ul><li><a href=\\\"https://github.com/SAP-samples/cloud-extension-s4hana-business-process/blob/mission/mission/event_based/README.md\\\">Step-by-step setup guide by SAP for S4 and SAP Mesh</a></li><li><a href=\\\"https://help.sap.com/viewer/810dfd34f2cc4f39aa8d946b5204fd9c/1909.002/en-US/c200f98fadb64ff1828ed5696c86fca2.html\\\">S4 Enterprise Event Enablement guid on SAP docs</a></li><li><a href=\\\"https://discovery-center.cloud.sap/serviceCatalog/event-mesh?region=all\\\">SAP Mesh guide on Discovery Center</a></li><li><a href=\\\"https://api.sap.com/package/SAPS4HANACloudBusinessEvents?section=Artifacts\\\">SAP API Hub for Business Events reference</a></li></ul></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Integration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/343\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/361\"\n    },\n    {\n      \"id\": 313,\n      \"rev\": 13,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:52:54.003Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:02:58.553Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"DB2 using managed disks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\">Direct link to the official documentation:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sapase#recommendations-on-vm-and-disk-structure-for-sap-ase-deployments\\\" rel=\\\"noopener noreferrer\\\" target=_blank style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sapase#recommendations-on-vm-and-disk-structure-for-sap-ase-deployments</a></div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\">Depending on the OS used, the following caveats must bear in mind:</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\"><ol style=\\\"box-sizing:border-box;padding-left:25px;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Windows Server:</span></li><ol style=\\\"box-sizing:border-box;padding-left:25px;list-style:lower-alpha;\\\"><li style=\\\"box-sizing:border-box;\\\">No SMB support. Must be locally attached storage (NTFS).</li><li style=\\\"box-sizing:border-box;\\\">Use Storage Pool for Premium Disks</li></ol><li style=\\\"box-sizing:border-box;\\\">SLES and RHEL options:</li><ol style=\\\"box-sizing:border-box;padding-left:25px;list-style:lower-alpha;\\\"><li style=\\\"box-sizing:border-box;\\\">Locally storage attached.</li><li style=\\\"box-sizing:border-box;\\\">Filesystem: xfs, ext3 and ext4 are supported. LVM or MDADM with premium disks.</li></ol></ol><div style=\\\"box-sizing:border-box;\\\">For M series, enable write accelerator to the online redo log files, and for non M series, use UltraSSD.</div></div></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"DB2\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/313\"\n    },\n    {\n      \"id\": 332,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T09:12:55.733Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:54:48.717Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Azure resource deployment options and automation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\">Automated deployments are the best way to achieve standardized and repeatable deployments with expected results. There are different options available:</span><span style=\\\"box-sizing:border-box;color:black;\\\"></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\"><br style=\\\"box-sizing:border-box;\\\"></span><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;\\\">ARM templates on</span><span style=\\\"box-sizing:border-box;font-size:12pt;color:rgb(23, 23, 23);\\\">&nbsp;</span></span><span style=\\\"box-sizing:border-box;\\\"><u style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(5, 99, 193);\\\"><a href=\\\"https://docs.microsoft.com/azure/virtual-machines/workloads/sap/deployment-guide#create-a-virtual-machine-by-using-a-template\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;\\\">Azure Virtual Machines deployment for SAP NetWeaver - Azure Virtual Machines | Microsoft Docs</span></a></span></u></span><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:black;\\\"></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\"><br style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"></span><span style=\\\"box-sizing:border-box;\\\"></span></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\"><span style=\\\"box-sizing:border-box;\\\">There are a limited number of SAP images available on Marketplace on Azure Portal</span></span><span style=\\\"box-sizing:border-box;font-size:12pt;color:rgb(23, 23, 23);\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span><u style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:rgb(5, 99, 193);\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://ms.portal.azure.com/\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Marketplace - Microsoft Azure</span></span></a></span></span></u><span style=\\\"box-sizing:border-box;font-size:12pt;color:rgb(23, 23, 23);\\\"><span style=\\\"box-sizing:border-box;\\\">,<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span></span><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\"><span style=\\\"box-sizing:border-box;\\\">search for SAP (careful: some of them including managed services)</span></span><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\"></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\"><span style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"></span><span style=\\\"box-sizing:border-box;\\\"></span></span></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Build your own scripts on basis of PowerShell&nbsp;<a href=\\\"https://docs.microsoft.com/powershell/azure/?view=azps-5.6.0\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Overview of Azure PowerShell | Microsoft Docs</a>&nbsp;or CLI&nbsp;</span></span></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:rgb(5, 99, 193);text-decoration:underline;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;\\\"><a href=\\\"https://docs.microsoft.com/cli/azure/\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">https://docs.microsoft.com/cli/azure/</a></span></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:rgb(5, 99, 193);text-decoration:underline;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></span></p><p style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\"></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:black;\\\"></span></span></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\">Microsoft SAP Deployment Automation Framework that provides Terraform templates and Ansible playbooks which can be used to build and configure the environments to run SAP on Azure.</span></span><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:rgb(36, 41, 46);\\\">&nbsp;</span></span><span style=\\\"box-sizing:border-box;\\\"><u style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:rgb(5, 99, 193);\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://github.com/Azure/sap-hana/tree/master\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;\\\">GitHub - Azure/sap-hana: Tools to create, monitor and maintain SAP landscapes in Azure</span></a></span></span></u></span><span style=\\\"box-sizing:border-box;color:black;\\\"></span></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;color:black;\\\">&nbsp;</span></span><span style=\\\"box-sizing:border-box;color:black;\\\"></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:black;\\\">Another option to easily setup at SAP system on Azure for a short timeframe is to use&nbsp;<a href=\\\"https://cal.sap.com/\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;\\\">https://cal.sap.com/</span></a>&nbsp;Access is limited&nbsp;<span style=\\\"box-sizing:border-box;\\\">timewise</span>&nbsp;(trial installations), not intended for production usage and not really reflecting performance you can get out of a system based infrastructure deployed according Microsoft best practices.</span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:black;\\\"><br></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:black;\\\">SAP LaMa on Azure also allows cloning and copying of SAP systems&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/lama-installation\\\">SAP LaMa connector for Azure - Azure Virtual Machines | Microsoft Docs</a></span></p><p style=\\\"box-sizing:border-box;margin:0in;color:rgba(0, 0, 0, 0.9);font-size:11pt;font-family:Calibri, sans-serif;\\\"><br></p></div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Automation; General; Terraform\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/332\"\n    },\n    {\n      \"id\": 356,\n      \"rev\": 13,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-22T11:19:40.817Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T09:35:32.19Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"DevOps with SAP, Infrastucture-as-Code\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>We distinguish between Infrastructure-as-Code and app development focused approaches. All examples provided by SAP that refer to Jenkins can be replicated with Azure DevOps or GitHub Actions.</div><div><br></div><div>The conversation around this topic is quite vertical. Below links aim at highlighting the range of possibilites and existing content to get you started.</div><div><br></div><div><b>IaC</b></div><div><ul><li><a href=\\\"https://github.com/Azure/sap-hana\\\">Azure repos for Hana scripting (terraform + Ansible)</a></li><li><a href=\\\"https://azure.microsoft.com/de-de/resources/videos/azure-friday-sap-hana-infrastructure-automation-with-terraform-and-ansible/\\\">Azure Friday session on Terraform+Ansible for Hana</a></li><li><a href=\\\"https://azure.microsoft.com/es-es/blog/automating-sap-deployments-in-microsoft-azure-using-terraform-and-ansible/\\\">Blog post on SAP deployment automation for further reading</a></li></ul></div><div><b><br></b></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div><a href=\\\"#\\\" data-vss-mention=\\\"version:2.0,e7127570-6b2f-6f0c-98a4-ebbffd0fdb3b\\\">@Martin Pankraz</a>&nbsp;that works, and make sense, thank you!</div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/356\"\n    },\n    {\n      \"id\": 314,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-02-02T09:53:22.95Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:03:05.413Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"SQL Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;\\\">Azure storage best practices for SQL Server for SAP follow the general recommendations mentioned in&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sqlserver#recommendations-on-vmvhd-structure-for-sap-related-sql-server-deployments\\\">SQL Server Azure Virtual Machines DBMS deployment for SAP workload - Azure Virtual Machines | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\">General SQL Server storage recommendations can be found here&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql/virtual-machines/windows/storage-configuration\\\">Storage configuration for SQL Server VMs - SQL Server on Azure VM | Microsoft Docs</a></div><div><br></div><div>SQL Server storage performance recommendations can be found here&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql/virtual-machines/windows/performance-guidelines-best-practices#storage-guidance\\\">Performance guidelines for SQL Server in Azure - SQL Server on Azure VM | Microsoft Docs</a></div><div><br></div>\",\n        \"System.AssignedTo\": \"Al Morrison <almorris@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"SQL Server\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/314\"\n    },\n    {\n      \"id\": 584,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-12T05:48:23.667Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-12T05:48:23.667Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Task AAA\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/584\"\n    },\n    {\n      \"id\": 583,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-12T05:48:19.36Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-12T05:48:19.36Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Task CDE\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/583\"\n    },\n    {\n      \"id\": 582,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-12T05:48:15.213Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-12T05:48:15.213Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Task ABC\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/582\"\n    },\n    {\n      \"id\": 509,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-30T13:50:36.837Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:09:08.637Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Backup SAP MaxDB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"box-sizing:border-box;margin:0cm;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-US style=\\\"box-sizing:border-box;font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:black;\\\">Backups are the last line of defence to protect a customer’s sensitive data and critical business application components.&nbsp;</span><span style=\\\"box-sizing:border-box;font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:black;\\\">For backing up an SAP MaxDB database, the recommended way is using database tools or third-party backup products.</span></p><ol start=1 type=1 style=\\\"box-sizing:border-box;padding-left:40px;margin-bottom:0cm;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><b>SAP MaxDB:&nbsp;</b><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:black;\\\"><span style=\\\"color:blue;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_maxdb\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_maxdb</a></span></span></span></span></li><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;\\\"><li><span style=\\\"\\\">Use\\n      of SAP MaxDB tools (</span>Backup provided over multiple disks in order to improve the IOPS throughput on that striped volume).</li></ul></ol><div style=\\\"box-sizing:border-box;\\\"><font face=\\\"Calibri, sans-serif\\\" style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:14.6667px;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></font></div><div style=\\\"box-sizing:border-box;\\\"><font face=\\\"Calibri, sans-serif\\\" style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:14.6667px;\\\"><p style=\\\"box-sizing:border-box;margin:0cm 0cm 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:black;background:white;\\\">Other ISVs solutions can be used as well (Commvault, Veritas, Veeam,...).</span></p></span></font></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"MaxDB\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/509\"\n    },\n    {\n      \"id\": 508,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-30T13:49:53.757Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:09:02.157Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Backup for SAP ASE\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"box-sizing:border-box;margin:0cm;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span lang=EN-US style=\\\"box-sizing:border-box;font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:black;\\\">Backups are the last line of defence to protect a customer’s sensitive data and critical business application components.&nbsp;</span><span style=\\\"box-sizing:border-box;font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:black;\\\">For backing up an SAP ASE database, the recommended way is using database tools or third-party backup products.</span></p><ol start=1 type=1 style=\\\"box-sizing:border-box;padding-left:40px;margin-bottom:0cm;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\">SAP ASE: </b></span><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;font-size:10.5pt;color:blue;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sapase\\\" style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;font-size:10.5pt;\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sapase</a>&nbsp;</span>(Backup provided over multiple disks in order to improve the IOPS throughput on that striped volume).</li></ol><div style=\\\"box-sizing:border-box;\\\"><font face=\\\"Calibri, sans-serif\\\" style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:14.6667px;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></font></div><div style=\\\"box-sizing:border-box;\\\"><font face=\\\"Calibri, sans-serif\\\" style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;font-size:14.6667px;\\\"><p style=\\\"box-sizing:border-box;margin:0cm 0cm 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:black;background:white;\\\">Other ISVs solutions can be used as well (Commvault, Veritas, Veeam,...).</span></p></span></font></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"SAP ASE\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/508\"\n    },\n    {\n      \"id\": 507,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-30T13:42:44.863Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:08:55.697Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Backup for IBM DB2\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"margin:0cm 0cm 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0cm;\\\"><span lang=EN-US style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">Backups are the last line of defence to protect a\\ncustomer’s sensitive data and critical business application components.&nbsp;</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">For backing up an SAP DB2 database, the recommended way is using database tools or third-party backup products.</span></p><ol start=1 type=1 style=\\\"margin-bottom:0cm;\\\"><li><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\"><b>IBM DB2:&nbsp;</b></span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;\\\"><span style=\\\"color:blue;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_ibm\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_ibm</a>.&nbsp;</span></span>(Backup\\n      provided over multiple disks in order to improve the IOPS throughput on\\n      that striped volume.</li></ol><div><font face=\\\"Calibri, sans-serif\\\"><span style=\\\"font-size:14.6667px;\\\"><br></span></font></div><div><font face=\\\"Calibri, sans-serif\\\"><span style=\\\"font-size:14.6667px;\\\"><p style=\\\"margin:0cm 0cm 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">Other ISVs solutions can be\\nused as well (Commvault, Veritas, Veeam,...).</span></p></span></font></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"DB2\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/507\"\n    },\n    {\n      \"id\": 506,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-30T13:34:31.09Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:08:48.7Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Backup for Oracle\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"margin:0cm 0cm 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0cm;\\\"><span lang=EN-US style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">Backups are the last line of defence to protect a\\ncustomer’s sensitive data and critical business application components.&nbsp;</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">There are several\\nways to back up an SAP Oracle database, using database tools, Azure native\\ntools or third-party backup products.</span></p><p style=\\\"margin:0cm;\\\"></p><ul><li style=\\\"font-family:Calibri, sans-serif;font-size:11pt;\\\"><b><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">Oracle:</span></b><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;\\\">&nbsp;<span style=\\\"color:blue;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_oracle#sap-notes-relevant-for-oracle-sap-and-azure\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_oracle#sap-notes-relevant-for-oracle-sap-and-azure</a></span></span></li><ol><li style=\\\"font-family:Calibri, sans-serif;font-size:11pt;\\\">SAP\\n      BR*Tools for Oracle are supported.</li><li style=\\\"font-family:Calibri, sans-serif;font-size:11pt;\\\">Oracle\\n      Recovery Manager (RMAN) is also supported.</li><li style=\\\"font-family:Calibri, sans-serif;font-size:11pt;\\\">Snapshots\\n      using pre packaged scripts (in preview).&nbsp;<span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:blue;\\\"><a href=\\\"https://azure.microsoft.com/en-us/updates/appconsistent-backup-for-oracle-and-mysql-dbs/\\\">https://azure.microsoft.com/en-us/updates/appconsistent-backup-for-oracle-and-mysql-dbs/</a></span></li></ol></ul><p></p><p style=\\\"margin:0cm 0cm 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0cm;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">Other ISVs solutions\\ncan be used as well (Commvault, Veritas, Veeam,...).&nbsp;<br></span></p>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Oracle\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/506\"\n    },\n    {\n      \"id\": 437,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Removed\",\n        \"System.Reason\": \"Removed from the backlog\",\n        \"System.CreatedDate\": \"2021-03-26T06:43:54.13Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-01T14:50:08.75Z\",\n        \"System.ChangedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.Title\": \"Third party migration tools\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>In addition to the standard SAP migration tools to migrate SAP systems to Azure, there are excellent solutions developed from our specialized ISVs that could optimize even further the migraton process and add value to the process (cost information, NZD, deployment of the infrastructure,...).&nbsp;</div><div><br></div><div><a href=\\\"https://azuremarketplace.microsoft.com/en-us/marketplace/apps?search=sap%20migration&amp;page=1\\\" style=\\\"\\\">https://azuremarketplace.microsoft.com/en-us/marketplace/apps?search=sap%20migration&amp;page=1</a></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/437\"\n    },\n    {\n      \"id\": 436,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-26T06:42:41.617Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:11:15.833Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Third party data ingestion tools\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;display:inline !important;\\\">To enable businesses to gain real-time insights from their SAP data, exists a new joint offer with Qlik (formerly Attunity) that brings<span>&nbsp;</span><b style=\\\"box-sizing:border-box;\\\">Azure Synapse, Power BI, and Qlik Data Integration</b><span>&nbsp;</span>together for end-to-end supply chain intelligence, finance analytics, and more. Details in the following links:</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;display:inline !important;\\\"><a href=\\\"https://azure.microsoft.com/en-us/blog/save-up-to-76-percent-on-azure-synapse-analytics-and-gain-breathtaking-insights-of-your-erp-data/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.microsoft.com/en-us/blog/save-up-to-76-percent-on-azure-synapse-analytics-and-gain-breathtaking-insights-of-your-erp-data/</a>.</span></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://go.qlik.com/Qlik-Unleash-Your-SAP-Data.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://go.qlik.com/Qlik-Unleash-Your-SAP-Data.html</a>.<br style=\\\"box-sizing:border-box;\\\"></div><br></span><span>In addtion, there are several companies in the market (ISVs) that developed specific solutions using Azure services for extracting SAP data directly through different SAP layers (app, database) or reading database logs, and consolidating these data with other non SAP data for analytics purposes.&nbsp;</span></div><div><div></div></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Integration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/343\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/436\"\n    },\n    {\n      \"id\": 371,\n      \"rev\": 13,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-23T09:51:25.843Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:55:33.143Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Migration methods for SAP into Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to SAP documentation outlining migration methods like SUM DMO&nbsp;<a href=\\\"https://support.sap.com/en/tools/software-logistics-tools.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Software Logistics Toolset (sap.com)</a>. This whitepaper also describes SAP migration to Azure</div><div><a href=\\\"https://azure.microsoft.com/en-us/resources/migration-methodologies-for-sap-on-azure/\\\">Migration Methodologies for SAP on Azure| Microsoft Azure</a><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/deployment-guide#b3253ee3-d63b-4d74-a49b-185e76c4088e\\\">Azure Virtual Machines deployment for SAP NetWeaver - Azure Virtual Machines | Microsoft Docs</a>&nbsp;see: #deployment scenarios</div><div><span style=\\\"background-color:rgb(255, 255, 0);\\\"><br></span></div><div><span style=\\\"background-color:rgb(255, 255, 255);\\\">SAP on SQL Server migration to Azure&nbsp;<a href=\\\"https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/sap-os-db-migration-to-sql-server-8211-faq-v6-2-april-2017/ba-p/368070\\\">SAP OS/DB Migration to SQL Server–FAQ v6.2 April 2017 - Microsoft Tech Community</a></span></div><div><span><br></span></div><div><span>Azure site recovery might be a potential option for migrating to Azure as well <a href=\\\"https://docs.microsoft.com/en-us/azure/site-recovery/site-recovery-sap\\\">Set up SAP NetWeaver disaster recovery with Azure Site Recovery - Azure Site Recovery | Microsoft Docs</a>&nbsp;- caution: ASR only supported for SAP APP layer, DB migration should be done with native DB replication mechanism.​</span><br></div><div><span><br></span></div><div><span>Dealing with very large databases please include details from here</span></div><div><span><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\"><a href=\\\"https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/very-large-database-migration-to-azure-8211-recommendations/ba-p/368146\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Very Large Database Migration to Azure – Recommendations &amp; Guidance to Partners</a></div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\"><br></div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\">Here you will find important details on how to optimize migration process performance</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\"><a href=\\\"https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/sap-migration-to-azure-performance-optimization-guidance/ba-p/2112474\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">SAP Migration to Azure - Performance Optimization Guidance</a></div><br></span></div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General; migration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/371\"\n    },\n    {\n      \"id\": 370,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-23T09:40:30.84Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T09:18:25.82Z\",\n        \"System.ChangedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.Title\": \"Global access to SAP Fiori\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Access to Fiori apps outside of the internal network or VPN becomes increasingly important. Find below some direction to get started:</div><div><ul><li><a href=\\\"https://blogs.sap.com/2020/12/03/sap-on-azure-application-gateway-web-application-firewall-waf-v2-setup-for-internet-facing-sap-fiori-apps/\\\">Azure Application Gateway Setup for internet-facing Fiori</a>.</li><li><a href=\\\"https://blogs.sap.com/2020/12/10/sap-on-azure-single-sign-on-configuration-using-saml-and-azure-active-directory-for-public-and-internal-urls/\\\">Fiori Setup with Azure AD for SSO for public endpoints</a></li><li><a href=\\\"https://blogs.sap.com/2021/03/22/sap-fiori-using-azure-cdn-for-sapui5-libraries/\\\">CDN usage and setup with Azure for SAPUI5</a></li></ul></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/370\"\n    },\n    {\n      \"id\": 369,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-23T09:27:02.73Z\",\n        \"System.CreatedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T09:15:59.327Z\",\n        \"System.ChangedBy\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"System.Title\": \"DevOps with SAP, AppDev\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">We distinguish between Infrastructure-as-Code and app development focused approaches. All examples provided by SAP that refer to Jenkins can be replicated with Azure DevOps or GitHub Actions.</div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\">The conversation around this topic is quite vertical. Below links aim at highlighting the range of possibilites and existing content to get you started.</div><div style=\\\"box-sizing:border-box;\\\"><br></div><div style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\">App Dev</b></div></div><div style=\\\"box-sizing:border-box;\\\"><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;\\\"><li style=\\\"box-sizing:border-box;\\\">Adapt approach to Az DevOps or GitHub: <a href=\\\"https://blogs.sap.com/2018/12/17/abap-continuous-integration-with-azure-devops-abap-unit-in-the-cloud/\\\">CI for ABAP</a></li><li style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://blogs.sap.com/2019/12/20/go-blue-green-for-your-cloud-foundry-app-from-webide-with-azure-devops/\\\">Modern Release strategies for SAP Business Technology Platform</a></li></ul></div><br></div>\",\n        \"System.AssignedTo\": \"Martin Pankraz <mapankra@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/369\"\n    },\n    {\n      \"id\": 368,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-23T09:26:49.66Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:11:19.397Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Availability Set/Availability Zone for SAP architecture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Main documentation link -&nbsp;&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-ha-availability-zones\\\" style=\\\"\\\">SAP workload configurations with Azure Availability Zones</a></div><div><div><br></div></div><div>For SAP application layers - ASCS/SCS, application server tier, database layer - when running in highly-available setup of more than 1 VM per each layer, you can utilize Azure availability sets (AvSet) or availability zone (AvZone) deployment. Both AvSet or AvZone need to be specified during VM deployment and can be changed only by VM re-deployment.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/availability-set-overview\\\">Availability set</a>&nbsp;is a logical grouping of VMs, deployed in one datacenter and higher SLA than single VMs otherwise would&nbsp; have. Currently VMs in AvSet are deployed inside the same location. Use the maximum failure domain and update domain when creating an AvSet for SAP.&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/availability-zones/az-overview\\\">Availability zones</a>&nbsp;distribute VMs in different zones within one Azure region, to protect from datacenter level failure.</div><div><br></div><div>AvSets are currently deployed together in one location, spread accounting for failure/update downtime.</div><div>AvZone deployment for SAP needs to address <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-ha-availability-zones#considerations-for-deploying-across-availability-zones\\\">latency between these zones</a> and based on the region and latency, account for <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-ha-availability-zones#activeactive-deployment\\\">active/active</a> or <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-ha-availability-zones#activepassive-deployment\\\">active/passive</a> deployment model.</div><div><br></div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"High Availability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/368\"\n    },\n    {\n      \"id\": 367,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-23T09:25:50.587Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:12:25.863Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Disaster Recovery for SAP components in Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>For Azure disaster recovery depends on utilizing another, at least several hundred km away Azure region - <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/framework/resiliency/backup-and-recovery\\\">documentation link</a>.</div><div><br></div><div>BCDR for SAP should address following design:</div><div><ul><li>Secondary Azure region to be enabled for SAP workload - networking, DNS, User-Access (AD), surround enablement systems such as print server/3rd party interfaces.</li><li>For Azure Backup, VMs as well as databases, cross region restore need to be prepared and configured - <a href=\\\"https://azure.microsoft.com/en-us/blog/cross-region-restore-crr-for-azure-virtual-machines-using-azure-backup/\\\">documentation link</a>.</li><li>Disaster recovery plan created and tested regularly.</li></ul><div>Architecture accounting for SAP BCDR depicted and described - <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/sap/sap-s4hana\\\">documentation link</a>.</div><div><br></div></div><div><span style=\\\"\\\">Only in special circumstances, if unable by company policy or regulations, to utilize another Azure region for BCDR a </span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-ha-availability-zones#combined-high-availability-and-disaster-recovery-configuration\\\" style=\\\"\\\">combined HA/DR configuration</a><span style=\\\"\\\"> could be used.</span><br></div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"BCDR\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/308\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/367\"\n    },\n    {\n      \"id\": 365,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-23T09:09:11.513Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:11:06.9Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"SAP HANA scale-out options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"margin:0px 0in 10.6667px;font-size:11pt;font-family:Calibri, sans-serif;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><p style=\\\"margin:0in 0in 8pt;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;background:white;\\\">One method for achieving HANA high availability is by\\nconfiguring host auto failover. To configure host auto failover, you add one or\\nmore virtual machines to the HANA system and configure them as <b>standby nodes</b>.\\nWhen active node fails, a standby node automatically takes over. In the\\npresented configuration with Azure virtual machines, you achieve auto failover\\nby using&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-netapp-files/azure-netapp-files-introduction\\\" style=\\\"cursor:pointer;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;background:white;\\\">NFS on Azure NetApp Files</span></a><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;background:white;\\\"><span>.</span></span></p><ul style=\\\"margin-bottom:0in;\\\"><li><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-suse\\\">Deploy\\na SAP HANA scale-out system with standby node on Azure VMs by using Azure\\nNetApp Files on <b>SUSE Linux Enterprise Server</b></a></span></li></ul></div></div></div></div></div><div><ul><li><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-hana-scale-out-standby-netapp-files-rhel\\\">Deploy a SAP HANA scale-out system with standby node on Azure VMs by using Azure NetApp Files on <b>Red Hat Enterprise Linux</b></a>&nbsp;</li></ul></div><div><div style=\\\"margin:0px 0in 10.6667px;font-size:11pt;font-family:Calibri, sans-serif;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><p style=\\\"margin:0in 0in 8pt;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;background:white;\\\">Another method to achieve HANA high availability for HANA\\nscale-out installations, is to configure <b>HANA system replication and protect\\nthe solution with Pacemaker cluster</b> to allow automatic failover. When an\\nactive node fails, the cluster fails over the HANA resources to the other site.</span></p><h1 style=\\\"margin-right:0in;margin-left:0in;font-size:24pt;font-family:&quot;Times New Roman&quot;, serif;margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.5in;text-indent:-.25in;background:white;\\\"><span style=\\\"font-size:11.0pt;font-family:Symbol;color:#171717;font-weight:normal;\\\"><span>·<span style=\\\"font:7.0pt &quot;Times New Roman&quot;;\\\">&nbsp; &nbsp; </span></span></span><span style=\\\"font-size:11.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;background:white;font-weight:normal;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-hana-high-availability-scale-out-hsr-rhel\\\">High\\navailability of SAP HANA scale-out system on <b>Red Hat Enterprise Linux</b></a></span></h1></div></div></div></div></div><div><ul><li><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-troubleshoot-scale-out-ha-on-sles\\\">Verify\\nand troubleshoot SAP HANA scale-out high-availability setup on <b>SUSE Linux Enterprise\\nServer</b></a></li></ul></div><div>&nbsp;SAP HANA scale-out can be achieved also through use of premiumSSD without a standby node -&nbsp;<span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations#configuring-azure-infrastructure-for-sap-hana-scale-out\\\">Configuring Azure infrastructure for SAP HANA scale-out</a></span></div><div><div style=\\\"margin:0px 0in 10.6667px;font-size:11pt;font-family:Calibri, sans-serif;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><div style=\\\"margin:0px 0in 10.6667px;\\\"><br></div></div></div></div></div>\",\n        \"System.AssignedTo\": \"Anjan Banerjee <anbanerj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"HANA; High Availability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/365\"\n    },\n    {\n      \"id\": 364,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-23T09:00:50.697Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:27:14.043Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"SSO with SAP Solutions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Active Directory integration which allows for single-sign-on into different SAP solutions are documented here</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/get-started\\\">Get started with SAP on Azure VMs - Azure Virtual Machines | Microsoft Docs</a>&nbsp;-&gt;Integrate Azure AD with SAP Applications<br></div><div>It includes a growing number of documentation about SSO for different SAP software solutions and services.</div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/336\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Related\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/337\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Related\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/364\"\n    },\n    {\n      \"id\": 363,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-23T07:18:38.43Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:55:10.933Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"SAP notes for SAP on Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"margin:0cm 0cm 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">When we talk specifically\\nto deploy SAP systems on Azure, there are some important SAP notes that must be\\nreviewed in advance to avoid any issue in the future.&nbsp;</span></p><p style=\\\"margin:0cm 0cm 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;background:white;\\\">Certified hardware, SAP products supported, OS and DB combinations supported, networking and monitoring considerations,... all these topics are</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">&nbsp;recopiled in the SAP notes mentioned&nbsp; in the\\nfollowing link:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/deployment-guide#resources\\\" style=\\\"font-size:11pt;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;, sans-serif;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/deployment-guide#resources</span></a></p><br><br>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/363\"\n    },\n    {\n      \"id\": 348,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-16T17:06:12.487Z\",\n        \"System.CreatedBy\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:12:19.683Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Azure Site Recovery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Site Recovery helps ensure business continuity by keeping business apps and workloads running during outages. Site Recovery replicates workloads running on physical and virtual machines (VMs) from a primary site to a secondary location. When an outage occurs at your primary site, you fail over to secondary location, and access apps from there. After the primary location is running again, you can fail back to it.<br></div><div><br></div><div>Important:</div><div><ul><li><a href=\\\"https://docs.microsoft.com/en-us/azure/site-recovery/site-recovery-overview\\\" id=_idgpn_7973>Azure Site Recover</a> must be used only on the application layer</li><li>If the DR Strategy chosen is Regional, customer need to build the DR landzone in the chosen region</li></ul></div><div>Documentation:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/site-recovery/site-recovery-sap\\\" id=_idgpn_7707>https://docs.microsoft.com/en-us/azure/site-recovery/site-recovery-sap</a><br></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"BCDR\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/308\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/348\"\n    },\n    {\n      \"id\": 347,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-16T09:00:21.947Z\",\n        \"System.CreatedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:59:27.1Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Latency Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The latency between the SAP application and database tier is very sensitive therefore it is important that testing is carried out to ensure optimal performance.&nbsp; Testing can be carried out using SAP Note&nbsp;<a href=\\\"https://launchpad.support.sap.com/#/notes/1100926/E\\\">https://launchpad.support.sap.com/#/notes/1100926/E</a>.&nbsp;&nbsp;</div><div><br></div><div>If the network latency is found to be outside SAP recommendations customer should consider the use of Azure Proximity Placement Groups for optimisation as detailed here.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-proximity-placement-scenarios\\\">Azure proximity placement groups for SAP applications - Azure Virtual Machines | Microsoft Docs</a></div>\",\n        \"System.AssignedTo\": \"Al Morrison <almorris@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General; Networking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/303\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/347\"\n    },\n    {\n      \"id\": 345,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T17:26:36.623Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:59:16.333Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Internet inbound/outbound connectivity for SAP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div></div><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\">Traffic to and from SAP systems should be restricted by the usage of NSG&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/network-security-groups-overview\\\">Azure network security groups overview | Microsoft Docs</a>&nbsp;and outbound connectivity limited to on prem connectivity to allow users to connect. Internet connectivity should be managed by Azure services like Azure Firewall, third party networking appliances (inbound/outbound) or Application Gateway (inbound https).&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations\\\">SAP HANA infrastructure configurations and operations on Azure - Azure Virtual Machines | Microsoft Docs</a></p><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><br></p><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"color:rgba(0, 0, 0, 0.9);font-size:14px;text-align:left;display:inline !important;\\\">Public service endpoints needed for AAD, Azure Backup, ARM for fencing - or their private endpoint variants, if exist <a href=\\\"https://docs.microsoft.com/en-us/azure/private-link/\\\">Private Link Documentation - Quickstarts, How to guides, and API references | Microsoft Docs</a>.&nbsp;</span></p><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:11pt;font-weight:inherit;\\\">The different methods on how to achieve this are described at</span><span style=\\\"font-weight:inherit;font-size:12pt;font-family:&quot;Segoe UI&quot;, sans-serif;color:rgb(23, 23, 23);\\\">&nbsp;</span><span style=\\\"font-weight:inherit;font-size:12pt;color:rgb(23, 23, 23);\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-standard-load-balancer-outbound-connections\\\">Public endpoint connectivity for Azure VMs&amp;Standard ILB in\\nSAP HA scenarios - Azure Virtual Machines | Microsoft Docs</a></span><br></p><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span><br></span></p><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:10.0pt;\\\"></span></p><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\">Azure backup for HANA requires connectivity to Azure Backup service, Azure Storage, and Azure Active Directory&nbsp;</p><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/backup/tutorial-backup-sap-hana-db#set-up-network-connectivity\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Tutorial - Back up SAP HANA databases in Azure VMs - Azure\\nBackup | Microsoft Doc</a></p><p style=\\\"margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\">&nbsp;</p><div><a href=\\\"https://docs.microsoft.com/en-us/azure/backup/tutorial-backup-sap-hana-db#set-up-network-connectivity\\\"></a></div><div><br></div><h3><br></h3><div><br></div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General; Networking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/303\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/345\"\n    },\n    {\n      \"id\": 342,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-09T09:26:32.32Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-08T19:15:52.407Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Third party clustering options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><b><u>Veritas InfoScale&nbsp;</u></b></div><div><span style=\\\"box-sizing:border-box;\\\">Main documentation:&nbsp;</span><a href=\\\"https://www.veritas.com/content/support/en_US/doc/130803809-130803829-0/v131565776-130803829\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Veritas InfoScale™ 7.4.1 Solutions in Cloud Environments</a><br></div><div><br></div><div></div><div style=\\\"box-sizing:border-box;\\\">Replication method supported:</div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;font-family:Calibri, sans-serif;font-size:11pt;margin-bottom:0in;margin-top:0in;\\\"><li style=\\\"box-sizing:border-box;margin:0in;\\\">Zonal</li><li style=\\\"box-sizing:border-box;margin:0in;\\\">Cross-regional<br><br></li></ul></span></div><div><span style=\\\"\\\"></span></div><div style=\\\"box-sizing:border-box;\\\">OS supported:</div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><ul style=\\\"font-family:Calibri, sans-serif;font-size:11pt;box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;margin-top:0in;\\\"><li style=\\\"box-sizing:border-box;margin:0in;\\\"><a href=\\\"https://www.veritas.com/content/support/en_US/doc/130803809-130803829-0/v130818032-130803829\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Windows</a></li><li style=\\\"box-sizing:border-box;margin:0in;\\\"><a href=\\\"https://www.veritas.com/content/support/en_US/doc/130803809-130803829-0/v130811197-130803829\\\" style=\\\"font-size:14px;\\\">Linux </a><span style=\\\"font-size:14px;\\\">(SUSE, RHEL)</span></li></ul></span></div><div><br></div><div>SAP Notes:</div><div><span style=\\\"font-size:11pt;\\\"><ul style=\\\"font-family:Calibri, sans-serif;margin-bottom:0in;margin-top:0in;\\\">\\n <li style=\\\"margin:0in 0in 0in 0.5in;margin-left:0in;\\\"><span style=\\\"font-family:&quot;Calibri Light&quot;,sans-serif;\\\"><a href=\\\"https://launchpad.support.sap.com/#/notes/1906423\\\">1906423 - Support details for Veritas&nbsp;</a></span></li>\\n <li style=\\\"margin:0in 0in 0in 0.5in;margin-left:0in;\\\"><span style=\\\"font-family:&quot;Calibri Light&quot;,sans-serif;\\\"><a href=\\\"https://launchpad.support.sap.com/#/notes/2727341\\\">2727341 - Veritas InfoScale Availability Support for Standalone Enqueue Server 2 (ENSA2) / Enqueue Replicator 2 (ER2)&nbsp;</a></span></li>\\n <li style=\\\"margin:0in 0in 0in 0.5in;margin-left:0in;\\\"><span style=\\\"font-family:&quot;Calibri Light&quot;,sans-serif;\\\"><a href=\\\"https://launchpad.support.sap.com/#/notes/1500607\\\">1500607 - Support requirements for SAP in Veritas Environments</a></span></li>\\n <li style=\\\"margin:0in 0in 0in 0.5in;margin-left:0in;\\\"><span style=\\\"font-family:&quot;Calibri Light&quot;,sans-serif;\\\"><a href=\\\"https://launchpad.support.sap.com/#/notes/1552925\\\">1552925 - Linux: High Availability Cluster Solutions</a></span></li></ul><div><font face=\\\"Calibri Light, sans-serif\\\"><br></font></div></span></div><div><div><div><b><u>SIOS Data Keeper:</u></b></div></div></div><div><div style=\\\"box-sizing:border-box;\\\">Main documentation:&nbsp;<a href=\\\"https://us.sios.com/products/windows/datakeeper-cluster/\\\">SANless &amp; SAN Clustering Software for Windows Server Replication | SIOS DataKeeper</a></div><br></div><div><div><div><a href=\\\"https://azuremarketplace.microsoft.com/en-us/marketplace/apps/sios_datakeeper.sios-datakeeper-8?tab=Overview\\\">SIOS DataKeeper Cluster Edition (microsoft.com)</a><br style=\\\"box-sizing:border-box;\\\"></div></div></div><div><span style=\\\"font-size:11pt;\\\"><div><font face=\\\"Calibri Light, sans-serif\\\"><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\"><span style=\\\"\\\">Also mentioned in the following doc and SAP notes:</span><br></div></font></div></span></div><div><div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-guide-wsfc-shared-disk\\\">Cluster SAP ASCS/SCS instance on WSFC using shared disk in Azure - Azure Virtual Machines | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div></div></div><div><div><div><a href=\\\"https://launchpad.support.sap.com/#/notes/1928533\\\">1928533 - SAP Applications on Azure: Supported Products and Azure VM types&nbsp;</a><br style=\\\"box-sizing:border-box;\\\"></div><div><a href=\\\"https://launchpad.support.sap.com/#/notes/1662610\\\">1662610 - Support details for SIOS Protection Suite for Linux&nbsp;</a><br style=\\\"box-sizing:border-box;\\\"></div></div></div><div><span style=\\\"font-size:11pt;\\\"><div><font face=\\\"Calibri Light, sans-serif\\\"><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\"><br style=\\\"box-sizing:border-box;\\\"></div></font></div></span></div><div><br></div><div><span style=\\\"font-size:11pt;\\\"><div><font face=\\\"Calibri Light, sans-serif\\\"><br></font></div><ul style=\\\"font-family:Calibri, sans-serif;margin-bottom:0in;margin-top:0in;\\\"><ul style=\\\"margin-bottom:0in;margin-top:0in;\\\"><ul style=\\\"margin-bottom:0in;margin-top:0in;\\\">\\n  </ul>\\n </ul></ul></span><span style=\\\"font-size:10.0pt;font-family:&quot;Tahoma&quot;,sans-serif;\\\"> </span><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"High Availability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div>visually changed formatting, keeping all content however</div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/342\"\n    },\n    {\n      \"id\": 341,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T09:25:58.71Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:07:10.75Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Oracle RDBMS clustering/high-availability options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>High availability for Oracle in Azure is typically achieved by using DB synchronization through the use of Oracle Data Guard, either simple Data Guard, FastStartFailOver or FarSync. This way no Azure components like Load Balancer for floating IP etc is needed. <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_oracle#high-availability\\\">Documentation link</a> for details.</div><div><br></div><div><a href=\\\"https://www.sap.com/docs/download/2016/12/a67bac51-9a7c-0010-82c7-eda71af511fa.pdf\\\">Oracle on SAP whitepaper</a> also exists depicting use of Oracle Data Guard for SAP high availability with both ABAP and JAVA stacks.</div><div><br></div><div>Clustering for failover with Oracle is not supported by Azure natively, on both Linux and Windows, Thus a 3rd party cluster manager is needed to provide tooling, how-to and support. See task item for 3rd party clustering solutions.<br></div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"High Availability; Oracle\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/341\"\n    },\n    {\n      \"id\": 340,\n      \"rev\": 15,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T09:25:02.87Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:07:04.063Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Windows clustering options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span></span></p><div style=\\\"margin:0px 0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><div style=\\\"margin:0px 0in;font-size:11pt;font-family:Calibri, sans-serif;background:white;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;background:white;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">Windows Cluster is used for\\nsetting up High Availability of SAP on Azure. Windows Cluster can be used for :</span><span style=\\\"color:black;\\\"></span></p><ol style=\\\"margin-bottom:0in;margin-top:0in;\\\" start=1 type=1>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;background:white;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">High Availability of Database&nbsp;</span><span style=\\\"\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;background:white;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">High Availability of SAP ASCS/ERS Layer</span><span style=\\\"\\\"></span></li></ol><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;background:white;\\\"><b><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">High Availability of MS SQL\\nDatabase</span></b><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">&nbsp;:&nbsp;</span><span style=\\\"color:black;\\\"></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;background:white;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">Database high availability\\ncan be achieved by using DB Native replication between 2 nodes of DB. Windows\\nClustering is used to automate the failover between 2 DB Nodes.</span><span style=\\\"color:black;\\\"></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;background:white;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\"><br style=\\\"\\\"><br style=\\\"\\\"></span><span style=\\\"color:black;\\\"></span></p><table style=\\\"background:white;border-collapse:collapse;\\\">\\n <tbody><tr style=\\\"\\\">\\n  <td width=141 style=\\\"width:105.65pt;border:solid windowtext 1.0pt;background:#4472C4;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><b><span style=\\\"color:white;\\\">Database</span></b><span style=\\\"color:black;\\\"></span></p>\\n  </td>\\n  <td width=145 style=\\\"width:108.5pt;border:solid windowtext 1.0pt;border-left:none;background:#4472C4;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><b><span style=\\\"color:white;\\\">High Availability Method</span></b><span style=\\\"color:black;\\\"></span></p>\\n  </td>\\n  <td width=186 style=\\\"width:139.4pt;border:solid windowtext 1.0pt;border-left:none;background:#4472C4;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><b><span style=\\\"color:white;\\\">Documentation Link</span></b><span style=\\\"color:black;\\\"></span></p>\\n  </td>\\n  <td width=151 style=\\\"width:113.45pt;border:solid windowtext 1.0pt;border-left:none;background:#4472C4;padding:0in 0in 0in 0in;\\\">\\n  <p align=center style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;text-align:center;\\\"><b><span style=\\\"color:white;\\\">Cross Zonal Support</span></b></p>\\n  </td>\\n </tr>\\n <tr style=\\\"\\\">\\n  <td width=141 style=\\\"width:105.65pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:black;\\\">MS SQL 2012 and Above</span></p>\\n  </td>\\n  <td width=145 style=\\\"width:108.5pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:black;\\\">SQL Server AlwaysOn with Windows Cluster</span></p>\\n  </td>\\n  <td width=186 style=\\\"width:139.4pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:black;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sqlserver#sql-server-high-availability-for-sap-in-azure\\\"><span style=\\\"color:blue;\\\">SQL Server High-Availability for SAP in Azure</span></a></span></p>\\n  </td>\\n  <td width=151 style=\\\"width:113.45pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 0in 0in 0in;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:black;\\\"><span style=\\\"\\\">&nbsp;</span>Yes</span></p>\\n  </td>\\n </tr></tbody></table><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;background:white;\\\"><span style=\\\"color:black;\\\">&nbsp;</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;background:white;\\\"><b><span style=\\\"color:black;\\\">High Availability of SAP ASCS/ERS</span></b><span style=\\\"color:black;\\\">&nbsp;:&nbsp;</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;background:white;\\\"><span style=\\\"color:black;\\\">As ASCS can be a single point of failure in SAP\\nEnvironment, we need to use OS clustering for its high Availability. Following\\nare the different approaches for SAP ASCS/ERS high&nbsp;</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">availability</span><span style=\\\"color:black;\\\">&nbsp;in windows environment.</span></p><table width=671 style=\\\"width:503.5pt;background:white;border-collapse:collapse;\\\">\\n <tbody><tr style=\\\"\\\">\\n  <td width=251 style=\\\"width:188.5pt;border:solid windowtext 1.0pt;background:#4472C4;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><b><span style=\\\"color:white;\\\">Method</span></b><span style=\\\"color:black;\\\"></span></p>\\n  </td>\\n  <td width=223 style=\\\"width:167.6pt;border:solid windowtext 1.0pt;border-left:none;background:#4472C4;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><b><span style=\\\"color:white;\\\">Documentation Link</span></b><span style=\\\"color:black;\\\"></span></p>\\n  </td>\\n  <td width=197 style=\\\"width:147.4pt;border:solid windowtext 1.0pt;border-left:none;background:#4472C4;padding:0in 0in 0in 0in;\\\">\\n  <p align=center style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;text-align:center;\\\"><b><span style=\\\"color:white;\\\">Cross Zonal Support</span></b></p>\\n  </td>\\n </tr>\\n <tr style=\\\"\\\">\\n  <td width=251 style=\\\"width:188.5pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:black;\\\">Shared Disk for (A)SCS/ERS Cluster using either of the\\n  two approaches.</span></p>\\n  <ul style=\\\"margin-bottom:0in;\\\">\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">Azure Shared Disk</span></li>\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">SIOS Datakeeper</span></li>\\n  </ul>\\n  </td>\\n  <td width=223 style=\\\"width:167.6pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <ol start=1 type=1 style=\\\"margin-bottom:0in;\\\">\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-guide-wsfc-shared-disk\\\"><span style=\\\"color:blue;\\\">Architecture Design document</span></a></span></li>\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-infrastructure-wsfc-shared-disk\\\"><span style=\\\"color:blue;\\\">Infrastructure Preparation</span></a></span></li>\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-installation-wsfc-shared-disk\\\"><span style=\\\"color:blue;\\\">SAP Installation</span></a></span></li>\\n  </ol>\\n  </td>\\n  <td width=197 style=\\\"width:147.4pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 0in 0in 0in;\\\">\\n  <ul style=\\\"margin-bottom:0in;\\\">\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">Azure Shared Disk – </span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#0070C0;\\\">No (Planned in\\n       future)</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"></span></li>\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">SIOS Datakeeper - </span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#0070C0;\\\">Yes</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"></span></li>\\n  </ul>\\n  </td>\\n </tr>\\n <tr style=\\\"\\\">\\n  <td width=251 style=\\\"width:188.5pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:black;\\\">Scale-out File share (SOFS)</span></p>\\n  </td>\\n  <td width=223 style=\\\"width:167.6pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <ol start=1 type=1 style=\\\"margin-bottom:0in;\\\">\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-guide-wsfc-file-share\\\"><span style=\\\"color:blue;\\\">Architecture Design document</span></a></span></li>\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-infrastructure-wsfc-file-share\\\"><span style=\\\"color:blue;\\\">Infrastructure Preparation</span></a></span></li>\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-installation-wsfc-file-share\\\"><span style=\\\"color:blue;\\\">SAP Installation</span></a></span></li>\\n  </ol>\\n  </td>\\n  <td width=197 style=\\\"width:147.4pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 0in 0in 0in;\\\">\\n  <ul style=\\\"margin-bottom:0in;\\\">\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#0070C0;\\\">No</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"></span></li>\\n  </ul>\\n  </td>\\n </tr>\\n <tr style=\\\"\\\">\\n  <td width=251 style=\\\"width:188.5pt;border:solid windowtext 1.0pt;border-top:none;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:black;\\\">Azure Netapp Files (SMB)</span></p>\\n  </td>\\n  <td width=223 style=\\\"width:167.6pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 5.4pt 0in 5.4pt;\\\">\\n  <ol start=1 type=1 style=\\\"margin-bottom:0in;\\\">\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-windows-netapp-files-smb\\\"><span style=\\\"color:blue;\\\">Architecture Design document</span></a></span></li>\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-windows-netapp-files-smb\\\"><span style=\\\"color:blue;\\\">SAP Installation</span></a></span></li>\\n  </ol>\\n  </td>\\n  <td width=197 style=\\\"width:147.4pt;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;padding:0in 0in 0in 0in;\\\">\\n  <ul style=\\\"margin-bottom:0in;\\\">\\n   <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#0070C0;\\\">No (planned in\\n       future)</span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"></span></li>\\n  </ul>\\n  </td>\\n </tr></tbody></table><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;background:white;\\\"><span style=\\\"color:black;\\\">&nbsp;</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;background:white;\\\"><span style=\\\"color:black;\\\">&nbsp;</span><span style=\\\"font-size:14px;\\\">&nbsp;</span></p></div></div></div>\",\n        \"System.AssignedTo\": \"Anjan Banerjee <anbanerj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"High Availability; SQL Server\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/340\"\n    },\n    {\n      \"id\": 339,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T09:24:48.823Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:05:04.593Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Multi-SID on same cluster\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>As documented in last section of SAP note&nbsp;<a href=\\\"https://launchpad.support.sap.com/#/notes/1928533\\\">1928533 - SAP Applications on Azure: Supported Products and Azure VM&nbsp;types</a>&nbsp;, Microsoft supports documented High Availability architecture.</div><div>For some scenarios, this includes support of multiple SAP SIDs on same cluster. Typically up to 5 SAP SIDs in a cluster are supported however individual guides need to be confirmed about limitations and requirements.</div><div><br></div><div>Following <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-ascs-ha-multi-sid-wsfc-azure-shared-disk\\\">documentation link </a>leads to the section where Multi-SID SAP clusters are described.</div><div><blockquote style=\\\"margin:0 0 0 40px;border:none;\\\"><div><br></div></blockquote></div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"High Availability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/339\"\n    },\n    {\n      \"id\": 338,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T09:20:42.827Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:22:34.88Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Azure backup for VMs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Backup for VM service to be used to protect Azure VMs and data on OS and data disks.&nbsp;</div><div>Backup process explain in steps - <a href=\\\"https://docs.microsoft.com/en-us/azure/backup/backup-azure-vms-introduction#backup-process\\\">docs link</a>.</div><div>Details about limitations and support matrix - <a href=\\\"https://docs.microsoft.com/en-us/azure/backup/backup-support-matrix-iaas#vm-storage-support\\\">docs link</a>.</div><div>Differences between crash consistent and application consistent - <a href=\\\"https://docs.microsoft.com/en-us/azure/backup/backup-azure-vms-introduction#snapshot-consistency\\\">docs link</a>.&nbsp;</div><div><br></div><div>Disks can be excluded in VM backup, particularly for databases since they would not be consistent - <a href=\\\"https://docs.microsoft.com/en-us/azure/backup/sap-hana-db-about#using-azure-vm-backup-with-azure-sap-hana-backup\\\">docs link</a>. In case of restore of full VM with such excluded disk, the excluded disks would need to be recreated - Azure disk resource as well as LVM/filesystem etc.</div><div><br></div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"BCDR\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/338\"\n    },\n    {\n      \"id\": 337,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-09T09:18:13.44Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:27:05.34Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Security foundations for SAP on Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Network segmentation with discrete subnets for SAP application, database and Web Dispatacher/DMZ type of applications - <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/sap/sap-s4hana\\\">documentation link</a>.</div><div><br></div><div>NSGs and ASGs (network/application security groups) on individual subnets, to open network communication only on required source/destination/port configurations - <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/network-security-groups-overview\\\">documentation link</a>.</div><div><br></div><div>Azure Security Center for SAP VM workloads - <a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/security-center-introduction\\\">documentation link</a> - together with possible <a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/defender-for-servers-introduction\\\">OS scanner</a> and <a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/deploy-vulnerability-assessment-vm\\\">vulnerability scan.</a></div><div><br></div><div>Azure encryption for disks and storage account - <a href=\\\"https://docs.microsoft.com/en-us/azure/security/fundamentals/encryption-atrest\\\">documentation link</a>&nbsp;. <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/disk-encryption\\\">Storage Side Encryption</a>, with platform or customer managed keys, double encryption, end-to-end at-host encryption.&nbsp;</div><div><br></div><div>Facilitating Single-Sign-On - see separate item for SSO with SAP solutions, also linked through related work.</div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/336\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Related\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/364\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Related\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/337\"\n    },\n    {\n      \"id\": 335,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T09:16:48.453Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:26:48.88Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"SAP monitoring options in Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Mandatory for SAP support in Azure is to install Azure Monitoring Extention for SAP - as per note&nbsp;<a href=\\\"https://launchpad.support.sap.com/#/notes/2015553\\\">2015553</a>&nbsp;- install AEM extension - <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/deployment-guide#d98edcd3-f2a1-49f7-b26a-07448ceb60ca\\\">documentation link</a>.</div><div><br></div><div>Azure Monitor for SAP service to monitor SAP HANA, Pacemaker, SQL Server, SAP HANA replication,&nbsp; Netweaver process monitor - <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/azure-monitor-overview\\\">documentation link</a>.</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/azure-monitor-sap-quickstart\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Video<span>&nbsp;</span></a><span style=\\\"display:inline !important;\\\">introducing Azure Monitor for SAP.</span><br></div><div><br></div><div>SAP Solution Manager can still be used for SAP monitoring, will not contain Azure infrastructure details however beyond the operating system.</div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/333\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/335\"\n    },\n    {\n      \"id\": 334,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T09:16:28.43Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:26:43.737Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Azure infrastructure monitoring\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/cloud-models-monitor-overview\\\">Cloud monitoring guide</a>&nbsp;- Monitoring strategy for cloud deployment models.<br></div><div>Use the table on the linked page to find which services to use to monitor the in-scope service.</div><div><br></div><div>Overview of VM monitoring - <a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/vm/vminsights-overview\\\">docs link</a>.</div><div><br></div><div>Deploy alerting on collected data - writing <a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/logs/get-started-queries\\\">log queries</a>, log query <a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/logs/examples\\\">examples </a>and <a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/alerts/alerts-metric\\\">alerting on metrics</a>.</div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/333\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/334\"\n    },\n    {\n      \"id\": 331,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-09T09:11:42.23Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:59:43.103Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"SAP HANA Large Instances - bare metal for HANA\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>HANA Large instances are bare metal hardware offering together with storage, exclusively for SAP HANA.</div><div><br></div><div>SAP HANA certification in <a href=\\\"https://www.sap.com/dmc/exp/2014-09-02-hana-hardware/enEN/#/solutions?filters=iaas;ve:24\\\">SAP hardware certification directory</a>.</div><div>List of available SKUs and regions - <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-available-skus\\\">docs link</a>.</div><div><br></div><div>Differences to Azure virtual machines and the operations model - <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-operations-model\\\">docs link</a>.</div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General; HANA\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/305\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/331\"\n    },\n    {\n      \"id\": 330,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-08T19:12:00.92Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:08:16.82Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Backup for HANA\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span lang=EN-US style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">Backups are the last line of defence to protect a customer’s sensitive\\ndata and critical business application components.&nbsp;</span><span style=\\\"box-sizing:border-box;\\\">There are several ways to back up an SAP HANA database in Azure, using database tools, Azure native tools or\\nthird-party backup products. Link to the official documentation:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-hana-backup-guide\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-hana-backup-guide</a></span><br> </div><div><span style=\\\"box-sizing:border-box;\\\"><br></span> </div><div><span style=\\\"box-sizing:border-box;\\\">Options available for backing up SAP HANA databases:</span> </div><div><span style=\\\"box-sizing:border-box;\\\"><ol style=\\\"margin-bottom:0cm;\\\"><li><span><b>Backup database to a file system:</b></span><span> via SAP HANA Studio or HANA SQL statements directly to managed disks, Azure blob storage&nbsp;<span style=\\\"display:inline !important;\\\">(blobxfer) or</span>&nbsp;Azure file share.</span>  </li><li><span lang=EN-US><b>Azure Backup for HANA:</b> Certified SAP solution which uses backint interface and doesn´t need infrastructure deployments (<a href=\\\"https://docs.microsoft.com/en-us/azure/backup/sap-hana-db-about\\\">https://docs.microsoft.com/en-us/azure/backup/sap-hana-db-about</a>)</span></li><li><span lang=EN-US><b>HANA Backup using filesystem\\nsnapshots:</b> Snapshots could be used as well with Azure Backup for HANA creating pre and post scripts.&nbsp;</span></li><li><span lang=EN-US><b>Azure Netapp Files Snapshots:</b>&nbsp;In case HANA database files is hosted in ANF, you can take snapshots directly from the ANF volumes with the azacsnap tool (<a href=\\\"https://docs.microsoft.com/en-us/azure/azure-netapp-files/azacsnap-introduction\\\">https://docs.microsoft.com/en-us/azure/azure-netapp-files/azacsnap-introduction</a>)</span></li><li><span lang=EN-US><b>Third-party tools:</b> There are in the market solutions from ISVs like Commvault, Veeam, etc... that use the backing interface as well. (Ex. for Commvault: <a href=\\\"https://azure.microsoft.com/en-us/resources/protecting-sap-hana-in-azure/\\\">https://azure.microsoft.com/en-us/resources/protecting-sap-hana-in-azure/</a>).</span> </li>  </ol></span> </div><div><br> </div><div> </div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"HANA\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/330\"\n    },\n    {\n      \"id\": 329,\n      \"rev\": 20,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-08T19:11:44.407Z\",\n        \"System.CreatedBy\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-23T07:50:31.81Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"Backup for SQL Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span lang=EN-US style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:black;\\\">Backups are the last line of defence to protect a customer’s sensitive\\ndata and critical business application components.&nbsp;</span><span style=\\\"box-sizing:border-box;\\\">There are several ways to back up an SAP\\nSQL Server database, using database tools, Azure native tools or\\nthird-party backup products.</span> </div><div><ol><li><span style=\\\"box-sizing:border-box;\\\"><b>SQL Server:</b>&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sqlserver#backuprecovery-considerations-for-sql-server\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sqlserver#backuprecovery-considerations-for-sql-server</a></span></li><ul><li><span style=\\\"\\\">SQL Server backups onto direct-attached Azure disks.</span></li><li>From SQL 2012 CU4, directly to an Azure Storage URL (blob).</li><li>Automated backup provided by the SQL Server IaaS Agent Extension.</li><li>Azure Backup for SQL Server VMs</li></ul></ol><div>Other ISVs solutions can be used as well (Commvault, Veritas, Veeam,...).&nbsp; </div> </div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"SQL Server\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/329\"\n    },\n    {\n      \"id\": 327,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-02T17:16:48.477Z\",\n        \"System.CreatedBy\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-08T19:19:14.57Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Linux Pacemaker Cluster\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"></span></div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\">Clustering on Linux systems can cover alllayers of the SAP system, each would need to be own cluster unless there is documentation available which covers multiple components in one cluster.&nbsp;</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\"><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 20px;\\\"><li style=\\\"box-sizing:border-box;\\\">NFS layer to provide /sapmnt, /usr/sap/trans and /usr/sap/&lt;SID&gt;/&lt;instances&gt; for (A)SCS/ERS clusters. This could be VM based of NFS as service (see&nbsp;<a href=\\\"https://dev.azure.com/bobsmess/17f98c08-1f1f-400a-8147-2e386e3115a3/_workitems/edit/319\\\" data-vss-mention=\\\"version:1.0\\\">#319</a>&nbsp;).&nbsp;<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-architecture-scenarios#high-availability-architecture-for-an-sap-ascsscs-instance-on-linux\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Documentation link</a>.</li><li style=\\\"box-sizing:border-box;\\\">(A)SCS and ERS layer</li><li style=\\\"box-sizing:border-box;\\\">Database layer - depending on database type chosen different implantation options.. Documentation links:<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-hana-availability-one-region\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">SAP HANA</a>,<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_general\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">Other databases within section</a></li></ul>There is no cluster needed for SAP application servers or WebDispatchers.&nbsp;</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\">Application servers, if multiple, should be deployed in Availability Set or Availability Zone (see task on AvSet/AvZone in this guide) but without any failover of individual instances -<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-high-availability-architecture-scenarios#high-availability-architecture-for-sap-application-servers\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">documentation link</a>.</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\">WebDispatchers, if not integrated with ASCS but on own discrete VMs, should be accessible highly available behind a layer 7 reverse proxy/load balancer such as Azure Application Gateway and thus do not require any additional clustering either.</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\">Linux clustering decision on fencing</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\">RedHat Linux only supports use of Azure API Fence Agent, no further infrastructure is needed.<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-rhel-pacemaker\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">documentation link</a></div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\">SUSE Linux supports both Azure API Fence Agent as well as SBD (Storage Based Death) fencing. For SBD fencing own VM(s)&nbsp; - 1 or 3 (better) - should deployed to act as iSCSI block device providers.<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-suse-pacemaker\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">documentation link</a>.</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\">Advantage of SBD fencing is faster switch over time, which needs to be tested during deployment.</div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);font-size:14px;\\\">VMs located behind a standard load balancer loose default outbound connectivity and steps are needed to provide these. See<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-standard-load-balancer-outbound-connections\\\" target=_blank rel=\\\"noopener noreferrer\\\" style=\\\"box-sizing:border-box;cursor:pointer;\\\">documentation link</a>, this applies to all nodes in a cluster. Load balancer provides the floating IP for virtual SAP hostname of the service uses - (A)SCS, ERS, DB name, DB passive/secondary, NFS, etc.</div><div></div>\",\n        \"System.AssignedTo\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"High Availability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Related\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/319\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Robert Biro mentioned work item #319 in #327\",\n            \"name\": \"Related\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/327\"\n    },\n    {\n      \"id\": 325,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-02T17:12:39.197Z\",\n        \"System.CreatedBy\": \"Carlos Motta <camottad@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:59:08.163Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Hub Spoke Architecture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please find recommended networking -Hub and Spoke- architecture here&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/sap/sap-overview\\\">SAP on Azure Architecture Guide - Azure Architecture Center | Microsoft Docs</a></div><div>HUB and Spoke with peered vnets are generally recommended, where Hub acts as connectivity/security/management entry point vnet, while Spoke vnet isolates workloads like SAP.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/hybrid-networking/hub-spoke?tabs=cli\\\">Hub-spoke network topology in Azure - Azure Reference Architectures | Microsoft Docs</a>&nbsp;Vnet peering allows seamless connection, vnet communication is using Azure backbone.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-peering-overview\\\">Azure Virtual Network peering | Microsoft Docs</a>&nbsp;Inbound/outbound data transfer between peered vnets is charged&nbsp;<a href=\\\"https://azure.microsoft.com/en-us/pricing/details/virtual-network/\\\">Virtual Network Pricing | Microsoft Azure</a></div><div><br></div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General; Networking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/303\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/325\"\n    },\n    {\n      \"id\": 322,\n      \"rev\": 15,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-03-02T09:03:40.283Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T07:59:38.257Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Certified VMs for SAP on Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Starting point: SAP certified Azure SKU documentation&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-certifications\\\">Microsoft Azure certifications for SAP - Azure Virtual Machines | Microsoft Docs</a> </div><div><br></div><div><span>SAP HANA&nbsp;</span><a href=\\\"https://www.sap.com/dmc/exp/2014-09-02-hana-hardware/enEN/#/solutions?filters=iaas;ve:24\\\">Certified and Supported SAP HANA® Hardware Directory</a><span>, for production workloads it is mandatory to use one of the SKU listed there. <span style=\\\"display:inline !important;\\\">You must click on the entry to reveal other details and possible restrictions imposed.</span></span> </div><div><span>For HANA non-prod it is recommended to use SKU listed in SAP note&nbsp;</span><a href=\\\"https://launchpad.support.sap.com/#/notes/1928533\\\">1928533 - SAP Applications on Azure: Supported Products and Azure VM types - SAP ONE Support Launchpad</a><span>.&nbsp;</span><span>This SAP note is documenting supported SKU for SAP NetWeaver, also outlining which SAP products/kernel versions/os versions/db versions are being supported.</span><br> </div><div><span><br></span> </div><div><br> </div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General; HANA\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/305\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/322\"\n    },\n    {\n      \"id\": 319,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:56:41.22Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:06:46.977Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"NFS solutions for SAP in Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>SAP NetWeaver and SAP HANA shared directories in a high availability environment do have a need for high available NFS solution to store and allow access to SAP shared directories.</div><div>Part of high-availability for SAP NetWeaver NFS is a separate NFS cluster in order to provide access to shared directories to clustered SAP systems.&nbsp;</div><div><br></div><div>SLES:&nbsp;&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-suse-nfs\\\">High availability for NFS on Azure VMs on SLES - Azure Virtual Machines | Microsoft Docs</a>&nbsp;<span>&nbsp;</span></div><div><span><br></span></div><div><span>RedHat:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-rhel-glusterfs\\\">GlusterFS on Azure VMs on RHEL for SAP NetWeaver - Azure Virtual Machines | Microsoft Docs</a></div><div><br></div><div>Another NFS solution providing access to SAP shared directories for clustered systems is using Azure NetApp Files&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/high-availability-guide-suse-netapp-files\\\">Azure VMs high availability for SAP NW on SLES with Azure NetApp Files - Azure Virtual Machines | Microsoft Docs</a></div><div><br></div><div>A second NFS solution for SAP shared directories is NFS 4.1 on Azure files which is currently in preview&nbsp;<a href=\\\"https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/deploy-sap-ascs-ers-with-azure-files-nfs-v4-1-shares/ba-p/2038320\\\">Deploy SAP ASCS/ERS with Azure Files NFS v4.1 shares - Microsoft Tech Community</a></div><div><br></div><div>NFS shares based on NFS v3 or NFS 4.x could also be used for HANA/DB file backup&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/sap-hana-backup-file-level#copy-sap-hana-backup-files-to-nfs-share\\\">SAP HANA Azure Backup on file level - Azure Virtual Machines | Microsoft Docs</a>, please keep in mind that this solution has to be deployed and managed on your own.</div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure NetApp Files; General; High Availability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div>as per discussion earlier, not breaking out into too many individual docs to make it easier for customer. Specifics are for docs to own, where it make sense individual topic/tasks should be created however</div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Related\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/327\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Robert Biro mentioned work item #319 in #327\",\n            \"name\": \"Related\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/319\"\n    },\n    {\n      \"id\": 318,\n      \"rev\": 15,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:56:21.19Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:03:48.853Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Azure NetApp Files for SAP RDBMS storage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure NeApp Files can be used for storing HANA and Oracle RDBMS.&nbsp;</div><div>NFS 4.1 is a requirement at least for /log and /data.</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-netapp\\\">SAP HANA Azure virtual machine ANF configuration - Azure Virtual Machines | Microsoft Docs</a>&nbsp;</div><div><br></div><div>For low latency requirements it is essential to follow the storage sizing rules and either use Premium or Ultra service level.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/hana-vm-operations-netapp#sizing-for-hana-database-on-azure-netapp-files\\\">SAP HANA Azure virtual machine ANF configuration - Azure Virtual Machines | Microsoft Docs</a>&nbsp;The provided sizing information are minimum requirements and might differ to real life implementation and IOPS/throughput needs of concrete customer situations.<br></div><div>Oracle RDBMS starting w. version 19c</div><div><a href=\\\"https://techcommunity.microsoft.com/t5/running-sap-applications-on-the/deploy-sap-anydb-oracle-19c-with-azure-netapp-files/ba-p/2064043\\\">Deploy SAP AnyDB (Oracle 19c) with Azure NetApp Files - Microsoft Tech Community</a><br></div><div><a href=\\\"https://launchpad.support.sap.com/#/notes/2015553\\\">2015553 - SAP on Microsoft Azure: Support prerequisites - SAP ONE Support Launchpad</a><br></div><div><br></div><div>So far no other SAP NetWeaver DBMS supported with Azure NetApp Files, please recheck SAP support note 2015553 (link above).</div>\",\n        \"System.AssignedTo\": \"Petra Peters <pepeters@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure NetApp Files; HANA; Oracle\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div>Last line addresses supported DBs (Ora/HANA currently)</div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/318\"\n    },\n    {\n      \"id\": 317,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:56:02.52Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:03:20.64Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"Non-RDBMS storage considerations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Premium storage - including Ultra Disk and Azure NetApp Files - are recommended storage devices for all SAP systems. </div><div><br> </div><div>Some systems, particularly non-production and not under high load, could be used with lesser storage solutions.&nbsp; </div><div>Following table contains a decision matrix when Standard storage could be used and which premium storage type to utilize - <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/planning-guide-storage#storage-recommendations-for-sap-storage-scenarios\\\">link to documentation</a>. </div>\",\n        \"System.AssignedTo\": \"Robert Biro <robiro@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/317\"\n    },\n    {\n      \"id\": 316,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:55:52.683Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:03:15.943Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"SAP ASE\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Link to the public documentation:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sapase#recommendations-on-vm-and-disk-structure-for-sap-ase-deployments\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_sapase#recommendations-on-vm-and-disk-structure-for-sap-ase-deployments</a></div><div><br></div><div><div style=\\\"box-sizing:border-box;margin:0px;color:rgba(0, 0, 0, 0.9);\\\">General recommendations:</div><div style=\\\"box-sizing:border-box;margin:0px;\\\"><ol style=\\\"box-sizing:border-box;padding-left:25px;\\\"><li style=\\\"color:rgba(0, 0, 0, 0.9);\\\">Consider testing the enablement of Write Accelerator on series M for the log files. For more information, read the <u><a href=\\\"https://launchpad.support.sap.com/#/notes/2816580\\\">SAP note 2816580 - Feature enhancement for support of Azure Write Accelerator - ASE</a></u></li><li style=\\\"color:rgba(0, 0, 0, 0.9);\\\">The disk-level cache should be set to NONE.<br></li><li style=\\\"color:rgba(0, 0, 0, 0.9);\\\">To balance disk IO across all available Azure disks either Windows Storage Spaces or Linux LVM2 needs to be used.</li></ol></div><br></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"SAP ASE\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/316\"\n    },\n    {\n      \"id\": 315,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2021-02-02T09:55:41.017Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-06T08:03:11.407Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"MaxDB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure storage best practices for SAP MaxDB follow the general recommendations mentioned in&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_general#65fa79d6-a85f-47ee-890b-22e794f51a64\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_general#65fa79d6-a85f-47ee-890b-22e794f51a64</a><br></div><div><br></div><div>For a detailed guide about&nbsp;SAP MaxDB, liveCache, and Content Server deployment on Azure VMs:&nbsp;</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_maxdb#specifics-for-sap-livecache-deployments-on-windows\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/dbms_guide_maxdb#specifics-for-sap-livecache-deployments-on-windows</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": \"Jesus De Miguel <jedemigu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"MaxDB\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/315\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-SapOnAzure/WorkItems/User Story.json",
    "content": "{\n  \"count\": 11,\n  \"value\": [\n    {\n      \"id\": 302,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-30T11:59:28.737Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T12:51:05.483Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"1 - Foundations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Foundations for a working SAP landscape in Azure.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/352\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/304\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/328\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/363\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/371\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/332\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/437\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/302\"\n    },\n    {\n      \"id\": 303,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-02T09:23:09.327Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T19:36:28.083Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"2 - Networking architecture for SAP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General; Networking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/325\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/347\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/345\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/303\"\n    },\n    {\n      \"id\": 305,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-02T09:48:46.733Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T19:39:00.033Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"3 - Compute (VM) for SAP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/322\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/331\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/305\"\n    },\n    {\n      \"id\": 306,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-02-02T09:48:56.817Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T19:42:38.397Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"4 - Storage for SAP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/311\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/318\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/316\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/317\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/315\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/321\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/319\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/312\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/313\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/320\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/310\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/314\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/306\"\n    },\n    {\n      \"id\": 307,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-02T09:50:26.09Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T20:02:23.54Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"5 - High-availability for SAP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"High Availability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/365\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/368\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/342\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/327\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/340\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/341\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/339\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/307\"\n    },\n    {\n      \"id\": 308,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-02-02T09:50:31.913Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T20:03:42.01Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"6 - Disaster Recovery for SAP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"BCDR\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/348\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/367\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/308\"\n    },\n    {\n      \"id\": 309,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-02T09:51:10.35Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T20:04:12.293Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"7 - Backup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"BCDR\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/338\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/508\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/509\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/329\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/330\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/309\"\n    },\n    {\n      \"id\": 333,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-09T09:16:17.04Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T20:04:56.09Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"8 - Monitoring\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/335\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/334\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/333\"\n    },\n    {\n      \"id\": 336,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-09T09:17:45.883Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T20:05:36.087Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"9 - Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/337\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/364\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/336\"\n    },\n    {\n      \"id\": 343,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-03-09T17:25:02.36Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-22T13:10:15.037Z\",\n        \"System.ChangedBy\": \"Al Morrison <almorris@microsoft.com>\",\n        \"System.Title\": \"10 - SAP with Azure surround services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Integration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/436\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/359\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/361\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/346\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/344\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/343\"\n    },\n    {\n      \"id\": 366,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SAP on Azure quick-start guide\",\n        \"System.TeamProject\": \"SAP on Azure quick-start guide\",\n        \"System.IterationPath\": \"SAP on Azure quick-start guide\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-23T09:22:05.51Z\",\n        \"System.CreatedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-30T20:08:54.3Z\",\n        \"System.ChangedBy\": \"Robert Biro <robiro@microsoft.com>\",\n        \"System.Title\": \"11 - Community articles and further reading\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"General\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/370\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/356\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/353\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/357\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/349\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/355\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/350\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/358\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/354\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/369\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/351\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/bobsmess/_apis/wit/workItems/366\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/Extensions.json",
    "content": "{}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/ImportSourceCode/WVD Guidance.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/ricmart/WVD Guidance/_git/WVD Guidance\"\n    },\n    \"serviceEndpointId\": \"$WVD Guidance-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"WVD Guidance\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/ServiceEndpoints/WVD Guidance-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"WVD Guidance-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/ricmart/WVD Guidance/_git/WVD Guidance\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"1c3028ac-1303-428f-b817-f2486bb24624\",\n    \"name\": \"WVD Guidance Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/Teams/WVD Guidance Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/Teams/WVD Guidance Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/Teams/WVD Guidance Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/Teams/WVD Guidance Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/Teams/WVD Guidance Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/WorkItems/Task.json",
    "content": "{\n  \"count\": 32,\n  \"value\": [\n    {\n      \"id\": 2296,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:30:19.613Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:30:19.613Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"01 - What is WVD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>What\\nis WVD: <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/overview\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/overview</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2296\"\n    },\n    {\n      \"id\": 2297,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:30:48.403Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:30:48.403Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"02 - WVD Requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>WVD\\nRequirements: <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/overview#requirements\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/overview#requirements</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2297\"\n    },\n    {\n      \"id\": 2298,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:31:10.01Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:31:10.01Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"03 - Supported OS images\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Supported\\nOS images: <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/overview#supported-virtual-machine-os-images\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/overview#supported-virtual-machine-os-images</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2298\"\n    },\n    {\n      \"id\": 2299,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:31:32.167Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:31:32.167Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"04 - Network guidelines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Network\\nguidelines: <a href=\\\"https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/network-guidance?context=/azure/virtual-desktop/context/context\\\">https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/network-guidance?context=/azure/virtual-desktop/context/context</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2299\"\n    },\n    {\n      \"id\": 2300,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:31:54.197Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:31:54.197Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"05 - Windows Virtual Desktop experience estimator\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Windows\\nVirtual Desktop experience estimator: <a href=\\\"https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/network-guidance?context=/azure/virtual-desktop/context/context#windows-virtual-desktop-experience-estimator\\\">https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/network-guidance?context=/azure/virtual-desktop/context/context#windows-virtual-desktop-experience-estimator</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2300\"\n    },\n    {\n      \"id\": 2301,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:33:28.58Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:33:28.58Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"06 - Virtual Machine Guidance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Virtual\\nmachine sizing guidelines: <a href=\\\"https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/virtual-machine-recs?context=/azure/virtual-desktop/context/context\\\">https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/virtual-machine-recs?context=/azure/virtual-desktop/context/context</a><div><br></div><div>Multi-session\\nrecommendations: <a href=\\\"https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/virtual-machine-recs#multi-session-recommendations\\\">https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/virtual-machine-recs#multi-session-recommendations</a><br></div><div><br></div><div>Single-session\\nrecommendations: <a href=\\\"https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/virtual-machine-recs?context=/azure/virtual-desktop/context/context#single-session-recommendations\\\">https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/virtual-machine-recs?context=/azure/virtual-desktop/context/context#single-session-recommendations</a><br></div><div><br></div><div>General\\nvirtual machine recommendations: <a href=\\\"https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/virtual-machine-recs?context=/azure/virtual-desktop/context/context#general-virtual-machine-recommendations\\\">https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/virtual-machine-recs?context=/azure/virtual-desktop/context/context#general-virtual-machine-recommendations</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2301\"\n    },\n    {\n      \"id\": 2302,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:33:51.353Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:34:13.667Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"07 - WVD Architecture Sample\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div>WVD\\nArchitecture sample: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop#architecture\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop#architecture</a><br></div></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2302\"\n    },\n    {\n      \"id\": 2303,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:35:13.16Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:35:13.16Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"08 - FSLogix\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>FSLogix\\nfor enterprise: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix</a><br></div><div><br></div><div>Storage\\noptions for FSLogix profile containers: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#storage-options-for-fslogix-profile-containers\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#storage-options-for-fslogix-profile-containers</a><br></div><div><br></div><div>Azure\\nFiles Best practices: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#azure-files-best-practices\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#azure-files-best-practices</a><br></div><div><br></div><div>Azure\\nNetApp Files Best Practices: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#azure-netapp-files-best-practices\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#azure-netapp-files-best-practices</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2303\"\n    },\n    {\n      \"id\": 2304,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:36:11.433Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:36:11.433Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"09 - Best Practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Best\\npractices for WVD: <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/fslogix-containers-azure-files#best-practices-for-windows-virtual-desktop\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/fslogix-containers-azure-files#best-practices-for-windows-virtual-desktop</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2304\"\n    },\n    {\n      \"id\": 2305,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:38:13.257Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:38:13.257Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"01 - Deploy an Azure AD Tenant\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Deploy\\nan Azure AD Tenant: <a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-create-new-tenant\\\">https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-create-new-tenant</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2305\"\n    },\n    {\n      \"id\": 2306,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:38:37.393Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:38:37.393Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"02 - Deploy an Azure Subscription\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Deploy\\nan Azure Subscription: <a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/create-subscription\\\">https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/create-subscription</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2306\"\n    },\n    {\n      \"id\": 2307,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:41:04.653Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:41:04.653Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"03 - Deploy Azure infrastructure and AD DS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/quick-create-portal\\\">Virtual\\nNetwork</a><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-manage-subnet#add-a-subnet\\\">Subnet</a><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/network-security-groups-overview\\\">NSG</a>&nbsp;(Permits\\nAD Traffic, RDP incoming traffic, restricts DMZ access)<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/manage-virtual-network#change-dns-servers\\\">DNS\\nconfigured to point to the domain controller</a><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/windows/quick-create-portal\\\">Virtual\\nMachine</a>:</div><div><span style=\\\"\\\"></span></div><div><ul><li><span style=\\\"\\\">Active\\n     Directory Domain Services installed and configured</span></li><li>Azure\\nAD Connect installed and ready for configuration<br></li></ul></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2307\"\n    },\n    {\n      \"id\": 2308,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:41:53.813Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:41:53.813Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"04 - Configure Azure AD Connect with AD DS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">What is Azure AD Connect: </span><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/hybrid/whatis-azure-ad-connect\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/active-directory/hybrid/whatis-azure-ad-connect</a><br>Azure\\nAD connect and Azure AD Connect Health installation: <a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-install-roadmap\\\">https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-install-roadmap</a><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2308\"\n    },\n    {\n      \"id\": 2309,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:43:00.45Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:43:00.45Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"05 - Windows Virtual Desktop environment concepts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">Windows Virtual Desktop\\n     environment concepts:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/environment-setup\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/environment-setup</a><br><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2309\"\n    },\n    {\n      \"id\": 2310,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:43:31.36Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:43:31.36Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"06 - Create Azure AD Security Groups for WVD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">Create Azure AD Security\\n     Groups for WVD:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-groups-create-azure-portal\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-groups-create-azure-portal</a><br><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2310\"\n    },\n    {\n      \"id\": 2311,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:44:01.553Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:44:01.553Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"07 - Assign users to Groups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">Assign users to Groups:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-groups-members-azure-portal\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-groups-members-azure-portal</a><span style=\\\"\\\"><br></span><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2311\"\n    },\n    {\n      \"id\": 2312,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:46:47.337Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:46:47.337Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"08 - Create a Master Image for WVD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">Create a Master Image for WVD:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/windows/capture-image-resource\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/windows/capture-image-resource</a><div><span style=\\\"\\\"><br></span><span style=\\\"\\\">Install Office on a master\\n     VHD image:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/install-office-on-wvd-master-image\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/install-office-on-wvd-master-image<br></a><span style=\\\"\\\">Install Microsoft Teams on a\\n     WVD:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/teams-on-wvd\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/teams-on-wvd<br></a><span style=\\\"\\\"><a href=\\\"https://www.youtube.com/watch?v=RfbolIgPcBY&amp;t=661s\\\">Azure Academy - Teams AV Redirect</a></span></div><div><span style=\\\"\\\">Download and install FSLogix:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/install-ht\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/fslogix/install-ht</a></div><div><span style=\\\"\\\">OS Settings | P</span><span style=\\\"\\\">repare and\\n      customize a master VHD image:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-customize-master-image\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-customize-master-image<br></a><span style=\\\"\\\">OS Settings | Prepare a Windows VHD or VHDX\\n     to upload to Azure:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/windows/prepare-for-upload-vhd-image\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/windows/prepare-for-upload-vhd-image<br></a><span style=\\\"\\\">OS Settings | Run Disk Cleanup:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cleanmgr\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cleanmgr</a><p style=\\\"margin:0in;margin-left:1.125in;\\\" lang=pt-BR>&nbsp;</p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2312\"\n    },\n    {\n      \"id\": 2313,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:47:55.233Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T17:47:55.233Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"09 - Image Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://www.youtube.com/watch?v=PCWJEoG8X-I\\\">Azure Academy - Image Management</a></div><div><a href=\\\"https://www.youtube.com/watch?v=2LxvwR9LGWQ\\\">Azure Academy - Shared Image Galley</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2313\"\n    },\n    {\n      \"id\": 2314,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T21:48:11.983Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T21:48:11.983Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"10 - Define a strategy to store FSLogix profiles containers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Storage\\noptions for FSLogix Profile containers: <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/store-fslogix-profile\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/store-fslogix-profile</a><br></div><div><ol><li>Azure\\nFiles and Active Directory Domain Services:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-file-share\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-file-share</a><br></li><li>Azure NetApp Files:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-fslogix-profile-container\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-fslogix-profile-container</a></li><li>Windows File Server:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-user-profile\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-user-profile</a></li><li>Azure Files and Azure Active Directory Domain Services:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-profile-container-adds\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-profile-container-adds</a></li></ol></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2314\"\n    },\n    {\n      \"id\": 2315,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T21:55:56.383Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T21:57:43.247Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"11 - FSLogix General Configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span>Use\\nFSLogix Group Policy Template Files:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/use-group-policy-templates-ht\\\">https://docs.microsoft.com/en-us/fslogix/use-group-policy-templates-ht</a><br><span><br></span><div><span>Profile\\nContainer registry configuration reference:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-referenc</a><br><span><br></span></div><div><span>Antivirus\\n     exclusions: </span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#antivirus-exclusions\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#antivirus-exclusions</a></div><div><br></div><div>FSLogix Reference Links:</div><div><ul><li><a href=\\\"https://www.youtube.com/watch?v=9S5A1IJqfOQ&amp;t=647s\\\">Azure Academy - FSLogix with Azure Fileshare</a></li><li><a href=\\\"https://www.youtube.com/watch?v=bswIbTB62mY\\\">Azure Academy - NetApp</a></li></ul></div><div><div><b style=\\\"\\\">GPO Recommendations:</b><br></div><div><ul><li><span>Enabled\\n*** - Mandatory:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/configure-profile-container-tutorial#configure-profile-container-registry-settings\\\">https://docs.microsoft.com/en-us/fslogix/configure-profile-container-tutorial#configure-profile-container-registry-settings</a></li><li><span>VHD\\nLocation *** - Mandatory:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/configure-profile-container-tutorial#configure-profile-container-registry-settings\\\">https://docs.microsoft.com/en-us/fslogix/configure-profile-container-tutorial#configure-profile-container-registry-settings</a><br></li><li><span>Initiate\\ndefinition update on start up:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-event-based-updates-microsoft-defender-antivirus#use-group-policy-to-download-updates-when-microsoft-defender-antivirus-is-not-present\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-event-based-updates-</a><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-event-based-updates-microsoft-defender-antivirus#use-group-policy-to-download-updates-when-microsoft-defender-antivirus-is-not-present\\\">microsoft-defender-antivirus#use-group-policy-to-download-updates-when-microsoft-defender-antivirus-is-not-present</a></li><li><span>Specify\\ninterval to check for definition updates:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-protection-update-schedule-microsoft-defender-antivirus#use-group-policy-to-schedule-protection-updates\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-protection-update-schedule-microsoft-defender-antivirus#use-group-policy-to-schedule-protection-updates</a><br></li><li><span>Define\\nnumber of days before virus definitions are considered out of date:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-outdated-endpoints-microsoft-defender-antivirus#use-group-policy-to-specify-the-number-of-days-before-protection-is-considered-out-of-date\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-outdated-endpoints-microsoft-defender-antivirus#use-group-policy-to-specify-the-number-of-days-before-protection-is-considered-out-of-date</a><br></li><li><span>Define\\nthe number of days before spyware definitions are considered out of date:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-outdated-endpoints-microsoft-defender-antivirus#use-group-policy-to-specify-the-number-of-days-before-protection-is-considered-out-of-date\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-outdated-endpoints-microsoft-defender-antivirus#use-group-policy-to-specify-the-number-of-days-before-protection-is-considered-out-of-date</a><br></li><li><span>Define\\nthe number of days before a catchup day is required:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-outdated-endpoints-microsoft-defender-antivirus#use-group-policy-to-enable-and-configure-the-catch-up-update-feature\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-outdated-endpoints-microsoft-defender-antivirus#use-group-policy-to-enable-and-configure-the-catch-up-update-feature</a><br></li><li><span>Check\\nfor latest virus and spyware definitions on startup:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-event-based-updates-microsoft-defender-antivirus#check-for-protection-updates-on-startup\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-event-based-updates-microsoft-defender-antivirus#check-for-protection-updates-on-startup</a><br></li><li><span>Allow\\nreal time definition updates on report to microsoft MAPS:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-event-based-updates-microsoft-defender-antivirus#use-group-policy-to-automatically-download-recent-updates-based-on-cloud-delivered-protection\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-event-based-updates-microsoft-defender-antivirus#use-group-policy-to-automatically-download-recent-updates-based-on-cloud-delivered-protection</a><br></li><li><span>Allow\\ndefinition updates from microsoft update:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-updates-mobile-devices-vms-microsoft-defender-antivirus#use-group-policy-to-opt-in-to-microsoft-update\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/manage-updates-mobile-devices-vms-microsoft-defender-antivirus#use-group-policy-to-opt-in-to-microsoft-update</a><br></li><li><span>Dynamic\\nVHDX allocation:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#isdynamic\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#isdynamic</a><br></li><li><span>Extension\\nExclusions:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/configure-extension-file-exclusions-microsoft-defender-antivirus#use-group-policy-to-configure-folder-or-file-extension-exclusions\\\">https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/configure-extension-file-exclusions-microsoft-defender-antivirus#use-group-policy-to-configure-folder-or-file-extension-exclusions</a><br></li><li><span>SID\\ndirectory name matching string:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#siddirnamematch\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#siddirnamematch</a><br></li><li><span>SID\\ndirectory name pattern string:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#siddirnamepattern\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#siddirnamepattern</a><br></li><li><span>Swap\\ndirectory name components:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#flipflopprofiledirectoryname\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#flipflopprofiledirectoryname</a><br></li><li><span>Virtual\\ndisk type should be VHDX:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#volumetype\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#volumetype</a><br></li><li><span>Size\\nin Mbs:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#sizeinmbs\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#sizeinmbs</a><br></li><li><span>Delete\\nlocal profile when FsLogix Profile should apply - Optional*:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#deletelocalprofilewhenvhdshouldapply\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#deletelocalprofilewhenvhdshouldapply</a><br></li><li><span>Prevent\\nLogin with failure - Optional*:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#preventloginwithfailure\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#preventloginwithfailure</a><br></li><li><span>Prevent\\nlogin with temp profile -Optional:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#preventloginwithtempprofile\\\">https://docs.microsoft.com/en-us/fslogix/profile-container-configuration-reference#preventloginwithtempprofile</a><br></li></ul></div><div><br></div></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2315\"\n    },\n    {\n      \"id\": 2316,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T21:58:33.437Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T21:58:33.437Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"12 - Using MSIX app attach \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">What is MSIX app attach:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/what-is-app-attach\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/what-is-app-attach<br></a><span style=\\\"\\\">Set up MSIX app attach:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/app-attach\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/app-attach<br></a><span style=\\\"\\\">MSIX app attach FAQ:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/app-attach-faq\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/app-attach-faq</a><span style=\\\"\\\"><br></span><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2316\"\n    },\n    {\n      \"id\": 2317,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T21:59:07.06Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T21:59:07.06Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"13 - Create a Host Pool for Pooled of Personal Desktops:\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">Create a Host Pool for Pooled\\n     of Personal Desktops:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace</a><span style=\\\"\\\"><br></span><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2317\"\n    },\n    {\n      \"id\": 2318,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:00:49.97Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:00:49.97Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"14 - Create a Host Pool for Pooled Remote Apps\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Publish built-in apps in Windows Virtual Desktop: <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/publish-apps\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/publish-apps</a><br></div><div>Manage app groups with the Azure portal:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/manage-app-groups\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/manage-app-groups</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2318\"\n    },\n    {\n      \"id\": 2319,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:21:41.223Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:21:41.223Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"15 - Configure host pool settings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">RDP Properties:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/customize-rdp-properties\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/customize-rdp-properties</a><br><span style=\\\"\\\">Configure device redirections\\n     (Mic, Speaker, Camera, Printer, Clipboard, USB, Local Drive, Plug and Play\\n     Devices):&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-device-redirections\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-device-redirections</a><br><span style=\\\"\\\">Host pool load-balancing methods:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/host-pool-load-balancing\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/host-pool-load-balancing</a><br><div>Configure the Windows Virtual Desktop load-balancing method: <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-load-balancing\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-load-balancing</a><br></div><span style=\\\"\\\">Personal desktop assignment\\n     type:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-personal-desktop-assignment-type\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-personal-desktop-assignment-type</a><br><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2319\"\n    },\n    {\n      \"id\": 2320,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:22:40.56Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:22:40.56Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"16 - Connect WVD with clients\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">Windows Desktop Client:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-windows-7-10\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-windows-7-10</a><br><span style=\\\"\\\">HTML5 Web Client:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-web\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-web</a><br><span style=\\\"\\\">Android Client:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-android\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-android</a><br><span style=\\\"\\\">macOS Client:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-macos\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-macos</a><br><span style=\\\"\\\">iOS Client:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-ios\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/connect-ios</a><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2320\"\n    },\n    {\n      \"id\": 2321,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:23:33.04Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:23:33.04Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"17 - Setup e-mail discovery to RDS feed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Setup\\ne-mail discovery to RDS feed:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/rds-email-discovery\\\">https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/rds-email-discovery</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2321\"\n    },\n    {\n      \"id\": 2322,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:25:12.74Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:25:12.74Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"18 - Setup Monitoring for WVD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure\\nLog Analytics and Azure Monitor:&nbsp;<a href=\\\"https://techcommunity.microsoft.com/t5/windows-it-pro-blog/proactively-monitor-arm-based-windows-virtual-desktop-with-azure/ba-p/1508735\\\">https://techcommunity.microsoft.com/t5/windows-it-pro-blog/proactively-monitor-arm-based-windows-virtual-desktop-with-azure/ba-p/1508735</a><br></div><div>Sepago\\nSolution:&nbsp;<a href=\\\"https://github.com/MarcelMeurer/LogAnalytics-for-Citrix-and-RDS\\\">https://github.com/MarcelMeurer/LogAnalytics-for-Citrix-and-RDS</a><br></div><div>Azure Academy - Monitoring Workbook:&nbsp;<a href=\\\"https://www.youtube.com/watch?v=ERftVHEy5A4\\\">https://www.youtube.com/watch?v=ERftVHEy5A4</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2322\"\n    },\n    {\n      \"id\": 2323,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:29:34.887Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:29:34.887Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"19 - Setup the WVD Scaling Tool\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Automation:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-scaling-script\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-scaling-script</a><br></div><div>Azure Academy - Scaling Automation:&nbsp;<a href=\\\"https://www.youtube.com/watch?v=4zDazJsa2Zk&amp;t=604s\\\">https://www.youtube.com/watch?v=4zDazJsa2Zk&amp;t=604s</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2323\"\n    },\n    {\n      \"id\": 2324,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:31:49.07Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:31:49.07Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"20 - WVD Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"\\\">Enabling MFA to WVD:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-mfa\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-mfa</a><div><span style=\\\"font-size:10.5pt;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">Azure Academy - Session Host Security:&nbsp;<a href=\\\"https://www.youtube.com/watch?v=5aK6BoXcZnU&amp;t=328s\\\">https://www.youtube.com/watch?v=5aK6BoXcZnU&amp;t=328s</a><br></span><div><span style=\\\"\\\">Security Best practices for\\n     WVD:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/security-guide\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/security-guide</a><br><span style=\\\"\\\">Safe URL List:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/safe-url-list\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/safe-url-list</a><br><span style=\\\"\\\">Use\\nAzure Firewall to protect WVD:&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/firewall/protect-windows-virtual-desktop\\\" style=\\\"\\\">https://docs.microsoft.com/en-us/azure/firewall/protect-windows-virtual-desktop</a><br></div></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2324\"\n    },\n    {\n      \"id\": 2325,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:32:34.647Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:32:34.647Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"21 - Configuring automatic updates using Endpoint Configuration Manager\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Configuring\\nautomatic updates using Endpoint Configuration Manager:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-automatic-updates\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-automatic-updates</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2325\"\n    },\n    {\n      \"id\": 2326,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T22:33:51.923Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-21T22:33:51.923Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"22 - WVD BCDR\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Setup\\nBCDR Plan: <a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/disaster-recovery\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/disaster-recovery</a><br></div><div>Disaster\\nrecovery considerations: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#disaster-recovery\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#disaster-recovery</a><br></div><div>Backup\\nand restore considerations: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#backup-and-restore\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop-fslogix#backup-and-restore</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2326\"\n    },\n    {\n      \"id\": 2779,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-29T16:23:23.907Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-29T16:23:23.907Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"23 - GPO Suggestions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><b>Computer Configuration &gt; Policies &gt; Administrative Templates &gt; Windows Components &gt; Remote Desktop Services &gt; Remote Desktop Session Host &gt; Session Time Limits:</b><br></span><div><br></div><div><ul><li>Set time limit for active but idle Remote Desktop Services sessions: <b>Enabled </b>(e.g., 6 hours)</li><li>Set time limit for disconnected sessions: <b>Enabled </b>(e.g., 8 hours)</li><li>Set time limit for logoff of RemoteApp sessions: <b>Enabled </b>(e.g., 6 hours)</li></ul></div><div><br></div><div><span style=\\\"\\\"><b>User Configuration &gt; Policies &gt; Administrative Templates &gt; Control Panel &gt; Personalization:</b></span><br></div><div><br></div><div><ul><li>Force specific screen saver: <b>Enabled</b>&nbsp;(e.g., %winDir%\\\\System32\\\\ssText3d.scr)</li><li><span style=\\\"\\\">Password protect the screen saver: <b>Enabled</b></span></li><li>Prevent changing screen saver: <b>Enabled</b></li><li>Screen saver timeout: <b>Enabled </b>(e.g.,&nbsp;80s)</li></ul></div></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2779\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/AC-WVDGuidance/WorkItems/User Story.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 2294,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:28:18.513Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-23T17:54:19.293Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"01 - WVD Architecture Guidance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2300\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2301\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2298\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2297\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2304\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2296\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2299\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2303\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2294\"\n    },\n    {\n      \"id\": 2295,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"WVD Guidance\",\n        \"System.TeamProject\": \"WVD Guidance\",\n        \"System.IterationPath\": \"WVD Guidance\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-21T17:28:37.657Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-23T17:54:19.293Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"02 - WVD Deployment Guidance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2308\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2324\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2315\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2316\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2317\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2321\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2313\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2322\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2326\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2314\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2319\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2323\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2312\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2320\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2318\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2305\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2310\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2325\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2311\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2295\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Dashboard/Queries/All Tasks.json",
    "content": "{\n  \"name\": \"All Tasks\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Dashboard/Queries/All items, all states.json",
    "content": "{\n  \"name\": \"All items, all states\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Dashboard/Queries/Assigned to me.json",
    "content": "{\n  \"name\": \"Assigned to me\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Dashboard/Queries/Followed work items.json",
    "content": "{\n  \"name\": \"Followed work items\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Dashboard/Queries/Workload Template.json",
    "content": "{\n  \"name\": \"Workload Template\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.Description], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and Source.[System.WorkItemType] <> '' and Source.[System.State] <> '' and Source.[System.Tags] contains 'Workload Template') and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and Target.[System.WorkItemType] <> '') mode (Recursive)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/ImportSourceCode/Cloud Adoption Plan Master.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/CAF ADO Strategy-Plan-Ready-Gov/_git/Cloud Adoption Plan Master\"\n    },\n    \"serviceEndpointId\": \"$Cloud Adoption Plan Master-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/ServiceEndpoints/Cloud Adoption Plan Master-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Cloud Adoption Plan Master-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/wayneme/CAF ADO Strategy-Plan-Ready-Gov/_git/Cloud Adoption Plan Master\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Teams/CAF ADO Strategy-Plan-Ready-Gov Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Teams/CAF ADO Strategy-Plan-Ready-Gov Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Teams/CAF ADO Strategy-Plan-Ready-Gov Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Teams/CAF ADO Strategy-Plan-Ready-Gov Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Teams/CAF ADO Strategy-Plan-Ready-Gov Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"0a41b00d-9112-41bd-bfd4-866dc83a5487\",\n    \"name\": \"CAF ADO Strategy-Plan-Ready-Gov Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/WorkItems/Epic.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 812,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:53.68Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:38:27.86Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Cloud Adoption Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Adoption Strategy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/821\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/812\"\n    },\n    {\n      \"id\": 813,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:54.013Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-05-13T20:05:30.96Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/820\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/813\"\n    },\n    {\n      \"id\": 814,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:54.367Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-17T20:03:53.777Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Cloud Ready\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Cloud Ready - review the Cloud Ready checklist.</div><div><br></div><div>In this section we provide links to content and topics which will influence some of the decisions</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/819\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3203\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/d21b1f7f-b0c1-47f0-9708-c15ec94b0753\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-14T02:12:40.383Z\",\n            \"id\": \"741518\",\n            \"resourceCreatedDate\": \"2020-05-14T02:12:21.93Z\",\n            \"resourceModifiedDate\": \"2020-05-14T02:12:21.653Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"38500\",\n            \"name\": \"readiness-checklist[1].docx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/814\"\n    },\n    {\n      \"id\": 941,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:05:08.81Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-02T22:30:44.843Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Cloud Govern\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"The cloud creates new paradigms for the technologies that support the business. Datacenters can be torn down and rebuilt with one line of code, we have to rethink traditional approaches.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/941\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/WorkItems/Feature.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 3203,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-24T18:31:17.707Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-29T00:04:47.727Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Getting Started with Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"box-sizing:border-box;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;list-style-type:decimal;display:inline !important;\\\">Review the<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/azure-readiness-guide/index\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\">Azure Readiness Guide</a><span style=\\\"box-sizing:border-box;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;list-style-type:decimal;display:inline !important;\\\"><span>&nbsp;</span>to become familiar with the tools and approaches needed in landing zone creation.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/931\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/814\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3203\"\n    },\n    {\n      \"id\": 819,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:55.523Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T19:04:04.323Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create the Landing zone, 3 potential paths: Enterprise Scale | Start Small and Grow | Partner built\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/landing-zone/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/921\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/814\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/819\"\n    },\n    {\n      \"id\": 820,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:55.77Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:13:23.74Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Build the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Define the Cloud Adoption Plan:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/plan/plan-intro\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/plan/plan-intro</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/813\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/929\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/930\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/820\"\n    },\n    {\n      \"id\": 821,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:56.163Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-07-16T18:12:58.087Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Define Adoption Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Define Adoption Strategy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/933\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/935\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/812\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/936\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/938\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/821\"\n    },\n    {\n      \"id\": 942,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:09:00.603Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T19:52:10.35Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Establish Governance Baseline & Governance Disciplines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"It is important to understand the gaps of governance that we have today, the Cloud Adoption Framework Governance Benchmark evaluation helps us determine where those gaps exist.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/946\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/947\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/949\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/944\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/948\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/941\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3241\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/945\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\"\n    },\n    {\n      \"id\": 3199,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:25:52.913Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T19:49:08.787Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tools to govern your Azure environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Fundamentals &amp; Governance\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3239\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2905\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3238\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2902\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/941\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3237\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3235\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2904\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/WorkItems/Task.json",
    "content": "{\n  \"count\": 190,\n  \"value\": [\n    {\n      \"id\": 826,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:56.937Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:41:00.55Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Identity Management Best Practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/security/fundamentals/identity-management-best-practices\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/826\"\n    },\n    {\n      \"id\": 3052,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:20:14.73Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Choose a networking architecture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/networking-options#choose-a-networking-architecture\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3052\"\n    },\n    {\n      \"id\": 3053,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:21:25.1Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Azure networking services overview\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/networking/networking-overview\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3053\"\n    },\n    {\n      \"id\": 835,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:00.237Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:21:31.453Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Common-Design-Principles-for-a-Hub-and-Spoke-VNET-Architecture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Hub-spoke network topology in Azurehttps://docs.microsoft.com/azure/architecture/reference-architectures/hybrid-networking/hub-spoke\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/835\"\n    },\n    {\n      \"id\": 3000,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:06:31.13Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Logs in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/data-platform-logs\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3000\"\n    },\n    {\n      \"id\": 3035,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:07:35.883Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Azure Express Route | Tutorial: Connect a virtual network to an Express Route circuit\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-linkvnet-portal-resource-manager\\\" style=\\\"font-family:Calibri, sans-serif;font-size:14.6667px;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;, sans-serif;\\\">Tutorial: Connect a virtual network to an Express Route circuit</span></a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3237\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3035\"\n    },\n    {\n      \"id\": 2996,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:03:49.383Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Manage Azure Monitor: Design a workspace deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/design-logs-deployment\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2996\"\n    },\n    {\n      \"id\": 2980,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - What is AAD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"- https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-whatis?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - What is AAD\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2980\"\n    },\n    {\n      \"id\": 3032,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:09:17.687Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Alerts: Improve incident response with alerting on Azure (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/learn/modules/incident-response-with-alerting-on-azure/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3032\"\n    },\n    {\n      \"id\": 3033,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:21:39.19Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Hub and spoke network topology\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/hub-spoke-network-topology\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3033\"\n    },\n    {\n      \"id\": 2951,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:58:54.843Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Blueprint definitions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/blueprints/overview#blueprint-definition?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Blueprint definitions\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2951\"\n    },\n    {\n      \"id\": 3207,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-24T23:57:18.63Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:40:26.76Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Build a readiness plan and map roles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"a) https://docs.microsoft.com/azure/cloud-adoption-framework/plan/adapt-roles-skills-processes | b) https://docs.microsoft.com/azure/cloud-adoption-framework/plan/suggested-skills\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/931\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3207\"\n    },\n    {\n      \"id\": 827,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:57.067Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:41:00.55Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Identity Access Management | Least Privilege Access\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/users-groups-roles/directory-admin-roles-secure?bc=%2fazure%2fcloud-adoption-framework%2f_bread%2ftoc.json\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/827\"\n    },\n    {\n      \"id\": 3022,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:08:47.87Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Visualizations: Create interactive reports with Azure Monitor workbooks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/app/usage-workbooks\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3238\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3022\"\n    },\n    {\n      \"id\": 2979,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Compare AD with AAD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-compare-azure-ad-to-ad?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Compare AD with AAD\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2979\"\n    },\n    {\n      \"id\": 3227,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:06:32.487Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:11.83Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - EA Portal - Getting Started\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/ea-portal-get-started\\\">https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/ea-portal-get-started</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3227\"\n    },\n    {\n      \"id\": 2305,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-08-14T14:37:33.19Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Sustainability targets and goals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://azure.microsoft.com/blog/microsoft-sustainability-calculator-helps-enterprises-analyze-the-carbon-emissions-of-their-it-infrastructure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2305\"\n    },\n    {\n      \"id\": 2238,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-02T19:07:21.05Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - App discovery & dependency mapping with Azure Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Gather inventory data. https://docs.microsoft.com/azure/cloud-adoption-framework/digital-estate/inventory\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/929\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2238\"\n    },\n    {\n      \"id\": 836,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:00.367Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:21:46.073Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Best Practices for Network Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/security/fundamentals/network-best-practices?bc=%2fazure%2fcloud-adoption-framework%2f_bread%2ftoc.json&amp;toc=%2fazure%2fcloud-adoption-framework%2ftoc.json\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/836\"\n    },\n    {\n      \"id\": 3001,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:06:37.43Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Logs querying: Get started with log queries in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/get-started-queries\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3001\"\n    },\n    {\n      \"id\": 3036,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:07:41.723Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Azure Express Route | Tutorial: Create and modify peering for an Express Route circuit\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-routing-portal-resource-manager\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;font-family:Calibri, sans-serif;font-size:14.6667px;\\\"><span style=\\\"box-sizing:border-box;font-family:&quot;Segoe UI Light&quot;, sans-serif;\\\">Tutorial: Create and modify peering for an Express Route circuit</span></a>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3237\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3036\"\n    },\n    {\n      \"id\": 2978,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - AAD Deployment Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-deployment-checklist-p2?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - AAD Deployment Guide\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2978\"\n    },\n    {\n      \"id\": 3016,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:08:11.837Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Network Insights (Preview)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/network-insights-overview\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3239\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3016\"\n    },\n    {\n      \"id\": 3027,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:09:24.513Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Alerts: Create, view and manage alerts based on Log Queries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-gb/azure/azure-monitor/platform/alerts-log\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3027\"\n    },\n    {\n      \"id\": 2989,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:03:55.943Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Cloud monitoring guide: Monitoring strategy for cloud deployment models\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/manage/monitor/cloud-models-monitor-overview - Cloud monitoring guide: Monitoring strategy for cloud deployment models\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2989\"\n    },\n    {\n      \"id\": 2977,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Tutorial Create a new tenant in AAD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-access-create-new-tenant?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2977\"\n    },\n    {\n      \"id\": 822,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:56.31Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:29:13.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Subscription Design\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">Plan your cloud deployment's <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/decision-guides/subscriptions/\\\">subscription design</a> and account structure\\nto match your organization's ownership, billing, and management capabilities.</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/822\"\n    },\n    {\n      \"id\": 2947,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:59:57.233Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - View service health notifications by using the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/service-health/service-notifications?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2904\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2947\"\n    },\n    {\n      \"id\": 2943,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:00:24.417Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Get started with Azure Advisor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/advisor/advisor-get-started?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Get started with Azure Advisor\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2905\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2943\"\n    },\n    {\n      \"id\": 2942,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:00:31.783Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Tutorial: Create Azure Advisor alerts on new recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/advisor/advisor-alerts-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Tutorial: Create Azure Advisoralerts on new recommendations\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2905\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2942\"\n    },\n    {\n      \"id\": 2946,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:00:05.1Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Tutorial: Create activity log alerts on service notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/service-health/alerts-activity-log-service-notifications-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2904\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2946\"\n    },\n    {\n      \"id\": 837,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:00.5Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:22:09.68Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Network segmentation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/hybrid-networking/network-level-segmentation\\\">Secure and govern workloads with network level segmentation</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/837\"\n    },\n    {\n      \"id\": 3002,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:06:45.893Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Logs querying: Azure Monitor log queries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/query-language\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3002\"\n    },\n    {\n      \"id\": 2972,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:14:25.893Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Initial subscriptions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-best-practices/initial-subscriptions?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal -\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2972\"\n    },\n    {\n      \"id\": 3023,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:08:55.35Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Visualizations: Create and share Azure Dashboards\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/azure-portal/azure-portal-dashboards\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3238\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3023\"\n    },\n    {\n      \"id\": 2966,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:12:05.873Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Manage access to your Azure environment with role-based access controls\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-access?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2966\"\n    },\n    {\n      \"id\": 2950,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:58:54.843Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Define standard resources with Azure Blueprints\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/learn/modules/intro-to-governance/5-azure-blueprints?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2950\"\n    },\n    {\n      \"id\": 3206,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-24T23:56:57.043Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:40:26.76Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Microsoft Learn Platform\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\"></span><span style=\\\"font-size:14px;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/learn/paths/azure-fundamentals/?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\\\">https://docs.microsoft.com/learn/paths/azure-fundamentals/?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal</a>&nbsp;- Azure Fundamentals on Microsoft Learn</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/931\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3206\"\n    },\n    {\n      \"id\": 3232,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:29:42.81Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:58:54.843Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Azure Blueprint Samples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/azure/governance/blueprints/samples/?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\\\">https://docs.microsoft.com/azure/governance/blueprints/samples/?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal</a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3232\"\n    },\n    {\n      \"id\": 3231,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:22:03.823Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:58:54.843Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Azure Blueprints as code\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/Azure/azure-blueprints\\\">https://github.com/Azure/azure-blueprints</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3231\"\n    },\n    {\n      \"id\": 2949,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:58:54.843Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Tutorial: Define and assign a blueprint in the portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/blueprints/create-blueprint-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2949\"\n    },\n    {\n      \"id\": 2976,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Tutorial: View your organization’s groups and members in AAD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-groups-view-azure-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2976\"\n    },\n    {\n      \"id\": 3233,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:48:09.657Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:47:26.647Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Getting Started with Identity Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://www.microsoft.com/en-us/security/business/identity/governance#:~:text=%20Azure%20Active%20Directory%20identity%20governance%20features%20%2cto%20the%20resources%20they%20need.%20%20More%20\\\">https://www.microsoft.com/en-us/security/business/identity/governance#:~:text=%20Azure%20Active%20Directory%20identity%20governance%20features%20,to%20the%20resources%20they%20need.%20%20More%20</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3233\"\n    },\n    {\n      \"id\": 2975,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:47:34.54Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Enable MFA\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/fundamentals/concept-fundamentals-mfa-get-started?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Enable MFA\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2975\"\n    },\n    {\n      \"id\": 2973,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Using security defaults\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/fundamentals/concept-fundamentals-security-defaults?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - What are security defaults?\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2973\"\n    },\n    {\n      \"id\": 2960,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:59:34.57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Governance, security and compliance in Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-setup-guide/govern-org-compliance?tabs=AzurePolicy?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2960\"\n    },\n    {\n      \"id\": 3037,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:07:48.25Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Azure Express Route | Tutorial: Create and modify an Express Route circuit\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-circuit-portal-resource-manager\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;font-family:Calibri, sans-serif;font-size:14.6667px;\\\"><span style=\\\"box-sizing:border-box;font-family:&quot;Segoe UI Light&quot;, sans-serif;\\\">Tutorial: Create and modify an Express Route circuit</span></a>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3237\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3037\"\n    },\n    {\n      \"id\": 2971,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:14:31.58Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Scale subscriptions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-best-practices/scale-subscriptions?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Scale subscriptions\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2971\"\n    },\n    {\n      \"id\": 3051,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:00:22.933Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Virtual Networking planning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-vnet-plan-design-arm\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3051\"\n    },\n    {\n      \"id\": 3048,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:00:29.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Azure VPN Gateway\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-about-vpngateways\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3048\"\n    },\n    {\n      \"id\": 2968,\n      \"rev\": 20,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:14:41.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Organize subscriptions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2968\"\n    },\n    {\n      \"id\": 3221,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-05T23:25:05.087Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:14:52.51Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Organize Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/management-groups/overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3221\"\n    },\n    {\n      \"id\": 2954,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:58:00.57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Use resource locks to protect resources (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/learn/modules/control-and-organize-with-azure-resource-manager/6-use-resource-locks-to-protect-resources?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2902\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2954\"\n    },\n    {\n      \"id\": 2941,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Manage costs and billing for your Azure resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-costs?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2941\"\n    },\n    {\n      \"id\": 2940,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T20:28:59.657Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - What is Azure Cost Management and Billing?\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cost-management-billing/cost-management-billing-overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2940\"\n    },\n    {\n      \"id\": 2939,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - How to optimize your cloud investment with Azure Cost Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cost-management-billing/costs/cost-mgt-best-practices?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2939\"\n    },\n    {\n      \"id\": 2953,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:58:05.737Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Tutorial: Create a lock from Azure Portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/azure-resource-manager/management/lock-resources#portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2902\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2953\"\n    },\n    {\n      \"id\": 3017,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:08:19.017Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Networking Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/azure-networking-analytics\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3239\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3017\"\n    },\n    {\n      \"id\": 3028,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:09:31.52Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Alerts: Create Metric Alerts for Logs in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-metric-logs\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3028\"\n    },\n    {\n      \"id\": 2990,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:04:04.043Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Cloud monitoring guide: Collect the right data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/data-collection\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2990\"\n    },\n    {\n      \"id\": 3214,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-05T19:18:57.193Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:07:32.997Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Sustainability reporting tool\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Tool: https://appsource.microsoft.com/product/power-bi/coi-sustainability.sustainability_dashboard?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3214\"\n    },\n    {\n      \"id\": 3229,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:08:20.183Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:18:07.337Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Creating additional subscriptions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/create-subscription\\\">https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/create-subscription</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3229\"\n    },\n    {\n      \"id\": 3220,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-05T23:16:52.047Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:05:49.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Dependency Analysis with Azure Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Migrate Dependency Analysis: https://docs.microsoft.com/azure/migrate/concepts-dependency-visualization\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/929\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3220\"\n    },\n    {\n      \"id\": 2965,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:12:12.307Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - RBAC Roles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/considerations/roles?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2965\"\n    },\n    {\n      \"id\": 2910,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - How does Azure Work\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"The basics of Azure: https://docs.microsoft.com/azure/cloud-adoption-framework/get-started/what-is-azure?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2910\"\n    },\n    {\n      \"id\": 838,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:00.633Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:00:44.323Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - Create Virtual Networks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/virtual-network/virtual-network-vnet-plan-design-arm\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/838\"\n    },\n    {\n      \"id\": 2987,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Terminologies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/considerations/fundamental-concepts#azure-terminology?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2987\"\n    },\n    {\n      \"id\": 2986,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Portfolio Hierarchy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/reference/fundamental-concepts/hosting-hierarchy?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2986\"\n    },\n    {\n      \"id\": 2985,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Subscription purposes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/considerations/fundamental-concepts#azure-subscription-purposes?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2985\"\n    },\n    {\n      \"id\": 3219,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-05T23:01:51.83Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Principles of Resource Groups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/azure-resource-manager/management/manage-resource-groups-portal#create-resource-groups?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3219\"\n    },\n    {\n      \"id\": 2983,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Azure administrative roles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/considerations/fundamental-concepts#azure-administrative-roles?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2983\"\n    },\n    {\n      \"id\": 2982,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Azure Monitoring and Security on Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Monitoring and Security are important topics on Governance. On Azure those topics are covered by:\\n\\n *\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2982\"\n    },\n    {\n      \"id\": 843,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:01.343Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-24T23:43:41.603Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Review Data Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>When you prepare your landing zone environment for your cloud adoption, you need to determine the <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/data-options\\\">data requirements </a>for hosting your workloads.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/843\"\n    },\n    {\n      \"id\": 844,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:01.467Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-24T23:43:41.603Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - Review Storage Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/storage-options\\\">Storage capabilities</a> are critical for supporting workloads and services that are hosted in the cloud.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/844\"\n    },\n    {\n      \"id\": 845,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:01.603Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-24T23:43:41.603Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"10 - Review Network  Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Designing and implementing <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/networking-options\\\">Azure networking capabilities</a> is a critical part of your cloud adoption efforts<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/845\"\n    },\n    {\n      \"id\": 846,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:01.727Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-24T23:43:41.603Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"11 - Review Compute Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Determining the <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/compute-options\\\">compute requirement</a>s for hosting your workloads is a key consideration as you prepare for your cloud adoption.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/846\"\n    },\n    {\n      \"id\": 842,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:01.177Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-24T23:43:41.603Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"12 - Role-based Access Control\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Overview of<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/roles\\\"> role-based access control</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/842\"\n    },\n    {\n      \"id\": 3038,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:08:33.15Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Azure Express Route | Prerequisites & Checklist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-prerequisites\\\">https://docs.microsoft.com/en-us/azure/expressroute/expressroute-prerequisites</a>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3237\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3038\"\n    },\n    {\n      \"id\": 2959,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:59:34.57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Define IT compliance with Azure Policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/learn/modules/intro-to-governance/2-azure-policy?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Define IT compliance with AzurePolicy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2959\"\n    },\n    {\n      \"id\": 2964,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:12:19.4Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Secure resources with RBAC\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/learn/modules/control-and-organize-with-azure-resource-manager/5-role-based-access?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2964\"\n    },\n    {\n      \"id\": 3024,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:09:02.02Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Visualizations: Feed Power BI from Application Insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/app/export-power-bi\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3238\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3024\"\n    },\n    {\n      \"id\": 3004,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:06:53.063Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Logs querying: Tutorial - Create alert from log query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/tutorial-response\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3004\"\n    },\n    {\n      \"id\": 2969,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:18:13.867Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Associate or add an Azure subscription to you AAD Tenant\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/fundamentals/active-directory-how-subscriptions-associated-directory?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2969\"\n    },\n    {\n      \"id\": 839,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:00.76Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:00:50.767Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"10 - Create a Perimeter Network\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/architecture/reference-architectures/dmz/secure-vnet-dmz\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/839\"\n    },\n    {\n      \"id\": 2963,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:12:27.423Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Differences on RBAC Roles and Azure AD Roles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/role-based-access-control/rbac-and-directory-admin-roles?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2963\"\n    },\n    {\n      \"id\": 3018,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:08:26.407Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - DNS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/dns-analytics\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3239\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3018\"\n    },\n    {\n      \"id\": 3029,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:09:38.12Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Alerts: Create, view and manage alerts based on Activity Log signals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-gb/azure/azure-monitor/platform/alerts-activity-log\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3029\"\n    },\n    {\n      \"id\": 2984,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:47.507Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Subscription decision guides\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/decision-guides/subscriptions/?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Subscription decision guide\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2984\"\n    },\n    {\n      \"id\": 2991,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:04:13.623Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Cloud monitoring guide: Alerting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/alerting\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2991\"\n    },\n    {\n      \"id\": 2994,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:03:13.03Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Azure Application Insights | Getting Started with Application Insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview#get-started\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3235\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2994\"\n    },\n    {\n      \"id\": 2932,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:02:50.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Azure Resource Graph Explorer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/first-query-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Azure Resource Graph Explorer\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2932\"\n    },\n    {\n      \"id\": 2931,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:02:50.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Tutorial: Create and share an Azure Resource Graph query in the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/tutorials/create-share-query?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2931\"\n    },\n    {\n      \"id\": 2930,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:02:50.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Starter Resource Graph query samples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/samples/starter?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal&amp;tabs=azure-portal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2930\"\n    },\n    {\n      \"id\": 3074,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:25:52.913Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:02:50.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Advanced Resource Graph query samples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/samples/advanced?tabs=azure-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3074\"\n    },\n    {\n      \"id\": 3075,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:25:52.913Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Starter Resource Graph query samples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/samples/starter?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal&amp;tabs=azure-portal - Starter Resource Graph query samples\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3075\"\n    },\n    {\n      \"id\": 2929,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Advanced Resource Graph query samples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/samples/advanced?tabs=azure-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2929\"\n    },\n    {\n      \"id\": 2928,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:02:50.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Understanding the Azure Resource Graph query language\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/concepts/query-language?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2928\"\n    },\n    {\n      \"id\": 2927,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:02:50.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Explore your Azure resources with Resource Graph\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/concepts/explore-resources?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2927\"\n    },\n    {\n      \"id\": 2926,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:02:50.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - Azure Resource Graph security baseline for Azure Security Benchmark\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/resource-graph/concepts/azure-security-benchmark-baseline?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2926\"\n    },\n    {\n      \"id\": 2925,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:02:50.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"10 - Get resource changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Get resource changes - https://docs.microsoft.com/azure/governance/resource-graph/how-to/get-resource-changes?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2925\"\n    },\n    {\n      \"id\": 2962,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:12:37.87Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Tutorial: Add or remove role assignments using Azure RBAC and the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/role-based-access-control/role-assignments-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2962\"\n    },\n    {\n      \"id\": 3039,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:08:22.787Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Azure Express Route | Connectivity Models\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-connectivity-models\\\">https://docs.microsoft.com/en-us/azure/expressroute/expressroute-connectivity-models</a>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3237\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3039\"\n    },\n    {\n      \"id\": 3205,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-24T23:55:48.26Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-12T15:49:23.273Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Dependency Analysis with AppDynamics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"http://aka.ms/cafappd\\\">http://aka.ms/cafappd</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/929\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3205\"\n    },\n    {\n      \"id\": 3228,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:07:08.633Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:18:21.873Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Creating Subscriptions Programmatically\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/programmatically-create-subscription?tabs=rest\\\">https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/programmatically-create-subscription?tabs=rest</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3228\"\n    },\n    {\n      \"id\": 3005,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:07:00.297Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Logs querying: Azure Monitor log query examples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/examples\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3005\"\n    },\n    {\n      \"id\": 840,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:00.9Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:00:57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"11 - Deploy highly available network virtual appliances\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/dmz/nva-ha\\\">NVA </a>provides a secure network boundary by checking all inbound and outbound network traffic and passing only the traffic that meets network security rules<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/840\"\n    },\n    {\n      \"id\": 2306,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-08-14T14:39:22.987Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-05T19:19:21.517Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Implementation and application of OKRs (objectives, key results)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Workboard -&nbsp;<a href=\\\"https://www.workboard.com//\\\">https://www.workboard.com/</a>&nbsp;is a potential partner to support in the implementation and adoption of OKRs to help drive alignment and accountability across the organizations.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2306\"\n    },\n    {\n      \"id\": 2958,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:59:34.57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Organize policy with initiatives\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/learn/modules/intro-to-governance/3-initiatives?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Organize policy with initiatives\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2958\"\n    },\n    {\n      \"id\": 3218,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-05T22:48:50.047Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:18:28.887Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - Organizing resources with management groups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Management Groups: https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-best-practices/organize-subscriptions?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3218\"\n    },\n    {\n      \"id\": 2970,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:18:36.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"10 - Tutorial: Create an additional Azure subscription\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"How to:\\n\\nhttps://docs.microsoft.com/azure/cost-management-billing/manage/create-subscription?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2970\"\n    },\n    {\n      \"id\": 2957,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:59:34.57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Use policies to enforce standards\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/learn/modules/control-and-organize-with-azure-resource-manager/4-use-policies-to-enforce-standards?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2957\"\n    },\n    {\n      \"id\": 3208,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-24T23:58:18.387Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:40:26.76Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Microsoft Enterprise Skills Initiative\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Work with your Microsoft Account team:</div><div><a href=\\\"https://techskillsforbusiness.microsoft.com/about/\\\">https://techskillsforbusiness.microsoft.com/about/</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/931\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3208\"\n    },\n    {\n      \"id\": 3025,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:09:08.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Visualizations: Monitor your Azure services in Grafana\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/grafana-plugin\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3238\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3025\"\n    },\n    {\n      \"id\": 2992,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:04:21.457Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Cloud monitoring guide: Monitoring platforms overview\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/platform-overview\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2992\"\n    },\n    {\n      \"id\": 3030,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:09:45.777Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Alerts: Creating action groups for notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-gb/azure/azure-monitor/platform/action-groups\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3030\"\n    },\n    {\n      \"id\": 3019,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:08:33.577Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Network Performance Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/network-performance-monitor\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3239\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3019\"\n    },\n    {\n      \"id\": 3020,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:08:41.55Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Monitor and troubleshoot your end-to-end Azure network infrastructure by using network monitoring tools (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/learn/modules/troubleshoot-azure-network-infrastructure/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3239\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3020\"\n    },\n    {\n      \"id\": 2997,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:04:28.49Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Monitor Azure Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/monitor-azure-resource\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2997\"\n    },\n    {\n      \"id\": 2998,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:04:35.917Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Monitor resource groups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/resource-group-insights\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2998\"\n    },\n    {\n      \"id\": 3031,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:04:42.26Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Logic Apps: How to trigger complex actions with Azure Monitor alerts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/action-groups-logic-app\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3031\"\n    },\n    {\n      \"id\": 3011,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:04:49.677Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - Monitoring Azure virtual machines with Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/monitor-vm-azure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3011\"\n    },\n    {\n      \"id\": 3012,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:04:56.817Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"10 - What is Azure Monitor for VMs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/vminsights-overview\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3012\"\n    },\n    {\n      \"id\": 3013,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:05:03.45Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"11 - Tutorial: Monitor an Azure Virtual Machine with Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/quick-monitor-azure-vm\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3013\"\n    },\n    {\n      \"id\": 3014,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:05:10.5Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"12 - Azure Monitor for Containers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/container-insights-overview\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3014\"\n    },\n    {\n      \"id\": 3007,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:05:17.59Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"13 - Logs querying: Log data ingestion time in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/data-ingestion-time\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3007\"\n    },\n    {\n      \"id\": 3008,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:05:24.173Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"14 - Analyze your Azure infrastructure by using Azure Monitor logs (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/learn/modules/analyze-infrastructure-with-azure-monitor-logs/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3008\"\n    },\n    {\n      \"id\": 3009,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:05:37.73Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"15 - Tutorial: Monitor an Azure resource with Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/quick-monitor-azure-resource\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3009\"\n    },\n    {\n      \"id\": 2956,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:59:34.57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Tutorial: Create a policy assignment to identify non-compliant resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/governance/policy/assign-policy-portal?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2956\"\n    },\n    {\n      \"id\": 2937,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:01:19.383Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Tutorial: Create and manage Azure budgets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cost-management-billing/costs/tutorial-acm-create-budgets?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2937\"\n    },\n    {\n      \"id\": 3191,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:25:52.913Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:01:04.137Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"12 - Tutorial: Create a Site to Site connection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/vpn-gateway/vpn-gateway-howto-site-to-site-resource-manager-portal Tutorial: Create a Site to Site connection\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3191\"\n    },\n    {\n      \"id\": 3006,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:07:10.22Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Logs querying: Writing efficient log queries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/log-query-performance\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3006\"\n    },\n    {\n      \"id\": 2999,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:07:18.01Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Activity Log: View and retrieve Azure Activity log events\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/activity-log-view\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2999\"\n    },\n    {\n      \"id\": 3041,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:01:11.407Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"13 - Tutorial: Create a Point to Site VPN (OpenVPN)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-openvpn\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3041\"\n    },\n    {\n      \"id\": 3010,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:07:25.113Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Tutorial: Collect and analyze resource logs from an Azure resource\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/tutorial-resource-logs\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3010\"\n    },\n    {\n      \"id\": 3042,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:01:19.377Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"14 - Tutorial: Create a Point to Site VPN (Azure AD authentication)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/vpn-gateway/openvpn-azure-ad-tenant\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3042\"\n    },\n    {\n      \"id\": 3043,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:01:27.707Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"15 - Tutorial: Create a Point to Site VPN (Radius authentication)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/vpn-gateway/point-to-site-how-to-radius-ps\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3043\"\n    },\n    {\n      \"id\": 3044,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:01:35.137Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"16 - Tutorial: Create a Point to Site VPN (Azure certificate authentication)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-point-to-site-resource-manager-portal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3044\"\n    },\n    {\n      \"id\": 3045,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:01:42.037Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"17 - Tutorial: Create a Vnet to Vnet VPN\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-vnet-vnet-resource-manager-portal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3045\"\n    },\n    {\n      \"id\": 3046,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:01:48.61Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"18 - Tutorial: Create a Site to Site connection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/vpn-gateway/vpn-gateway-howto-site-to-site-resource-manager-portal Tutorial: Create a Site to Site connection\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3046\"\n    },\n    {\n      \"id\": 3047,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:01:55.5Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"19 - Tutorial: Create and Manage a VPN Gateway\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/vpn-gateway/create-routebased-vpn-gateway-portal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3047\"\n    },\n    {\n      \"id\": 3049,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:02:03.127Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"20 - Tutorial: Connect virtual networks with virtual network peering using the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/virtual-network/tutorial-connect-virtual-networks-portal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3049\"\n    },\n    {\n      \"id\": 3050,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:02:11.68Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"21 - Tutorial: Filter network traffic with a network security group using the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/en-us/azure/virtual-network/tutorial-filter-network-traffic\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3050\"\n    },\n    {\n      \"id\": 2936,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:01:19.383Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Tutorial: Create and manage exported data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cost-management-billing/costs/tutorial-export-acm-data?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2936\"\n    },\n    {\n      \"id\": 2974,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:12:45.017Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Tutorial: Secure user sign-in events with Azure Multi-Factor Authentication\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/active-directory/authentication/tutorial-enable-azure-mfa?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2974\"\n    },\n    {\n      \"id\": 2935,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:01:19.383Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Tutorial: Optimize costs from recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cost-management-billing/costs/tutorial-acm-opt-recommendations?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2935\"\n    },\n    {\n      \"id\": 2934,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:01:19.383Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Tutorial: Predict costs and optimize spending for Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/learn/modules/predict-costs-and-optimize-spending/ - Predict costs and optimizespending for Azure (MS Learn)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2934\"\n    },\n    {\n      \"id\": 3057,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:25:52.913Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-05T20:09:16.847Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Cloud Adoption Framework Governance Benchmark Tool\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://cafbaseline.com?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal .\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3057\"\n    },\n    {\n      \"id\": 2911,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-05T19:30:10.22Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - AzGovViz (Azure Governance Visualizer), enables you to get insight into your Azure environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://github.com/julianhayward/azure-mg-sub-governance-reporting?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2911\"\n    },\n    {\n      \"id\": 3243,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T23:35:42.88Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:36:05.923Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Annotate your data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-catalog/data-catalog-how-to-annotate?bc=/azure/cloud-adoption-framework/_bread/toc.json&amp;toc=/azure/cloud-adoption-framework/toc.json\\\">https://docs.microsoft.com/en-us/azure/data-catalog/data-catalog-how-to-annotate?bc=%2fazure%2fcloud-adoption-framework%2f_bread%2ftoc.json&amp;toc=%2fazure%2fcloud-adoption-framework%2ftoc.json</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3241\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3243\"\n    },\n    {\n      \"id\": 3242,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T23:35:18.973Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:35:59.877Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Classify data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/data-classification\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/data-classification</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3241\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3242\"\n    },\n    {\n      \"id\": 3230,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:18:44.783Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:05:21.69Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Microsoft Cloud Economic Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Various partner offerings in Azure MarketPlace:&nbsp;<a href=\\\"https://azuremarketplace.microsoft.com/en-us/marketplace/consulting-services?search=economic%20assessment&amp;page=1\\\">https://azuremarketplace.microsoft.com/en-us/marketplace/consulting-services?search=economic%20assessment&amp;page=1</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/935\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3230\"\n    },\n    {\n      \"id\": 3226,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T18:59:58.4Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:30Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Evaluate Enterprise-Scale\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Microsoft's prescriptive guidance to establish policy-based landing zone. &nbsp;</div><div style=\\\"box-sizing:border-box;\\\">https://docs.microsoft.com/azure/cloud-adoption-framework/ready/enterprise-scale/</div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/921\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3226\"\n    },\n    {\n      \"id\": 3225,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T18:59:15.147Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-09T17:28:59.25Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Evaluate Terraform Landing Zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/landing-zone/terraform-landing-zone\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/landing-zone/terraform-landing-zone</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/921\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3225\"\n    },\n    {\n      \"id\": 3224,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T18:58:53.23Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:30Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Evaluate the CAF Foundation and Migrate Landing Zone blueprint\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Evaluate the CAF Migrate Landing Zone blueprint or the Terraform Landing Zone.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/921\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3224\"\n    },\n    {\n      \"id\": 3223,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T18:57:33.843Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:30Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Decide on the path to create landing zone. Start Small and Growth, Enterprise Scale or Partner\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Update the landing zone: <a href=\\\"https://docs.microsoft.com/azure/cloud-adoption-framework/ready/landing-zone/\\\">https://docs.microsoft.com/azure/cloud-adoption-framework/ready/landing-zone/</a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/921\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3223\"\n    },\n    {\n      \"id\": 3217,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-05T22:39:08.46Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:05:43.59Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Map Skills needed for Cloud organization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Map roles and skills: https://docs.microsoft.com/azure/cloud-adoption-framework/plan/suggested-skills?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/930\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3217\"\n    },\n    {\n      \"id\": 3216,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-05T19:44:08.33Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"13 - Azure for GCP Professionals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure for GCP Professionals: https://docs.microsoft.com/azure/architecture/gcp-professional/?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3216\"\n    },\n    {\n      \"id\": 3215,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-05T19:43:46.093Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:39:57.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"13 - Azure for AWS Professionals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure for AWS Professionals: https://docs.microsoft.com/azure/architecture/aws-professional/?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3215\"\n    },\n    {\n      \"id\": 3204,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-24T23:47:12.097Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:05:36.197Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Review skills needed for Cloud organization and build readiness plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Build a readiness plan: https://docs.microsoft.com/azure/cloud-adoption-framework/plan/adapt-roles-skills-processes?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/930\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3204\"\n    },\n    {\n      \"id\": 3131,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:25:52.913Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Understand and align the portfolio hierarchy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/reference/fundamental-concepts/hosting-hierarchy?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3131\"\n    },\n    {\n      \"id\": 3126,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:25:52.913Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Microsoft Learn: Azure Fundamentals Learning Path\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/learn/paths/azure-fundamentals/?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Azure fundamentals\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3126\"\n    },\n    {\n      \"id\": 2227,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-06-30T20:21:30.137Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:34:06.56Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Use the Azure Security Benchmark as the foundational security policy set\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/security/benchmarks/overview\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/947\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2227\"\n    },\n    {\n      \"id\": 969,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-14T02:25:57.057Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1- Define team structures for the cloud. Cloud based organization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/plan/initial-org-alignmenthttps://docs.microsoft.com/azure/cloud-adoption-framework/organize/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/930\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/969\"\n    },\n    {\n      \"id\": 967,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T23:27:53.523Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:33:10.277Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Define budgets and budget alerts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Setup budgets by various scopes and alerting on the budgets: <a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/costs/cost-mgt-alerts-monitor-usage-spending\\\">reference here</a></div><div><br></div><div>ARM Template on Github:&nbsp;<a href=\\\"https://github.com/Azure/azure-quickstart-templates/tree/master/create-budget/\\\">https://github.com/Azure/azure-quickstart-templates/tree/master/create-budget/</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/945\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/967\"\n    },\n    {\n      \"id\": 966,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T23:26:08.23Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:32:59.797Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Identify accountability for billing and cost attribution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Accountability and access to the data: <a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/costs/assign-access-acm-data\\\">reference here</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/945\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/966\"\n    },\n    {\n      \"id\": 964,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T21:32:36.97Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-06T17:59:54.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Build list of applications / workloads destined for Cloud\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/strategy/balance-the-portfolio?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/936\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/964\"\n    },\n    {\n      \"id\": 961,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:44:56.797Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:34:36.283Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Update the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Once you have determined which policies need to be applied, be sure to update the Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/949\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/961\"\n    },\n    {\n      \"id\": 960,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:44:46.61Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:34:23.047Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Update the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Once you have determined which policies need to be applied, be sure to update the Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/948\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/960\"\n    },\n    {\n      \"id\": 959,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:44:36.837Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:33:59.75Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Update the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Once you have determined which policies need to be applied, be sure to update the Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/947\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/959\"\n    },\n    {\n      \"id\": 958,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:44:28.85Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:33:44.58Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Update the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Once you have determined which policies need to be applied, be sure to update the Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/946\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/958\"\n    },\n    {\n      \"id\": 957,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:44:10.447Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:32:49.817Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Update the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Once you have determined which policies need to be applied, be sure to update the Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/945\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/957\"\n    },\n    {\n      \"id\": 956,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:43:41.877Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:34:29.697Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Review the sample policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"A default set of policies have been defined for the MVP, review these policies in the Cloud Adoption Framework documentation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/949\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/956\"\n    },\n    {\n      \"id\": 955,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:43:27.273Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:34:16.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Review the sample policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"A default set of policies have been defined for the MVP, review these policies in the Cloud Adoption Framework documentation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/948\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/955\"\n    },\n    {\n      \"id\": 954,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:43:12.547Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:33:53.707Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Review the sample policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"A default set of policies have been defined for the MVP, review these policies in the Cloud Adoption Framework documentation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/947\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/954\"\n    },\n    {\n      \"id\": 953,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:42:55.053Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:33:26.94Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Review the sample policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"A default set of policies have been defined for the MVP, review these policies in the Cloud Adoption Framework documentation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/946\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/953\"\n    },\n    {\n      \"id\": 952,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:42:41.957Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:32:41.533Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Review the sample policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"A default set of policies have been defined for the MVP, review these policies in the Cloud Adoption Framework documentation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/945\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/952\"\n    },\n    {\n      \"id\": 951,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:41:48.157Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:31:49.903Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Update Cloud Adoption Plan with risks and compliance requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Post gap identification, and the evaluation of the risk which need to be mititgated we need to ensure that this is documented within the plan.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/944\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/951\"\n    },\n    {\n      \"id\": 950,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:31:49.6Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:31:40.813Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Reference data for Control Mapping for specific compliance requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Control mapping for Azure Blueprint / Policy. <a href=\\\"https://docs.microsoft.com/en-us/azure/governance/blueprints/samples/\\\">Blueprint samples</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/944\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/950\"\n    },\n    {\n      \"id\": 940,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:50:35.05Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:12:54.65Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Document Members of the Cloud Teams in Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/940\"\n    },\n    {\n      \"id\": 939,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:49:02.187Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:10:52.907Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Skills Readiness Plan for Developers, IT Staff and Business Users\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Map out the new skills required for Cloud Adoption across the organization:\\n\\nhttps://docs.microsoft.com/azure/cloud-adoption-framework/plan/suggested-skills\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/939\"\n    },\n    {\n      \"id\": 904,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:12.503Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T22:10:52.907Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Prioritize workloads and projects\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/workloads\\\">Define and prioritize workloads</a> in the backlog for the adoption projects</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/904\"\n    },\n    {\n      \"id\": 834,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:00.103Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:31:02.91Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"11 - Azure Naming and Tagging Convention\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Recommended naming and tagging conventions: https://docs.microsoft.com/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?tabs=NamingStandards\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/2b39bc95-83b3-40b0-bb68-ecbc55dc160a\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-14T02:10:42.31Z\",\n            \"id\": \"741513\",\n            \"resourceCreatedDate\": \"2020-05-14T02:10:34.54Z\",\n            \"resourceModifiedDate\": \"2020-05-14T02:10:34.087Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"19976\",\n            \"name\": \"CAF%20Readiness%20Naming%20and%20Tagging%20tracking%20template[1].xlsx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/834\"\n    },\n    {\n      \"id\": 832,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:59.56Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:47.507Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"10 - Automation and Planning for a DevOps approach\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Platform Automation : https://docs.microsoft.com/azure/cloud-adoption-framework/ready/enterprise-scale/platform-automation-and-devops\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/832\"\n    },\n    {\n      \"id\": 831,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:58.517Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:47.507Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - BCDR Design Considerations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design considerations as per Enteprise Scale: https://docs.microsoft.com/azure/cloud-adoption-framework/ready/enterprise-scale/business-continuity-and-disaster-recovery\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/831\"\n    },\n    {\n      \"id\": 830,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:58.377Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:47.507Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Compliance and Policy Enforcement Decision Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Compliance and Policy Enforcement Decision Guide\\n\\nhttps://docs.microsoft.com/azure/cloud-adoption-framework/decision-guides/policy-enforcement/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/830\"\n    },\n    {\n      \"id\": 829,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:57.923Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:47.507Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Security Decision Guide and Best practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/security/security-top-10\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/829\"\n    },\n    {\n      \"id\": 828,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:57.25Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:47.507Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Monitoring Decision Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>All organizations need mechanisms for notifying IT teams of performance, uptime, and security issues before they become serious problems.&nbsp; <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/decision-guides/logging-and-reporting/\\\">Logging and reporting decision guide</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/828\"\n    },\n    {\n      \"id\": 825,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:56.8Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:47.507Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Policy Enforcement Decision Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/decision-guides/policy-enforcement/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/825\"\n    },\n    {\n      \"id\": 824,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:56.657Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-07T00:29:41.593Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Network Decision Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"https://docs.microsoft.com/azure/cloud-adoption-framework/decision-guides/software-defined-network/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/824\"\n    },\n    {\n      \"id\": 823,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:06:56.453Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:44:47.507Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Identity Decision Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/decision-guides/identity/\\\">Identity and access management (IAM)</a> services enable you to manage access control in the cloud<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/823\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/WorkItems/Test Plan.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 1469,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Test Plan\",\n        \"System.State\": \"Inactive\",\n        \"System.Reason\": \"Test plan deactivated\",\n        \"System.CreatedDate\": \"2020-06-17T16:51:18.843Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T20:58:09.817Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Test - Created from Form Request bikeconnect10 & 6/17/2020 4:51:16 PM\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Created new work item - wayneme@microsoft.com &amp; bikeconnect10\\n\\n7\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/1469\"\n    },\n    {\n      \"id\": 1315,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Test Plan\",\n        \"System.State\": \"Inactive\",\n        \"System.Reason\": \"Test plan deactivated\",\n        \"System.CreatedDate\": \"2020-06-15T18:20:27.183Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T20:57:52.23Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Test - Created from Form Request AMIT & 6/15/2020 6:20:25 PM\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Created new work item - wayneme@microsoft.com &amp; AMIT\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/1315\"\n    },\n    {\n      \"id\": 1314,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Test Plan\",\n        \"System.State\": \"Inactive\",\n        \"System.Reason\": \"Test plan deactivated\",\n        \"System.CreatedDate\": \"2020-06-15T17:19:24.647Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T20:58:01.84Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Test - Created from Form Request 6/15/2020 5:19:23 PM\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Created new work item - wayneme@microsoft.com &amp; Climber_App\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/1314\"\n    },\n    {\n      \"id\": 1313,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"Test Plan\",\n        \"System.State\": \"Inactive\",\n        \"System.Reason\": \"Test plan deactivated\",\n        \"System.CreatedDate\": \"2020-06-15T17:17:23.15Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T20:57:40.85Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Test - Created from Form Request 6/15/2020 5:17:21 PM\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Created new work item - wayneme@microsoft.com &amp; CoffeeNet\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/1313\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ADO-Strategy-Plan-Ready-Governance/WorkItems/User Story.json",
    "content": "{\n  \"count\": 38,\n  \"value\": [\n    {\n      \"id\": 920,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:15.37Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:13:18.013Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Architectural Decision Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Update Cloud Adoption Framework Ready and Adopt doc.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/834\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/824\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/829\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/825\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/831\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/823\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2984\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/830\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/828\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/822\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/819\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/832\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/920\"\n    },\n    {\n      \"id\": 921,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:15.493Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:13:31.82Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Landing zone considerations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Review </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/considerations/index\\\">landing zone considerations</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to understand the alternative decisions which could impact your landing zone design.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3226\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3224\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3225\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/819\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3223\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/921\"\n    },\n    {\n      \"id\": 922,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:15.72Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:13:38.79Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Create Azure Subscriptions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Start your Azure adoption by creating an initial set of subscriptions. Learn what <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/initial-subscriptions\\\">subscriptions </a>you should begin with based on your initial requirements.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3229\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3218\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3221\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2972\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/819\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2971\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2969\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3227\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2968\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3228\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2970\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/922\"\n    },\n    {\n      \"id\": 923,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:15.85Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:13:46.343Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Establish your Network\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/hub-spoke-network-topology\\\">Hub and spoke</a> is a networking model for more efficient management of common communication or security requirements. It also helps avoid Azure subscription limitations.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3048\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/837\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3191\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3041\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/839\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3045\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3044\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3047\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3046\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/840\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3050\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3051\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3042\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/836\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3049\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3043\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/819\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3052\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3053\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/835\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/838\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3033\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/923\"\n    },\n    {\n      \"id\": 924,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:15.977Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:13:54.09Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Identity and Access Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"display:inline !important;\\\">https://docs.microsoft.com/azure/role-based-access-control/overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - What is RBAC</span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2966\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2974\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2964\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/826\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/827\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2963\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2962\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/819\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2965\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/924\"\n    },\n    {\n      \"id\": 930,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:16.987Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:18:28.967Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Initial organizational alignment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Establish a plan for </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/organization/index\\\">organizational alignment</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">, included defined </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/organization/raci-alignment\\\">RACI diagrams</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/969\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/820\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3204\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3217\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/f62ceba5-ef78-4dfa-bf09-90e8ffd3fa84\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-14T02:15:49.61Z\",\n            \"id\": \"741522\",\n            \"resourceCreatedDate\": \"2020-05-14T02:15:41.083Z\",\n            \"resourceModifiedDate\": \"2020-05-14T02:15:40.607Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"82277\",\n            \"name\": \"raci-template[1].xlsx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/930\"\n    },\n    {\n      \"id\": 929,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:16.763Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:18:35.607Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Digital Estate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Inventory digital estate and align outcomes. https://docs.microsoft.com/azure/cloud-adoption-framework/digital-estate/inventory?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/820\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3205\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2238\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/929\"\n    },\n    {\n      \"id\": 932,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:17.287Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:18:42.48Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Update the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Plan template&nbsp;</span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/plan-intro\\\">cloud adoption plan</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to manage effort and change.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/940\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/904\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/939\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/820\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/06c2d14f-ae89-4fcd-b729-1c341755f8db\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-14T02:07:42.057Z\",\n            \"id\": \"741512\",\n            \"resourceCreatedDate\": \"2020-05-14T02:07:26.973Z\",\n            \"resourceModifiedDate\": \"2020-05-14T02:07:26.52Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"232876\",\n            \"name\": \"Microsoft-Cloud-Adoption-Framework-Strategy-and-Plan-Template[1].docx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/932\"\n    },\n    {\n      \"id\": 933,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:17.46Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:17:47.03Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Motivations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;\\\">Meet with key stakeholders and executives to d</span><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">ocument the </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/motivations-why-are-we-moving-to-the-cloud\\\">motivations</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> which are driving an interest in cloud adoption.</span><br></span></div><div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Consider classifying your priorities by horizon 1, 2 and 3.</span></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/821\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/933\"\n    },\n    {\n      \"id\": 934,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:17.74Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:17:55.45Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Business Outcomes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Engage motivated stakeholders and executives to document specific </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/business-outcomes/index\\\">business outcomes</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/821\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2305\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/934\"\n    },\n    {\n      \"id\": 935,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:17.917Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:18:02.243Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Business Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Develop a </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/cloud-migration-business-case\\\">business case</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to validate the financial model supporting the motivations and outcomes.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3230\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/821\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/935\"\n    },\n    {\n      \"id\": 936,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:18.07Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:18:08.817Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Adoption Project(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Identify all the workloads / projects and update the Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/821\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/964\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/936\"\n    },\n    {\n      \"id\": 938,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:39:45.32Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:18:15.277Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Who will deploy your environment. Self-build, Microsoft Services or Partner\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Check out the Cloud Adoption Framework partner offers: http://aka.ms/adopt/partneroffers?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/821\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/938\"\n    },\n    {\n      \"id\": 943,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:11:07.603Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-28T23:40:26.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Cloud Adoption Framework Governance Benchmark tool\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Leverage the governance benchmark tool to determine current governance requirements and gap.&nbsp;</div><div><br></div><div>Tool can be <a href=\\\"http://aka.ms/adopt/gov/assess\\\">found here</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3057\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2911\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/943\"\n    },\n    {\n      \"id\": 944,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:13:26.087Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-28T23:40:50.963Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Identify business risks across apps, data and infrastructure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Identify risks and convert risks into policies and compliance statements</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/951\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/950\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/16c38ddd-eb0f-40e6-a2f6-58d24542693f\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-13T20:16:15.257Z\",\n            \"id\": \"741167\",\n            \"resourceCreatedDate\": \"2020-05-13T20:15:47.497Z\",\n            \"resourceModifiedDate\": \"2020-05-13T20:15:47.123Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"119069\",\n            \"name\": \"Governance%20Discipline%20Template[1].docx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/944\"\n    },\n    {\n      \"id\": 945,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:18:01.627Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:10:18.703Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Cost Management Discipline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/cost-management/policy-statements\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/cost-management/policy-statements</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/952\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/957\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/967\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/966\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/946369ec-3631-46e5-a37f-868783f4ec37\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-13T20:20:52.643Z\",\n            \"id\": \"741182\",\n            \"resourceCreatedDate\": \"2020-05-13T20:20:49.11Z\",\n            \"resourceModifiedDate\": \"2020-05-13T20:20:48.703Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"116090\",\n            \"name\": \"Cost%20Management%20Discipline%20Template[1].docx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/945\"\n    },\n    {\n      \"id\": 946,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:18:24.343Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:10:07.98Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Resource Consistency Discipline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/resource-consistency/policy-statements\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/resource-consistency/policy-statements</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/953\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/958\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/33fcf962-31a5-49a1-be89-16a8b9b0b46f\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-13T20:22:33.93Z\",\n            \"id\": \"741191\",\n            \"resourceCreatedDate\": \"2020-05-13T20:22:29.243Z\",\n            \"resourceModifiedDate\": \"2020-05-13T20:22:28.843Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"118365\",\n            \"name\": \"Resource%20Consistency%20Discipline%20Template[1].docx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/946\"\n    },\n    {\n      \"id\": 947,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:18:38.553Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:09:58.657Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Security Baseline Discipline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/security-baseline/policy-statements\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/security-baseline/policy-statements</a><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/959\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2227\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/249cad07-9a87-4593-96dc-f4fe7d18d61f\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-13T20:23:08.61Z\",\n            \"id\": \"741193\",\n            \"resourceCreatedDate\": \"2020-05-13T20:23:05.06Z\",\n            \"resourceModifiedDate\": \"2020-05-13T20:23:04.723Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"117909\",\n            \"name\": \"Security%20Baseline%20Discipline%20Template[1].docx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/947\"\n    },\n    {\n      \"id\": 948,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:18:59.2Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:09:46.793Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Identity Baseline Discipline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/identity-baseline/policy-statements\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/identity-baseline/policy-statements</a><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/960\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/955\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/258ec6d1-bf5a-478a-986c-69e6d4b1f21a\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-13T20:37:17.073Z\",\n            \"id\": \"741235\",\n            \"resourceCreatedDate\": \"2020-05-13T20:37:12.61Z\",\n            \"resourceModifiedDate\": \"2020-05-13T20:37:12.34Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"118725\",\n            \"name\": \"Identity%20Baseline%20Discipline%20Template[1].docx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/948\"\n    },\n    {\n      \"id\": 949,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T20:19:21.567Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:09:34.837Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Deployment Acceleration Discipline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/deployment-acceleration/policy-statements\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/deployment-acceleration/policy-statements</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/956\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/961\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/attachments/074f0693-90fd-44ba-a6a8-1cc03c291f2e\",\n          \"attributes\": {\n            \"authorizedDate\": \"2020-05-13T20:24:36.447Z\",\n            \"id\": \"741194\",\n            \"resourceCreatedDate\": \"2020-05-13T20:24:28.883Z\",\n            \"resourceModifiedDate\": \"2020-05-13T20:24:28.573Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"117444\",\n            \"name\": \"Deployment%20Acceleration%20Discipline%20Template[1].docx\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/949\"\n    },\n    {\n      \"id\": 2913,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-19T00:15:04.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:38:50.6Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Azure Fundamentals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Fundamentals:&nbsp;<span style=\\\"box-sizing:border-box;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;list-style-type:decimal;display:inline !important;\\\">Review the<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/azure-readiness-guide/index\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;\\\">Azure Readiness Guide</a><span style=\\\"box-sizing:border-box;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, Tahoma, Arial, sans-serif;font-size:16px;list-style-type:decimal;display:inline !important;\\\"><span>&nbsp;</span>to become familiar with the tools and approaches needed in landing zone creation.</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2982\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2987\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/843\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2985\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3203\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/844\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2986\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2910\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2983\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/846\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3216\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/842\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3219\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/845\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2913\"\n    },\n    {\n      \"id\": 931,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-05-13T19:07:17.13Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T21:42:50.09Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Skills readiness plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Create a plan for addressing </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-in/azure/cloud-adoption-framework/ready/suggested-skills\\\">skills readiness gaps</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div><div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"><br></span></span></div><br><div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"><br></span></span></div><div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Azure quickstart ARM templates:&nbsp;<a href=\\\"https://github.com/Azure/azure-quickstart-templates\\\">https://github.com/Azure/azure-quickstart-templates</a></span></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3206\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3208\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3207\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3203\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/931\"\n    },\n    {\n      \"id\": 2898,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-18T19:09:24.587Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T19:34:03.483Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Azure Active Directory Basics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Active Directory Basics\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2973\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2979\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2978\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2975\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3233\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2976\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2980\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2977\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2898\"\n    },\n    {\n      \"id\": 2901,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-18T19:09:25.09Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Azure Policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"display:inline !important;\\\">https://docs.microsoft.com/azure/governance/policy/overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - What is Azure Policy</span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2957\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2960\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2959\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2956\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2958\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2901\"\n    },\n    {\n      \"id\": 2902,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-18T19:09:25.217Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Resource Locks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"display:inline !important;\\\">https://docs.microsoft.com/azure/azure-resource-manager/management/lock-resources?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Lock resources to preventunexpected changes</span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2953\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2902\"\n    },\n    {\n      \"id\": 2903,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-18T19:09:25.36Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Azure Blueprints\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"display:inline !important;\\\">https://docs.microsoft.com/azure/governance/blueprints/overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - What is Azure Blueprints?</span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2811\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2798\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2949\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2893\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2950\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2951\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3231\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3232\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2802\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2903\"\n    },\n    {\n      \"id\": 2904,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-18T19:09:25.493Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Azure Service Health\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"display:inline !important;\\\">https://docs.microsoft.com/azure/service-health/overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - What is Azure Service Health?</span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2946\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2947\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2894\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2808\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2805\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2904\"\n    },\n    {\n      \"id\": 2905,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-18T19:09:25.627Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Azure Advisor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"display:inline !important;\\\">https://docs.microsoft.com/azure/advisor/advisor-overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - Introduction to Azure Advisor</span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2801\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2812\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2799\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2892\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2905\"\n    },\n    {\n      \"id\": 2906,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-18T19:09:25.76Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Azure Cost Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | Azure Cost Management\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2937\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2940\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2796\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2786\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2793\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2935\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2941\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2813\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2806\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2891\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2939\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2936\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2906\"\n    },\n    {\n      \"id\": 2907,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-18T19:09:25.973Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Azure Resource Graph\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"display:inline !important;\\\">https://docs.microsoft.com/azure/governance/resource-graph/overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal - What is Azure Resource Graph?</span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2929\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3074\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2927\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2928\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3075\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2774\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2776\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2781\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2772\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2773\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2775\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2931\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2925\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2926\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2930\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2907\"\n    },\n    {\n      \"id\": 3234,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:52:44.25Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/&nbsp;</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2998\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2990\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2991\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3008\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3031\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3014\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3012\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2992\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2996\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3013\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3011\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3009\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3007\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2997\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3234\"\n    },\n    {\n      \"id\": 3235,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T19:53:40.293Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"10 - Application Insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2994\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3235\"\n    },\n    {\n      \"id\": 3236,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T20:05:27.973Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"11 - Log Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/log-query-overview\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/log-query-overview</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3000\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3002\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3001\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3004\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3005\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3006\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3010\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/2999\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3236\"\n    },\n    {\n      \"id\": 3237,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T20:06:54.467Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"12 - Express Route\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Express Route</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3035\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3039\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3036\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3038\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3037\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3237\"\n    },\n    {\n      \"id\": 3239,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T20:08:51.617Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"14 - Network Watcher\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/network-watcher/\\\">https://docs.microsoft.com/en-us/azure/network-watcher/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3020\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3017\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3018\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3016\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3019\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3239\"\n    },\n    {\n      \"id\": 3238,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T20:07:54.483Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"13 - Visualizing your data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Visualizations</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3024\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3025\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3022\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3023\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3238\"\n    },\n    {\n      \"id\": 3240,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T20:12:32.117Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:16:41.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"15 - Alerting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-overview\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-overview</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3032\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3029\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3028\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3030\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3027\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3240\"\n    },\n    {\n      \"id\": 3241,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.TeamProject\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.IterationPath\": \"CAF ADO Strategy-Plan-Ready-Gov\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-10-08T23:33:59.303Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-10-08T23:34:38.853Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Data Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/data-classification\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/policy-compliance/data-classification</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3243\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3242\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3241\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Dashboard/Dashboard.json",
    "content": "\"text\""
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Dashboard/Queries/AKS_CAF_Query.json",
    "content": "{\n  \"name\": \"AKS_CAF_Query\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.Description], [System.AssignedTo], [System.State], [System.AreaPath], [System.Tags], [System.CommentCount] from WorkItemLinks where (Source.[System.TeamProject] = @project) and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and Target.[System.WorkItemType] <> '') order by [System.ChangedDate] desc mode (Recursive)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Dashboard/Queries/Assigned to me.json",
    "content": "{\n  \"name\": \"Assigned to me\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Dashboard/Queries/Followed work items.json",
    "content": "{\n  \"name\": \"Followed work items\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Dashboard/Queries/WVD-AKA.json",
    "content": "{\n  \"name\": \"WVD-AKA\",\n  \"wiql\": \"select [System.Id], [System.Title], [System.Description], [System.AssignedTo], [System.State], [System.AreaPath], [System.Tags], [System.CommentCount] from WorkItemLinks where (Source.[System.TeamProject] = @project) and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and Target.[System.WorkItemType] <> '') order by [System.Id] desc mode (Recursive, ReturnMatchingChildren)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Extensions.json",
    "content": "{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"AWS Toolkit for Azure DevOps\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=AmazonWebServices.aws-vsts-tools' target='_blank'><b>AWS Toolkit for Azure DevOps</b></a>\",\n      \"publisherId\": \"AmazonWebServices\",\n      \"extensionId\": \"aws-vsts-tools\",\n      \"publisherName\": \"Amazon Web Services\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=AmazonWebServices.aws-vsts-tools' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Decompose\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=cschleiden.decompose' target='_blank'><b>Decompose</b></a>\",\n      \"publisherId\": \"cschleiden\",\n      \"extensionId\": \"decompose\",\n      \"publisherName\": \"Christopher Schleiden\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=cschleiden.decompose' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"ARM Outputs\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'><b>ARM Outputs</b></a>\",\n      \"publisherId\": \"keesschollaart\",\n      \"extensionId\": \"arm-outputs\",\n      \"publisherName\": \"Kees Schollaart\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Team Project Health\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.TeamProjectHealth' target='_blank'><b>Team Project Health</b></a>\",\n      \"publisherId\": \"ms-devlabs\",\n      \"extensionId\": \"TeamProjectHealth\",\n      \"publisherName\": \"Microsoft DevLabs\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.TeamProjectHealth' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Ansible\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-vscs-rm.vss-services-ansible' target='_blank'><b>Ansible</b></a>\",\n      \"publisherId\": \"ms-vscs-rm\",\n      \"extensionId\": \"vss-services-ansible\",\n      \"publisherName\": \"Microsoft\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-vscs-rm.vss-services-ansible' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Packer\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=riezebosch.Packer' target='_blank'><b>Packer</b></a>\",\n      \"publisherId\": \"riezebosch\",\n      \"extensionId\": \"Packer\",\n      \"publisherName\": \"riezebosch\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=riezebosch.Packer' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Kubernetes extension\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=tsuyoshiushio.k8s-endpoint' target='_blank'><b>Kubernetes extension</b></a>\",\n      \"publisherId\": \"tsuyoshiushio\",\n      \"extensionId\": \"k8s-endpoint\",\n      \"publisherName\": \"Tsuyoshi Ushio\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=tsuyoshiushio.k8s-endpoint' target='_blank'>License Terms</a>\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/ImportSourceCode/Azure Sentinel Template.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/AKA_Project/_git/Azure Sentinel Template\"\n    },\n    \"serviceEndpointId\": \"$Azure Sentinel Template-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"AKA_Project\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/ServiceEndpoints/Azure Sentinel Template-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Azure Sentinel Template-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vandyr/Azure Sentinel Template/_git/Azure Sentinel Template\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Teams/AKA_Project Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Teams/AKA_Project Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Teams/AKA_Project Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Teams/AKA_Project Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Teams/AKA_Project Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"1b2a9e5c-ba5c-4aa4-affe-416f7c5ba2ae\",\n    \"name\": \"AKA_Project Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/WorkItems/Epic.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 932,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"CAF Project Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF Project Plan - This is a tasklist to project manage an AKS deployment engagement.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/966\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/933\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/938\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/953\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/932\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/WorkItems/Feature.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 966,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Plan Assessment And Designing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Plan, Assessment &amp; Designing\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/967\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/974\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/966\"\n    },\n    {\n      \"id\": 953,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"CAF Pre-Configuration And Migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF Pre-Configuration &amp; Migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/962\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/953\"\n    },\n    {\n      \"id\": 942,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"CAF Govern Manage And Organize\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF Govern, &nbsp;Manage &amp; Organize\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/949\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/942\"\n    },\n    {\n      \"id\": 938,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"CAF Support\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF Support - This section has a set of tasks related to CAF support documents. Including best practices.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/939\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/938\"\n    },\n    {\n      \"id\": 933,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"STAKEHOLDER SIGN OFF AND CLOSURE\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"STAKEHOLDER SIGN OFF AND CLOSURE\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/932\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/933\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/WorkItems/Task.json",
    "content": "{\n  \"count\": 31,\n  \"value\": [\n    {\n      \"id\": 976,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Establishing Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Once the business out come is defined, establish the strategy to execute the migrate the application.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/974\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/976\"\n    },\n    {\n      \"id\": 975,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Outlining & Justifying of Business Outcomes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"This task is to outline on the onsite the justification for migrating application to AKS and specifically what business outcomes are to be achieved as part of the migration.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/974\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/975\"\n    },\n    {\n      \"id\": 973,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Assessing the Digital Estate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"This task is to evaluate the larger IT state as part of the migration. Are there other possible aspects of the IT state that can be moved while executing the migration of the containerized application to AKS.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/967\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/973\"\n    },\n    {\n      \"id\": 972,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Application Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"This task is to ensure an application assessment is conducted before migration the container application to AKS\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/967\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/972\"\n    },\n    {\n      \"id\": 971,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"AKS Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"This task is define the adoption plan for executing a migration to AKS.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/967\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/971\"\n    },\n    {\n      \"id\": 970,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Defining and Checking the Prerequisites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"This task is to define and check for prerequisites required before migration can begin.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/967\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/970\"\n    },\n    {\n      \"id\": 969,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Other Factors Affecting Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Some special considerations when migration a workload to AKS can be found on the following documentation:\\n<br>https://docs.microsoft.com/en-us/azure/aks/aks-migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/967\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/969\"\n    },\n    {\n      \"id\": 968,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Establishing AKS Adoption Steps\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Establish a set up adoption steps based on the application assessment.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/967\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/968\"\n    },\n    {\n      \"id\": 965,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"AKS Setup Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Setup the AKS cluster deployment guide before migration the containerized application.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/962\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/965\"\n    },\n    {\n      \"id\": 964,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Best Practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Assess best practices and see which ones are appropriate to adopt as part of the migration.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/962\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/964\"\n    },\n    {\n      \"id\": 963,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Creating Sandbox\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Deploy the application into a sandbox environment.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/962\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/963\"\n    },\n    {\n      \"id\": 961,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Execute the migration.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/961\"\n    },\n    {\n      \"id\": 960,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Define the migration strategy before executing the migration.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/960\"\n    },\n    {\n      \"id\": 959,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Innovate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Refactor and innovate as and when appropriate during the migration.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/959\"\n    },\n    {\n      \"id\": 958,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Prerequisite Configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure the the prerequisite configurations for the application are accounted for.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/958\"\n    },\n    {\n      \"id\": 957,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure the appropriate deployment mechanism is adopted. One way to deploy AKS applications is via helm (https://docs.microsoft.com/en-us/azure/aks/quickstart-helm)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/957\"\n    },\n    {\n      \"id\": 956,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Infrastructure Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"This task is to ensure the appropriate infrastructure integrations are accounted for.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/956\"\n    },\n    {\n      \"id\": 955,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Application Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"This task is to ensure the application is containerized and ready to be migrated.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/955\"\n    },\n    {\n      \"id\": 952,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Evaluate the best practices around security and governance. Apply as and when appropriate (https://docs.microsoft.com/en-us/azure/aks/concepts-security)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/949\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/952\"\n    },\n    {\n      \"id\": 951,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Security Policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Evaluate all AKS build-in policies and apply as appropriate (https://docs.microsoft.com/en-us/azure/aks/policy-samples)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/949\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/951\"\n    },\n    {\n      \"id\": 950,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Automation Needs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automate as much of the process as possible\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/949\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/950\"\n    },\n    {\n      \"id\": 948,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Developer Managing the Cluster\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure developer management best practices are reviewed and applied where appropriate (https://docs.microsoft.com/en-us/azure/aks/best-practices#developer-best-practices)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/948\"\n    },\n    {\n      \"id\": 947,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Operator Managing the Cluster\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Look the the provided guides for operating the cluster. (https://docs.microsoft.com/en-us/azure/aks/best-practices#cluster-operator-best-practices)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/947\"\n    },\n    {\n      \"id\": 946,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Organize\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure the organizational structure is reflected within the AKS deployed resources.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/946\"\n    },\n    {\n      \"id\": 945,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Establishing Various Organizational Structures\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure the appropriate RBAC security posture is adopted as part of the migration.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/945\"\n    },\n    {\n      \"id\": 944,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Organizing the Resources Required\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure the AKS cluster is appropriately scaled.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/943\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/944\"\n    },\n    {\n      \"id\": 941,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Defining And Following the Best Practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Follow the defined best practices as needed (https://docs.microsoft.com/en-us/azure/aks/best-practices)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/939\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/941\"\n    },\n    {\n      \"id\": 940,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Outlining the Business Continuing and Defining the Disaster Recovery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"task to evaluate and define the HA/DR strategy based on the documentation. (https://docs.microsoft.com/en-us/azure/aks/operator-best-practices-multi-region)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/939\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/940\"\n    },\n    {\n      \"id\": 937,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"SOW Checklist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure the statement of work is fully delivered.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/937\"\n    },\n    {\n      \"id\": 936,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Supporting Documents\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure all supporting documents are delivered.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/936\"\n    },\n    {\n      \"id\": 935,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Sign Off Project Delivery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ensure appropriate deliverables are communicated and the sign off is attained before the project is closed out.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/934\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/935\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AKS_CAF/WorkItems/User Story.json",
    "content": "{\n  \"count\": 8,\n  \"value\": [\n    {\n      \"id\": 974,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Define Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Define Strategy - Business transformations can be implemented withthe help of the AKS Strategy. The current section defines the business agility,market demands, and various rationalizing factors associated with the adoptionof the AKS that would enable business to evolve.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/976\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/966\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/975\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/974\"\n    },\n    {\n      \"id\": 967,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"These set of tasks are around coming up with a plan to help migrate a workload to AKS\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/966\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/969\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/968\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/970\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/973\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/971\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/972\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/967\"\n    },\n    {\n      \"id\": 962,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Ready\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Develop the skills needed to prepare an actionable migration plan. Thisincludes business justification and other required business-planning skills.\\n<br>Plan: Acquire the skills needed to put in order an actionablemigration plan. This includes business justification and other requiredbusiness-planning skills.\\n<br>Ready: Develop the skills in order to prepare the business,culture, people, and environment for eminent changes.\\n<br>As the organization paves the way for the AKS adoption effort, each teamshould document staff concerns as they rise by identifying:\\n<br>\\n<br> * &nbsp;The type of concern. For example, workers might beresistant to the changes in job duties that come with the adoption effort.\\n<br> * &nbsp;The impact if the concern isn't addressed. For example,resistance to adoption might result in workers being slow to execute therequired changes.\\n<br> * &nbsp;The area equipped to address the concern. For example, thebest equipped skill to address any concern is the Certified KubernetesApplication Developer (CKAD) program\\n<br> * &nbsp;The Certified Kubernetes Application Developer (CKAD)program has been developed by the Cloud Native Computing Foundation (CNCF), incollaboration with The Linux Foundation, to help expand the Kubernetesecosystem through standardized training and certification. \\n<br> * &nbsp;The Cloud Native Computing Foundation is committed toexpanding the community of Kubernetes-knowledgeable application developers,thereby enabling continued growth across the broad set of organizations a usingthe technology\\n<br> * &nbsp;Certification is a key step in that process, allowingcertified application developers to quickly establish their credibility andvalue in the job market, while also allowing companies to hire high-qualityteams to support their growth\\n<br> * &nbsp;The Certified Kubernetes Application Developer examcertifies that the users can design, build, configure, and expose cloud nativeapplications for Kubernetes. \\n<br> * &nbsp;A Certified Kubernetes Application Developer can defineapplication resources and use core primitives to build, monitor, andtroubleshoot scalable applications and tools in Kubernetes.\\n<br> * &nbsp;The successful candidate will be comfortable using anOCI-Compliant Container Runtime, such as Docker or rkt, Cloud nativeapplication concepts and architectures, and the programming language, such asPython, Node.js, Go, or Java.\\n<br>\\n<br>Thecertification program allows users to demonstrate their competence in ahands-on, command-line environment. The purpose of the Certified KubernetesApplication Developer (CKAD) program is to provide assurance that CKADs havethe skills, knowledge, and competency to perform the responsibilities ofKubernetes application developers.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/964\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/965\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/963\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/953\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/962\"\n    },\n    {\n      \"id\": 954,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Adopt\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"There arevarious decisions and data points that help align with the specific plans foradoption. The following activities support alignment of the cloud adoptionplan:\\n<br>\\n<br> * &nbsp;Prerequisites: Confirmthat all prerequisite steps have been compiled with, before a plan is created.The various requirements are discussed in detail in the mentionedlink \\n<br>\\n<br> * &nbsp;Define and prioritize workloads: Prioritize thefirst 10 workloads to establish an initial adoption backlog\\n<br> * &nbsp;Align assets to workloads: Identify which assets(proposed or existing) are required to support the prioritized workloads\\n<br> * &nbsp;Review rationalization decisions: Reviewrationalization decisions to refine adoption-path decisions: Migrate orInnovate\\n<br> * &nbsp;Establish iterations and releaseplans: Iterations are the time blocks allocated to dowork. Releases are the definition of the work to be done beforetriggering a change to production processes\\n<br>\\n<br> * &nbsp;Estimate timelines: Establish rough timelines forrelease planning purposes, based on initial estimates\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/961\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/960\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/955\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/959\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/957\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/956\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/958\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/953\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/954\"\n    },\n    {\n      \"id\": 949,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Govern\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Governance refers to a set of rules summarized as policies aimed atminimizing risk, controlling costs and driving efficiency, transparency andaccountability for an environment. The managed services create new paradigmsfor the technologies that support the business. Cloud governance is aniterative process. As the digital estate changes over time, so do theirgovernance processes and policies.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/950\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/951\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/952\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/949\"\n    },\n    {\n      \"id\": 943,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Manage - The operation of the digital assets that deliver tangible businessoutcomes need to be managed. Without a plan for reliable, well-managedoperations of the deployed workloads, these efforts yield any significantvalue.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/942\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/947\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/948\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/944\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/945\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/946\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/943\"\n    },\n    {\n      \"id\": 939,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Best Practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Best Practices - All the best practices around an AKS implementation are available on the following documentation. (https://docs.microsoft.com/en-us/azure/aks/best-practices)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/941\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/938\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/940\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/939\"\n    },\n    {\n      \"id\": 934,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"AKA_Project\",\n        \"System.TeamProject\": \"AKA_Project\",\n        \"System.IterationPath\": \"AKA_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-16T17:12:36.69Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"CAF Project Review and Closure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"This user story is to review the project and close out as appropriate\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/933\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/935\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/936\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/937\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/934\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/ImportSourceCode/Azure Setup Guide.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/ricmart/Azure Governance - CAF/_git/Azure Setup Guide\"\n    },\n    \"serviceEndpointId\": \"$Azure Setup Guide-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Azure Governance - CAF\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/ServiceEndpoints/Azure Setup Guide-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Azure Setup Guide-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/ricmart/Azure Setup Guide/_git/Azure Setup Guide\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance - CAF Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance - CAF Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance - CAF Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance - CAF Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance - CAF Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Azure Governance Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"93f80b43-69fd-479c-a829-dbf37fb75c7f\",\n    \"name\": \"Azure Governance - CAF Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 3849,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance\",\n        \"System.TeamProject\": \"Azure Governance\",\n        \"System.IterationPath\": \"Azure Governance\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-15T15:36:40.02Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T18:03:53.593Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Azure Fundamentals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Fundamentals\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3686\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3849\"\n    },\n    {\n      \"id\": 3850,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance\",\n        \"System.TeamProject\": \"Azure Governance\",\n        \"System.IterationPath\": \"Azure Governance\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-15T15:36:47.36Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T18:03:39.53Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Azure Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Tools\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3851\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3850\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/WorkItems/Feature.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 1989,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:15.56Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:15.56Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Fundamentals &amp; Governance\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2135\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2137\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2134\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2136\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2132\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2133\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2131\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/WorkItems/Task.json",
    "content": "{\n  \"count\": 150,\n  \"value\": [\n    {\n      \"id\": 1993,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:17.787Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:02:04.6Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - What is AAD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-whatis?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">What is AAD</a></span></span>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1993\"\n    },\n    {\n      \"id\": 1992,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:17.403Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:07:11.853Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - What is RBAC\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/role-based-access-control/overview?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">What is RBAC</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2132\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1992\"\n    },\n    {\n      \"id\": 2001,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:21.18Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:02:55.443Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Compare AD with AAD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-compare-azure-ad-to-ad?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Compare AD with AAD</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2001\"\n    },\n    {\n      \"id\": 2002,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:21.61Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:11:00.04Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Manage access to your Azure environment with role-based access controls\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-access?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Manage access to your Azure\\nenvironment with role-based access controls</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2132\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2002\"\n    },\n    {\n      \"id\": 2012,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:26.36Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:03:16.64Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - AAD Deployment Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-deployment-checklist-p2?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">AAD Deployment Guide</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2012\"\n    },\n    {\n      \"id\": 2010,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:25.517Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:11:17.63Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Role-based access control\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/roles?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Role-based access control</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2132\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2010\"\n    },\n    {\n      \"id\": 2021,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:31.197Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:03:34.537Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Tutorial Create a new tenant in AAD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-access-create-new-tenant?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial Create a new tenant in\\nAAD</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2021\"\n    },\n    {\n      \"id\": 2026,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:34.03Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:03:55.453Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Tutorial: View your organization’s groups and members in AAD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-groups-view-azure-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: View your\\norganization’s groups and members in AAD</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2026\"\n    },\n    {\n      \"id\": 2022,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:31.96Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:11:32.8Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Secure resources with RBAC\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/control-and-organize-with-azure-resource-manager/5-role-based-access?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Secure resources with RBAC</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2132\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2022\"\n    },\n    {\n      \"id\": 2047,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:43.247Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:11:51.16Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Tutorial: Add or remove role assignments using Azure RBAC and the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/role-based-access-control/role-assignments-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Add or remove role\\nassignments using Azure RBAC and the Azure portal</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2132\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2047\"\n    },\n    {\n      \"id\": 2046,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:42.877Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:04:18.75Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"6 - Enable MFA\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/concept-fundamentals-mfa-get-started?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Enable MFA</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2046\"\n    },\n    {\n      \"id\": 2034,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:37.78Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:12:13.4Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"6 - Differences on RBAC Roles and Azure AD Roles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/role-based-access-control/rbac-and-directory-admin-roles?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Classic subscription administrator roles, Azure roles, and Azure AD roles</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2132\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2034\"\n    },\n    {\n      \"id\": 2036,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:38.65Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:04:42.427Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"7 - Tutorial: Secure user sign-in events with Azure Multi-Factor Authentication\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/authentication/tutorial-enable-azure-mfa?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Secure user sign-in events with Azure Multi-Factor Authentication</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2036\"\n    },\n    {\n      \"id\": 2035,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:38.227Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:05:06.677Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"8 - Using security defaults\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/concept-fundamentals-security-defaults?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">What are security defaults?</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2035\"\n    },\n    {\n      \"id\": 2045,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:42.483Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:30:24.05Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - What is Azure Resource Graph?\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/overview?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">What is Azure Resource Graph?</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2045\"\n    },\n    {\n      \"id\": 2044,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:42.1Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:30:40.613Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Azure Resource Graph Explorer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/first-query-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure Resource Graph Explorer</a><br></span><span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2044\"\n    },\n    {\n      \"id\": 2043,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:41.667Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:30:57.65Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Tutorial: Create and share an Azure Resource Graph query in the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/tutorials/create-share-query?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create and share an Azure Resource Graph query in the Azure portal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2043\"\n    },\n    {\n      \"id\": 2042,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:41.283Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:31:13.17Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Starter Resource Graph query samples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/samples/starter?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal&amp;tabs=azure-portal\\\">Starter Resource Graph query samples</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2042\"\n    },\n    {\n      \"id\": 2041,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:40.89Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:31:35.727Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Advanced Resource Graph query samples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/samples/advanced?tabs=azure-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Advanced Resource Graph query samples</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2041\"\n    },\n    {\n      \"id\": 2040,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:40.5Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:32:23.73Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"6 - Understanding the Azure Resource Graph query language\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/concepts/query-language?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Understanding the Azure Resource Graph query language</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2040\"\n    },\n    {\n      \"id\": 2039,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:40.12Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:32:44.327Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"7 - Explore your Azure resources with Resource Graph\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/concepts/explore-resources?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Explore your Azure resources with Resource Graph</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2039\"\n    },\n    {\n      \"id\": 2038,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:39.397Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:33:04.07Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"8 - Azure Resource Graph security baseline for Azure Security Benchmark\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/concepts/azure-security-benchmark-baseline?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure Resource Graph security baseline for Azure Security Benchmark</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2038\"\n    },\n    {\n      \"id\": 2025,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:33.65Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:13:44.34Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Use policies to enforce standards\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/control-and-organize-with-azure-resource-manager/4-use-policies-to-enforce-standards?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Use policies to enforce standards</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2133\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2025\"\n    },\n    {\n      \"id\": 2024,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:33.283Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:26:56.63Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Tutorial: Create and manage Azure budgets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/costs/tutorial-acm-create-budgets?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create and manage\\nAzure budgets</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2024\"\n    },\n    {\n      \"id\": 2023,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:32.86Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-11T22:43:30.03Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Subscription purposes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/fundamental-concepts#azure-subscription-purposes?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Subscription purposes</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2023\"\n    },\n    {\n      \"id\": 2037,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:39.02Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:33:25.403Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"9 - Get resource changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/resource-graph/how-to/get-resource-changes?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Get resource changes</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2037\"\n    },\n    {\n      \"id\": 2033,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:37.42Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-11T22:45:13.917Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"8 - Microsoft Learn: Azure Fundamentals Learning Path\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/paths/azure-fundamentals/?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure fundamentals</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2033\"\n    },\n    {\n      \"id\": 2032,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:37Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:02:23.3Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Organize subscriptions and resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><b>Management Groups:</b></span></div><div><ul><li><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/organize-subscriptions?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\"><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Organize subscriptions</span></span><span style=\\\"font-size:11.0pt;font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">&nbsp;</span></a></li><li><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?tabs=AzureManagementGroupsAndHierarchy?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Organize your Azure Resources\\n(CAF)</a></span></span></li><li><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/management-groups/overview?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\\\">Management Groups</a></span></span></span></li><li><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/management-groups/create-management-group-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create management\\ngroups for resource organization and management</a></span></span></span></span></li></ul></div><div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span><span><b>Naming Conventions:</b></span></span></span></span></div><div><ul><li><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span><span><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Recommended naming and tagging\\nconventions</a></span></span></span></span></span></li><li><font face=\\\"Segoe UI Light, sans-serif\\\"><span style=\\\"font-size:11pt;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/decision-guides/resource-tagging/?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Resource naming and tagging\\ndecision guide</a></span></font><br></li></ul></div><div><font face=\\\"Calibri, sans-serif\\\"><span style=\\\"font-size:14.6667px;\\\"><b>Resource Groups:</b></span></font></div><div><ul><li><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span><span><span><span><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/control-and-organize-with-azure-resource-manager/2-principles-of-resource-groups?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Principles of resource groups&nbsp;</a></span></span></span></span></span></span></span></li><li><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span><span><span><span><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/manage-resource-groups-portal#create-resource-groups?WT.mc_id=devops_userstory_service_sprg-inproduct-devopsportal\\\">Tutorial: Creating Resource Groups</a></span></span></span></span></span></span></span></li></ul></div><div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span><span><span><span><span><b>Tags:</b></span></span></span></span></span></span></span></div><div><ul><li><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span><span><span><span><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/tag-resources#portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\"><span><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Use tags to organize your Azure\\nresources</span></span><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">&nbsp;</span></a></span></span></span></span></span></span></li><li><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span><span><span><span><span><span><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/control-and-organize-with-azure-resource-manager/3-use-tagging-to-organize-resources?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Use tagging to organize\\nresources (MS Learn)</a></span></span></span></span></span></span></span></span></li></ul></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2131\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2032\"\n    },\n    {\n      \"id\": 2031,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:36.597Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-11T22:44:50.6Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"7 - Azure Monitoring and Security on Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Monitoring and Security are important topics on Governance. On Azure those topics are covered by:</div><div><ul><li><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/overview?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure Monitor</a></li><li><a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/security-center-intro?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure Security Center</a></li></ul></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2031\"\n    },\n    {\n      \"id\": 2030,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:36.16Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:27:31.63Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"7 - Tutorial: Optimize costs from recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/costs/tutorial-acm-opt-recommendations?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Optimize costs from\\nrecommendations</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2030\"\n    },\n    {\n      \"id\": 2029,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:35.187Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:27:15.067Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"6 - Tutorial: Create and manage exported data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/costs/tutorial-export-acm-data?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create and manage\\nexported data</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2029\"\n    },\n    {\n      \"id\": 2028,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:34.773Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-11T22:44:14.627Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"6 - Azure administrative roles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/fundamental-concepts#azure-administrative-roles?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure administrative roles</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2028\"\n    },\n    {\n      \"id\": 2027,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:34.403Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-11T22:43:55.09Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Subscription decision guides\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/decision-guides/subscriptions/?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Subscription decision guide</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2027\"\n    },\n    {\n      \"id\": 2011,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:25.967Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-11T22:43:01.523Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Portfolio Hierarchy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/reference/fundamental-concepts/hosting-hierarchy?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Understand and align the portfolio hierarchy</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2011\"\n    },\n    {\n      \"id\": 1991,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:16.843Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:23:30.88Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - Initial subscriptions \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/initial-subscriptions?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\"><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Initial subscriptions</span></span><span style=\\\"font-size:11.0pt;font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"> </span></a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2131\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1991\"\n    },\n    {\n      \"id\": 1990,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:16.31Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-11T22:40:51.57Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - How does Azure Work\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/get-started/what-is-azure?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">How does Azure Works</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1990\"\n    },\n    {\n      \"id\": 2020,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:30.783Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:13:29.32Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Organize policy with initiatives\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/intro-to-governance/3-initiatives?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Organize policy with initiatives</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2133\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2020\"\n    },\n    {\n      \"id\": 2019,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:30.397Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:26:41.03Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Quickstart: Explore and analyze costs with cost analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/costs/quick-acm-cost-analysis?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Quickstart: Explore and analyze\\ncosts with cost analysis</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2019\"\n    },\n    {\n      \"id\": 2018,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:29.973Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:25:09.84Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Associate or add an Azure subscription to you AAD Tenant\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-how-subscriptions-associated-directory?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Associate or add an Azure\\nsubscription to you AAD Tenant</a></span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/active-directory-how-subscriptions-associated-directory\\\"><br></a></div><div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2131\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2018\"\n    },\n    {\n      \"id\": 2017,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:29.593Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:24:42.657Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Tutorial: Create an additional Azure subscription\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/manage/create-subscription?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create an additional\\nAzure subscription</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2131\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2017\"\n    },\n    {\n      \"id\": 2016,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:29.087Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:26:22.9Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - How to optimize your cloud investment with Azure Cost Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/costs/cost-mgt-best-practices?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">How to optimize your cloud\\ninvestment with Azure Cost Management</a></span></span><br></div><div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2016\"\n    },\n    {\n      \"id\": 2015,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:28.703Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:13:08.697Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Define IT compliance with Azure Policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/intro-to-governance/2-azure-policy?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Define IT compliance with Azure\\nPolicy</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2133\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2015\"\n    },\n    {\n      \"id\": 2014,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:27.967Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:19:38.92Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Define standard resources with Azure Blueprints\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/intro-to-governance/5-azure-blueprints?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Define standard resources with\\nAzure Blueprints</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2135\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2014\"\n    },\n    {\n      \"id\": 2013,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:26.743Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:24:47.747Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Get started with Azure Advisor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/advisor/advisor-get-started?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Get started with Azure Advisor</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2137\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2013\"\n    },\n    {\n      \"id\": 2009,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:25.003Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-11T22:42:35.53Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Terminologies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/fundamental-concepts#azure-terminology?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Terminologies</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2009\"\n    },\n    {\n      \"id\": 2008,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:24.62Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:24:32.407Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Introduction to Azure Advisor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/advisor/advisor-overview?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Introduction to Azure Advisor</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2137\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2008\"\n    },\n    {\n      \"id\": 2007,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:24.207Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:18:58.37Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Blueprint definitions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/blueprints/overview#blueprint-definition?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Blueprint definitions</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2135\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2007\"\n    },\n    {\n      \"id\": 2006,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:23.757Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:12:51.64Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Governance, security and compliance in Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/govern-org-compliance?tabs=AzurePolicy?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Governance, security and\\ncompliance in Azure</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2133\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2006\"\n    },\n    {\n      \"id\": 2005,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:23.363Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:18:02.207Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Use resource locks to protect resources (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/control-and-organize-with-azure-resource-manager/6-use-resource-locks-to-protect-resources?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Use resource locks to protect\\nresources (MS Learn)</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2134\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2005\"\n    },\n    {\n      \"id\": 2004,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:22.98Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:23:41.227Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - View service health notifications by using the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/service-health/service-notifications?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">View service health\\nnotifications by using the Azure portal</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2136\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2004\"\n    },\n    {\n      \"id\": 2003,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:22.023Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:26:04.167Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - What is Azure Cost Management and Billing?\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cost-management-billing/cost-management-billing-overview?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">What is Azure Cost Management\\nand Billing?</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2003\"\n    },\n    {\n      \"id\": 2000,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:20.793Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T18:24:09.63Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Scale subscriptions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/scale-subscriptions?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Scale subscriptions</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2131\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2000\"\n    },\n    {\n      \"id\": 1999,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:20.393Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:23:23.883Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - What is Azure Service Health?\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/service-health/overview?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">What is Azure Service Health?</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2136\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1999\"\n    },\n    {\n      \"id\": 1998,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:19.803Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:14:29.783Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - Lock resources to prevent unexpected changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/lock-resources?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Lock resources to prevent\\nunexpected changes</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2134\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1998\"\n    },\n    {\n      \"id\": 1997,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:19.383Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:12:33.223Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - What is Azure Policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/policy/overview?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">What is Azure Policy</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2133\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1997\"\n    },\n    {\n      \"id\": 1996,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:18.993Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:18:35.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - What is Azure Blueprints?\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span lang=PT-BR style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/blueprints/overview?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">What is Azure Blueprints?</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2135\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1996\"\n    },\n    {\n      \"id\": 1995,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:18.573Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:24:13.64Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - Monitoring and reporting in Azure (CAF)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/monitoring-reporting?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Monitoring and reporting in Azure\\n(CAF)</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2137\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1995\"\n    },\n    {\n      \"id\": 1994,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:18.187Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:25:48Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - Manage costs and billing for your Azure resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-costs?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Manage costs and billing for\\nyour Azure resources</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1994\"\n    },\n    {\n      \"id\": 3281,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:37:46.08Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:35.227Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"11 - Governance Implementation Matrix V1\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/Governance_Implementation_Matrix_v1.xlsx?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Governance Implementation Matrix V1</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3281\"\n    },\n    {\n      \"id\": 3280,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:37:28.79Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:31.84Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"10 - Azure Management Subscription Architecture Sample V1\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/Azure_Management-Subscription-Architecture-Sample-v1.vsdx?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure Management Subscription Architecture Sample V1</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3280\"\n    },\n    {\n      \"id\": 3279,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:37:10.983Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:28.133Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"9 - Azure Networking Cloud Architecture Sample V1\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/Azure_Networking_Cloud_Architecture_Sample_v1.vsdx?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure Networking Cloud Architecture Sample V1</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3279\"\n    },\n    {\n      \"id\": 3278,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:36:56.133Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:24.897Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"8 - Azure Cloud Architecture Shared Business Unit Model Sample V1\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/Azure_Cloud_Architecture-Shared-BusinessUnit-Model-Sample_V1.vsdx?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Azure Cloud Architecture Shared Business Unit Model Sample V1</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3278\"\n    },\n    {\n      \"id\": 3277,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:36:36.113Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:20.95Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"7 - Enterprise Scale Architecture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/Enterprise-Scale-Architecture.vsdx?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Enterprise Scale Architecture</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3277\"\n    },\n    {\n      \"id\": 3276,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:36:15.75Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:17.447Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"6 - CAF - Governance Playbook V2\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/CAF_Governance_Playbook%20V2.docx?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">CAF - Governance Playbook V2</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3276\"\n    },\n    {\n      \"id\": 3275,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:35:49.063Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:12.447Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Cloud Adoption Framework One Pager\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/Cloud_Adoption_Framework_One_Pager.pdf?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Cloud Adoption Framework One Pager</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3275\"\n    },\n    {\n      \"id\": 3274,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:35:24.493Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:08.47Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - CAF - Cloud Adoption Framework Overview\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/CAF-Cloud_Adoption_Framework_Overview.pptx?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">CAF - Cloud Adoption Framework Overview</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3274\"\n    },\n    {\n      \"id\": 3273,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-11T22:35:01.32Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:04.31Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - CAF - Azure Account Organization and Governance \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/blob/master/azuregovernance/docs/CAF-Azure_Account_Organization_and_Governance.pptx?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">CAF - Azure Account Organization and Governance </a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3273\"\n    },\n    {\n      \"id\": 2293,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-10T12:55:33.077Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:47:00.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - AzGovViz (Azure Governance Visualizer)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://github.com/julianhayward/azure-mg-sub-governance-reporting?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">AzGovViz - Azure Governance Visualizer</a></span></div><div><br></div><div><span>Do you want to have visibility on your Tenant´s Management Group hierarchy - document it in csv, html and markdown?<br></span><span>AzGovViz is a PowerShell based script that iterates your Azure Tenants Management Group hierarchy down to Subscription level. It captures most relevant Azure governance capabilities such as Azure Policy, RBAC and Blueprints and more. From the collected data AzGovViz provides visibility on your Hierarchy Map, creates a Tenant Summary and builds granular Scope Insights on Management Groups and Subscriptions. </span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2293\"\n    },\n    {\n      \"id\": 2292,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-10T12:53:44.177Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-15T20:46:55.933Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - Cloud Adoption Framework Governance Benchmark Tool\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://cafbaseline.com/?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">https://cafbaseline.com</a><br></span><div><br></div><span>Where are you on your transformation journey? This questionnaire is designed to help you identify gaps in your organization across six key domains as defined in the Microsoft Cloud Adoption Framework</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2292\"\n    },\n    {\n      \"id\": 2128,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:17.73Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:17.73Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Cloud Monitoring\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Cloud Monitoring</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2128\"\n    },\n    {\n      \"id\": 2127,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:17.333Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:17.333Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Cloud monitoring guide: Monitoring strategy for cloud deployment models\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/cloud-models-monitor-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Cloud monitoring guide:\\nMonitoring strategy for cloud deployment models</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2127\"\n    },\n    {\n      \"id\": 2126,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:16.92Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:16.92Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Cloud monitoring guide: Collect the right data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/data-collection\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Cloud monitoring guide: Collect\\nthe right data</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2126\"\n    },\n    {\n      \"id\": 2125,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:16.517Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:16.517Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Cloud monitoroing guide: Alerting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/alerting\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Cloud monitoroing guide:\\nAlerting</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2125\"\n    },\n    {\n      \"id\": 2124,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:16.093Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:16.093Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Cloud monitoring guide: Monitoring platforms overview\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-gb/azure/cloud-adoption-framework/manage/monitor/platform-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Cloud monitoring guide:\\nMonitoring platforms overview</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2124\"\n    },\n    {\n      \"id\": 2123,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:15.703Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:15.703Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Design a holistic monitoring strategy on Azure (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/design-monitoring-strategy-on-azure/\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Design a holistic monitoring\\nstrategy on Azure (MS Learn)</span></a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2123\"\n    },\n    {\n      \"id\": 2122,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:15.33Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:15.33Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Application Insights | What is Application Insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">What is Application Insights</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2122\"\n    },\n    {\n      \"id\": 2121,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:14.947Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:14.947Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Application Insights | Getting Started with Application Insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview#get-started\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Getting Started with\\nApplication Insights</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2121\"\n    },\n    {\n      \"id\": 2120,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:14.543Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:14.543Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Resource Logs Overview\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/resource-logs-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure Resource Logs Overview</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2120\"\n    },\n    {\n      \"id\": 2119,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:14.14Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:14.14Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure storage metrics in Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><font face=\\\"Segoe UI Light, sans-serif\\\"><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/common/storage-metrics-in-azure-monitor\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure storage metrics in Azure</span></a></span><br></font></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2119\"\n    },\n    {\n      \"id\": 2118,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:13.75Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:13.75Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Manage Azure Monitor: Design a workspace deployment\\n\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/design-logs-deployment\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Design a workspace deployment</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2118\"\n    },\n    {\n      \"id\": 2117,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:12.84Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:12.84Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Monitor Azure Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/monitor-azure-resource\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Monitor Azure Service</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2117\"\n    },\n    {\n      \"id\": 2116,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:12.45Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:12.45Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Monitor resource groups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/resource-group-insights\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Monitor resource groups</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2116\"\n    },\n    {\n      \"id\": 2115,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:12.077Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:12.077Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Overview of Azure platform logs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/platform-logs-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Overview of Azure platform logs</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2115\"\n    },\n    {\n      \"id\": 2114,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:11.69Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:11.69Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Activity Log: View and retrieve Azure Activity log events\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/activity-log-view\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">View and retrieve Azure\\nActivity log events</span></a></span><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2114\"\n    },\n    {\n      \"id\": 2113,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:11.29Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:11.29Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Activity Log: Collect and analyze Azure Activity log in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/activity-log-collect\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Collect and analyze Azure\\nActivity log in Azure Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2113\"\n    },\n    {\n      \"id\": 2112,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:10.893Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:10.893Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logs in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/data-platform-logs\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Logs in Azure Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2112\"\n    },\n    {\n      \"id\": 2111,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:10.517Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:10.517Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logs querying: Get started with log queries in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/get-started-queries\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Get started with log queries in\\nAzure Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2111\"\n    },\n    {\n      \"id\": 2110,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:10.093Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:10.093Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logs querying: Azure Monitor log queries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/query-language\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure Monitor log queries</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2110\"\n    },\n    {\n      \"id\": 2109,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:09.69Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:09.69Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logs querying: Tutorial - Create and share dashboards of Log Query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/tutorial-logs-dashboards\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create and share\\ndashboards of Log Query</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2109\"\n    },\n    {\n      \"id\": 2108,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:09.237Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:09.237Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logs querying: Tutorial - Create alert from log query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/tutorial-response\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create alert from log\\nquery</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2108\"\n    },\n    {\n      \"id\": 2107,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:08.83Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:08.83Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logs querying: Azure Monitor log query examples\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/examples\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure Monitor log query\\nexamples</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2107\"\n    },\n    {\n      \"id\": 2106,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:08.393Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:08.393Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logs querying: Writing efficient log queries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/log-query-performance\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Writing efficient log queries</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2106\"\n    },\n    {\n      \"id\": 2105,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:07.91Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:07.91Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logs querying: Log data ingestion time in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/data-ingestion-time\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Log data ingestion time in\\nAzure Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2105\"\n    },\n    {\n      \"id\": 2104,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:07.517Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:07.517Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Analyze your Azure infrastructure by using Azure Monitor logs (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/analyze-infrastructure-with-azure-monitor-logs/\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Analyze your Azure\\ninfrastructure by using Azure Monitor logs (MS Learn)</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2104\"\n    },\n    {\n      \"id\": 2103,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:07.14Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:07.14Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Monitor an Azure resource with Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/quick-monitor-azure-resource\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Monitor an Azure\\nresource with Azure Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2103\"\n    },\n    {\n      \"id\": 2102,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:06.767Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:06.767Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Collect and analyze resource logs from an Azure resource\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/tutorial-resource-logs\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Collect and analyze\\nresource logs from an Azure resource</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2102\"\n    },\n    {\n      \"id\": 2101,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:06.33Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:06.33Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Monitoring Azure virtual machines with Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/monitor-vm-azure\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Monitoring Azure virtual\\nmachines with Azure Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2101\"\n    },\n    {\n      \"id\": 2100,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:05.943Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:05.943Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"What is Azure Monitor for VMs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/vminsights-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">What is Azure Monitor for VMs</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2100\"\n    },\n    {\n      \"id\": 2099,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:05.563Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:05.563Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Monitor an Azure Virtual Machine with Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/learn/quick-monitor-azure-vm\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Monitor an Azure\\nVirtual Machine with Azure Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2099\"\n    },\n    {\n      \"id\": 2098,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:05.1Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:05.1Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Monitor for Containers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/container-insights-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure Monitor for Containers</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2098\"\n    },\n    {\n      \"id\": 2097,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:04.69Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:04.69Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"About Network Watcher\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/network-watcher/\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">About Network Watcher</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2097\"\n    },\n    {\n      \"id\": 2096,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:04.307Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:04.307Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Network Insights (Preview)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/network-insights-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Network Insights (Preview)</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2096\"\n    },\n    {\n      \"id\": 2095,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:03.93Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:03.93Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Networking Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/azure-networking-analytics\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Networking Analytics</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2095\"\n    },\n    {\n      \"id\": 2094,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:03.553Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:03.553Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"DNS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/dns-analytics\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">DNS</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2094\"\n    },\n    {\n      \"id\": 2093,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:03.17Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:03.17Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Network Performance Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/network-performance-monitor\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Network Performance Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2093\"\n    },\n    {\n      \"id\": 2092,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:02.747Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:02.747Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Monitor and troubleshoot your end-to-end Azure network infrastructure by using network monitoring tools (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/troubleshoot-azure-network-infrastructure/\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Monitor and troubleshoot your\\nend-to-end Azure network infrastructure by using network monitoring tools (MS\\nLearn)</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2092\"\n    },\n    {\n      \"id\": 2091,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:02.357Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:02.357Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Monitor for Storage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/insights/storage-insights-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure Monitor for Storage</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2091\"\n    },\n    {\n      \"id\": 2090,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:01.953Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:01.953Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Visualizations: Create interactive reports with Azure Monitor workbooks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/app/usage-workbooks\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Create interactive reports with\\nAzure Monitor workbooks</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2090\"\n    },\n    {\n      \"id\": 2089,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:01.22Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:01.22Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Visualizations: Azure Monitor Workbook Github repository for sample and community workbooks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://github.com/Microsoft/Application-Insights-Workbooks\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure Monitor Workbook Github\\nrepository for sample and community workbooks</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2089\"\n    },\n    {\n      \"id\": 2088,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:00.783Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:00.783Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Visualizarions: Create and share Azure Dashboards\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-portal/azure-portal-dashboards\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Create and share Azure\\nDashboards</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2088\"\n    },\n    {\n      \"id\": 2087,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:00.347Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:55:00.347Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Visualizations: Import Azure Monitor log data into Power BI\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/powerbi\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Import Azure Monitor log data\\ninto Power BI</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2087\"\n    },\n    {\n      \"id\": 2086,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:59.97Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:59.97Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Visualizations: Feed Power BI from Application Insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/app/export-power-bi\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Feed Power BI from Application\\nInsights</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2086\"\n    },\n    {\n      \"id\": 2085,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:59.56Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:59.56Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Visualizations: Monitor your Azure services in Grafana\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/grafana-plugin\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Monitor your Azure services in\\nGrafana</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2085\"\n    },\n    {\n      \"id\": 2084,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:59.177Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:59.177Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Alerts: Overview of alerts in Microsoft Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Overview of alerts in Microsoft\\nAzure</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2084\"\n    },\n    {\n      \"id\": 2083,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:58.8Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:58.8Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Alerts: Create, view and manage alerts based on Log Queries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-gb/azure/azure-monitor/platform/alerts-log\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Create, view and manage alerts\\nbased on Log Queries</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2083\"\n    },\n    {\n      \"id\": 2082,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:58.337Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:58.337Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Alerts: Create Metric Alerts for Logs in Azure Monitor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-metric-logs\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Create Metric Alerts for Logs\\nin Azure Monitor</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2082\"\n    },\n    {\n      \"id\": 2081,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:57.93Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:57.93Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Alerts: Create, view and manage alerts based on Activity Log signals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-gb/azure/azure-monitor/platform/alerts-activity-log\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Create, view and manage alerts\\nbased on Activity Log signals</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2081\"\n    },\n    {\n      \"id\": 2080,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:57.543Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:57.543Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Alerts: Creating action groups for notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-gb/azure/azure-monitor/platform/action-groups\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Creating action groups for\\nnotifications</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2080\"\n    },\n    {\n      \"id\": 2079,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:57.113Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:57.113Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Logic Apps: How to trigger complex actions with Azure Monitor alerts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/platform/action-groups-logic-app\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">How to trigger complex actions\\nwith Azure Monitor alerts</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2079\"\n    },\n    {\n      \"id\": 2078,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:56.73Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:56.73Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Alerts: Improve incident response with alerting on Azure (MS Learn)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/incident-response-with-alerting-on-azure/\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Improve incident response with\\nalerting on Azure (MS Learn)</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2078\"\n    },\n    {\n      \"id\": 2077,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:56.343Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:56.343Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Hub and spoke network topology\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/hub-spoke-network-topology\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Hub and spoke network topology</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2077\"\n    },\n    {\n      \"id\": 2076,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:55.94Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:55.94Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Perimeter networks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/perimeter-networks\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Perimeter networks</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2076\"\n    },\n    {\n      \"id\": 2075,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:55.503Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:55.503Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Best practices for network security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/security/fundamentals/network-best-practices\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Best practices for network\\nsecurity</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2075\"\n    },\n    {\n      \"id\": 2074,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:55.12Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:55.12Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Express Route | Tutorial: Connect a virtual network to an Express Route circuit\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-linkvnet-portal-resource-manager\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Connect a virtual\\nnetwork to an Express Route circuit</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2074\"\n    },\n    {\n      \"id\": 2073,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:54.743Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:54.743Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Express Route | Tutorial: Create and modify peering for an Express Route circuit\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-routing-portal-resource-manager\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create and modify\\npeering for an Express Route circuit</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2073\"\n    },\n    {\n      \"id\": 2072,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:54.36Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:54.36Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Express Route | Tutorial: Create and modify an Express Route circuit\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-circuit-portal-resource-manager\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create and modify an\\nExpress Route circuit</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2072\"\n    },\n    {\n      \"id\": 2071,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:53.44Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:53.44Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Express Route | Prerequisites & Checklist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-prerequisites\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Prerequisites &amp; Checklist</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2071\"\n    },\n    {\n      \"id\": 2070,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:53.057Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:53.057Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Express Route | Circuits and Peering\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-circuit-peerings\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Circuits and Peering</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2070\"\n    },\n    {\n      \"id\": 2069,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:52.647Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:52.647Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Express Route | Connectivity Models\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-connectivity-models\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Connectivity Models</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2069\"\n    },\n    {\n      \"id\": 2068,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:52.23Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:52.23Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure Express Route\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-introduction\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure Express Route</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2068\"\n    },\n    {\n      \"id\": 2067,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:51.797Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:51.797Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create a Point to Site VPN (OpenVPN)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-openvpn\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create a Point to\\nSite VPN (OpenVPN)</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2067\"\n    },\n    {\n      \"id\": 2066,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:51.4Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:51.4Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create a Point to Site VPN (Azure AD authentication)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/openvpn-azure-ad-tenant\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create a Point to\\nSite VPN (Azure AD authentication)</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2066\"\n    },\n    {\n      \"id\": 2065,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:51.017Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:51.017Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create a Point to Site VPN (Radius authentication)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/point-to-site-how-to-radius-ps\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create a Point to\\nSite VPN (Radius authentication)</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2065\"\n    },\n    {\n      \"id\": 2064,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:50.6Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:50.6Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create a Point to Site VPN (Azure certificate authentication)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-point-to-site-resource-manager-portal\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create a Point to\\nSite VPN (Azure certificate authentication)</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2064\"\n    },\n    {\n      \"id\": 2063,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:50.143Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:50.143Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create a Vnet to Vnet VPN\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-vnet-vnet-resource-manager-portal\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create a Vnet to Vnet\\nVPN</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2063\"\n    },\n    {\n      \"id\": 2062,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:49.757Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:49.757Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create a Site to Site connection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-site-to-site-resource-manager-portal\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create a Site to Site\\nconnection</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2062\"\n    },\n    {\n      \"id\": 2061,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:49.377Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:49.377Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create and Manage a VPN Gateway\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/create-routebased-vpn-gateway-portal\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Create and Manage a\\nVPN Gateway</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2061\"\n    },\n    {\n      \"id\": 2060,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:48.977Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:48.977Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure VPN Gateway\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-about-vpngateways\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure VPN Gateway</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2060\"\n    },\n    {\n      \"id\": 2059,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:48.593Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:48.593Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Connect virtual networks with virtual network peering using the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/tutorial-connect-virtual-networks-portal\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Connect virtual\\nnetworks with virtual network peering using the Azure portal</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2059\"\n    },\n    {\n      \"id\": 2058,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:48.217Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:48.217Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Filter network traffic with a network security group using the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/tutorial-filter-network-traffic\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Tutorial: Filter network\\ntraffic with a network security group using the Azure portal</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2058\"\n    },\n    {\n      \"id\": 2057,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:47.843Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:47.843Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Quickstart: Create a virtual network using the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/quick-create-portal\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Quickstart: Create a virtual\\nnetwork using the Azure portal</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2057\"\n    },\n    {\n      \"id\": 2056,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:47.48Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:47.48Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Virtual Networking planning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-vnet-plan-design-arm\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Virtual Networking planning</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2056\"\n    },\n    {\n      \"id\": 2055,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:47.097Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:47.097Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Choose a networking architecure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/considerations/networking-options#choose-a-networking-architecture\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Choose a networking architecure</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2055\"\n    },\n    {\n      \"id\": 2054,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:46.717Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-01T13:54:46.717Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"Azure networking services overview\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/networking/networking-overview\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\">Azure networking services\\noverview</span></a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2054\"\n    },\n    {\n      \"id\": 2053,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:46.3Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:27:58.277Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"8 - Predict costs and optimize spending for Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/predict-costs-and-optimize-spending?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Predict costs and optimize\\nspending for Azure&nbsp;(MS Learn)</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2053\"\n    },\n    {\n      \"id\": 2052,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:45.893Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:25:27.187Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Tutorial: Create Azure Advisor alerts on new recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/advisor/advisor-alerts-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create Azure Advisor\\nalerts on new recommendations</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2137\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2052\"\n    },\n    {\n      \"id\": 2051,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:44.933Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:23:08.46Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Tutorial: Define and assign a blueprint in the portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/blueprints/create-blueprint-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Define and assign a\\nblueprint in the portal</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2135\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2051\"\n    },\n    {\n      \"id\": 2050,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:44.493Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:23:59.703Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Tutorial: Create activity log alerts on service notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/service-health/alerts-activity-log-service-notifications-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create activity log\\nalerts on service notifications</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2136\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2050\"\n    },\n    {\n      \"id\": 2049,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:44.093Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:18:17.15Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Tutorial: Create a lock from Azure Portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/lock-resources#portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create a lock from\\nAzure Portal</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2134\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2049\"\n    },\n    {\n      \"id\": 2048,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:54:43.713Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T19:14:06.993Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"6 - Tutorial: Create a policy assignment to identify non-compliant resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-size:11.0pt;font-family:&quot;Calibri&quot;,sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI Light&quot;,sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/policy/assign-policy-portal?WT.mc_id=devops_userstory_service_gov-inproduct-devopsportal\\\">Tutorial: Create a policy\\nassignment to identify non-compliant resources</a></span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2133\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2048\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-AzureGovernance/WorkItems/User Story.json",
    "content": "{\n  \"count\": 12,\n  \"value\": [\n    {\n      \"id\": 2129,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:18.16Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"1 - Azure Fundamentals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Fundamentals\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2009\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2033\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2023\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2031\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2027\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2011\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1990\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2028\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2129\"\n    },\n    {\n      \"id\": 2130,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:18.603Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"2 - Azure Active Directory Basics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Active Directory Basics\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1993\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2021\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2001\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2026\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2012\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2035\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2036\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2046\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2130\"\n    },\n    {\n      \"id\": 2131,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:19.013Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"3 - Resources Organization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | Resources Organization\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2018\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2032\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2000\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1991\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2017\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2131\"\n    },\n    {\n      \"id\": 2132,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:19.407Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"4 - Role Based Access Control\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | RBAC\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2047\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2010\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2022\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2034\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2002\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1992\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2132\"\n    },\n    {\n      \"id\": 2133,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:19.793Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"5 - Azure Policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | Azure Policy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2015\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2020\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2006\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2048\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1997\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2025\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2133\"\n    },\n    {\n      \"id\": 2134,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:20.193Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"6 - Resource Locks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | Resource Locks\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1998\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2049\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2005\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2134\"\n    },\n    {\n      \"id\": 2135,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:20.613Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"7 - Azure Blueprints\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | Azure Blueprints\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1996\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2014\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2051\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2007\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2135\"\n    },\n    {\n      \"id\": 2136,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:21Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"8 - Azure Service Health\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | Azure Service Health\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1999\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2050\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2004\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2136\"\n    },\n    {\n      \"id\": 2137,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:21.96Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"9 - Azure Advisor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | Azure Advisor\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2013\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2052\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1995\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2008\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2137\"\n    },\n    {\n      \"id\": 2138,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:22.34Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"10 - Azure Cost Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Governance | Azure Cost Management\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2030\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2053\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2016\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1994\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2029\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2003\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2019\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2024\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2138\"\n    },\n    {\n      \"id\": 2139,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-01T13:55:22.78Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-09-10T12:51:57.087Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"11 - Azure Resource Graph\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"11 - Azure Resource Graph\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2043\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2039\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2045\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2042\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2037\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2041\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2044\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2038\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2040\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2139\"\n    },\n    {\n      \"id\": 2291,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Governance - CAF\",\n        \"System.TeamProject\": \"Azure Governance - CAF\",\n        \"System.IterationPath\": \"Azure Governance - CAF\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-09-10T12:51:55.7Z\",\n        \"System.CreatedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:48:36.57Z\",\n        \"System.ChangedBy\": \"Ricardo Martins <ricmart@microsoft.com>\",\n        \"System.Title\": \"12 - Tools and Additional Documents\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3275\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2292\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3281\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3278\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2293\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/1989\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3277\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3273\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3276\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3279\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3274\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/3280\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/ricmart/_apis/wit/workItems/2291\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Dashboard/Queries/All items, all states.json",
    "content": "{\n  \"name\": \"All items, all states\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Dashboard/Queries/Assigned to me.json",
    "content": "{\n  \"name\": \"Assigned to me\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Dashboard/Queries/Followed work items.json",
    "content": "{\n  \"name\": \"Followed work items\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Dashboard/Queries/Workload Template.json",
    "content": "{\n  \"name\": \"Workload Template\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.Description], [System.AssignedTo], [System.State], [System.Tags] from WorkItemLinks where (Source.[System.TeamProject] = @project and Source.[System.WorkItemType] <> '' and Source.[System.State] <> '' and Source.[System.Tags] contains 'Workload Template') and ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward') and (Target.[System.TeamProject] = @project and Target.[System.WorkItemType] <> '') mode (Recursive)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Extensions.json",
    "content": ""
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/ImportSourceCode/Cloud Adoption Plan Master.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/CAFTemplate/Cloud Adoption Plan Master/_git/Cloud Adoption Plan Master\"\n    },\n    \"serviceEndpointId\": \"$Cloud Adoption Plan Master-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Iterations.json",
    "content": "{\n  \"children\": null,\n  \"name\": null,\n  \"structureType\": null,\n  \"hasChildren\": false\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/ServiceEndpoints/Cloud Adoption Plan Master-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Cloud Adoption Plan Master-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/CAFTemplate/Cloud Adoption Plan Master/_git/Cloud Adoption Plan Master\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Teams/Cloud Adoption Plan Master Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Teams/Cloud Adoption Plan Master Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Teams/Cloud Adoption Plan Master Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Teams/Cloud Adoption Plan Master Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Teams/Cloud Adoption Plan Master Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"b011953e-3647-46e7-acd7-641521781cfb\",\n    \"name\": \"Cloud Adoption Plan Master Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/WorkItems/Epic.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 23762,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:27.82Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:27.82Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Cloud Adoption Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Adoption Strategy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23772\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23762\"\n    },\n    {\n      \"id\": 23763,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:28.5Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:28.5Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23763\"\n    },\n    {\n      \"id\": 23764,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:29.133Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:29.133Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Cloud Ready\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Ready\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23764\"\n    },\n    {\n      \"id\": 23765,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:29.507Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:29.507Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Cloud Innovation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Innovation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Innovation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23765\"\n    },\n    {\n      \"id\": 23766,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:29.853Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:29.853Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Cloud Migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cloud Migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23767\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23768\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23766\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/WorkItems/Feature.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 23767,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:30.203Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:30.203Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"First Workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Migrate the first workload to learn and refine your migration process.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23766\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23797\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23793\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23796\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23794\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23795\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23767\"\n    },\n    {\n      \"id\": 23768,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:30.817Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:30.817Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"First Host\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Migrate your first VMWare Host</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23842\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23841\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23840\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23766\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23768\"\n    },\n    {\n      \"id\": 23769,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:31.237Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:31.237Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Workload Template\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Using Excel's Team add-on, copy all work items with the tag &quot;Workload Template&quot;. Past those tags in the excel table &amp; change the Tags &amp; the name of the feature to match your workload's name.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23834\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23839\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23835\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23833\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23838\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23831\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23832\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23837\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23836\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23766\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\"\n    },\n    {\n      \"id\": 23770,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:31.6Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:31.6Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Landing zone creation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Landing zone creation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23764\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23846\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23844\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23843\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23845\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23770\"\n    },\n    {\n      \"id\": 23771,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:31.947Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:31.947Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Define the Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Define the Cloud Adoption Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23848\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23850\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23849\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23763\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23847\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23771\"\n    },\n    {\n      \"id\": 23772,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:32.3Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:32.3Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Define Adoption Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Define Adoption Strategy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23854\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23853\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23762\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23851\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23852\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23772\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/WorkItems/Task.json",
    "content": "{\n  \"count\": 58,\n  \"value\": [\n    {\n      \"id\": 23806,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:44.437Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:20:24.087Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Prioritize workloads\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/workloads\\\">Define and prioritize workloads</a> in the backlog</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23847\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23806\"\n    },\n    {\n      \"id\": 23805,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:44.1Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:20:31.25Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Align assets to workloads\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Ensure that all <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/assets\\\">assets are aligned</a> to at least one workload</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23847\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23805\"\n    },\n    {\n      \"id\": 23804,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:43.747Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:20:28.823Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Define iterations and releases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/iteration-paths\\\">Update the iteration path</a> of each workload to define iterations of work and iterations of production workload releases.</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23847\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23804\"\n    },\n    {\n      \"id\": 23803,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:43.43Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:20:24.087Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Create timelines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/timelines\\\">Create timelines</a> to align expectations across the business and IT teams.</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23847\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23803\"\n    },\n    {\n      \"id\": 23818,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:48.977Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:01.89Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Review test results\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review results of the workload test to evaluate data and proper sizing&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23837\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23818\"\n    },\n    {\n      \"id\": 23822,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:50.577Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:48.507Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Set up Azure Monitor to track performance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Azure monitor to track CPU, Memory, and other performance metrics on VMs\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23836\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23822\"\n    },\n    {\n      \"id\": 23827,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:52.43Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:44.857Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Assess\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Evaluate readiness, architecture, cost, and appropriate migration tooling</div><div>Guide:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/assess\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/assess</a></div><div>Considerations: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/</a></div><div>Decision Tree:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23833\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23827\"\n    },\n    {\n      \"id\": 23830,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:53.567Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:15.253Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Decisions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Evaluate decisions that impact migration efforts:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/decisions\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/decisions</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23831\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23830\"\n    },\n    {\n      \"id\": 23809,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:45.46Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:33.213Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Power down assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Turn off existing VMs&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23839\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23809\"\n    },\n    {\n      \"id\": 23814,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:47.35Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:15.463Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Network dependencies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate network traffic based on scale test to identify unplanned dependencies&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23838\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23814\"\n    },\n    {\n      \"id\": 23797,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:41.237Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:21:44.45Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Azure Migration Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Follow the Azure Migration Guide to deploy the first workload in the cloud adoption plan. <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/?tabs=Overview\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/?tabs=Overview</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23767\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23797\"\n    },\n    {\n      \"id\": 23802,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:43.07Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:25.1Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Evaluate workload and asset readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/evaluate\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/evaluate</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23832\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23802\"\n    },\n    {\n      \"id\": 23792,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:39.457Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:31.323Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Assess\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Evaluate readiness, architecture, cost, and appropriate migration tooling\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/assess\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/\\n<br>Decision Tree: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23835\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23792\"\n    },\n    {\n      \"id\": 23787,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:37.72Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:17.86Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Assess\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Evaluate readiness, architecture, cost, and appropriate migration tooling\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/assess\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/\\n<br>Decision Tree: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23834\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23787\"\n    },\n    {\n      \"id\": 23779,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:34.833Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:30.243Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Prerequisites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#prerequisites\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#prerequisites</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23841\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23779\"\n    },\n    {\n      \"id\": 23774,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:32.99Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:48.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Evaluate migration options used to migrate the first host\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Determine which approaches are to be supported during iterative migration processes</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23840\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23774\"\n    },\n    {\n      \"id\": 23782,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:35.883Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:20.637Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Escalate private cloud privileges\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/escalate-privileges/\\\">https://docs.azure.cloudsimple.com/escalate-privileges/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23842\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23782\"\n    },\n    {\n      \"id\": 23781,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:35.533Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:23.52Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Configure on-premises DNS for private cloud\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/on-premises-dns-setup/\\\">https://docs.azure.cloudsimple.com/on-premises-dns-setup/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23842\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23781\"\n    },\n    {\n      \"id\": 23778,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:34.48Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:34.4Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migrate ISOs and Templates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-isos-and-templates\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-isos-and-templates</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23841\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23778\"\n    },\n    {\n      \"id\": 23786,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:37.34Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:20.423Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Leverage the define migration solution to automate migration of the asset to the cloud. This step may be best executed as a single task for all assets associated with this workload.\\n<br>Guide https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/migrate\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/migrate/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23834\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23786\"\n    },\n    {\n      \"id\": 23791,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:39.103Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:33.563Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Leverage the define migration solution to automate migration of the asset to the cloud. This step may be best executed as a single task for all assets associated with this workload.\\n<br>Guide https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/migrate\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/migrate/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23835\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23791\"\n    },\n    {\n      \"id\": 23801,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:42.687Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:28.243Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Architect workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Define future state architecture for the workload:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/architect\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/architect</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23832\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23801\"\n    },\n    {\n      \"id\": 23796,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:40.887Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:21:47.883Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Select the first workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Select a first workload that is suitable as a trial run or pilot of your migration process.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/digital-estate/rationalize#selecting-the-first-workload\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/digital-estate/rationalize#selecting-the-first-workload</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23767\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23796\"\n    },\n    {\n      \"id\": 23813,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:46.99Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:18.087Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Security Review\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate adherence to security baseline&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23838\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23813\"\n    },\n    {\n      \"id\": 23808,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:45.127Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:35.66Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Workload monitoring period\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Monitor application performance for a period of time to validate that the application is free of unplanned dependencies on decommissioned assets&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23839\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23808\"\n    },\n    {\n      \"id\": 23829,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:53.2Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:16.847Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Roles and Responsibilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The various functions required during this migration are represented by one or more members of the team.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/culture-complexity?branch=pr-en-us-47\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/culture-complexity</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23831\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23829\"\n    },\n    {\n      \"id\": 23826,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:52.08Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:53.063Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Leverage the define migration solution to automate migration of the asset to the cloud. This step may be best executed as a single task for all assets associated with this workload.</div><div>Guide&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/migrate\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/migrate</a></div><div>Considerations:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/migrate/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/migrate/</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23833\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23826\"\n    },\n    {\n      \"id\": 23821,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:50.137Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:51.363Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Manual test with power users\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Observe power users from the business performing manual validation of the workload&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/business-test\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/business-test</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23836\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23821\"\n    },\n    {\n      \"id\": 23817,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:48.587Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:04.093Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Decide on optimization timing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Decide if testing is sufficient to optimize (Or if optimization should happen after promotion)&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23837\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23817\"\n    },\n    {\n      \"id\": 23816,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:48.257Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:06.367Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Adjust sizing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Change the size of the deployed asset&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/optimize</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23837\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23816\"\n    },\n    {\n      \"id\": 23820,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:49.81Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:54.223Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Create/select automated test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Use an existing test or create a test script based on power user testing.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23836\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23820\"\n    },\n    {\n      \"id\": 23825,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:51.697Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:56Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Optimize workload(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Test, measure performance, and optimize workloads. When ready promote the workload to production</div><div>Guide:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/optimize-and-transform\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/optimize-and-transform</a></div><div>Considerations:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23833\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23825\"\n    },\n    {\n      \"id\": 23812,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:46.583Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:20.983Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Governance Review\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate adherence to governance or compliance requirements&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23838\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23812\"\n    },\n    {\n      \"id\": 23795,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:40.563Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:21:50.98Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Review Expanded Scope Checklist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Review the expanded scope checklist to identify any scope requirements which would cause significant deviations from the Azure Migration Guide:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/expanded-scope/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/expanded-scope/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23767\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23795\"\n    },\n    {\n      \"id\": 23800,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:42.3Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:31.24Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Estimate Cloud Costs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Estimate cost of the proposed workload. Update the business justification and budget accordingly.&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/estimate\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/estimate</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23832\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23800\"\n    },\n    {\n      \"id\": 23790,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:38.77Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:35.747Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Optimize workload(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Test, measure performance, and optimize workloads. When ready promote the workload to production\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/optimize-and-transform\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23835\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23790\"\n    },\n    {\n      \"id\": 23785,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:36.997Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:22.85Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Optimize workload(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Test, measure performance, and optimize workloads. When ready promote the workload to production\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/optimize-and-transform\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23834\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23785\"\n    },\n    {\n      \"id\": 23777,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:34.133Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:38.247Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migrate VMs using PowerCLI\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-powercli\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-powercli</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23841\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23777\"\n    },\n    {\n      \"id\": 23776,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:33.8Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:39.97Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migrate VMs using NSX Layer 2 VPN\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-nsx-layer-2-vpn\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-nsx-layer-2-vpn</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23841\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23776\"\n    },\n    {\n      \"id\": 23784,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:36.627Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:25.157Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Secure and Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ideally governance, security, and operations have each been factored into the operating model for your cloud environments. If they have not, take a moment to validate security and management constraints for this asset.\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/secure-and-manage\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/secure-and-manage/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23834\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23784\"\n    },\n    {\n      \"id\": 23789,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:38.46Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:25:37.837Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Secure and Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ideally governance, security, and operations have each been factored into the operating model for your cloud environments. If they have not, take a moment to validate security and management constraints for this asset.\\n<br>Guide: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/secure-and-manage\\n<br>Considerations: https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/secure-and-manage/\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23835\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23789\"\n    },\n    {\n      \"id\": 23799,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:41.94Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:37.177Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migration tool choice(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Evaluate the approach to migrate the workload based on future state architecture decisions&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23832\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23799\"\n    },\n    {\n      \"id\": 23794,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:40.18Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:21:53.437Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Review Best Practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Review migration best practices to identify additional technical requirements that would aid in the success of your migration effort:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-best-practices/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-best-practices/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23767\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23794\"\n    },\n    {\n      \"id\": 23811,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:46.21Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:26:22.89Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Final test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Validate availability of all assets before production\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23838\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23811\"\n    },\n    {\n      \"id\": 23824,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:51.297Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:24:58.73Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Secure and Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Ideally governance, security, and operations have each been factored into the operating model for your cloud environments. If they have not, take a moment to validate security and management constraints for this asset.</div><div>Guide: <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/secure-and-manage\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/azure-migration-guide/secure-and-manage</a></div><div>Considerations:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/secure-and-manage/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/secure-and-manage/</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23833\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23824\"\n    },\n    {\n      \"id\": 23828,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:52.827Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:52.827Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Environment readiness (Landing Zone)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Has the cloud migration target been established? Are the necessary migration tools in place? Has a resource organization and naming standard been set for this workload's assets?&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/planning-checklist\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/prerequisites/planning-checklist</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23831\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23828\"\n    },\n    {\n      \"id\": 23807,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:44.787Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:44.787Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Decommission\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Terminate or resuse the allocated resources&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/decommission</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23839\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23807\"\n    },\n    {\n      \"id\": 23823,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:50.907Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:50.907Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Document configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Document Configuration of the VM in the User Story\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23833\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23823\"\n    },\n    {\n      \"id\": 23819,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:49.35Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:49.35Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Scale Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Execute the test at scale to test asset performance under load.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23836\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23819\"\n    },\n    {\n      \"id\": 23815,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:47.887Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:47.887Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Document change\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Record the change in sizing in the parent feature, along with the reason for change\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23837\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23815\"\n    },\n    {\n      \"id\": 23810,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:45.817Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:45.817Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Promotion\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Re-route production traffic to deployed assets&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/optimize/promote</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23838\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23810\"\n    },\n    {\n      \"id\": 23793,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:39.82Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:39.82Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update the adoption plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Update the migration plan with any process or task changes based on the first workload<br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Workload\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23767\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23793\"\n    },\n    {\n      \"id\": 23798,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:41.59Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:41.59Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Change approval process\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Approve proposed changes with necessary change control mechanisms:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/approve\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/approve</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23832\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23798\"\n    },\n    {\n      \"id\": 23788,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:38.107Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:38.107Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Document configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Document Configuration of the VM in the User Story\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23835\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23788\"\n    },\n    {\n      \"id\": 23783,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:36.24Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:36.24Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Document configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Document Configuration of the VM in the User Story\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23834\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23783\"\n    },\n    {\n      \"id\": 23780,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:35.173Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:35.173Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Configure workload DNS and DHCP setup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/dns-dhcp-setup/\\\">https://docs.azure.cloudsimple.com/dns-dhcp-setup/</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23842\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23780\"\n    },\n    {\n      \"id\": 23773,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:32.653Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:32.653Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update the migration tooling decision tree to reflect VMWare migration options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Download and modify the migration tool decision tree to align to your expanded migration processes&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/decision-guides/migrate-decision-guide/</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23840\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23773\"\n    },\n    {\n      \"id\": 23775,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:33.377Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:10:33.377Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migrate VMs using backup and disaster recovery tools\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-backup-and-disaster-recovery-tools\\\">https://docs.azure.cloudsimple.com/migrate-workloads/#migrate-vms-using-backup-and-disaster-recovery-tools</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23841\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23775\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-CloudAdoptionPlan/WorkItems/User Story.json",
    "content": "{\n  \"count\": 24,\n  \"value\": [\n    {\n      \"id\": 23831,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:53.927Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Prerequisites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Validate completion of prerequisites &amp; document answers\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23829\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23828\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23830\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23831\"\n    },\n    {\n      \"id\": 23832,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:54.297Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Assess the workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/?branch=pr-en-us-47\\\">https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/migrate/migration-considerations/assess/?branch=pr-en-us-47</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23799\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23800\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23802\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23801\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23798\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23832\"\n    },\n    {\n      \"id\": 23833,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:54.683Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"VM - UX Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"VM to be migrated\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23827\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23823\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23824\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23825\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23826\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23833\"\n    },\n    {\n      \"id\": 23834,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:55.043Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"VM - Middle Tier\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"VM to be migrated\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23784\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23786\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23834\"\n    },\n    {\n      \"id\": 23835,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:55.417Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"VM 3 - SQL Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"VM to be migrated\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23788\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23789\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23790\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23791\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23792\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23835\"\n    },\n    {\n      \"id\": 23836,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:55.797Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Test Workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Validate funcationality of the workload\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23821\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23820\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23822\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23819\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23836\"\n    },\n    {\n      \"id\": 23837,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:56.15Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Optimize Workload Assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Tune the migrated assets based on observations\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23816\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23815\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23817\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23818\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23837\"\n    },\n    {\n      \"id\": 23838,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:56.507Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Promote Workload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Tune the migrated assets based on testing feedback\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23811\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23810\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23814\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23813\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23812\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23838\"\n    },\n    {\n      \"id\": 23839,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:56.857Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Decomission Retired Assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Realize cost savings by terminating retired assets\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Workload Template\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23808\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23809\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23807\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23839\"\n    },\n    {\n      \"id\": 23842,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:58Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:04.71Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Extend the landing zone for VMWare\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Resolve defined prerequisites necessary to migrate VMWare assets to Azure</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23768\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23781\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23780\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23782\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23842\"\n    },\n    {\n      \"id\": 23841,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:57.643Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:23:09Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Migrate VMs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Migrate a select group of VMs from the on-premises host to a host on Azure</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23778\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23776\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23775\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23768\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23841\"\n    },\n    {\n      \"id\": 23840,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:57.24Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update migration assessment, decision tree, and tooling\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Evaluate the results of the migration from the first host to inform iterative processes</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"First Host\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23774\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23768\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23773\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23840\"\n    },\n    {\n      \"id\": 23846,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:59.737Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Azure Readiness Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Review the </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/azure-readiness-guide/index\\\">Azure Readiness Guide</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to become familiar with the tools and approaches needed in landing zone creation.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23846\"\n    },\n    {\n      \"id\": 23845,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:59.177Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:43.63Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"CAF Migrate Landing Zone blueprint\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Evaluate the </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/azure-readiness-guide/migration-landing-zone\\\">CAF Migrate Landing Zone blueprint</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">. If the assumptions and decisions in that article align to your business and technical objectives, the blueprint can be used to create your landing zone.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23845\"\n    },\n    {\n      \"id\": 23844,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:58.79Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:45.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Landing zone considerations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Review </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/ready/considerations/index\\\">landing zone considerations</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to understand the alternative decisions which could impact your landing zone design.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23844\"\n    },\n    {\n      \"id\": 23843,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:10:58.363Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Deploy the modified blueprint\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Update the landing zone blueprint based on the impacted considerations and deploy the modified blueprint.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23843\"\n    },\n    {\n      \"id\": 23850,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:11:01.267Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Digital Estate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/digital-estate/inventory\\\">Inventory</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> and </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/digital-estate/rationalize\\\">rationalize the digital estate</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> based on assumptions which align with motivations and business outcomes.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23850\"\n    },\n    {\n      \"id\": 23849,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:11:00.913Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:19:22.487Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Initial organizational alignment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Establish a plan for </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/organization/index\\\">organizational alignment</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">, included defined </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/organization/raci-alignment\\\">RACI diagrams</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23849\"\n    },\n    {\n      \"id\": 23848,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:11:00.547Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:19:20.157Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Skills readiness plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Create a plan for addressing </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-in/azure/cloud-adoption-framework/ready/suggested-skills\\\">skills readiness gaps</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23848\"\n    },\n    {\n      \"id\": 23847,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:11:00.18Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:19:17.703Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update this Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Update this </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/plan/plan-intro\\\">cloud adoption plan</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to manage effort and change.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23804\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23806\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23803\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23805\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23847\"\n    },\n    {\n      \"id\": 23854,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:11:02.737Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:18:38.94Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Motivations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;\\\">Meet with key stakeholders and executives to d</span><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">ocument the </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/motivations-why-are-we-moving-to-the-cloud\\\">motivations</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> which are driving an interest in cloud adoption.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23772\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23854\"\n    },\n    {\n      \"id\": 23853,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:11:02.35Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:19:39.883Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Business Outcomes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Engage motivated stakeholders and executives to document specific </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/business-outcomes/index\\\">business outcomes</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23772\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23853\"\n    },\n    {\n      \"id\": 23852,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:11:01.993Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:19:38.177Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Business Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">Develop a </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/cloud-migration-business-case\\\">business case</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to validate the financial model supporting the motivations and outcomes.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23772\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23852\"\n    },\n    {\n      \"id\": 23851,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-07-03T07:11:01.617Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-07-03T07:19:35.953Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"First Adoption Project\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\">In parallel to strategy and plan development, technical staff should begin implementation of a </span><a style=\\\"cursor:pointer;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;outline-color:invert;\\\" href=\\\"https://docs.microsoft.com/en-us/azure/architecture/cloud-adoption/business-strategy/first-adoption-project\\\">first adoption project</a><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:decimal;\\\"> to expand cloud skills.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Strategy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23772\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/culater/_apis/wit/workItems/23851\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/Extensions.json",
    "content": ""
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/ImportSourceCode/Knowledge Mining Solution on Azure.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/Knowledge Mining/_git/Knowledge Mining Solution on Azure\"\n    },\n    \"serviceEndpointId\": \"$Knowledge Mining Solution on Azure-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Knowledge Mining\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/ServiceEndpoints/Knowledge Mining Solution on Azure-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Knowledge Mining Solution on Azure-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/lpcs/Knowledge Mining Solution on Azure/_git/Knowledge Mining Solution on Azure\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/Teams/Knowledge Mining Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/Teams/Knowledge Mining Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/Teams/Knowledge Mining Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/Teams/Knowledge Mining Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/Teams/Knowledge Mining Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"aa680ee6-beac-475c-978d-4a346104b572\",\n    \"name\": \"Knowledge Mining Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 3670,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T17:24:49.69Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:46:40.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Knowledge Mining Planning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review content in the Cloud Adoption Framework:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/innovate/ai/knowledge-mining?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/innovate/ai/knowledge-mining?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3631\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3680\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3679\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3670\"\n    },\n    {\n      \"id\": 3671,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T17:25:09.43Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:46:40.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Knowledge Mining Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>A Developer’s Guide to Building AI-Driven Knowledge Mining Solutions:</div><div><br></div><div><a href=\\\"https://azure.microsoft.com/en-us/resources/a-developers-guide-to-building-ai-driven-knowledge-mining-solutions/?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://azure.microsoft.com/en-us/resources/a-developers-guide-to-building-ai-driven-knowledge-mining-solutions/?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3630\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3629\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3628\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3671\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/WorkItems/Feature.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 3628,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:25.14Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement monitoring for Knowledge Mining Solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Monitor <a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-monitor-usage?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Usage</a></div><div><br></div><div><b>Monitor Statistics</b></div><div><font face=\\\"Segoe UI, SegoeUI, Helvetica Neue, Helvetica, Arial, sans-serif\\\"><span style=\\\"font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/rest/api/searchservice/get-service-statistics?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">GET Service Statistics</a></span></font><br><font face=\\\"Segoe UI, SegoeUI, Helvetica Neue, Helvetica, Arial, sans-serif\\\"><span style=\\\"font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/rest/api/searchservice/get-index-statistics?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">GET Index Statistics</a></span></font><br><font face=\\\"Segoe UI, SegoeUI, Helvetica Neue, Helvetica, Arial, sans-serif\\\"><span style=\\\"font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/rest/api/searchservice/count-documents?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">GET Document Counts</a></span></font><br><a href=\\\"https://docs.microsoft.com/en-us/rest/api/searchservice/get-indexer-status?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\"><font face=\\\"Segoe UI, SegoeUI, Helvetica Neue, Helvetica, Arial, sans-serif\\\"><span style=\\\"font-size:16px;\\\">GET Indexer Status</span></font><br></a><br></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3641\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3628\"\n    },\n    {\n      \"id\": 3629,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:25.45Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Reporting for Knowledge Mining Solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/knowledge-store-concept-intro?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Create Knowledge Store</a></div><div><br></div><div>Refer on how to create <a href=\\\"https://docs.microsoft.com/en-us/azure/search/knowledge-store-projection-overview?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Projections</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3642\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3629\"\n    },\n    {\n      \"id\": 3630,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:25.74Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Knowledge Mining Solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Leverage <a href=\\\"https://docs.microsoft.com/en-us/rest/api/searchservice/?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">REST API&nbsp;</a>&nbsp;<span style=\\\"\\\">or Azure Portal UI</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3663\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3661\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3630\"\n    },\n    {\n      \"id\": 3631,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:26.423Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Planning for Knowledge Mining Solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review Resources as necessary</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/cognitive-search-resources-documentation\\\">https://docs.microsoft.com/en-us/azure/search/cognitive-search-resources-documentation</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3670\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3649\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3681\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3631\"\n    },\n    {\n      \"id\": 3679,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T20:25:45.427Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:46:40.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Planning for the platform\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3670\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3668\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3665\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3679\"\n    },\n    {\n      \"id\": 3680,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T20:26:56.617Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:46:40.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Planning for the data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3670\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3664\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3667\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3666\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3680\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/WorkItems/Task.json",
    "content": "{\n  \"count\": 36,\n  \"value\": [\n    {\n      \"id\": 3632,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:26.76Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Azure Cognitive Search resource\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create the resource using Portal</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-create-service-portal?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Cognitive Search Service</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3663\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3632\"\n    },\n    {\n      \"id\": 3633,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:27.087Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Azure Cognitive Service Resource\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create&nbsp; Azure cognitive services resource.&nbsp;</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cognitive-services/cognitive-services-apis-create-account?tabs=multiservice%2cwindows?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Details</a></div><div>This will be needed if the index enrichment pipeline includes any custom skill.</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3663\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3633\"\n    },\n    {\n      \"id\": 3634,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:27.527Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Index\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Create the resource using Portal</div><div style=\\\"box-sizing:border-box;\\\"><br></div></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-get-started-portal?tabs=multiservice%2cwindows?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Details</a><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3663\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3634\"\n    },\n    {\n      \"id\": 3635,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:27.81Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Skillset\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create skillset using the portal</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/cognitive-search-quickstart-blob?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Details</a></div><div><br></div><div>Refer to <a href=\\\"https://docs.microsoft.com/en-us/azure/search/cognitive-search-predefined-skills?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Built-in skillset&nbsp;</a><span style=\\\"display:inline !important;\\\"><span>&nbsp;</span></span></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3663\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3635\"\n    },\n    {\n      \"id\": 3636,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:27.937Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Indexer Job\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/rest/api/searchservice/create-indexer\\\">C</a>reate Indexer Job using REST API<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/rest/api/searchservice/create-indexer?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Details</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3663\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3636\"\n    },\n    {\n      \"id\": 3637,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:28.083Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Optional components based on sources - Logic App, Function App\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>For any custom skill, leverage other compute options. This includes Azure Functions and Web Jobs</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cognitive-services/cognitive-services-development-options?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Details</a><br></div><div><br></div><div>For fetching data from data sources like SharePoint, Documentum etc.. provision Logic App for integration</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3663\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3637\"\n    },\n    {\n      \"id\": 3638,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:28.333Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Security Trimming in the Search results\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Apply <a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-security-trimming-for-azure-search?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Trimming</a></div><div><span style=\\\"\\\">Apply filters on user <a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-security-trimming-for-azure-search-with-aad?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">identity</a></span><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3668\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3638\"\n    },\n    {\n      \"id\": 3639,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:28.66Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement outbound security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-indexer-howto-access-ip-restricted\\\"></a></div><div><span style=\\\"display:inline !important;\\\">Apply below options as necessary</span><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-indexer-howto-access-ip-restricted?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Access Over IP Range</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-indexer-howto-access-trusted-service-exception?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Access through trusted Service exception</a><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-indexer-howto-access-private?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Access through Private Endpoint</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3668\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3639\"\n    },\n    {\n      \"id\": 3640,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:28.81Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement inbound Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Apply below options as necessary</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-security-api-keys?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">API Access</a><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/service-configure-firewall?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Configure IP Firewall</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/service-create-private-endpoint?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Create a Private Endpoint</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3668\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3640\"\n    },\n    {\n      \"id\": 3641,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:28.98Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Custom Analyzer (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/tutorial-create-custom-analyzer?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Create Custom Analyzer</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3628\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3641\"\n    },\n    {\n      \"id\": 3642,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:29.153Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Knowledge Store\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/knowledge-store-create-portal?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Create the Knowledge Store</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3629\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3642\"\n    },\n    {\n      \"id\": 3643,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:29.303Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario - Contract Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Many companies create products for multiple sectors, hence the business opportunities with different vendors and buyers increases exponentially. Knowledge mining can help organizations to scour thousands of pages of sources to create an accurate bid. Minor details in the bidding process can make the difference between a healthy profit or lost opportunity on a project.<br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-au/azure/architecture/solution-ideas/articles/contract-management?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Contract Management</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3643\"\n    },\n    {\n      \"id\": 3644,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:29.46Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario - Digital Asset Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Given the amount of unstructured data created daily, many companies are struggling to make use of or find information within their files. Knowledge mining through a search index makes it easy for end customers and employees to locate what they are looking for faster.<br></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-au/azure/architecture/solution-ideas/articles/digital-asset-management?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Digital Asset Management</a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3644\"\n    },\n    {\n      \"id\": 3645,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:29.603Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario - Customer Feedback and Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div>Every company is looking to enhance the customer experience. Knowledge mining can aggregate and analyze data to discover trends about what customers are saying and use that information to improve products and services<br></div><span></span><br></div><div><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-au/azure/architecture/solution-ideas/articles/customer-feedback-and-analytics?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Customer Feedback and Analytics</a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3645\"\n    },\n    {\n      \"id\": 3646,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:29.747Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario - Business Process Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div><span style=\\\"\\\">When organizations task employees with the review and research of technical data, it can be tedious to read page after page of dense text. Knowledge mining helps employees quickly review these materials. In industries where bidding competition is fierce, or when the diagnosis of a problem must be quick or in near real-time, companies can use knowledge mining to avoid costly mistakes.</span><br></div><div><br></div><a href=\\\"https://docs.microsoft.com/en-au/azure/architecture/solution-ideas/articles/business-process-management?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Business Process Management</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3646\"\n    },\n    {\n      \"id\": 3647,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:29.873Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario - Auditing, risk, and compliance management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">In the ever-changing world of regulations, organizations face the challenge of staying on top of audits and compliance. Mistakes in contracts and record-keeping can have serious financial ramifications. At the enterprise level, teams of lawyers might not be enough to catch everything. Knowledge mining can provide helpful assistance for organizations looking to stay above board.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><a href=\\\"https://docs.microsoft.com/en-au/azure/architecture/solution-ideas/articles/auditing-and-risk-compliance?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Auditing, risk, and compliance management</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3647\"\n    },\n    {\n      \"id\": 3648,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:30.017Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario - Content Research\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">When organizations task employees to review and research of technical data, it can be tedious to read page after page of dense text. Knowledge mining helps employees quickly review these dense materials. In industries where bidding competition is fierce, or when the diagnosis of a problem must be quick or in near real-time, companies can use knowledge mining to avoid costly mistakes.</span><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-au/azure/architecture/solution-ideas/articles/content-research?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Content Research&nbsp;</a></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3648\"\n    },\n    {\n      \"id\": 3650,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:30.42Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Assemble Team - Key roles in implementing Knowledge Mining Solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Assemble Team - Key roles in implementing Knowledge Mining Solution\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3650\"\n    },\n    {\n      \"id\": 3651,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:30.64Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:48:10.233Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Execute Fuzzy Search\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create a <a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-query-fuzzy?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Fuzzy Search</a> request<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3661\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3651\"\n    },\n    {\n      \"id\": 3652,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:30.783Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:48:33.517Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Execute Advanced queries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create an <a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-query-lucene-examples?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">advanced query</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3661\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3652\"\n    },\n    {\n      \"id\": 3653,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:30.92Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:05:13.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Execute Simple query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create a <a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-query-simple-examples?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Simple Query</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3661\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3653\"\n    },\n    {\n      \"id\": 3654,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:31.13Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T16:59:31.13Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Skillset\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create Skillset\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3654\"\n    },\n    {\n      \"id\": 3655,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:31.273Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Relational Data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Support for SQL database content is provided natively</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-indexer-tutorial#2---set-up-your-environment?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Relational Data Source</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3662\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3655\"\n    },\n    {\n      \"id\": 3656,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:31.417Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Social Media Data Collection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Plan:</div><div style=\\\"box-sizing:border-box;\\\">Integrate Azure function app to fetch social media contents and Meta data using REST API calls</div><div style=\\\"box-sizing:border-box;\\\">Refer to social media developer support to fetch the contents</div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://developers.facebook.com/\\\">Facebook for Developers</a><br></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://developer.twitter.com/en/docs/twitter-api\\\">Twitter API Documentation | Docs | Twitter Developer</a><br></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://developers.facebook.com/docs/instagram-api/\\\">Instagram Graph API - Instagram Platform (facebook.com)</a><br></div><div style=\\\"box-sizing:border-box;\\\"><br></div><div style=\\\"box-sizing:border-box;\\\">Store the data into centralized, secured data lake for indexing.&nbsp;</div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3662\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3656\"\n    },\n    {\n      \"id\": 3657,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:31.557Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"O365 Emails\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;\\\">Plan:</div><div style=\\\"box-sizing:border-box;\\\">Integrate Azure logic app to fetch contents and Meta data using REST API calls&nbsp; - Refer to this&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/connectors/office365groupsmail/?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">link</a></div><div style=\\\"box-sizing:border-box;\\\"><br></div><span style=\\\"display:inline !important;\\\">Store the data into centralized, secured data lake for indexing.&nbsp;</span><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3662\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3657\"\n    },\n    {\n      \"id\": 3658,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:31.85Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Documentum\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Plan:</div><div>Integrate Azure function app to fetch document contents and Mets data using REST API calls</div><div><a href=\\\"https://developer.opentext.com/apis/e48986bc-a175-4b1d-b848-f1fca60733a3/File%20360%20-%20Collections#operation/PerformRetrieval\\\">File 360 - Collections | Store &amp; Manage | OpenText APIs | Developer | OpenText</a><br></div><div><br></div><div>Store the data into centralized, secured data lake for indexing.&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3662\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3658\"\n    },\n    {\n      \"id\": 3659,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:31.98Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"SharePoint Libraries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Plan:</div><div style=\\\"box-sizing:border-box;\\\">Integrate Azure logic app with <a href=\\\"https://docs.microsoft.com/en-us/azure/connectors/connectors-create-api-sharepoint#:~:text=With%20Azure%20Logic%20Apps%20and%20the%20SharePoint%20connector%2c%2cfiles%20or%20items%20are%20created%2c%20changed%2c%20or%20deleted.?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">SharePoint connector</a>&nbsp; to fetch document contents and Meta data using REST API calls</div><div style=\\\"box-sizing:border-box;\\\"><br></div><div style=\\\"box-sizing:border-box;\\\">Store the data into centralized, secured data lake for indexing.&nbsp;</div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3662\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3659\"\n    },\n    {\n      \"id\": 3672,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T17:28:25.2Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:58.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Course: Azure Cloud Fundamentals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/intro-to-azure-fundamentals/?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/intro-to-azure-fundamentals/?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a>&nbsp;<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3649\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3672\"\n    },\n    {\n      \"id\": 3673,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T17:28:46.72Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:58.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Azure Blob Store\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/blobs/storage-upload-process-images?tabs=dotnet?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/storage/blobs/storage-upload-process-images?tabs=dotnet?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3649\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3673\"\n    },\n    {\n      \"id\": 3674,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T17:31:05.157Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:58.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Azure Data Lake Storage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/scenarios/databricks-extract-load-sql-data-warehousehttps://docs.microsoft.com/en-us/azure/storage/blobs/storage-upload-process-images?tabs=dotnet?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/databricks/scenarios/databricks-extract-load-sql-data-warehousehttps://docs.microsoft.com/en-us/azure/storage/blobs/storage-upload-process-images?tabs=dotnet?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3649\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3674\"\n    },\n    {\n      \"id\": 3675,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T17:31:22.673Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:58.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Azure Logic App\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/logic-apps/tutorial-build-schedule-recurring-logic-app-workflow?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/logic-apps/tutorial-build-schedule-recurring-logic-app-workflow?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3649\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3675\"\n    },\n    {\n      \"id\": 3676,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T17:31:39.083Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:58.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Azure Functions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-functions/functions-twitter-email?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/azure-functions/functions-twitter-email?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3649\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3676\"\n    },\n    {\n      \"id\": 3677,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T19:32:58.783Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:58.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Sample: Knowledge Mining in Github\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/Azure-Samples/azure-search-knowledge-mining\\\">Azure-Samples/azure-search-knowledge-mining: Azure Search Knowledge Mining Accelerator (github.com)</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3649\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3677\"\n    },\n    {\n      \"id\": 3678,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T20:07:21.78Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:07:21.78Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Verify Landing Zone is ready\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Enterprise-scale</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3678\"\n    },\n    {\n      \"id\": 3682,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T20:51:41.927Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:53:16.363Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review principles defined by CCOE / Cloud Strategy team \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/plan/plan-intro?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/plan/plan-intro?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3681\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3682\"\n    },\n    {\n      \"id\": 3683,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T20:52:13.823Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:53:16.363Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Maintain and Update Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3681\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3683\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-KnowledgeMining/WorkItems/User Story.json",
    "content": "{\n  \"count\": 12,\n  \"value\": [\n    {\n      \"id\": 3649,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:30.28Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:25:23.97Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Readiness Skills, training and samples for the team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">With respect to skills, ,ensure the appropriate members of your migration team are trained in Azure cloud fundamentals, Azure Blob Store, Azure Data Lake Storage, Azure Logic App (optional), Azure Functions (Optional)</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3631\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3676\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3677\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3674\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3675\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3672\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3673\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3649\"\n    },\n    {\n      \"id\": 3660,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:32.117Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:25:23.97Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Preparation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Preparation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3644\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3648\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3647\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3643\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3646\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3645\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3650\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3631\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3660\"\n    },\n    {\n      \"id\": 3661,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:32.24Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:25:23.97Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Query Data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-query-overview?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Query Types Overview</a><br></div><div><br></div><div>Apply&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-filters?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">filters</a></div><div><br></div><div>Apply <a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-pagination-page-layout?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Pagination</a></div><div><br></div><div>Apply <a href=\\\"https://docs.microsoft.com/en-us/azure/search/index-add-scoring-profiles?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Ranking</a></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3630\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3651\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3653\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3652\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3661\"\n    },\n    {\n      \"id\": 3662,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:32.367Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:03:59.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Data Source Design\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure cognitive search supports accessing data natively for belo list of data sources</div><div><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-howto-indexing-azure-blob-storage\\\" style=\\\"outline:none;cursor:pointer;text-decoration:underline;\\\">Azure Blob Storage</a></li><li style=\\\"margin:0px;list-style:outside none disc;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-howto-index-azure-data-lake-storage\\\" style=\\\"cursor:pointer;\\\">Azure Data Lake Storage Gen2</a><span>&nbsp;</span>(in preview)</li><li style=\\\"margin:0px;list-style:outside none disc;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-howto-indexing-azure-tables\\\" style=\\\"cursor:pointer;\\\">Azure Table Storage</a></li><li style=\\\"margin:0px;list-style:outside none disc;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-howto-index-cosmosdb\\\" style=\\\"cursor:pointer;\\\">Azure Cosmos DB</a></li><li style=\\\"margin:0px;list-style:outside none disc;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-howto-connecting-azure-sql-database-to-azure-search-using-indexers\\\" style=\\\"cursor:pointer;\\\">Azure SQL Database</a></li><li style=\\\"margin:0px;list-style:outside none disc;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-howto-connecting-azure-sql-mi-to-azure-search-using-indexers\\\" style=\\\"cursor:pointer;\\\">SQL Managed Instance</a></li><li style=\\\"margin:0px;list-style:outside none disc;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-howto-connecting-azure-sql-iaas-to-azure-search-using-indexers\\\" style=\\\"cursor:pointer;\\\">SQL Server on Azure Virtual Machines</a></li></ul><br></div><div><span style=\\\"\\\">For any additional data sources, apply integration using Logic App, Function App, Connector etc.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3667\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3658\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3656\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3655\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3657\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3659\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3662\"\n    },\n    {\n      \"id\": 3663,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:32.52Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:25:23.97Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create Infrastructure in Azure Resource Group\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create Infrastructure in Azure Resource Group\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3633\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3632\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3630\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3637\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3634\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3636\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3635\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3663\"\n    },\n    {\n      \"id\": 3664,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:32.78Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:27:05.153Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Plan for Results Consumption\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Web App Implementation</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-howto-dotnet-sdk?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Details</a><br></div><div><br></div><div>Bot&nbsp;<span style=\\\"display:inline !important;\\\">Implementation</span></div><div><a href=\\\"https://docs.microsoft.com/en-us/previous-versions/azure/bot-service/bot-service-design-pattern-knowledge-base?view=azure-bot-service-3.0?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Details</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3680\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3664\"\n    },\n    {\n      \"id\": 3665,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:32.92Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:25:56.937Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Plan for Monitoring \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Monitor Knowledge Mining Solution&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-monitor-usage?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Details</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3679\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3665\"\n    },\n    {\n      \"id\": 3666,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:33.06Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:27:05.153Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Plan for Search Analyzers and Scoring Profile (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-analyzers?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Full Text Search</a></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/index-add-scoring-profiles?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Scoring Profiles</a></span><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3680\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3666\"\n    },\n    {\n      \"id\": 3667,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:33.193Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:27:05.153Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Plan for Required Object Model in Enrichment Pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-what-is-azure-search?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Overview</a></div><div><br></div><div><b>Required Object Models</b></div><div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-indexer-overview?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Indexers</a></span><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-what-is-data-import?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\" style=\\\"\\\">Data Sources</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/cognitive-search-working-with-skillsets?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\" style=\\\"\\\">Skillset</a><br></div><div><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-what-is-an-index?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Index</a></span><br></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3680\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3662\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3667\"\n    },\n    {\n      \"id\": 3668,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:33.333Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:25:56.937Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Plan for Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/security-baseline?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Review Baseline Security</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-security-overview?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Overview</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-indexer-securing-resources?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Accessing Protected Content</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/search/security-controls-policy?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Regulatory Compliance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3679\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3640\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3638\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3639\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3668\"\n    },\n    {\n      \"id\": 3669,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T16:59:33.537Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:25:56.937Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Plan for Infrastructure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"margin:0in;margin-left:.75in;\\\"><b>Review </b>:&nbsp;</p><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-features-list?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Capabilities</a></div><div style=\\\"margin:0px 0in 0px 0.75in;\\\"></div><div style=\\\"margin:0px 0in 0px 0.75in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-modeling-multitenant-saas-applications?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Scalability</a></div><p style=\\\"margin:0in;margin-left:.75in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-performance-optimization?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Performance Consideration</a></p><div style=\\\"margin:0px 0in 0px 0.75in;\\\"><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.75in;\\\">Key Performance considerations</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 1.125in;\\\">Service tier and number of partitions/replicas - Adding partitions and increasing your tier will both increase indexing speeds.</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 1.125in;\\\">Index Schema - Adding fields and adding additional properties to fields (such as searchable, facetable, or filterable) both reduce indexing speeds.</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 1.125in;\\\">Batch size - The optimal batch size varies based on your index schema and dataset.</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 1.125in;\\\">Number of threads/workers - a single thread won't take full advantage of indexing speeds</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 1.125in;\\\">Retry strategy - An exponential backoff retry strategy should be used to optimize indexing.</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 1.125in;\\\">Network data transfer speeds - Data transfer speeds can be a limiting factor. Index data from within your Azure environment to increase data transfer speed</p><br></div><p style=\\\"margin:0in;margin-left:.75in;\\\"><br></p><p style=\\\"margin:0in;margin-left:.75in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/search/search-sku-tier?WT.mc_id=devops_userstory_service_knwldgemining-inproduct-devopsportal\\\">Tiers</a></p><p style=\\\"margin:0in;margin-left:.75in;\\\"><b>Components</b></p><p style=\\\"margin:0in;margin-left:.75in;\\\">Azure\\nServices : Azure Cognitive Search, Azure Cognitive services, Azure Functions,\\nAzure Logic App, Virtual Network</p><p style=\\\"margin:0in;margin-left:.75in;\\\"><br></p><p style=\\\"margin:0in;margin-left:.75in;\\\"><b>Tools</b>\\n: Power BI Desktop, Postman, Visual Studio Code</p><p style=\\\"margin:0in;margin-left:.75in;\\\"><br></p><p style=\\\"margin:0in;margin-left:1.125in;\\\"><br></p><p style=\\\"margin:0in;margin-left:1.125in;\\\"><br></p><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3679\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3678\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3669\"\n    },\n    {\n      \"id\": 3681,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Knowledge Mining\",\n        \"System.TeamProject\": \"Knowledge Mining\",\n        \"System.IterationPath\": \"Knowledge Mining\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-14T20:49:49.033Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-14T20:53:16.363Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/overview\\\">Microsoft Cloud Adoption Framework for Azure documentation - Cloud Adoption Framework | Microsoft Docs</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3683\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3682\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3631\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3681\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/ImportSourceCode/Modern Data Analytics.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/Modern Data Analytics/_git/Modern Data Analytics\"\n    },\n    \"serviceEndpointId\": \"$Modern Data Analytics-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Modern Data Analytics\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"IsPrivate\": \"true\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/ServiceEndpoints/Modern Data Analytics-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Modern Data Analytics-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/lpcs/Modern Data Analytics/_git/Modern Data Analytics\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/Teams/Modern Data Analytics Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/Teams/Modern Data Analytics Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/Teams/Modern Data Analytics Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/Teams/Modern Data Analytics Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/Teams/Modern Data Analytics Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"d8b5b27c-795b-4e17-8d82-5eb2bc2bd374\",\n    \"name\": \"Modern Data Analytics Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 6872,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:28.807Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:12:41.59Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Modern Data Analytics Planning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Modern Data Analytics Planning\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6874\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6872\"\n    },\n    {\n      \"id\": 6873,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:29.22Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:12:47.913Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Modern Data Analytics Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Modern Data Analytics Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6876\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6873\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/WorkItems/Feature.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 6874,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:29.593Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:13:27.45Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Planning for Enterprise Scale Modern data analytics solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Planning for Enterprise Scale Modern data analytics solution\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6872\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6874\"\n    },\n    {\n      \"id\": 6875,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:29.95Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:10:41.1Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Implementation of Enterprise Scale Modern data analytics solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implementation of Enterprise Scale Modern data analytics solution\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6873\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6911\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6910\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6912\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6875\"\n    },\n    {\n      \"id\": 6876,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:30.3Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:10:47.45Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Post Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Post Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6873\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6914\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6876\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/WorkItems/Task.json",
    "content": "{\n  \"count\": 30,\n  \"value\": [\n    {\n      \"id\": 6877,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:30.68Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:53:06.303Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Build an initial strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Customers who integrate this scenario into their cloud adoption strategy are motivated by the following common drivers: </p><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\">A scalable analytics framework designed to enable building an enterprise data platform </li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Self service to empower the user in data exploration, data asset creation, and product development </li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Foster a data led culture with reusable data assets, data communities, secure third-party exchange, and in-place sharing </li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Share data with confidence secured by policies, common identity, confidentiality, and encryption </li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Improved customer experiences and engagements </li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Transformation of products or services </li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Market disruption with new products or services </li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Democratization and self-service environments </li> </ul> </div><div><span>Please review this </span><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/strategy?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6877\"\n    },\n    {\n      \"id\": 6878,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:31.033Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:53:13.75Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Define your plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review&nbsp;&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/digital-estate/5-rs-of-rationalization?wt.mc_id=devops_eslz-data-analytics_content_1\\\">five Rs of rationalizing your digital estate</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">.&nbsp;</span> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><br></span> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">This scenario narrows the primary focus of rationalization to the&nbsp;</span><span style=\\\"font-weight:600;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">data estate</span><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">, which is a subset of the overall digital estate. This plan will also look broader and deeper at the data estate than you might in other plans. Specifically, it must include plans for your overall analytics and<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/govern?wt.mc_id=devops_eslz-data-analytics_content_1\\\">&nbsp;</a></span><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/govern?wt.mc_id=devops_eslz-data-analytics_content_1\\\">data governance</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">&nbsp;required to support the desired maturity.</span><br> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><br></span> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/plan?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Develop a plan for data management and analytics</a><br></span> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6878\"\n    },\n    {\n      \"id\": 6879,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:31.64Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:53:20Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Review your environment \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Enterprise-scale for analytics and AI builds upon enterprise landing zones for ease of deployment and governance. The principal purpose of the enterprise landing zones is to ensure that when an application or workload lands on Azure, the required &quot;plumbing&quot; is already in place. It provides greater agility and compliance with enterprise security and governance requirements. Enterprise-scale landing zones must be in place before you deploy your first data management and analytics landing zones.</span><br> </div><div><br> </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/ready?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Review your environment for Azure landing zones</a><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6879\"\n    },\n    {\n      \"id\": 6880,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:31.807Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:53:26.083Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Review / Construct your business requirments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">A scalable data platform is critical for your enterprise to accommodate the rapid growth of data.</span><br> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span> </div><div>Select Implementation Options </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-scale#single-data-landing-zone?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Single Data Landing Zone</a> </div><div><br> </div><div>OR </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-scale#multiple-data-landing-zones\\\">Multiple Data Landing Zone</a> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6880\"\n    },\n    {\n      \"id\": 6881,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:32.167Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:14:49.83Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Review Enterprise enrollment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Azure landing zones for enterprise-scale for analytics and AI don't have any considerations or recommendations that affect enterprise enrollment or Azure AD tenant decisions. </p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">However, it's important to understand the decisions made by the cloud platform team, and to be aware of existing<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/enterprise-enrollment-and-azure-ad-tenants?wt.mc_id=devops_eslz-data-analytics_content_1\\\">enterprise enrollment or Azure Active Directory (Azure AD)</a> tenant decisions. </p><br> </div><div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-enterprise-enrollment-and-azure-ad-tenants?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6881\"\n    },\n    {\n      \"id\": 6882,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:32.343Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:15:01.217Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Review Identity and access management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Since data management and analytics is a mission-critical element, the guidance on the enterprise-scale design areas should also be included in your design.</span><br> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-identity-and-access-management?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a></span> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6882\"\n    },\n    {\n      \"id\": 6883,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:32.5Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:15:17.677Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Review Network topology and connectivity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review networking pattern best practices </div><div><br> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Integrating across clouds.</span><br><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Restricting data exfiltration.</span><br><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Creating access for remote workers.</span><br><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Interfacing with on-premises and software as a service (SaaS) solutions.</span><br><br> </div><div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-network-topology-and-connectivity?wt.mc_id=devops_eslz-data-analytics_content_1?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6883\"\n    },\n    {\n      \"id\": 6884,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:32.747Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:15:23.203Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Organize resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>Your strategy should include business and operational details as components of resource names and metadata tags.<span>&nbsp;</span></span><br> </div><div><br> </div><div>Please review - <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-resource-organization?wt.mc_id=devops_eslz-data-analytics_content_1?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Resource organization</a><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6884\"\n    },\n    {\n      \"id\": 6885,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:33.113Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:15:31.103Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Apply governance disciplines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>Apply best practices </span>security, compliance, and governance design criteria for enterprise-scale data management and analytics</span><br> </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-security-governance-and-compliance?wt.mc_id=devops_eslz-data-analytics_content_1?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Security, governance, and compliance</a> for enterprise-scale data management and analytics&nbsp;<br> </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-policies?wt.mc_id=devops_eslz-data-analytics_content_1?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Policies in Azure enterprise-scale for analytics and AI&nbsp;</a><br> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6885\"\n    },\n    {\n      \"id\": 6886,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:33.3Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:15:43.52Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Create Operations baseline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-management-and-monitoring?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6886\"\n    },\n    {\n      \"id\": 6887,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:33.657Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:15:49.61Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7. Plan for BCDR\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">When you design architecture for a cloud service, consider your availability requirements and how to respond to potential interruptions in the service. An issue could be localized to the specific instance or region-wide. Having plans for both is important. Depending on your recovery time objective and the recovery point objective, you might choose an aggressive strategy for high availability and disaster recovery</span><br> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-business-continuity-and-disaster-recovery?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a></span> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6887\"\n    },\n    {\n      \"id\": 6888,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:33.803Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:17:13.423Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Deploy Data management landing zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-provision-platform#data-management-landing-zone-deployment-process?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div><div>Use the templates here to <a href=\\\"https://github.com/Azure/data-management-zone?wt.mc_id=devops_eslz-data-analytics_content_1\\\">automate </a>the deployment </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6888\"\n    },\n    {\n      \"id\": 6889,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:34.07Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:17:31.933Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Deploy Data Landing Zone(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-provision-platform#data-landing-zone-deployment-process?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div><div>and this <a href=\\\"https://github.com/Azure/data-landing-zone?wt.mc_id=devops_eslz-data-analytics_content_1\\\">templates </a>for automation </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6911\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6889\"\n    },\n    {\n      \"id\": 6890,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:34.22Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:17:38.52Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Deploy data integration batch processing zone(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-provision-platform#data-integration-and-data-product-deployment-process?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div><div>And these <a href=\\\"https://github.com/Azure/data-product-batch?wt.mc_id=devops_eslz-data-analytics_content_1\\\">templates</a> for automation </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6910\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6890\"\n    },\n    {\n      \"id\": 6891,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:34.603Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:17:44.34Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Deploy data integration stream processing landing zone(s)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"display:inline !important;\\\">Please review this<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-provision-platform#data-integration-and-data-product-deployment-process?wt.mc_id=devops_eslz-data-analytics_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a><br> </div><br> </div><div>and this <a href=\\\"https://github.com/Azure/data-product-streaming?wt.mc_id=devops_eslz-data-analytics_content_1\\\">templates </a>for automation </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6910\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6891\"\n    },\n    {\n      \"id\": 6892,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:34.837Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:17:50.263Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Deploy data product zone - data analytics and zones\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"> </div> </div><span style=\\\"display:inline !important;\\\">Please review this<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-provision-platform#data-integration-and-data-product-deployment-process?wt.mc_id=devops_eslz-data-analytics_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a><div><br> </div><div>and these <a href=\\\"https://github.com/Azure/data-product-analytics?wt.mc_id=devops_eslz-data-analytics_content_1\\\">templates </a>for automation </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6910\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6892\"\n    },\n    {\n      \"id\": 6893,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:34.983Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:15:56.487Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8. Review and select data landing zone topologies - Single, Multiple, Highly Sensitive\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please study to reference architectures to identify the topologies that match your business requirements </div><div><br> </div><div>Single Data landing zone -&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/architectures/reference-architecture-adatum?wt.mc_id=devops_eslz-data-analytics_content_1?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Adatum Corporation scenario</a>&nbsp; </div><div><br> </div><div>Multiple Data Landing Zone -&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/architectures/reference-architecture-relecloud?wt.mc_id=devops_eslz-data-analytics_content_1?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Relecloud scenario</a>&nbsp; </div><div><br> </div><div>Highly Sensitive Data Landing Zone -<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/architectures/reference-architecture-lamna?wt.mc_id=devops_eslz-data-analytics_content_1?wt.mc_id=devops_eslz-data-analytics_content_1\\\">&nbsp;</a><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/architectures/reference-architecture-lamna?wt.mc_id=devops_eslz-data-analytics_content_1?wt.mc_id=devops_eslz-data-analytics_content_1\\\">Lamna Healthcare scenario</a>&nbsp;</span> </div><div><br> </div><div><br> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6893\"\n    },\n    {\n      \"id\": 6894,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:35.137Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:17:18.63Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Study Data Management Landing Zone details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">The data management landing zone is classified as a management function and is central to the enterprise-scale for analytics and AI platform. It's responsible for the governance of the platform and enables communication to ingest data sources from Azure, third-party clouds, and on-premises data sources.</span><br> </div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span> </div><div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/architectures/data-management-landing-zone?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6894\"\n    },\n    {\n      \"id\": 6895,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:35.42Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:17:23.62Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Review Data Governance maturity model\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/govern?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6909\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6895\"\n    },\n    {\n      \"id\": 6896,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:35.567Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:17:57.077Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Implement Authentication\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Integrate <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/secure-authentication?wt.mc_id=devops_eslz-data-analytics_content_1\\\">with Azure AD </a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6912\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6896\"\n    },\n    {\n      \"id\": 6897,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:35.72Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:18:03.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Implement Authorization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Apply <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/secure-analytics-role-based-access-control?wt.mc_id=devops_eslz-data-analytics_content_1\\\">RBAC </a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6912\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6897\"\n    },\n    {\n      \"id\": 6898,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:35.89Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:18:09.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Implement enhanced process security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Apply Azure AD <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/security-provisioning#the-azure-ad-entitlement-process?wt.mc_id=devops_eslz-data-analytics_content_1\\\">entitlement management</a> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6912\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6898\"\n    },\n    {\n      \"id\": 6899,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:36.08Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:18:15.02Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Implement Data Categorization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Before ingesting data, you must categorize the data as<span>&nbsp;</span><strong style=\\\"font-weight:600;\\\">confidential or below</strong><span>&nbsp;</span>or<span>&nbsp;</span><strong style=\\\"font-weight:600;\\\">sensitive (personal data)</strong>: </p><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\"><p style=\\\"margin:1rem 0px 0px;\\\">Data might be sorted into<span>&nbsp;</span><strong style=\\\"font-weight:600;\\\">confidential or below</strong><span>&nbsp;</span>if a user gains access to the data asset in<span>&nbsp;</span><strong style=\\\"font-weight:600;\\\">enriched</strong><span>&nbsp;</span>or<span>&nbsp;</span><strong style=\\\"font-weight:600;\\\">curated</strong>. Users can view all columns and rows. </p> </li><li style=\\\"margin:0px;list-style:outside none disc;\\\"><p style=\\\"margin:1rem 0px 0px;\\\">Data might be sorted into<span>&nbsp;</span><strong style=\\\"font-weight:600;\\\">sensitive (personal data)</strong><span>&nbsp;</span>if there are restrictions for which columns and rows are visible to different users. </p> </li> </ul><br> </div><div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/secure-data-privacy?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6912\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6899\"\n    },\n    {\n      \"id\": 6900,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:36.227Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:53:45.917Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Review Data Operation function\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/organize-data-operations?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6900\"\n    },\n    {\n      \"id\": 6901,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:36.56Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:53:51.82Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Study and validate personas and roles description\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/organize-persona-and-teams?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6901\"\n    },\n    {\n      \"id\": 6902,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:36.717Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:53:57.18Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Study and validate team functions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/organize-persona-and-teams#data-governance-roles-and-responsibilities?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6902\"\n    },\n    {\n      \"id\": 6903,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:36.867Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:54:02.807Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Create RACI\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create roles and accountability matrix based on team creation </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6903\"\n    },\n    {\n      \"id\": 6904,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:37.143Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:12:16.337Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define data governance requriments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/govern-requirements?wt.mc_id=devops_eslz-data-analytics_content_1\\\">guidance</a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6914\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6904\"\n    },\n    {\n      \"id\": 6905,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:37.4Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:12:21.287Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Review and validate requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review the <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/govern-components?wt.mc_id=devops_eslz-data-analytics_content_1\\\">component requirements</a> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6914\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6905\"\n    },\n    {\n      \"id\": 6906,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:37.55Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:12:27.793Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Plan for implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Implement as per the <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/govern-technology?wt.mc_id=devops_eslz-data-analytics_content_1\\\">plan</a> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6914\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6906\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataAnalytics/WorkItems/User Story.json",
    "content": "{\n  \"count\": 8,\n  \"value\": [\n    {\n      \"id\": 6907,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:37.7Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:11:24.11Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Review Data Management and Analytics best practices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Review Data Management and Analytics best practices\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6880\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6874\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6877\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6907\"\n    },\n    {\n      \"id\": 6908,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:37.857Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:11:24.11Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Design Considerations and Readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design Considerations and Readiness\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6886\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6882\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6887\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6885\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6883\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6881\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6893\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6908\"\n    },\n    {\n      \"id\": 6909,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:37.99Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:11:24.11Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Provision Core Platform components - Data Management and Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review&nbsp; </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/eslz-platform-automation-and-devops\\\">Platform automation and DevOps for a data management and analytics enterprise-scale scenario - Cloud Adoption Framework | Microsoft Docs</a><br> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6894\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6895\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6888\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6909\"\n    },\n    {\n      \"id\": 6910,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:38.133Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:11:47.88Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Provision optional platform components\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Provision optional platform components\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6891\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6892\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6890\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6910\"\n    },\n    {\n      \"id\": 6911,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:38.287Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:11:32.86Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Provision Core Platform components - Data Landing \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Provision Core Platform components - Data Landing \",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6889\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6911\"\n    },\n    {\n      \"id\": 6912,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:38.443Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:11:54.517Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Provision Security for your Data estate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>When you deploy enterprise-scale for analytics and AI, consider using these automation principles to enable security, as opposed to manually applying them.<br> </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/secure\\\">Secure data management and analytics in Azure - Cloud Adoption Framework | Microsoft Docs</a><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6899\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6896\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6897\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6912\"\n    },\n    {\n      \"id\": 6913,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:38.71Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T17:52:46.807Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Organize Teams\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/organize\\\">Organize data operations team members for data management and analytics in Azure - Cloud Adoption Framework | Microsoft Docs</a><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6900\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6874\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6902\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6913\"\n    },\n    {\n      \"id\": 6914,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Analytics\",\n        \"System.TeamProject\": \"Modern Data Analytics\",\n        \"System.IterationPath\": \"Modern Data Analytics\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-11-09T17:49:38.877Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-11-09T19:12:07.127Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Implement data governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement data governance\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6906\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6905\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6904\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6876\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/6914\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/ImportSourceCode/Modern Data Warehouse.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/Modern Data Warehouse/_git/Modern Data Warehouse\"\n    },\n    \"serviceEndpointId\": \"$Modern Data Warehouse-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Modern Data Warehouse\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/ServiceEndpoints/Modern Data Warehouse-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Modern Data Warehouse-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/lpcs/Modern Data Warehouse/_git/Modern Data Warehouse\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/Teams/Modern Data Warehouse Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/Teams/Modern Data Warehouse Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/Teams/Modern Data Warehouse Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/Teams/Modern Data Warehouse Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/Teams/Modern Data Warehouse Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"42002a9d-68d1-4587-9781-0cb6d3e92a76\",\n    \"name\": \"Modern Data Warehouse Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 4097,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:49.557Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Modern Data Warehouse Planning \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Modern Data Warehouse Planning \",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4098\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4097\"\n    },\n    {\n      \"id\": 4096,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:49.097Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:26:49.097Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Modern Data Warehouse Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Modern Data Warehouse Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4100\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4096\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/WorkItems/Feature.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 4100,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:50.287Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:26:50.287Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Post migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Post migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4192\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4193\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4096\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4100\"\n    },\n    {\n      \"id\": 4099,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:50.15Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:26:50.15Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implementation of Architecture Strategy and Execution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Big Data</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/data-guide/big-data/\\\">https://docs.microsoft.com/en-us/azure/architecture/data-guide/big-data/</a><br></div><div><br></div><div>MDW</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/modern-data-warehouse\\\">https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/modern-data-warehouse</a><br></div><div><a href=\\\"https://azure.microsoft.com/en-in/solutions/architecture/modern-data-warehouse/\\\">https://azure.microsoft.com/en-in/solutions/architecture/modern-data-warehouse/</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4191\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4185\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4188\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4184\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4187\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4194\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4182\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4180\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4186\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4096\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4181\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4183\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4189\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\"\n    },\n    {\n      \"id\": 4098,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:49.797Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Planning for data warehouse migration or on boarding\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Planning for data warehouse migration or on boarding\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4197\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4196\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4097\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4179\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4195\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4098\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/WorkItems/Task.json",
    "content": "{\n  \"count\": 77,\n  \"value\": [\n    {\n      \"id\": 4112,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:53.48Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:44.813Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Review and Align OKRs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/business-outcomes/okr?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/business-outcomes/okr?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4112\"\n    },\n    {\n      \"id\": 4176,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:03.747Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:44.813Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Assemble Team - Key roles in a data warehouse migration team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Key roles in a migration project include:<br></div><div><br></div><div><p style=\\\"margin:0in;\\\"><ul><li><span style=\\\"\\\">Business owner</span></li><li><span style=\\\"\\\">Project manager\\n(with agile methodology experience e.g. scrum)</span></li><li><span style=\\\"\\\">Project coordinator</span></li><li><span style=\\\"\\\">Cloud engineer</span></li><li><span style=\\\"\\\">Database\\nadministrator (existing data warehouse DBMS and Azure Synapse)</span></li><li><span style=\\\"\\\">Data modeler(s)</span></li><li><span style=\\\"\\\">ETL developers</span></li><li><span style=\\\"\\\">Data virtualization\\nspecialist (could be a DBA)</span></li><li><span style=\\\"\\\">Testing engineer</span></li><li><span style=\\\"\\\">Business analysts\\n(to help test BI tool queries, reports and analyses</span></li><li><span style=\\\"\\\">Support of your\\non-premises infrastructure team</span></li></ul></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4176\"\n    },\n    {\n      \"id\": 4175,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:03.59Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:44.813Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Readiness Skills and training for the team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>With respect to skills, expertise is important in a data warehouse migration. Therefore,\\nensure the appropriate members of your migration team are trained in Azure cloud\\nfundamentals, Azure Blob Store, Azure Data Lake Storage, Azure Databox, Azure\\nExpressRoute, Azure identity management, Azure Data Factory, and Azure Synapse.\\nYour data modelers will most likely need to fine tune your Azure Synapse data\\nmodel(s) once migration from your existing data warehouse has occurred. \\n<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4175\"\n    },\n    {\n      \"id\": 4119,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:54.777Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:43:38.1Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Verify Landing Zone implementation \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a>&nbsp;<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4197\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4119\"\n    },\n    {\n      \"id\": 4198,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T21:05:51.58Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T21:06:20.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Reference: Azure Quickstarts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>There are over 900 Azure quickstarts which you could leverage as code in your projects.</div><div><br></div><div><a href=\\\"https://azure.microsoft.com/en-us/resources/templates?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://azure.microsoft.com/en-us/resources/templates?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4198\"\n    },\n    {\n      \"id\": 4118,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:54.42Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Enterprise-scale learning path\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/browse/?products=azure%2csql-server%2cwindows-server&amp;terms=enterprise%20scalehttps://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/browse/?products=azure%2Csql-server%2Cwindows-server&amp;terms=enterprise%20scalehttps://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4197\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4118\"\n    },\n    {\n      \"id\": 4117,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:54.28Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Introduction to Azure Synapse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/introduction-azure-synapse-analytics?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/introduction-azure-synapse-analytics?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4117\"\n    },\n    {\n      \"id\": 4116,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:54.14Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Store Data in Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/paths/store-data-in-azure?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/paths/store-data-in-azure?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4116\"\n    },\n    {\n      \"id\": 4115,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:54Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Azure Networking Services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/azure-networking-fundamentals?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/azure-networking-fundamentals?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4115\"\n    },\n    {\n      \"id\": 4114,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:53.853Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create production workloads on Azure Databricks with Azure Data Factory\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/create-production-workloads-azure-databricks-azure-data-factory?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/create-production-workloads-azure-databricks-azure-data-factory?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4114\"\n    },\n    {\n      \"id\": 4113,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:53.697Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Integrate data with Azure Data Factory or Azure Synapse Pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/data-integration-azure-data-factory?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/data-integration-azure-data-factory?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4113\"\n    },\n    {\n      \"id\": 4111,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:53.34Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Migrations from  SQL Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://datamigration.microsoft.com/scenario/sql-to-sqldw?step=1?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance&nbsp;</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4196\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4111\"\n    },\n    {\n      \"id\": 4110,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:53.17Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:44:21.397Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Provision HDInsight Kafka Cluster\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/kafka/apache-kafka-get-started?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Provision Cluster</a></div><div><br></div><div>Add Enterprise Security using <a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/domain-joined/apache-domain-joined-run-kafka?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">ESP enablement&nbsp;</a>&nbsp;<span style=\\\"\\\">(optional)</span></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4107\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4110\"\n    },\n    {\n      \"id\": 4109,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:53.017Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:46:45.463Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Dimensional modeling\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">A<span>&nbsp;</span></span><a href=\\\"https://en.wikipedia.org/wiki/Star_schema\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">star schema</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>organizes data into fact and dimension tables. Some tables are used for integration or staging data before moving to a fact or dimension table. As you design a table, decide whether the table data belongs in a fact, dimension, or integration table.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div>Please refer to the details <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/develop-tables-overview#determine-table-category?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">here</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4186\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4109\"\n    },\n    {\n      \"id\": 4108,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:51.837Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:53:51.067Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Dimensional Modeling\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">A<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span><a href=\\\"https://en.wikipedia.org/wiki/Star_schema\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">star schema</a><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>organizes data into fact and dimension tables. Some tables are used for integration or staging data before moving to a fact or dimension table. As you design a table, decide whether the table data belongs in a fact, dimension, or integration table.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"display:inline !important;\\\">Please refer to the details<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/develop-tables-overview#determine-table-category?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">here</a><br></div><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4187\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4108\"\n    },\n    {\n      \"id\": 4107,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:51.7Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:44:09.99Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Ingestion using HDInsight Kafka\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://kafka.apache.org/\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Apache Kafka</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>is an open-source distributed streaming platform that can be used to build real-time data pipelines and streaming applications. Kafka also provides message broker functionality similar to a message queue, where you can publish and subscribe to named data streams. It is horizontally scalable, fault-tolerant, and extremely fast.<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/kafka/apache-kafka-get-started\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Kafka on HDInsight</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>provides a Kafka as a managed, highly scalable, and highly available service in Azure.</span><br></div><div><br></div><div>Review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/data-guide/technology-choices/real-time-ingestion#kafka-on-hdinsight?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">details</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4182\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4167\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4110\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4107\"\n    },\n    {\n      \"id\": 4106,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:51.55Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:53:44.373Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Load data to Synapse Analytics using Polybase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>While SQL pool supports many loading methods including non-Polybase options such as BCP and SQL BulkCopy API, the fastest and most scalable way to load date is through PolyBase. PolyBase is a technology that accesses external data stored in Azure Blob storage or Azure Data Lake Store via the T-SQL language.<br></div><div><br></div><div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/load-data-overview?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4187\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4106\"\n    },\n    {\n      \"id\": 4105,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:51.227Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:46:39.253Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Data Ingestion to Synapse Analytics with Stream Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Prerequisites:&nbsp;<br></span><div><ul><li>Azure Stream Analytics Job - To create an Azure Stream Analytics job</li><li><span>Synapse dedicated SQL pool for your data warehouse - To create a new data warehouse, follow the steps in the Quickstart to create a new data warehouse.</span></li></ul></div></div><div>Please refer to details <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-integrate-azure-stream-analytics?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">here</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4186\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4105\"\n    },\n    {\n      \"id\": 4104,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:51.063Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:53:23.953Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Load data to Synapse Analytics using COPY INTO\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">The COPY statement is the recommended loading utility as it enables you to seamlessly and flexibly load data by providing functionality to:</p><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\">Allow lower privileged users to load without needing strict CONTROL permissions on the data warehouse</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Leverage only a single T-SQL statement without having to create any additional database objects</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Leverage a finer permission model without exposing storage account keys using Share Access Signatures (SAS)</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Specify a different storage account for the ERRORFILE location (REJECTED_ROW_LOCATION)</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Customize default values for each target column and specify source data fields to load into specific target columns</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Specify a custom row terminator for CSV files</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Escape string, field, and row delimiters for CSV files</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Leverage SQL Server Date formats for CSV files</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Specify wildcards and multiple files in the storage location path</li></ul></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/sql/t-sql/statements/copy-into-transact-sql?toc=/azure/synapse-analytics/sql-data-warehouse/toc.json&amp;bc=/azure/synapse-analytics/sql-data-warehouse/breadcrumb/toc.json&amp;view=azure-sqldw-latest\\\">https://docs.microsoft.com/en-us/sql/t-sql/statements/copy-into-transact-sql?toc=/azure/synapse-analytics/sql-data-warehouse/toc.json&amp;bc=/azure/synapse-analytics/sql-data-warehouse/breadcrumb/toc.json&amp;view=azure-sqldw-latest</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4187\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4104\"\n    },\n    {\n      \"id\": 4103,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:50.91Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:46:33.753Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Table design for staging data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review Data <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-tables-distribute?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Distribution Design</a></div><div><br></div><div><span style=\\\"\\\">For fast inserts use </span><b style=\\\"\\\">round robin</b><span style=\\\"\\\"> distribution:</span><br></div><div><br></div><div><span style=\\\"\\\">Indexing&nbsp;</span><br></div><div>When you are temporarily landing data in dedicated SQL pool, you may find that using a <b>heap </b>table makes the overall process faster. This is because loads to heaps are faster than to index tables and in some cases the subsequent read can be done from cache. If you are loading data only to stage it before running more transformations, loading the table to <b>heap </b>table is much faster than loading the data to a clustered columnstore table<br></div><div>Review <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-tables-index?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Index Design</a></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4186\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4103\"\n    },\n    {\n      \"id\": 4102,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:50.657Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:53:16.397Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Data preparation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/data-loading-best-practices?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4187\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4102\"\n    },\n    {\n      \"id\": 4101,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:50.513Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:53:04.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Data Loading Strategies \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>While SQL pool supports many loading methods, including popular SQL Server options such as bcp and the SqlBulkCopy API, the fastest and most scalable way to load data is through PolyBase external tables and the COPY statement.<br></span><div><br></div><span>With PolyBase and the COPY statement, you can access external data stored in Azure Blob storage or Azure Data Lake Store via the T-SQL language. For the most flexibility when loading, we recommend using the COPY statement.</span><br></div><div><br></div><div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/design-elt-data-loading?toc=/azure/synapse-analytics/toc.json&amp;bc=/azure/synapse-analytics/breadcrumb/toc.json?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4187\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4101\"\n    },\n    {\n      \"id\": 4174,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:03.43Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:42:07.233Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Analyze existing data sources, schema design and complexity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Obtain a detailed understanding of your existing data sources, schema design and complexity, architecture, size, and growth rates<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4174\"\n    },\n    {\n      \"id\": 4173,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:03.27Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:41:59.75Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Assess your existing ETL jobs, job dependencies, and data usage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Assess your existing ETL jobs, job dependencies, and data usage\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4173\"\n    },\n    {\n      \"id\": 4172,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:03.103Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:41:53.853Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Analyze  performance and scalability\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Understand what you do to\\nenable performance and\\ncurrent issues you have<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4172\"\n    },\n    {\n      \"id\": 4171,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:02.953Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:41:48.103Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Analyze Security and change control management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Assess how easy it is to make\\nchanges to your existing data\\nwarehouse<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4171\"\n    },\n    {\n      \"id\": 4170,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:02.817Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:41:41.533Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Analyze current data warehousing technologies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Assess the strengths,\\nweaknesses and gaps in\\ncurrent data warehousing\\ntechnologies<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4170\"\n    },\n    {\n      \"id\": 4169,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:02.69Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:42:55.64Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Obtain the necessary approvals to migrate your data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Ensure you obtain the\\nnecessary approvals to\\nmigrate your data. Cloud Center of Excellence, Governance team sign-off<br></div><div>Ready your on-premises\\ninfrastructure teams to\\nenable smooth data\\nmigration<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4179\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4169\"\n    },\n    {\n      \"id\": 4168,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:02.543Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:42:15.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Analyze and ensure network bandwidth and infrastructure for data migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Current data volumes and\\nnetwork speed will dictate\\nwhich option you use to\\nmigrate your historical data\\nto Azure<br></div><div><br></div><div>Run-time software is needed\\nin your data center to enable\\nAzure Data Factory to control\\nexecution of data export<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4179\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4168\"\n    },\n    {\n      \"id\": 4167,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:02.413Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:44:27.517Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Create Kafka Topic for consumers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Setup Apache kafka <a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/kafka/apache-kafka-introduction?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Topics</a></div><div>Enable&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/kafka/apache-kafka-auto-create-topics?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Auto create topics</a>&nbsp; (if required)</div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4107\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4167\"\n    },\n    {\n      \"id\": 4166,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:02.273Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:45:57.907Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Data Preparation and Transformation using Databricks (Hot Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><h3 style=\\\"box-sizing:border-box;margin:0px;font-family:Barlow, Helvetica, Arial, sans-serif;font-weight:300;color:rgb(51, 51, 51);\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-databricks\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;\\\">Databricks</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;display:inline !important;\\\"><span>&nbsp;</span>is an Apache Spark-based analytics platform optimized for the Microsoft Azure cloud services platform.</span><br></h3></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;font-weight:400;display:inline !important;\\\"><br></span></div><div>Please refer to this <a href=\\\"https://databricks.com/blog/2019/02/07/high-performance-modern-data-warehousing-with-azure-databricks-and-azure-sql-dw.html?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a>&nbsp;and one <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/data/stream-processing-databricks?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">more</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4184\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4166\"\n    },\n    {\n      \"id\": 4165,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:02.133Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:57:53.737Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - For HDInsight Kafka - Infrastructure Consideration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"\\\">Please refer to </span><a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/hdinsight-business-continuity-architecture?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"\\\">this </a><span style=\\\"\\\">guidance and one </span><a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/kafka/apache-kafka-high-availability?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"\\\">more</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4191\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4165\"\n    },\n    {\n      \"id\": 4164,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:01.993Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:56:33.193Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - For Kafka - Provision cluster using Enterprise Security Package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Provision ESP enabled HDInsight Cluster</div><div>Refer to <a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/domain-joined/apache-domain-joined-architecture?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4164\"\n    },\n    {\n      \"id\": 4163,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:01.847Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:53:58.373Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Fast performance caching data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"></div></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Materialized views provide a low maintenance method for complex analytical queries to get fast performance without any query change</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/develop-materialized-view-performance-tuning?view=azure-sqldw-latest?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Materialized Views</a><br style=\\\"box-sizing:border-box;\\\"></span><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/sql/t-sql/statements/set-result-set-caching-transact-sql?toc=/azure/synapse-analytics/toc.json&amp;bc=/azure/synapse-analytics/breadcrumb/toc.json&amp;view=azure-sqldw-latest?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Result set Cache</a><span>&nbsp;</span>Controls the result set caching behavior for the current client session.</span></div></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4187\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4163\"\n    },\n    {\n      \"id\": 4162,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:01.7Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:46:51.913Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Fast performance caching data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Materialized views provide a low maintenance method for complex analytical queries to get fast performance without any query change</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/develop-materialized-view-performance-tuning?view=azure-sqldw-latest?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Materialized Views</a><br></span><div><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/sql/t-sql/statements/set-result-set-caching-transact-sql?toc=/azure/synapse-analytics/toc.json&amp;bc=/azure/synapse-analytics/breadcrumb/toc.json&amp;view=azure-sqldw-latest?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Result set Cache</a> Controls the result set caching behavior for the current client session.</span><br></div><div><br></div><div><br></div><div><br></div><span></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4186\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4162\"\n    },\n    {\n      \"id\": 4161,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:01.49Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:58:13.427Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - For HDInsight Kafka - Native fetaure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/kafka/apache-kafka-scalability?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4194\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4161\"\n    },\n    {\n      \"id\": 4160,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:01.347Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:59:23.147Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Performance Optimization with Kafka HDInsight\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/advisor/advisor-performance-recommendations?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance </a>and one <a href=\\\"https://docs.microsoft.com/en-us/azure/hdinsight/kafka/apache-kafka-performance-tuning?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">more</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4193\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4160\"\n    },\n    {\n      \"id\": 4159,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:01.207Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:54:45.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Preparation and General Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>There are critical tools and resources that helps field and customers in developing Power BI content.</div><div><br></div><div><b>Tools:</b></div><div><br></div><div>DAX Studio: A tool for working with DAX queries</div><div><a href=\\\"https://daxstudio.org/\\\">DAX Studio - The ultimate client tool for working with DAX queries</a><br></div><div><br></div><div>Vertipaq Analyzer:&nbsp;is a useful tool to analyze VertiPaq storage structures for a data model in Power BI and Analysis Services Tabular.</div><div><a href=\\\"https://www.sqlbi.com/tools/vertipaq-analyzer/\\\">VertiPaq Analyzer - SQLBI</a><br></div><div><br></div><div><br></div><div>Tabular Editor:&nbsp;<span>Tabular Editor is an editor alternative to SSDT for authoring Tabular models for Analysis Services even without a workspace server.<br></span><div><a href=\\\"https://www.sqlbi.com/tools/tabular-editor/\\\">Tabular Editor - SQLBI</a><br></div><div><br></div><div>BISM Normalizer:is a free and open-source tool to manage Microsoft Analysis Services tabular models</div><div><a href=\\\"http://bism-normalizer.com/\\\">Home Page - BISM Normalizer (bism-normalizer.com)</a><br></div><div><br></div><div><br></div><div><b>Blogs and Articles:</b></div><div><br></div><div>Power Bi Tips:</div><div><a href=\\\"https://powerbi.tips/\\\">Home - (powerbi.tips)</a><br></div><div><br></div><div>Power Bi <a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/whitepapers?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Whitepapers</a>:</div><div><br></div><div><br></div><div>Excellent Blogs on any aspects of Power BI / Tabular Model development&nbsp;</div><div><a href=\\\"https://www.sqlbi.com/\\\">Home - SQLBI</a><br></div><div><a href=\\\"https://radacad.com/category/power-bi\\\">https://radacad.com/category/power-bi</a><br></div><div><br></div><span></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4189\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4159\"\n    },\n    {\n      \"id\": 4158,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:01.07Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:54:36.48Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Planning a Power BI Enterprise Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<ol><li>Customer OnBoarding and Readiness:&nbsp;</li><ul><li>Demos: Search Power BI in <a href=\\\"http://aka.ms/learning\\\">http://aka.ms/learning</a><br><a href=\\\"https://docs.microsoft.com/en-us/power-bi/fundamentals/power-bi-overview?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">What is Power BI</a>&nbsp;<br></li><li>Videos :&nbsp;<a href=\\\"https://www.sqlbi.com/\\\">Home - SQLBI</a>,&nbsp;<a href=\\\"https://www.youtube.com/channel/UCFp1vaKzpfvoGai0vE5VJ0w\\\">Guy in a Cube - YouTube</a></li><li><a href=\\\"https://powerbi.microsoft.com/en-us/learning/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Learnings</a></li></ul><li>Get Familiar with Power BI licensing structure and offers</li><ol><li><a href=\\\"https://powerbi.microsoft.com/en-us/pricing/\\\">Pricing &amp; Product Comparison | Microsoft Power BI</a>,&nbsp;<br><a href=\\\"https://docs.microsoft.com/en-us/power-bi/admin/service-admin-licensing-organization\\\">Power BI licensing for users in your organization - Power BI | Microsoft Docs</a><br></li><li>Power Bi Premium:&nbsp;<a href=\\\"https://aka.ms/pbipremiumwhitepaper\\\">https://aka.ms/pbipremiumwhitepaper</a><br></li><li>Power BI for SAP:&nbsp;<a href=\\\"https://aka.ms/powerbiandsapbw\\\">https://aka.ms/powerbiandsapbw</a></li><li>Power BI GDPR:&nbsp;<a href=\\\"https://aka.ms/power-bi-gdpr-whitepaper\\\">https://aka.ms/power-bi-gdpr-whitepaper</a></li></ol></ol>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4189\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4158\"\n    },\n    {\n      \"id\": 4157,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:00.92Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:54:29.76Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Identify the Sources and Connect to the Data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"\\\">As part of the MDW architectural design the sources are usually identified ahead of time. Below is the data connection guidelines depending on the data sources:</span><br></div><div><br></div><div><ul><li>List of Data Sources . Refer to <a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/desktop-data-sources?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this</a></li><li>Connecting to Data Sources in the Power BI service <a href=\\\"https://docs.microsoft.com/en-us/power-bi/transform-model/dataflows/dataflows-introduction-self-service?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">using Dataflows</a>:<br>Dataflows white paper:&nbsp;<a href=\\\"https://go.microsoft.com/fwlink/?linkid=2034388&amp;clcid=0x409\\\">https://go.microsoft.com/fwlink/?linkid=2034388&amp;clcid=0x409</a><br></li><li>On Premise Data Gateways: (&nbsp; Sizing, Best Practices, Configuration and etc.)</li><ul><li>Architecture <a href=\\\"https://docs.microsoft.com/en-us/data-integration/gateway/service-gateway-onprem-indepth?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal%20?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">details</a><br></li><li><a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/service-gateway-deployment-guidance\\\">P</a>lease refer to this <a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/service-gateway-deployment-guidance?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a>&nbsp;and <a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/service-gateway-onprem?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">more</a><br></li><li>Installation <a href=\\\"https://docs.microsoft.com/en-us/data-integration/gateway/service-gateway-install?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">details</a><br></li><li>High Availability of Gateways: <a href=\\\"https://docs.microsoft.com/en-us/data-integration/gateway/service-gateway-high-availability-clusters?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">details</a><br></li><li>Proactively Monitor Gateways: <a href=\\\"https://docs.microsoft.com/en-us/data-integration/gateway/service-gateway-performance?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">details</a></li><li>Gateway Performance Template Tool:&nbsp;<a href=\\\"https://download.microsoft.com/download/D/A/1/DA1FDDB8-6DA8-4F50-B4D0-18019591E182/GatewayPerformanceMonitoring.pbit\\\">https://download.microsoft.com/download/D/A/1/DA1FDDB8-6DA8-4F50-B4D0-18019591E182/GatewayPerformanceMonitoring.pbit</a></li><li>Using on-premises gateway app - <a href=\\\"https://docs.microsoft.com/en-us/data-integration/gateway/service-gateway-app?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">details</a><br></li><li><a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/service-gateway-sql-tutorial\\\">C</a>onnect to on-premises SQL Server - <a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/service-gateway-sql-tutorial?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">details</a><br></li><li>How to <a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/service-gateway-onprem-tshoot?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Troubleshoot</a></li></ul><li>If you already have Power BI datasets published to the services you can use <a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/service-datasets-hub?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">dataset hub to discover</a> your current organization datasets<br><br></li></ul></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4189\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4157\"\n    },\n    {\n      \"id\": 4156,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:00.773Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:54:23.87Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Transform and Model the Data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>At the heart of implementation of Power BI is transformation and modeling the data. In cases that the model is built in Azure Analysis Services, Azure Synapse Analytics ( SQL DW), SQL Server and other sources and you are connecting to sources using direct query, import or composite models you may not need to perform any modeling or transformation in Power BI tools. The items below refers to the guidelines when you perform transformation and modeling using Power BI Desktop or other tools. Some general modeling practices indicated here would help in all cases:</div><div><br></div><div><br></div><div>General:</div><div><ol><li>Reference book for General Tabular Modeling&nbsp;<a href=\\\"https://www.sqlbi.com/books/tabular-modeling-in-microsoft-sql-server-analysis-services-2nd-edition/\\\">Tabular Modeling in SQL Server Analysis Services (2nd Edition) - SQLBI</a></li><li><a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/star-schema\\\">U</a>nderstand STAR schema in PowerBI. Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/star-schema?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></li><li><a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/import-modeling-data-reduction\\\">D</a>ata Reduction technique in Data models.. Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/import-modeling-data-reduction?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a><br></li><li><a href=\\\"https://docs.microsoft.com/en-us/power-bi/transform-model/\\\">T</a>ransform, Shape and Model. Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/power-bi/transform-model/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a><br></li><li><a href=\\\"https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-quickstart-learn-dax-basics\\\">U</a>sing DAX. Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-quickstart-learn-dax-basics?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a><br></li><li>Refer to the General Resources task in this ADO for other great resources on modeling including&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/archive/blogs/analysisservices/whitepaper-on-modeling-for-as-tabular-scalability\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Whitepaper on modeling for AS tabular scalability | Microsoft Docs</a></li></ol><div><br></div></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4189\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4156\"\n    },\n    {\n      \"id\": 4155,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:00.603Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:44:01.633Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Create Raw zone,  Enriched Zone and Curated Zone containers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create containers within ADLS Gen2 to define clear security boundaries to hold types of data</div><div><br></div><div>Reference</div><div><span style=\\\"display:inline !important;\\\">Ensure data lake storage design follows<span>&nbsp;</span></span><a href=\\\"https://github.com/rukmani-msft/adlsguidancedoc/blob/master/Hitchhikers_Guide_to_the_Datalake.md?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;\\\">best practices</a><br></div><div><span style=\\\"box-sizing:border-box;\\\">Please review this<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-introduction?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">details</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4181\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4155\"\n    },\n    {\n      \"id\": 4154,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:00.473Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:45:00.097Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Ingestion using Azure Stream Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>To enable highly cost-effective, large volume of real-time data ingestion, direct output from the stream analytics into ADLS Gen2&nbsp;</div><div><br></div><div>Please refer to&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/blob-storage-azure-data-lake-gen2-output\\\">t</a>his <a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/blob-storage-azure-data-lake-gen2-output?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4182\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4154\"\n    },\n    {\n      \"id\": 4153,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:00.317Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:44:51.977Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Ingestion using Event hub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Event Hubs enables you to automatically capture the streaming data in Event Hubs in an<span>&nbsp;</span></span><a href=\\\"https://azure.microsoft.com/services/storage/blobs/\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Azure Blob storage</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>or<span>&nbsp;</span></span><a href=\\\"https://azure.microsoft.com/services/data-lake-store/\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Azure Data Lake Storage Gen 1 or Gen 2</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>account of your choice, with the added flexibility of specifying a time or size interval.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div>Please refer to -&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-capture-overview?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Capture streaming events into ADLS Gen2</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4182\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4153\"\n    },\n    {\n      \"id\": 4152,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:00.143Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:44:44.09Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Ingestion using Event Grid into Data bricks Delta Tables\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><a href=\\\"https://delta.io/\\\" style=\\\"cursor:pointer;\\\">Delta Lake</a><span>&nbsp;</span>is an<span>&nbsp;</span><a href=\\\"https://github.com/delta-io/delta\\\" style=\\\"cursor:pointer;\\\">open source storage layer</a><span>&nbsp;</span>that brings reliability to data lakes. Delta Lake provides ACID transactions, scalable metadata handling, and unifies streaming and batch data processing. Delta Lake runs on top of your existing data lake and is fully compatible with Apache Spark APIs. Delta Lake on Azure Databricks allows you to <a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/delta/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">configure Delta Lake based</a> on your workload patterns.</p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><br></p></div><h3><span style=\\\"\\\">Please refer to this </span><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-events?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"\\\">guidance</a><span style=\\\"\\\">&nbsp;</span></h3><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4182\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4152\"\n    },\n    {\n      \"id\": 4151,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:00Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:44:36.49Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Ingestion using IOT Hub (Device to Hub Messages)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Message routing enables you to send messages from your devices to cloud services in an automated, scalable, and reliable manner.<span>&nbsp;</span></span><br></div><div><br></div><div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messages-d2c?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4182\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4151\"\n    },\n    {\n      \"id\": 4150,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:59.87Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:45:44.103Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Ingestion using Azure Synapse Analytics Pipelines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/concepts-pipelines-activities?toc=/azure/synapse-analytics/toc.json&amp;bc=/azure/synapse-analytics/breadcrumb/toc.json?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><div style=\\\"box-sizing:border-box;\\\"><br></div></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4183\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4150\"\n    },\n    {\n      \"id\": 4149,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:59.73Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:45:37.873Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Ingestion using Data Factory\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/introduction?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a>&nbsp;and one <a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/connector-azure-sql-data-warehouse?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">more</a></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4183\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4149\"\n    },\n    {\n      \"id\": 4148,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:59.6Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:45:24.51Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Bulk Load using COPY command (Azure Synapse Analytics)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to</div><div><span style=\\\"display:inline !important;\\\">Bulk load data using the <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/quickstart-bulk-load-copy-tsql?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">COPY </a>statement</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4183\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4148\"\n    },\n    {\n      \"id\": 4147,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:59.47Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:45:16.96Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Ingestion using SSIS Packages\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/sql/integration-services/lift-shift/ssis-azure-lift-shift-ssis-packages-overview?view=sql-server-ver15?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4183\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4147\"\n    },\n    {\n      \"id\": 4146,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:59.323Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:45:51.773Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Data Preparation and Transformation using Azure Synapse Analytics Data flows (Hot Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Use SQL Pool or Spark Pool (depending on the available skillset</p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">For SQL Pool, Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/overview-architecture?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><span style=\\\"\\\">For Apache Spark Pool,&nbsp;</span><span style=\\\"font-size:14px;\\\">Please refer to this </span><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/quickstart-data-flow?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"font-size:14px;\\\">guidance</a><span style=\\\"font-size:14px;\\\">&nbsp;and one </span><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/spark/apache-spark-overview\\\" style=\\\"font-size:14px;\\\">more</a><br></p></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4184\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4146\"\n    },\n    {\n      \"id\": 4145,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:59.127Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:46:26.263Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Data Preparation and Transformation using Azure Synapse Analytics Pipelines (Cold Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/get-started-pipelines?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4185\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4145\"\n    },\n    {\n      \"id\": 4144,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:58.897Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:43:22.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Set Migration Goals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Define Migration goals</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4195\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4144\"\n    },\n    {\n      \"id\": 4143,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:58.763Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:43:16.49Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Set Migration Approach\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Please review</span><br></div><div><span><br></span></div><div><span><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-overview-develop?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Design Decisions</a></span></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-best-practices-development?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\" style=\\\"\\\">Development Best Practices</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4195\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4143\"\n    },\n    {\n      \"id\": 4142,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:58.61Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:43:09.57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Define Migration Scope\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div></div><div style=\\\"box-sizing:border-box;\\\">Please review readiness session</div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://azure.microsoft.com/en-us/resources/videos/overview-of-migration-and-recommended-tools-services/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Study Migration Journey and Tools</a><br></div><div style=\\\"box-sizing:border-box;\\\"><br></div><div style=\\\"box-sizing:border-box;\\\">TODO</div><div style=\\\"box-sizing:border-box;\\\">Add any contextual scope definition</div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-best-practices-development\\\"></a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4195\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4142\"\n    },\n    {\n      \"id\": 4141,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:58.453Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Migrations from Teradata\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/analytics/analytics-solutions-teradata?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4196\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4141\"\n    },\n    {\n      \"id\": 4140,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:58.277Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Migrations from Netezza\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/analytics/analytics-solutions-netezza?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4196\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4140\"\n    },\n    {\n      \"id\": 4139,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:58.093Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Migrations from Exadata (Oracle)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/analytics/analytics-solutions-exadata?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4196\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4139\"\n    },\n    {\n      \"id\": 4138,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:57.923Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:56:23.953Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - For Databricks - Enterprise Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/security/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4138\"\n    },\n    {\n      \"id\": 4137,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:57.767Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:56:16.333Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - For Synapse Analytics -  Enterprise Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to below guidance</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/security/how-to-set-up-access-control/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Access Control</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/security/how-to-grant-workspace-managed-identity-permissions?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Using Managed Identity</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/security/how-to-create-a-workspace-with-data-exfiltration-protection?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Data Exfiltration</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/security/how-to-create-managed-private-endpoints?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Using Managed Private Endpoint</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4137\"\n    },\n    {\n      \"id\": 4136,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:57.59Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:56:06.977Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - For Data Lake - Enterprise Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-best-practices#security-considerations?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4136\"\n    },\n    {\n      \"id\": 4135,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:57.443Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:56:00.317Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - For Data Factory - Enterprise Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/data-movement-security-considerations#:~:text=Data%20Factory%20management%20resources%20are%20built%20on%20Azure%2cgrouping%20of%20activities%20that%20together%20perform%20a%20task.?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4135\"\n    },\n    {\n      \"id\": 4134,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:57.303Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:55:10.763Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - For CosmosDB - Enterprise Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/cosmos-db/database-security?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4134\"\n    },\n    {\n      \"id\": 4133,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:57.17Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:55:04.34Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - For Azure ML - Enterprise Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/concept-enterprise-security?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4133\"\n    },\n    {\n      \"id\": 4132,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:57.027Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:54:56.09Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - For PowerBI - Enterprise Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/whitepaper-powerbi-securityy?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4132\"\n    },\n    {\n      \"id\": 4131,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:56.89Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:59:15.76Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Using Azure advisor for insights into optimzation areas\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Optimize across, security, reliability, operations and cost</div><div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/advisor/advisor-overview?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4193\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4131\"\n    },\n    {\n      \"id\": 4130,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:56.753Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:58:06.973Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - For Azure Synapse Analytics - Native feature\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/quickstart-scale-compute-portal?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4194\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4130\"\n    },\n    {\n      \"id\": 4129,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:56.61Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:58:00.41Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - For Databricks - Native configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/clusters/configure?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4194\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4129\"\n    },\n    {\n      \"id\": 4128,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:56.443Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:57:47.59Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - For Cosmos DB - Native feature\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/cosmos-db/high-availability?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4191\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4128\"\n    },\n    {\n      \"id\": 4127,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:56.253Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:57:40.91Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - For Azure Synapse Analytics - Native feature\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/analytics/azure-synapse?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4191\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4127\"\n    },\n    {\n      \"id\": 4126,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:56.093Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:46:19.817Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Security Consideration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/data-movement-security-considerations?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4185\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4126\"\n    },\n    {\n      \"id\": 4125,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:55.957Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:46:13.417Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Create Integration Runtimes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">The Integration Runtime (IR) is the compute infrastructure used by Azure Data Factory to provide data integration capabilities across different network environments. For more information about IR, see<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/concepts-integration-runtime?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Integration runtime</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">.</span><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/create-self-hosted-integration-runtime?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Create\\na self-hosted integration runtime</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/create-azure-integration-runtime?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Create\\nAzure integration runtime</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/create-azure-ssis-integration-runtime?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Create\\nan Azure-SSIS integration runtime</a><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4185\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4125\"\n    },\n    {\n      \"id\": 4124,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:55.777Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:46:07.277Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Create Transformations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Using Mapping Data flows&nbsp;</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/concepts-data-flow-overview?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Mapping\\ndata flows</a><br></div><div><br></div><div>Using Copy Activity</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/copy-activity-overview?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Copy\\nactivity</a><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4185\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4124\"\n    },\n    {\n      \"id\": 4123,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:55.633Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:58:25.893Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Monitoring\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Use below set of guidance</span></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\"><br></span></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Azure Databricks</span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><font face=\\\"Segoe UI\\\"><span style=\\\"font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/databricks-monitoring/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Using Azure Monitor</a></span></font></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Data Factory</span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;;font-size:12.0pt;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/monitor-using-azure-monitor?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Using Azure Monitor</a></span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><font face=\\\"Segoe UI\\\"><span style=\\\"font-size:16px;\\\"><a href=\\\"https://azure.microsoft.com/en-us/blog/create-alerts-to-proactively-monitor-your-data-factory-pipelines/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Using Alerts</a></span></font></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Synapse Analytics</span></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">&nbsp; &nbsp; &nbsp; &nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-concept-resource-utilization-query-activity?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\"> Monitor Resource utilization and query activity</a></span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-manage-monitor?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Monitoring using DMVs</a></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\"><br></span></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Azure Storage</span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><font face=\\\"Segoe UI\\\"><span style=\\\"font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/blobs/monitor-blob-storage?tabs=azure-powershell?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Using Azure Monitor</a></span></font></p>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4193\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4123\"\n    },\n    {\n      \"id\": 4122,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:55.497Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:54:18.043Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Performance Tuning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\">Performance Tuning:</div></div><div style=\\\"box-sizing:border-box;\\\"><ol style=\\\"box-sizing:border-box;padding-left:40px;\\\"><li style=\\\"box-sizing:border-box;\\\">Push transformation to the Source:&nbsp;<a href=\\\"https://www.youtube.com/watch?v=ZSUCmi6h5SY&amp;feature=youtu.be\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Where to create your columns in Power BI | Data Modeling Best Practices - YouTube</a></li><li style=\\\"box-sizing:border-box;\\\">Optimize Query Folding:&nbsp;<a href=\\\"https://www.youtube.com/watch?v=ZSUCmi6h5SY&amp;feature=youtu.be\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Where to create your columns in Power BI | Data Modeling Best Practices - YouTube</a><br style=\\\"box-sizing:border-box;\\\">Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/power-query-folding?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></li><li style=\\\"box-sizing:border-box;\\\">Remove<a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/import-modeling-data-reduction?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\"> Extra Columns:</a></li><li style=\\\"box-sizing:border-box;\\\">Use this tool to see what fields are being used in your repots&nbsp;<a href=\\\"https://github.com/stephbruno/Power-BI-Field-Finder\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">GitHub - stephbruno/Power-BI-Field-Finder</a><br style=\\\"box-sizing:border-box;\\\"></li><li style=\\\"box-sizing:border-box;\\\">check the Model size and attributes using Vertipaq Analyzer:&nbsp;<a href=\\\"https://www.sqlbi.com/tools/vertipaq-analyzer/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">VertiPaq Analyzer - SQLBI</a></li><li style=\\\"box-sizing:border-box;\\\">Reduce the calculated columns.</li><li style=\\\"box-sizing:border-box;\\\">Avoid using Excel / SharePoint as possible and try to use relational databases or dataflows</li></ol></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4189\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4122\"\n    },\n    {\n      \"id\": 4121,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:55.357Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:54:11.977Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Configure output from Stream Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">You can use<span>&nbsp;</span></span><a href=\\\"https://powerbi.microsoft.com/\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Power BI</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>as an output for a Stream Analytics job to provide for a rich visualization experience of analysis results. You can use this capability for operational dashboards, report generation, and metric-driven reporting.</span><br></div><div><br></div><div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/power-bi-output?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4188\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4121\"\n    },\n    {\n      \"id\": 4120,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:26:55.16Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:54:06.11Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Configure PowerBI embedded\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(76, 76, 81);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Segoe WP&quot;, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Using Power BI with Azure Stream Analytics allows users of Power BI Embedded dashboards to easily visualize insights from streaming data within the context of the apps they use every day. With Power BI Embedded, users can also embed real-time dashboards right in their organization's web apps.</span><br></div><div><br></div><div>Please refer to this <a href=\\\"https://azure.microsoft.com/en-us/blog/power-bi-embedded-dashboards-with-azure-stream-analytics/?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4188\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4120\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernDataWarehouse/WorkItems/User Story.json",
    "content": "{\n  \"count\": 21,\n  \"value\": [\n    {\n      \"id\": 4197,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:07.107Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review Landing Zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Setup Azure Subscription</div><div>Setup <a href=\\\"https://github.com/Azure/Enterprise-Scale#:~:text=Objective%20%20%20%20Key%20customer%20landing%20zone%2c%20%20Yes%20%206%20more%20rows%20?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Enterprise scale Landing Zone</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4119\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4118\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4098\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4197\"\n    },\n    {\n      \"id\": 4196,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:06.97Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review the scope and align with the scenarios\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Review the scope and align with the scenarios\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4140\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4111\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4098\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4139\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4141\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4196\"\n    },\n    {\n      \"id\": 4195,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:06.837Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Define Migration Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Define Migration Strategy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4143\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4144\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4098\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4142\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4195\"\n    },\n    {\n      \"id\": 4194,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:06.697Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:06.697Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Scalability\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Scalability\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4130\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4129\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4161\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4194\"\n    },\n    {\n      \"id\": 4193,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:06.563Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:06.563Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Operational Excellence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Operational Excellence\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4100\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4131\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4123\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4160\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4193\"\n    },\n    {\n      \"id\": 4192,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:06.327Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:06.327Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Process Efficiency\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">A modern data warehouse (MDW) lets you easily bring all of your data together at any scale. It doesn't matter if it's structured, unstructured, or semi-structured data. You can gain insights to an MDW through analytical dashboards, operational reports, or advanced analytics for all your users.</p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Setting up an MDW environment for both development (dev) and production (prod) environments is complex. Automating the process is key. It helps increase productivity while minimizing the risk of errors.</p><br></div><div><br></div><div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/data-warehouse/dataops-mdw?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4100\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4192\"\n    },\n    {\n      \"id\": 4191,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:06.1Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:06.1Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Reliability\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Azure Databricks</span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;;font-size:12.0pt;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/scenarios/howto-regional-disaster-recovery?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Regional\\ndisaster recovery for Azure Databricks clusters</a></span></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Data Factory</span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;;font-size:12.0pt;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/create-self-hosted-integration-runtime#high-availability-and-scalability?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Create and\\nconfigure a self-hosted integration runtime - High availability and scalability</a></span></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Synapse Analytics</span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;;font-size:12.0pt;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/backup-and-restore#geo-backups-and-disaster-recovery?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Geo-backups\\nand Disaster Recovery</a></span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;;font-size:12.0pt;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-data-warehouse-restore-from-geo-backup?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Geo-restore\\nfor SQL Pool</a></span></p><p style=\\\"margin:0in;font-family:&quot;Segoe UI&quot;;font-size:12.0pt;color:#171717;\\\"><span style=\\\"background:white;\\\">Azure Storage</span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;;font-size:12.0pt;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/common/storage-disaster-recovery-guidance?toc=/azure/storage/blobs/toc.json?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Disaster\\nrecovery and storage account failover</a></span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;;font-size:12.0pt;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-best-practices#high-availability-and-disaster-recovery?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Best practices\\nfor using Azure Data Lake Storage Gen2 – High availability and Disaster\\nRecovery</a></span></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;;font-size:12.0pt;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/common/storage-redundancy?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Azure Storage\\nRedundancy</a></span></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4128\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4165\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4127\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4191\"\n    },\n    {\n      \"id\": 4190,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:05.967Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:05.967Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review Security Baselines</div><div>For Azure storage review <a href=\\\"https://docs.microsoft.com/en-us/azure/storage/common/security-baseline?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this </a>and one <a href=\\\"https://docs.microsoft.com/en-us/azure/storage/blobs/security-recommendations?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">more</a><br></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\">For Azure SQL DB review </span><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql/database/security-baseline?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this&nbsp;</a><br></div><div><br></div><div>For Azure Data bricks review <a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/scenarios/security-baseline?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this </a>and <a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/security/data-governance?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">one </a>more</div><div><br></div><div><span style=\\\"\\\">For Azure Synapse Analytics review <a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/security-baseline?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this&nbsp;</a></span><br></div><div><br></div><div>For Azure Stream Analytics review <a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/security-baseline?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this</a></div><div><br></div><div>For Azure HDInsight review <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/security-baseline?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this</a></div><div><br></div><div>For Azure IOT Hub review <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/security-baseline?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this</a></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\">For Azure ML review <a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/security-baseline?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">this&nbsp;</a></span></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4133\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4137\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4136\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4164\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4132\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4135\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4138\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4134\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4190\"\n    },\n    {\n      \"id\": 4189,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:05.823Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:05.823Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Visualization  (Cold Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The tasks under this user story show the steps needed to implement visualizations as consumption layer in the Modern Data Warehouse pattern. for general BI guidance refer to Power BI documentation&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/power-bi/guidance/\\\">https://docs.microsoft.com/en-us/power-bi/guidance/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4156\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4158\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4122\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4159\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4157\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4189\"\n    },\n    {\n      \"id\": 4188,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:05.687Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:05.687Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Visualization  (Hot Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"\\\"><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Stream Analytics enables you to take advantage of one of the leading business intelligence tools,<span>&nbsp;</span></span><a href=\\\"https://powerbi.com/\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Microsoft Power BI</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">. In this article, you learn how create business intelligence tools by using Power BI as an output for your Azure Stream Analytics jobs. You also learn how to create and use a real-time dashboard that is continuously updated by the Stream Analytics job.</span><br></span></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\">Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-power-bi-dashboard?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance&nbsp;</a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4121\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4120\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4188\"\n    },\n    {\n      \"id\": 4187,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:05.547Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:05.547Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Model & Serve  (Cold Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Model &amp; Serve  (Cold Path)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4102\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4108\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4104\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4163\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4101\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4187\"\n    },\n    {\n      \"id\": 4186,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:05.41Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:05.41Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Model & Serve  (Hot Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Model &amp; Serve  (Hot Path)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4105\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4109\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4162\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4103\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4186\"\n    },\n    {\n      \"id\": 4185,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:05.27Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:05.27Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Data Preparation (Cold Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>A data factory can have one or more pipelines. A pipeline is a logical grouping of activities that together perform a task. For example, a pipeline could contain a set of activities that ingest and clean log data, and then kick off a mapping data flow to analyze the log data. The pipeline allows you to manage the activities as a set instead of each one individually. You deploy and schedule the pipeline instead of the activities independently.<br><div><br></div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/concepts-pipelines-activities?toc=/azure/synapse-analytics/toc.json&amp;bc=/azure/synapse-analytics/breadcrumb/toc.json?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a>&nbsp;<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4125\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4145\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4124\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4126\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4185\"\n    },\n    {\n      \"id\": 4184,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:05.137Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:05.137Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Data Preparation And Transformation  (Hot Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Choose the right technology -- <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/dataplate2e/data-platform-end-to-end?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">Guidance</a></div><div><br></div><div><b>For Hot Path, choose&nbsp;</b></div><div>Azure Synapse Analytics,&nbsp;</div><div>Azure Stream Analytics,&nbsp;</div><div>Azure Data Bricks,&nbsp;</div><div>HDInsight (SPARK, STORM, KAFKA)&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4146\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4166\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4184\"\n    },\n    {\n      \"id\": 4183,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:04.977Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:04.977Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Data Ingestion (Cold Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">A common big data scenario is batch processing of data at rest. In this scenario, the source data is loaded into data storage, either by the source application itself or by an orchestration workflow.<span>&nbsp;</span></span><br></div><div><br></div><div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/data-guide/big-data/batch-processing?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4148\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4150\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4149\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4147\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4183\"\n    },\n    {\n      \"id\": 4182,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:04.84Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:04.84Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Data Ingestion (Hot Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Real time processing deals with streams of data that are captured in real-time and processed with minimal latency. Many real-time processing solutions need a message ingestion store to act as a buffer for messages, and to support scale-out processing, reliable delivery, and other message queuing semantics.</span><br></div><div><br></div><div>Choose the right technology for the <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/data-guide/technology-choices/real-time-ingestion?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">real-time ingestion</a></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4151\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4154\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4107\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4152\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4153\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4182\"\n    },\n    {\n      \"id\": 4181,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:04.613Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:04.613Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Data Store (Cold Path)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/data-guide/big-data/#lambda-architecture?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\">guidance</a></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4155\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4181\"\n    },\n    {\n      \"id\": 4180,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:04.48Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:27:04.48Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Perform Decision - ETL, Ingest, Prepare, Train, Model, Visualization Technology Selection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Ensure Data read and Write patterns are well understood.&nbsp; Refer to this<a href=\\\"https://github.com/albero-azure/albero?WT.mc_id=devops_userstory_service_mdndatawrh_-inproduct-devopsportal\\\"> tool for Assessing data patterns</a></div><div><br></div><div><b>Technologies to consider for Ingestion&nbsp;</b></div><div>HDInsight Kafka :</div><div><span>Stream Analytics</span><br></div><div>EventHub</div><div>IoTHub</div><div>Data Factory</div><div><br></div><div><b style=\\\"box-sizing:border-box;\\\">Technologies to consider for Storage</b><br></div><div><span style=\\\"box-sizing:border-box;\\\">ADLS Gen2</span></div><div><span style=\\\"box-sizing:border-box;\\\"><br></span></div><div><span style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\">Technologies to consider for Preparation</b><br></span></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Databricks</span></span></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Synapse Pools</span></span></div><div><br></div><div><b style=\\\"box-sizing:border-box;\\\">Technologies to consider for Training</b><br></div><div><span style=\\\"box-sizing:border-box;\\\">Databricks</span></div><div><span style=\\\"box-sizing:border-box;\\\">Azure Machine Learning</span></div><div><span style=\\\"box-sizing:border-box;\\\"><br></span></div><div><b style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\">Technologies to consider for Model and Serve</b><br></b></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Synapse Analytics</span></span></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">CosmosDB</span><br style=\\\"box-sizing:border-box;\\\"></div><span>Time Series Insight</span><br></span></span></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Azure Data Explorer</span></span></div><div><br></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\">Technologies to consider for Visualization</b></b></b></b></span></span></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">PowerBI</span></span></span></span></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\"><br>Technologies to consider for ML</b></b></span></span></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">AML</span></span></span></div><div><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Databricks<br></span><br></span></span></div><div><b style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\"><br></b></b></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Implementation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4180\"\n    },\n    {\n      \"id\": 4179,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:04.343Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"On-premises preparation for data migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"On-premises preparation for data migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4168\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4169\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4098\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4179\"\n    },\n    {\n      \"id\": 4178,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:04.03Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Assess your existing data warehouse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Start by assessing your\\nexisting legacy data\\nwarehouse to understand its\\nstrengths and weaknesses\\nand gauge the extent of the\\nmigration challenge<br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4098\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4173\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4170\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4174\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4172\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4178\"\n    },\n    {\n      \"id\": 4177,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern Data Warehouse\",\n        \"System.TeamProject\": \"Modern Data Warehouse\",\n        \"System.IterationPath\": \"Modern Data Warehouse\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-01-29T20:27:03.887Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-01-29T20:35:46.023Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Preparation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Preparation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4113\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4198\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4116\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4114\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4115\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4112\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4098\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4117\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4175\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4176\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4177\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/ImportSourceCode/Modern IOT.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/Modern IOT/_git/Modern IOT\"\n    },\n    \"serviceEndpointId\": \"$Modern IOT-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Modern IOT\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/ServiceEndpoints/Modern IOT-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Modern IOT-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/lpcs/Modern IOT/_git/Modern IOT\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/Teams/Modern IOT Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/Teams/Modern IOT Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/Teams/Modern IOT Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/Teams/Modern IOT Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/Teams/Modern IOT Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"777159df-ff7f-41ac-9bdf-c2e655a07de7\",\n    \"name\": \"Modern IOT Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 4669,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:51.007Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:51.007Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"IOT Solution Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"IOT Solution Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4679\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4672\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4677\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4673\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4675\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4676\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4678\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4674\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\"\n    },\n    {\n      \"id\": 4668,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:49.817Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:49.817Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"IOT Solution Planning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"IOT Solution Planning\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4670\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4668\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/WorkItems/Feature.json",
    "content": "{\n  \"count\": 10,\n  \"value\": [\n    {\n      \"id\": 4679,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:54.827Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:49:57.13Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Post Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Post Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4778\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4679\"\n    },\n    {\n      \"id\": 4678,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:54.557Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:54.557Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario:  IoT Edge Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure IoT Edge extends IoT Hub. Analyze device data locally instead of in the cloud to send less data to the cloud, react to events quickly, and operate offline.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span style=\\\"display:inline !important;\\\">Azure IoT Edge moves cloud analytics and custom business logic to devices so that your organization can focus on business insights instead of data management. Scale out your IoT solution by packaging your business logic into standard containers, then you can deploy those containers to any of your devices and monitor it all from the cloud.</span><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span style=\\\"display:inline !important;\\\"><br></span></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/about-iot-edge?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">What is Azure IoT Edge | Microsoft Docs</a></span></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/offline-capabilities?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Operate devices offline - Azure IoT Edge | Microsoft Docs</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4796\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4794\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4795\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4678\"\n    },\n    {\n      \"id\": 4677,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:54.157Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:54.157Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario:  Using Microsoft Azure IoT Solution Accelerators\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>A cloud based IoT solution typically uses custom code and cloud services to manage device connectivity, data processing and analytics, and presentation.<br></span><div><br></div><div>The IoT solution accelerators are complete, ready-to-deploy IoT solutions that implement common IoT scenarios. The scenarios include connected factory and device simulation. When you deploy a solution accelerator, the deployment includes all the required cloud-based services along with any required application code.<br></div><div><br></div><div>The solution accelerators are starting points for your own IoT solutions. The source code for all the solution accelerators is open source and is available in GitHub. You're encouraged to download and customize the solution accelerators to meet your requirements.<br></div><div><br></div><span>You can also use the solution accelerators as learning tools before building a custom IoT solution from scratch. The solution accelerators implement proven practices for cloud based IoT solutions for you to follow.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4793\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4792\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4677\"\n    },\n    {\n      \"id\": 4676,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:54.03Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:54.03Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario:  IoT Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin-top:0px;font-family:museosans-300-webfont, sans-serif;font-size:17px;color:rgb(34, 34, 34);margin-bottom:24px;\\\">Data analytics has been implemented in the business world for some time, enriching all industries from manufacturing to marketing.</p><p style=\\\"box-sizing:border-box;margin-top:0px;font-family:museosans-300-webfont, sans-serif;font-size:17px;color:rgb(34, 34, 34);margin-bottom:24px;\\\">The amount of data available to analytics programs has vastly increased with the rise of smartphone technology, but the Internet of Things (IoT) promises to take this data deluge to new heights. With home appliances, health monitors, transport infrastructure and many other everyday items soon to be equipped with online connectivity, the insights available to businesses will be staggering. IoT analytics will enable organizations to make sense of the IoT data explosion.</p></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4790\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4791\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4789\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4676\"\n    },\n    {\n      \"id\": 4675,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:53.45Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:53.45Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Process real-time vehicle data using IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"margin:16px 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><span><span style=\\\"color:rgb(47, 47, 47);font-size:20px;display:inline !important;\\\"></span></span></div><p style=\\\"margin:0in;\\\"><span style=\\\"color:rgb(23, 23, 23);\\\">The automotive industry is rapidly transforming. With today’s\\nbreakthrough digital technologies, the pace of innovation has accelerated to\\nAutobahn speeds, with seemingly no limits to where the industry can go.</span></p><p style=\\\"margin-top:12pt;margin-bottom:0pt;color:#171717;\\\">Vehicle data ingestion, processing, and visualization are key\\ncapabilities needed to create connected car solutions. By capturing and\\nanalyzing this data, we can decipher valuable insights and create new\\nsolutions.</p><p style=\\\"margin-top:12pt;margin-bottom:0pt;color:#171717;\\\"><br></p><p style=\\\"margin:0in;color:#171717;\\\">For\\nexample, with vehicles equipped with telematics devices, we can monitor the\\nlive location of vehicles, plan optimized routes, provide assistance to\\ndrivers, and support industries that consume or benefit from telematics data\\nsuch as insurers, etc. For vehicle manufacturers, diagnostic information can\\nprovide important information for vehicle servicing and warranties.</p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"></p><br><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/data/realtime-analytics-vehicle-iot\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Process real-time vehicle data using IoT - Azure Example Scenarios | Microsoft Docs</a><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4675\"\n    },\n    {\n      \"id\": 4674,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:53.263Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:53.263Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Condition Monitoring for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Each remote monitoring project will be unique—tailored to the needs of your business and your equipment. But \\nat its core, the principles and considerations for a remote monitoring solution are very similar.<br></div><div><br></div><div><b>Identify the business objective</b><br></div><div>Start by determining the business objectives of your remote monitoring project. Examples include faster response \\ntimes to equipment issues, or better insight into asset performance. The more specific you can be about the \\noutcomes you want to achieve, the better<br></div><div><br></div><div><b>Profile the assets involved</b><br></div><div>Map and categorize your assets—consider asset types, where they are located, whether they connect in a secure \\nfashion, and what data they can collect.\\n<br></div><div><br></div><div><b>Determine additional components required\\n</b><br></div><div>Set up additional devices if needed to connect sensitive or legacy assets. Plan end-to-end security. Assess the \\nintegration and development work required to address your business needs.<br></div><div><b><br></b></div><div><b>Understand your data<br></b></div><div>Develop data profiles—including types and amounts of data your assets generate, how often new data is \\navailable, and where the data lives. Determine who needs what data, and how soon they need it for it to be \\nvaluable<br></div><div><br></div><div><b>Define business rules\\n</b><br></div><div>Identify conditions that will trigger an alert, such as when data exceeds a threshold. Define the actions that should \\noccur next—for instance, a technician is dispatched and given instructions on how to investigate the issue.\\n<br></div><div><br></div><div><b>Operationalize and deliver business value</b><br></div><div>Complete solution development and implement business process changes. Scale and integrate with back-end \\nsystems and applications. Gain real-time visibility and new insights and use this information to improve operations.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4786\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4788\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4674\"\n    },\n    {\n      \"id\": 4673,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:52.78Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:52.78Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Predictive Maintenance for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Imagine if you could predict equipment failures before they happen, and systematically prevent them. That’s what \\npredictive maintenance offers. It involves using data to identify warning signs of potential problems, predict when \\nequipment needs maintenance and preemptively service that equipment before problems occur. <br></div><div><br></div><div>Predictive modeling helps you identify conditions that indicate future equipment problems. With this information, \\nyou can adjust processes and systems to trigger preventative actions when those conditions occur. In other words, \\nyou can translate insights from the model into operational changes, which is where you see significant business \\nvalue. <br></div><div><br></div><div><b>Identify the target outcome<br></b></div><div>Start by figuring out the outcome you are looking to achieve – this determines the predictive question you need \\nto answer, and helps you measure the success of your effort.<br></div><div><br></div><div><b>Inventory data sources</b><br></div><div>Once you identify what you want to predict, determine whether you have the data needed to create a robust \\npredictive model.\\n<br></div><div><br></div><div><b>Capture and combine data\\n</b><br></div><div>Now you’re ready to lay the groundwork for predictive analysis. \\nConnect data into a consistent system and normalize it | Determine the relevant data for the problem you’re \\ntrying to solve | Identify any gaps in the data<br></div><div><br></div><div><b>Model, test and refine\\n</b></div><div>With a defined problem and normalized data, the next step is to build a predictive model.\\n<br></div><div><br></div><div><b>Use your latest data to validate the model\\n</b></div><div>The true test of a predictive model is how well it predicts results in a live operational setting. Running a pilot is the \\nrecommended approach for validating a model’s performance<br></div><div><br></div><div><b>Integrate into operations</b><br></div><div>Once you’ve met pilot objectives and refined the model, you’re ready for broader implementation. <br></div><div><br></div><div><br></div><div>Please review architecture <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-architecture?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance&nbsp;</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4781\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4782\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4784\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4673\"\n    },\n    {\n      \"id\": 4672,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:52.637Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:49:40.503Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Review IOT Patterns\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><b>Study Reference <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/iot?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Architecture</a></b></div><div><br></div><div><b>Complete conceptual understanding</b></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/iot/measure-control-loop?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\"><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">measure and control loop</span><em style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">,&nbsp;</em></a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/iot/monitor-manage-loop?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">monitor and manage loop</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/iot/event-routing?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">event routing</a></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4672\"\n    },\n    {\n      \"id\": 4671,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:52.157Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:48:48.597Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Design Considerations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design Considerations\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4774\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4804\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4803\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4669\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4772\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4773\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4775\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4671\"\n    },\n    {\n      \"id\": 4670,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:51.627Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:51.627Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Planning for IOT on Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Planning for IOT on Azure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4780\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4776\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4668\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4670\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/WorkItems/Task.json",
    "content": "{\n  \"count\": 89,\n  \"value\": [\n    {\n      \"id\": 4716,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:02.18Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:08:09.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Review and Align OKRs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/business-outcomes/okr?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4776\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4716\"\n    },\n    {\n      \"id\": 4715,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:02.05Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:08:10.753Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Assemble Team - Key roles in a IoT Solution Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;\\\">Key roles in a IoT project include:</div><div style=\\\"box-sizing:border-box;\\\"><p style=\\\"box-sizing:border-box;margin:0in;\\\"></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Business owner</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Project manager (with agile methodology experience e.g. scrum)</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Project coordinator</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Cloud engineer (Infrastructure focused)</span></li><li style=\\\"box-sizing:border-box;\\\">IoT Developer</li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data virtualization specialist</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Testing engineer</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Business analysts (to help test BI tool queries, reports and analyses</span></li></ul></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4776\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4715\"\n    },\n    {\n      \"id\": 4768,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:11.55Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:11.55Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Predictive Maintenance for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Imagine if you could predict equipment failures before they happen, and systematically prevent them. That’s what \\npredictive maintenance offers. It involves using data to identify warning signs of potential problems, predict when \\nequipment needs maintenance and preemptively service that equipment before problems occur.<br></div><div><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">his example scenario demonstrates how end manufacturers can connect assets to the cloud using OPC UA (Open Platform Communication Unified Architecture) and the Industrial Components. This will enable the use of Predictive Maintenance to improve the efficiency of your machines, while reducing the costs by optimizing the production.</span><br></div><div><br></div><div><br></div><div>Please review details <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/iot-predictive-maintenance?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">here</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4768\"\n    },\n    {\n      \"id\": 4767,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:11.397Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:11.397Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Condition Monitoring for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Each remote monitoring project will be unique—tailored to the needs of your business and your equipment. But \\nat its core, the principles and considerations for a remote monitoring solution are very similar. In the next sections \\nof this document, you will see details you should consider when getting started on a remote monitoring project<br></div><div><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">This example scenario demonstrates how end manufacturers can connect their assets to the cloud using OPC UA (Open Platform Communication Unified Architecture) and the Industrial Components. They can monitor their equipment's key parameters to discover anomalies before they become critical issues</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/condition-monitoring?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">details</a></span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4767\"\n    },\n    {\n      \"id\": 4766,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:11.25Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:11.25Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : Process real-time vehicle data using IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Vehicle data ingestion, processing, and visualization are key capabilities needed to create connected car solutions. By capturing and analyzing this data, we can decipher valuable insights and create new solutions.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review these <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/data/realtime-analytics-vehicle-iot?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">details</a></span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4766\"\n    },\n    {\n      \"id\": 4765,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:11.107Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:11.107Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Verify Landing Zone implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4780\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4765\"\n    },\n    {\n      \"id\": 4764,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:10.723Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:10.723Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Enterprise-scale learning path\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Follow the <a href=\\\"https://docs.microsoft.com/en-us/learn/browse/?products=azure%2csql-server%2cwindows-server&amp;terms=enterprise%20scale?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">tutorial </a>as a preparation effort&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4780\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4764\"\n    },\n    {\n      \"id\": 4763,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:10.553Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:10.553Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario : IoT analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">This architecture pattern demonstrates near real-time analytics over fast flowing, high volume streaming data from IoT devices, sensors, connected buildings and vehicles, and so on. It focuses on integration of Azure Data Explorer with other IoT services to cater to both operational and analytical workloads using Cosmos DB and Azure Data Explorer.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review these <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/iot-azure-data-explorer?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">details</a></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4763\"\n    },\n    {\n      \"id\": 4762,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:10.387Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:10.387Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario: Using Microsoft Azure IoT Solution Accelerators\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">A cloud-based IoT solution typically uses custom code and cloud services to manage device connectivity, data processing and analytics, and presentation.</p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">The IoT solution accelerators are complete, ready-to-deploy IoT solutions that implement common IoT scenarios. The scenarios include connected factory and device simulation. When you deploy a solution accelerator, the deployment includes all the required cloud-based services along with any required application code.</p><br></div><a href=\\\"https://github.com/Azure/azure-iot-connected-factory\\\"></a><div>Please review this <a href=\\\"https://docs.microsoft.com/en-gb/azure/iot-accelerators/about-iot-accelerators?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\">Refer to below solution accelerators<br><a href=\\\"https://www.azureiotsolutions.com/Accelerators#description/connected-factory?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Connected Factory</a></span><br></div><div><a href=\\\"https://github.com/Azure/azure-iot-pcs-device-simulation?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Device Simulation</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4762\"\n    },\n    {\n      \"id\": 4761,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:10.213Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:23.627Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Deploy Azure IoT Platform : Provision Essential Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Deploy the Azure Industrial IoT Platform and Simulation in Azure using the deployment <a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-all-in-one.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">scripts</a></span><br></div><div>and one <a href=\\\"https://github.com/Azure/Industrial-IoT/blob/master/docs/deploy/howto-deploy-all-in-one.md?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">more</a></div><div><br></div><div><b>Note:</b></div><div>Please ensure the person executing the script is a Azure AD tenant global administrator.&nbsp; If the admin is from a centralized IT department then pre-create the AAD application registration and pass it a parameter to the script.&nbsp;&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4781\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4761\"\n    },\n    {\n      \"id\": 4760,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:09.983Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:17.497Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Provision Microservices on a separate host (AKS) - Optional\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div><span></span></div></div><div style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">By default the OPC-Registry-Service is hosted as Azure App services. For the production use, we recommend deploying the services in the AKS cluster</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Deploy the Platform Microservices to a new AKS cluster</span><br style=\\\"box-sizing:border-box;\\\"></div></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-aks.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\">Azure Kubernetes Service (AKS)</span><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\">&nbsp;</span></a></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\">OR&nbsp;</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\"><span style=\\\"box-sizing:border-box;background:white;\\\">Into an existing Kubernetes cluster&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-helm.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;background:white;\\\">using Helm</span><span style=\\\"box-sizing:border-box;background:white;\\\">.</span></a></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\">OR&nbsp;</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\"><span style=\\\"box-sizing:border-box;cursor:pointer;background:white;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-add-aks-to-ps1.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure Kubernetes Service (AKS) cluster on top of Azure Industrial IoT Platform created by deployment script and adding Azure Industrial IoT components into the cluster</a></span><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><br></div><br><div><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\"><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4781\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4760\"\n    },\n    {\n      \"id\": 4759,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:09.753Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:12.197Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Deploy IoT Edge Modules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The industrial assets (machines and systems) are connected to Azure through modules running on an<span>&nbsp;Azure IoT Edge</span></span><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><span>&nbsp;</span>industrial gateway. Review this <a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-install-iot-edge.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></span><br></div><div style=\\\"margin:0px 0in 0px 0.375in;\\\"><br></div><div style=\\\"margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><b>Deploy the Industrial IoT Edge modules to<span>&nbsp;Azure IOT Edge</span></b></span></div><div style=\\\"margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;\\\">Using the Azure <a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-modules-portal.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Portal </a>and Marketplace.&nbsp;</span><span style=\\\"\\\">OR&nbsp;</span><span style=\\\"\\\">Using </span><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-modules-az.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"\\\">CLI</a></div><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;\\\"><b>Review Publisher Module</b></span><br></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><a href=\\\"https://github.com/azure/iot-edge-opc-publisher\\\">https://github.com/azure/iot-edge-opc-publisher</a></p><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4781\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4759\"\n    },\n    {\n      \"id\": 4758,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:09.473Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:06.377Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Setup Local Development\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The Industrial IoT Microservices provide a RESTful API exposing the platform capabilities</span></div><div style=\\\"margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Run <a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-run-microservices-locally.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Locally</a></span></div><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><div style=\\\"margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">This article explains how to deploy only the Azure services needed to do<a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-local.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\"> local development and debugging</a></span><br></div><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4781\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4758\"\n    },\n    {\n      \"id\": 4757,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:09.317Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:53:47.163Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Implement Alert / Alarm : For detected Annamolies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#notifications?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4784\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4757\"\n    },\n    {\n      \"id\": 4756,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:08.95Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:53:26.527Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - Implement Predictive Model\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>For advanced modeling, use Azure Machine Learning&nbsp;</div><div>For simple scenarios use Azure Cognitive Services</div><div><br></div><div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#machine-learning?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a>&nbsp; and&nbsp;&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-machine-learning-edge-01-intro?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"\\\">ML on IoT Edge</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4756\"\n    },\n    {\n      \"id\": 4755,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:08.797Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:53:41.197Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Implement Business Process Integration (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#business-process-integration?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4784\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4755\"\n    },\n    {\n      \"id\": 4754,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:08.66Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:08.66Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Solution Scenario: IoT Edge Analytics (Live Video Analytics)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review common scenarios <a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-edge#common-scenarios?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">here</a></div><div><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">IoT solutions that combine video analytics with signals from other IoT sensors and/or business data can help you automate or semi-automate business decisions, resulting in productivity improvements.</span><br></div><div><br></div><div>Review the details on <a href=\\\"https://docs.microsoft.com/en-us/azure/media-services/live-video-analytics-edge/overview?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Video Analytics on IoT edge</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4777\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4754\"\n    },\n    {\n      \"id\": 4753,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:08.527Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:57:12.94Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Deploy Cloud Analytics services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><b>Azure Stream Analytics</b>:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-quick-create-portal?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Quickstart - Create a Stream Analytics job by using the Azure portal | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/quick-create-azure-resource-manager?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Quickstart - Create an Azure Stream Analytics job by Azure Resource Manager template | Microsoft Docs</a><br></div><div><br></div><div>and/or</div><div><br></div><div><b>Azure Databricks</b>:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/data/stream-processing-databricks?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Stream processing with Azure Databricks - Azure Reference Architectures | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/scenarios/quickstart-create-databricks-workspace-portal?tabs=azure-portal?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Quickstart - Run a Spark job on Azure Databricks Workspace using Azure portal | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/scenarios/quickstart-create-databricks-workspace-resource-manager-template?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Quickstart - Create an Azure Databricks workspace by Azure Resource Manager template | Microsoft Docs</a><br></div><div><br></div><div><br></div><div><b>Azure Time Series Insights:</b></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/time-series-insights/tutorials-set-up-tsi-environment?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial: Set up a Gen2 environment - Azure Time Series Insights Gen2 | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/time-series-insights/tutorials-model-sync?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Model synchronization between Azure Digital Twins and Time Series Insights | Microsoft Docs</a><br></div><div><br></div><div><b>Azure Data Explorer:</b></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-explorer/create-cluster-database-portal?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Quickstart: Create an Azure Data Explorer cluster &amp; DB | Microsoft Docs</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4789\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4753\"\n    },\n    {\n      \"id\": 4752,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:08.39Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:57:21.433Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Deploy analytics code to Azure services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><b>Azure Stream Analytics:</b></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-get-started-with-azure-stream-analytics-to-process-data-from-iot-devices#create-an-azure-stream-analytics-query?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Process real-time IoT data streams with Azure Stream Analytics | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-build-an-iot-solution-using-stream-analytics?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Build an IoT solution by using Azure Stream Analytics | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-threshold-based-rules?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Configurable threshold-based rules in Azure Stream Analytics | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-twitter-sentiment-analysis-trends?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Real-time Twitter sentiment analysis with Azure Stream Analytics | Microsoft Docs</a><br></div><div><br></div><div><b>Azure Databricks:</b></div><div><a href=\\\"https://databricks.com/blog/2020/08/03/modern-industrial-iot-analytics-on-azure-part-1.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">How to Use Databricks to Scale Modern Industrial IoT Analytics - Part 1 - The Databricks Blog</a><br></div><div><a href=\\\"https://databricks.com/blog/2020/08/11/modern-industrial-iot-analytics-on-azure-part-2.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">How to Use Databricks to Scale Modern Industrial IoT Analytics - Part 2 - The Databricks Blog</a><br></div><div><a href=\\\"https://databricks.com/blog/2020/08/20/modern-industrial-iot-analytics-on-azure-part-3.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">How to Use Databricks to Scale Modern Industrial IoT Analytics - Part 3 - The Databricks Blog</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/scenarios/databricks-stream-from-eventhubs?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial: Stream data into Azure Databricks using Event Hubs | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/spark/latest/structured-streaming/demo-notebooks?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Structured Streaming Demo notebooks - Azure Databricks - Workspace | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/databricks/spark/latest/structured-streaming/production?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Structured Streaming in production - Azure Databricks - Workspace | Microsoft Docs</a><br></div><div><br></div><div><b>Azure Time Series Insights:</b></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/time-series-insights/how-to-ingest-data-iot-hub?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">How to add an IoT hub event source - Azure Time Series Insights | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/time-series-insights/how-to-ingest-data-event-hub?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Add an Event Hubs event source - Azure Time Series Insights | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/time-series-insights/how-to-edit-your-model?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Data modeling in Gen2 environments - Azure Time Series Insights | Microsoft Docs</a></div><div><br></div><div><b>Azure Data Explorer:</b></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-explorer/ingest-data-overview?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure Data Explorer data ingestion overview | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-explorer/ingest-data-no-code?tabs=diagnostic-metrics?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial: Ingest monitoring data in Azure Data Explorer without code | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-explorer/kql-quick-reference?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">KQL quick reference | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-explorer/viz-overview?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure Data Explorer data visualization | Microsoft Docs</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4790\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4752\"\n    },\n    {\n      \"id\": 4751,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:08.107Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:57:28.26Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Visualizing & acting on analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/power-bi/connect-data/service-real-time-streaming?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Real-time streaming in Power BI - Power BI | Microsoft Docs</a><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-explorer/power-bi-best-practices?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Best practices for using Power BI to query and visualize Azure Data Explorer data | Microsoft Docs</a></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/time-series-insights/how-to-connect-power-bi?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Connect your environment to Power BI - Azure Time Series Insights | Microsoft Docs</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4791\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4751\"\n    },\n    {\n      \"id\": 4750,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:07.763Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:58:00.78Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Deploy Azure IoT Edge\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><b>Azure IoT Edge</b> allows remote management of the code on our devices , enabling&nbsp; us to send more workloads to the edge. Workloads can be deployed as modules on the Azure IoT Edge runtime , running on the devices. Modules can be custom built or can be from Azure Marketplace. Following resources provides guidance on how to develop &amp; deploy IoT edge devices.</div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/quickstart-linux?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Quickstart create an Azure IoT Edge device on Linux | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-develop-for-linux?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial - Develop module for Linux devices using Azure IoT Edge | Microsoft Docs</a><br> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4794\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4750\"\n    },\n    {\n      \"id\": 4749,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:07.587Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:57:55.06Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Deploy IoT Edge modules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Workloads can be deployed to <span style=\\\"display:inline !important;\\\">Azure IoT Edge runtime, running on the devices&nbsp;</span>as<b> IoT Edge modules. </b>Modules<span style=\\\"font-family:Calibri, sans-serif;font-size:11pt;\\\">&nbsp;can be custom built or can be from\\nAzure Marketplace. These&nbsp;</span><span style=\\\"font-size:11pt;text-align:justify;font-family:&quot;Segoe UI&quot;, sans-serif;color:rgb(23, 23, 23);\\\"><span style=\\\"text-align:start;\\\">IoT Edge modules can connect with other Azure services and\\ncontribute to your larger cloud data pipeline. To deploy your program on an IoT\\nEdge device, it must first be containerized and run with a Docker-compatible\\nengine</span></span><br></span> </div><div><span style=\\\"display:inline !important;\\\"><span style=\\\"font-size:11pt;text-align:justify;font-family:&quot;Segoe UI&quot;, sans-serif;color:rgb(23, 23, 23);\\\"><span style=\\\"text-align:start;\\\"><br></span></span></span> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-deploy-stream-analytics?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial - Stream Analytics at the edge using Azure IoT Edge | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-store-data-sql-server?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial - Store data with SQL module using Azure IoT Edge | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-deploy-custom-vision?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial - Deploy Custom Vision classifier to a device using Azure IoT Edge | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-deploy-machine-learning?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial - Deploy Azure Machine Learning to a device using Azure IoT Edge | Microsoft Docs</a><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4794\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4749\"\n    },\n    {\n      \"id\": 4748,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:07.377Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:58:07.537Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Developing & deploying analytics to the Edge\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;color:rgb(76, 76, 81);background:white;\\\"><b style=\\\"box-sizing:border-box;font-size:14px;text-align:start;\\\">Analytics at the Edge</b><br></span> </p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;color:rgb(76, 76, 81);background:white;\\\">Enabling Analytics on the “Edge” devices\\nprovides various advantages.</span> </p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#4C4C51;background:white;\\\">It will minimize the amount of data that is\\nsent to cloud over network and hence reduces cost.</span> </p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#4C4C51;background:white;\\\">Rather than processing data in the cloud, IoT\\nEdge processes it on the device itself</span>. It uses a field-programmable\\ngate array (FPGA) to make real-time AI calculations, giving us the immediate\\ninsights, we need to make critical business decisions.  </p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#4C4C51;background:white;\\\">Operate edge devices reliably and securely,\\neven when they are offline, or they have intermittent connectivity to the cloud</span> </p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#4C4C51;background:white;\\\">Azure Stream Analytics on IoT Edge enables\\ndeployment of near real-time analytical intelligence closer to IoT devices so\\nthat value of the device generated data can be unlocked in short span of time.</span> </p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;color:rgb(76, 76, 81);background:white;\\\">Analytical models can be trained in the cloud\\nand run on edge devices.</span> </p><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-python-module?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial - Custom Python module tutorial using Azure IoT Edge | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-node-module?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial develop Node.js module for Linux - Azure IoT Edge | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-java-module?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial - Custom Java module tutorial using Azure IoT Edge | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-c-module?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial develop C module for Linux - Azure IoT Edge | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-csharp-module?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tutorial - Develop C# module for Linux using Azure IoT Edge | Microsoft Docs</a><br> </div><div><br> </div><div><br> </div><div><b>Analytics in the Cloud from Edge data:</b> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql-edge/tutorial-sync-data-factory?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Sync data from Azure SQL Edge by using Azure Data Factory | Microsoft Docs</a><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql-edge/tutorial-sync-data-sync?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Sync data from Azure SQL Edge by using SQL Data Sync | Microsoft Docs</a><br> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4795\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4748\"\n    },\n    {\n      \"id\": 4747,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:07.243Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:58:23.71Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Visualizing & acting on analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Real-Time Analytics capability enables various use case scenarios where data can be consumed continuously, and actions can be triggered as immediate response.&nbsp; Basic real-time dashboards can be enabled with the OOB configuration of Azure IoT Hub and PowerBI. Azure IoT Hub provides the flexibility to extend the OOB feature with custom coding to address various real-time analytical requirements. Azure Machine Learning can be used along with Azure IoT Hub to enable real-time predictive analytical scenarios like anomaly detection. </div><div><br> </div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-live-data-visualization-in-power-bi?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Real-time data visualization of data from Azure IoT Hub – Power BI | Microsoft Docs</a><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4796\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4747\"\n    },\n    {\n      \"id\": 4746,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:07.103Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:57:35.587Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Deploy the template solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><b>Connected Factory:</b></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-accelerators/quickstart-connected-factory-deploy?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Try a solution to manage my industrial IoT devices - Azure | Microsoft Docs</a><br></div><div><a href=\\\"https://github.com/Azure/azure-iot-connected-factory?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure/azure-iot-connected-factory: Azure IoT connected factory preconfigured solution (github.com)</a><br></div><div><br></div><div><b>Device Simulation:</b></div><div><a href=\\\"https://github.com/Azure/azure-iot-pcs-device-simulation?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure/azure-iot-pcs-device-simulation: Azure IoT Device Simulations (github.com)</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4792\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4746\"\n    },\n    {\n      \"id\": 4745,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:06.97Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:57:42.227Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Configure Customization & gather insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\">Connected Factory:</b></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-accelerators/iot-accelerators-connected-factory-configure?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Configure the Connected Factory topology - Azure | Microsoft Docs</a><br></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-accelerators/iot-accelerators-connected-factory-customize?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Customize how the Connected Factory solution displays data from your OPC UA servers - Azure | Microsoft Docs</a><br></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><b style=\\\"box-sizing:border-box;\\\">Device Simulation:</b></div><div style=\\\"box-sizing:border-box;\\\">Modify simulated device code as needed for your scenario. Common scenarios:</div><div style=\\\"box-sizing:border-box;\\\"><ul><li>Load Testing – Customers will be able to perform large scale tests using Device Simulation. Individual simulations will support up to 20,000 simulated devices.<br></li><li>IoT Demos – Device Simulation now includes sample simulations that can be started with a click. This allows for instant demos highlighting device data flowing to an IoT Hub.<br></li><li>Simple POCs – This scenario was supported in the initial release of Device Simulation. However, there are more capabilities here. Customers can create device models and re-use them for easily repeatable simulations. Individual simulations can also now support a mix of multiple device types.<br></li><li>Advanced device behaviors – Customers will be able to write custom JSON device definition files and script device behaviors using JavaScript. This allows for complex scenarios allowing a device to mimic the behavior of the real thing (e.g. vehicles following roads, interior temperature varying based on exterior temperature, etc.)<br></li><li>Simulation-driven development – Customers can use Device Simulation to generate both expected and unexpected telemetry for continuous testing while developing their solution on top of Azure IoT.<br></li></ul></div><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4793\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4745\"\n    },\n    {\n      \"id\": 4744,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:06.777Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:57:49.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Deploy Azure Services on IoT Edge\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><b>Deploying various Azure Services on IoT Edge&nbsp;</b> </div><div><b><br></b> </div><div>Capabilities of the various Azure services can be leveraged on Azure IoT Edge runtime. These modules can work with Azure Blob storage. Azure Notebooks can be used to develop &amp; deploy machine learning modules to perform predictive analytics on devices. Data can be stored in edge devices using Azure SQL Edge, which is a RDBMS engine optimized for Azure IoT edge devices. Code blocks implementing business logic can be deployed to the edge devices using Azure Functions. For any telemetry stream processing, we can move Azure Stream Analytics logic to edge devices, which helps in reducing amount of data that is uploaded to cloud &amp; time required for actionable insights. Following resources provides guidance on extending these various Azure services to Azure IoT edge devices</div><div><b><br></b> </div><div><p style=\\\"margin:0in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/how-to-deploy-blob?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure\\nBlob Storage </a> </p><p style=\\\"margin:0in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-deploy-machine-learning?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure\\nMachine Learning</a> </p><div style=\\\"margin:0px 0in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql-edge/deploy-portal?toc=/azure/iot-edge/toc.json&amp;bc=/azure/iot-edge/breadcrumb/toc.json&amp;view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure\\nSQL Edge</a><br> </div><div style=\\\"margin:0px 0in;\\\"><p style=\\\"margin:0in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-deploy-function?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure\\nFunctions</a> </p><p style=\\\"margin:0in;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-deploy-stream-analytics?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure\\nStream Analytics</a></p> </div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4794\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4744\"\n    },\n    {\n      \"id\": 4743,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:06.633Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:58:14.62Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - AML solution on IoT Edge\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#4C4C51;background:white;\\\">Capability to deploy machine learning\\nalgorithms on the edge devices enables predictive analytics on the devices;\\nData no need to be transmitted to cloud for predictive analytics; Situations\\ncan be predicted upfront in the edge devices near to the field and actions can\\nbe triggered immediately.</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#4C4C51;background:white;\\\">Azure IoT Edge Runtime enables deployment of\\nvarious workloads in the form of modules; Trained machine learning module can\\nbe deployed to edge using a container. </span></p></div><div>In this resource, we will see an end-to-end machine learning solution on IoT edge</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-machine-learning-edge-01-intro?view=iotedge-2018-06?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Machine\\nLearning on the Edge</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4796\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4743\"\n    },\n    {\n      \"id\": 4742,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:06.493Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:06.493Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Securing IoT Edge Devices using Certificates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/iot-edge-certs?view=iotedge-2018-06\\\">https://docs.microsoft.com/en-us/azure/iot-edge/iot-edge-certs?view=iotedge-2018-06</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4797\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4742\"\n    },\n    {\n      \"id\": 4741,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:06.367Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:06.367Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Provisioning IoT Edge devices with TPM \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/how-to-auto-provision-simulated-device-linux?view=iotedge-2018-06\\\">Provisioning IoT Edge devices with a TPM on Linux</a></p><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/how-to-auto-provision-simulated-device-windows?view=iotedge-2018-06\\\">Provisioning IoT Edge devices with a TPM on Windows</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4798\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4741\"\n    },\n    {\n      \"id\": 4740,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:06.23Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:06.23Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Authenticating Devices to IoT Hub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/how-to-authenticate-downstream-device?view=iotedge-2018-06\\\">https://docs.microsoft.com/en-us/azure/iot-edge/how-to-authenticate-downstream-device?view=iotedge-2018-06</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4797\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4740\"\n    },\n    {\n      \"id\": 4739,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:06.09Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:06.09Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Connecting downstream devices to IoT Edge Devices in secured manner\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-edge/how-to-connect-downstream-device?view=iotedge-2018-06\\\">https://docs.microsoft.com/en-us/azure/iot-edge/how-to-connect-downstream-device?view=iotedge-2018-06</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4797\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4739\"\n    },\n    {\n      \"id\": 4738,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:05.9Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:05.9Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Setting up IoT Edge for Azure Sphere\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure-sphere/app-development/setup-iot-edge\\\">https://docs.microsoft.com/en-us/azure-sphere/app-development/setup-iot-edge</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4799\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4738\"\n    },\n    {\n      \"id\": 4737,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:05.637Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:05.637Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"End-to-end IoT device security with Azure Sphere\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://azure.microsoft.com/en-us/resources/videos/azure-friday-end-to-end-iot-device-security-with-azure-sphere/\\\">https://azure.microsoft.com/en-us/resources/videos/azure-friday-end-to-end-iot-device-security-with-azure-sphere/</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4799\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4737\"\n    },\n    {\n      \"id\": 4736,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:05.5Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:05.5Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Realtime application using Azure RTOS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/Azure-Samples/Azure-RTOS-on-Azure-Sphere-Mediatek-MT3620\\\">Realtime\\napplication using Azure RTOS</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4799\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4736\"\n    },\n    {\n      \"id\": 4735,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:05.277Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:05.277Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"End-to-End Digital Twin solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/digital-twins/tutorial-end-to-end.md\\\">End-to-End Digital Twin solution </a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4802\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4735\"\n    },\n    {\n      \"id\": 4734,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:05.14Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:53:19.013Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Implement Cold/Warm Path storage (CosmosDB)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Cosmos DB is ideally suited for IoT solutions. Cosmos DB can ingest device telemetry data at high rates and can serve indexed queries back with low latency and high availability.</span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/iot-using-cosmos-db?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></span></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4734\"\n    },\n    {\n      \"id\": 4733,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:05.013Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:55.783Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Create serving layer to store data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Different databases are used depending on the data. Azure Cosmos DB stores the messages, while Azure SQL DB stores relational and transactional data, and acts as a data source for the presentation and action layer. Azure Synapse contains aggregated data and acts as the data source for Business Intelligence (BI) tools.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4733\"\n    },\n    {\n      \"id\": 4732,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:04.87Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:57:01.993Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Create Presentation Layer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Web, mobile, BI, and mixed reality applications can be built on the serving layer. For example, you can expose serving layer data using APIs for third-party uses (for example, insurance companies, suppliers, etc.).</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Study this reference application -</span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><a href=\\\"https://github.com/Azure-Samples/MyDriving\\\">https://github.com/Azure-Samples/MyDriving</a><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4732\"\n    },\n    {\n      \"id\": 4731,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:04.74Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:41.03Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9 - Deploy Azure IoT Platform : Provision Essential Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"></span></div><div style=\\\"box-sizing:border-box;font-size:14px;text-align:start;\\\"><span style=\\\"box-sizing:border-box;font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Deploy the Azure Industrial IoT Platform and Simulation in Azure using the deployment<span>&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-all-in-one.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">scripts</a></span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;font-size:14px;text-align:start;\\\">and one<span>&nbsp;</span><a href=\\\"https://github.com/Azure/Industrial-IoT/blob/master/docs/deploy/howto-deploy-all-in-one.md?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">more</a></div><div style=\\\"box-sizing:border-box;font-size:14px;text-align:start;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;font-size:14px;text-align:start;\\\"><b style=\\\"box-sizing:border-box;\\\">Note:</b></div><div style=\\\"box-sizing:border-box;font-size:14px;text-align:start;\\\">Please ensure the person executing the script is a Azure AD tenant global administrator.&nbsp; If the admin is from a centralized IT department then pre-create the AAD application registration and pass it a parameter to the script.&nbsp;&nbsp;</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4731\"\n    },\n    {\n      \"id\": 4730,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:04.61Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:34.653Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Provision Microservices on a separate host (AKS) - Optional\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">By default the OPC-Registry-Service is hosted as Azure App services. For the production use, we recommend deploying the services in the AKS cluster</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Deploy the Platform Microservices to a new AKS cluster</span><br style=\\\"box-sizing:border-box;\\\"></div></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-aks.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\">Azure Kubernetes Service (AKS)</span><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\">&nbsp;</span></a></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\">OR&nbsp;</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\"><span style=\\\"box-sizing:border-box;background:white;\\\">Into an existing Kubernetes cluster&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-helm.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;background:white;\\\">using Helm</span><span style=\\\"box-sizing:border-box;background:white;\\\">.</span></a></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\">OR&nbsp;</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);text-align:left;font-family:segoe-ui_normal;font-size:12pt;background:white;\\\"><span style=\\\"box-sizing:border-box;cursor:pointer;background:white;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-add-aks-to-ps1.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;\\\">Azure Kubernetes Service (AKS) cluster on top of Azure Industrial IoT Platform created by deployment script and adding Azure Industrial IoT components into the cluster</a></span><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br style=\\\"box-sizing:border-box;\\\"><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4730\"\n    },\n    {\n      \"id\": 4729,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:04.337Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:27.91Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Deploy IoT Edge Modules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The industrial assets (machines and systems) are connected to Azure through modules running on an<span style=\\\"box-sizing:border-box;\\\">&nbsp;Azure IoT Edge</span></span><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>industrial gateway. Review this<span>&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-install-iot-edge.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><b style=\\\"box-sizing:border-box;\\\">Deploy the Industrial IoT Edge modules to<span style=\\\"box-sizing:border-box;\\\">&nbsp;Azure IOT Edge</span></b></span></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;\\\">Using the Azure<span>&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-modules-portal.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Portal<span>&nbsp;</span></a>and Marketplace.&nbsp;</span><span style=\\\"box-sizing:border-box;\\\">OR&nbsp;</span><span style=\\\"box-sizing:border-box;\\\">Using<span>&nbsp;</span></span><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-modules-az.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">CLI</a></div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;\\\"><b style=\\\"box-sizing:border-box;\\\">Review Publisher Module</b></span><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://github.com/azure/iot-edge-opc-publisher\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://github.com/azure/iot-edge-opc-publisher</a></p><br style=\\\"box-sizing:border-box;\\\"><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4729\"\n    },\n    {\n      \"id\": 4728,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:04.203Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:21.99Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Setup Local Development\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The Industrial IoT Microservices provide a RESTful API exposing the platform capabilities</span></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Run<span>&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-run-microservices-locally.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Locally</a></span></div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">This article explains how to deploy only the Azure services needed to do<a href=\\\"https://azure.github.io/Industrial-IoT/deploy/howto-deploy-local.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span>&nbsp;</span>local development and debugging</a></span><br style=\\\"box-sizing:border-box;\\\"></div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4728\"\n    },\n    {\n      \"id\": 4727,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:03.943Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:55:34.617Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Discover your assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The discovery module supports network scanning which will be used to find all OPC UA assets</span><br style=\\\"box-sizing:border-box;\\\"></div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\">Note: You must put correct I/P address (CIDR) format in the engineering tool. The address range is the IP range of the Azure VNet one where your simulation serves are located. In the real-world scenarios, it should map to the on-premises network (peered with Azure VNet through S2S VPN or Express route)&nbsp;</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\">Please review below guidance's</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\">Discover using Engineering<span>&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-discover-assets.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Tool<span>&nbsp;</span></a>or<span>&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-use-postman.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">REST API</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><br><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4727\"\n    },\n    {\n      \"id\": 4726,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:03.77Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:55:28.39Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Define Asset Hierarchy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Please review this<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#asset-hierarchy?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4726\"\n    },\n    {\n      \"id\": 4725,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:03.627Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:55:22.01Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Publish data from your Assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">To publish data the platform makes use the deployed<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span><a href=\\\"https://azure.github.io/Industrial-IoT/modules/publisher.html\\\" style=\\\"box-sizing:border-box;color:rgb(0, 80, 197);text-decoration:underline;cursor:pointer;font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;\\\">OPC Publisher</a><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>modules. The OPC Publisher module receives publish instructions (“jobs”) and executes these long running jobs. A publish job specifies the server and its nodes (Variables/events) that should be monitored and whose samples should be sent to Azure IoT Hub.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\">Please review this<span>&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-publish-data.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4725\"\n    },\n    {\n      \"id\": 4724,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:03.477Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:55:15.58Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Reference Data or Complementary Data Upload (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Please review this<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-configure-file-upload?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-configure-file-upload\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Use the Azure portal to configure file upload | Microsoft Docs</a></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4724\"\n    },\n    {\n      \"id\": 4723,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:03.347Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:55:09.02Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Review or Implement Calculation Engine\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">For Simple calculations, use&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/time-series-insights/overview-what-is-tsi?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Time Series Insights</a></div><div style=\\\"box-sizing:border-box;\\\">For Complex/Advanced Calculation use&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Azure Stream Analytics</a></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\">Please review this<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#rules-and-calculation-engine?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4723\"\n    },\n    {\n      \"id\": 4722,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:03.18Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:55:03.24Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Review or Implement Rules Engine\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">For a<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span><em style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Rules Engine</em><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">, a custom web application can be developed that allows users to author alerts and actions. The web application creates associated Jobs in Azure Stream Analytics using the Steam Analytics REST API. To trigger actions, a Stream Analytics Job calls an Azure Function output. The Azure Function can call a Logic App or Power Automate task that sends an Email alert or invokes Azure SignalR to display a message in the web application.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><p style=\\\"box-sizing:border-box;margin:1rem 0px 0px;\\\">To display visual alerts in your web application, we recommend creating an Azure Stream Analytics job to detect specific events and send those to either:</p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin:16px 0px 16px 38px;list-style:none;\\\"><li style=\\\"box-sizing:border-box;list-style:outside none disc;margin:0px;\\\"><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">An Event Hub output</strong><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>- Then connect the Event Hub to Time Series Insights. Use the<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span><a href=\\\"https://tsiclientsample.azurewebsites.net/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Azure Time Series Insights JavaScript SDK (tsiclient)</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>to display the event in your web application.</li></ul><p style=\\\"box-sizing:border-box;margin:1rem 0px 0px;\\\">or,</p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin:16px 0px 16px 38px;list-style:none;\\\"><li style=\\\"box-sizing:border-box;list-style:outside none disc;margin:0px;\\\"><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">An Azure Functions output</strong><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>- Then<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-signalr/signalr-concept-azure-functions\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">develop an Azure Function</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>that sends the events to your web application using<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/aspnet/core/signalr/introduction?view=aspnetcore-3.1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">SignalR</a>.</li></ul></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Please review this<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#rules-and-calculation-engine?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div></div><br><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4722\"\n    },\n    {\n      \"id\": 4721,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:03.037Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:57.053Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Visualize telemetry\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The OPC Publisher module connects to OPC UA servers and publishes data from these servers to IoT Hub. The Telemetry processor in the Industrial IoT platform processes these events and forwards contextualized samples to TSI and other consumers.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Please use this guidance a s<span>&nbsp;</span><a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-timeseriesinsights.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">reference</a></span></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4721\"\n    },\n    {\n      \"id\": 4720,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:02.873Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:50.463Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Implement Cold/Warm Path storage (CosmosDB)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Cosmos DB is ideally suited for IoT solutions. Cosmos DB can ingest device telemetry data at high rates and can serve indexed queries back with low latency and high availability.</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review this<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/iot-using-cosmos-db?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></span></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4720\"\n    },\n    {\n      \"id\": 4719,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:02.737Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:05.7Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Perform Data Analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">There are many options for visualizing your industrial data. Your IIoT analytics solution may use some or all of these options, depending on the personas using your solution.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review this<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-data#visualization?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></span></div><br><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4788\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4719\"\n    },\n    {\n      \"id\": 4718,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:02.607Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:55:59.967Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Implement Alert / Alarm : For detected Annamolies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Please review this<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#notifications?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4788\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4718\"\n    },\n    {\n      \"id\": 4717,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:02.317Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:55:53.53Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Implement Business Process Integration (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Please review this<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#business-process-integration?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance</a></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4788\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4717\"\n    },\n    {\n      \"id\": 4714,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:01.917Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:28:22.623Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Readiness Skills and training for the team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">With respect to skills, expertise is important in a IoT Solution . Therefore, ensure the appropriate members of your migration team are trained in Azure cloud fundamentals, Azure Blob Store, Azure Data Lake Storage, Azure ExpressRoute, Azure identity management, Azure IoT Hub, and Azure Time Series Insight.&nbsp;</span><br></div><div><span style=\\\"display:inline !important;\\\"><br></span></div><div><span style=\\\"display:inline !important;\\\">Courses and Learning paths can be found on <a href=\\\"https://docs.microsoft.com/en-us/learn?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Microsoft Learn</a>.&nbsp;</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4776\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4714\"\n    },\n    {\n      \"id\": 4713,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:01.793Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:50.473Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Analyze and Transform incoming data in real-time\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create Azure <a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-quick-create-portal?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Stream Analytics</a> Instance to process incoming streams in real-time<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4713\"\n    },\n    {\n      \"id\": 4712,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:01.63Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:16.273Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Review the services that will be deploy using the deployment tool in the next task\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://github.com/Azure/Industrial-IoT/blob/master/docs/services/dependencies.md?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4712\"\n    },\n    {\n      \"id\": 4711,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:01.493Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:09.927Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Review the availability and network consideration for azure IoT edge\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-considerations#iot-edge?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4711\"\n    },\n    {\n      \"id\": 4710,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:01.36Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:54:03.713Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Review Microsoft guidance for Azure Industrial IoT, in order to define your field gateway and cloud gateway\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-architecture#industrial-systems-and-devices?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4710\"\n    },\n    {\n      \"id\": 4709,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:01.217Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:01.217Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Visualize your data in Time Series Insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/develop-with-azure-digital-twins/route-output-from-azure-digital-twins-to-downstream-services/\\\">Visualize your data in Time Series Insights</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4802\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4709\"\n    },\n    {\n      \"id\": 4708,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:01.06Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:01.06Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Integrate Azure Digital Twins with Azure Time Series Insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-in/azure/digital-twins/how-to-integrate-time-series-insights\\\">Integrate Azure Digital Twins with Azure Time Series Insights</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4802\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4708\"\n    },\n    {\n      \"id\": 4707,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:00.747Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:53:56.56Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Understand your Industrial devices communication protocols and requirements.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Understand your Industrial devices communication protocols and requirements.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4707\"\n    },\n    {\n      \"id\": 4706,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:00.483Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:53:34.29Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Perform Data Analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">There are many options for visualizing your industrial data. Your IIoT analytics solution may use some or all of these options, depending on the personas using your solution.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-data#visualization?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4784\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4706\"\n    },\n    {\n      \"id\": 4705,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:00.357Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:45.803Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Create IoT Hub Instance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Refer to&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-create-through-portal?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">this</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4770\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4705\"\n    },\n    {\n      \"id\": 4704,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:00.14Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:40.347Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Deploy Applications to the device through cloud deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure-sphere/install/qs-first-deployment?tabs=cliv2beta?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4704\"\n    },\n    {\n      \"id\": 4703,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:59.96Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:51:07.19Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Device Update Caching (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review caching support for disconnected <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub-device-update/connected-cache-disconnected-device-update#:~:text=%20%20%201%20Microsoft%20Connected%20Cache%20is%2cThe%20Microsoft%20Connected%20Cache%20server%20downloads...%20More?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">device update</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4703\"\n    },\n    {\n      \"id\": 4702,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:59.637Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:34.953Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Build a real-time capable application\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Study the <a href=\\\"https://docs.microsoft.com/en-us/azure-sphere/install/qs-real-time-application?tabs=windows%2ccliv2beta&amp;pivots=visual-studio?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">background</a></div><div><br></div><div>Reference <a href=\\\"https://github.com/Azure/azure-sphere-samples/tree/master/Samples/AzureIoT?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Sample </a>application : Use the app that connects to Azure IoT hub, Azure IoT Edge</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4702\"\n    },\n    {\n      \"id\": 4701,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:59.49Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:53:09.61Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Visualize telemetry\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The OPC Publisher module connects to OPC UA servers and publishes data from these servers to IoT Hub. The Telemetry processor in the Industrial IoT platform processes these events and forwards contextualized samples to TSI and other consumers.</span><br></div><div><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Please use this guidance a s <a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-timeseriesinsights.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">reference</a></span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4701\"\n    },\n    {\n      \"id\": 4700,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:59.337Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:53:03.47Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Review or Implement Rules Engine\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">For a<span>&nbsp;</span></span><em style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Rules Engine</em><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">, a custom web application can be developed that allows users to author alerts and actions. The web application creates associated Jobs in Azure Stream Analytics using the Steam Analytics REST API. To trigger actions, a Stream Analytics Job calls an Azure Function output. The Azure Function can call a Logic App or Power Automate task that sends an Email alert or invokes Azure SignalR to display a message in the web application.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><p style=\\\"margin:1rem 0px 0px;\\\">To display visual alerts in your web application, we recommend creating an Azure Stream Analytics job to detect specific events and send those to either:</p><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\"><strong style=\\\"font-weight:600;\\\">An Event Hub output</strong><span>&nbsp;</span>- Then connect the Event Hub to Time Series Insights. Use the<span>&nbsp;</span><a href=\\\"https://tsiclientsample.azurewebsites.net/\\\" style=\\\"cursor:pointer;\\\">Azure Time Series Insights JavaScript SDK (tsiclient)</a><span>&nbsp;</span>to display the event in your web application.</li></ul><p style=\\\"margin:1rem 0px 0px;\\\">or,</p><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\"><strong style=\\\"font-weight:600;\\\">An Azure Functions output</strong><span>&nbsp;</span>- Then<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-signalr/signalr-concept-azure-functions\\\" style=\\\"cursor:pointer;\\\">develop an Azure Function</a><span>&nbsp;</span>that sends the events to your web application using<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/aspnet/core/signalr/introduction?view=aspnetcore-3.1\\\" style=\\\"cursor:pointer;\\\">SignalR</a>.</li></ul></span></div><div><span style=\\\"\\\">Please review this </span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#rules-and-calculation-engine?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"\\\">guidance</a><br></div><div><div style=\\\"box-sizing:border-box;\\\"><br></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4700\"\n    },\n    {\n      \"id\": 4699,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:59.203Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:56.72Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Review or Implement Calculation Engine\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>For Simple calculations, use&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/time-series-insights/overview-what-is-tsi?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Time Series Insights</a></div><div>For Complex/Advanced Calculation use&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/stream-analytics/?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure Stream Analytics</a></div><div><br></div><div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#rules-and-calculation-engine?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4699\"\n    },\n    {\n      \"id\": 4698,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:59.07Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:51.14Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Reference Data or Complementary Data Upload (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-configure-file-upload?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-configure-file-upload\\\">Use the Azure portal to configure file upload | Microsoft Docs</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4698\"\n    },\n    {\n      \"id\": 4697,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:58.947Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:58.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Coding with the Azure Digital Twins APIs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-in/azure/digital-twins/tutorial-code\\\">Coding with the Azure Digital Twins APIs</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4800\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4697\"\n    },\n    {\n      \"id\": 4696,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:58.59Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:44.55Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Publish data from your Assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">To publish data the platform makes use the deployed<span>&nbsp;</span></span><a href=\\\"https://azure.github.io/Industrial-IoT/modules/publisher.html\\\" style=\\\"box-sizing:border-box;color:rgb(0, 80, 197);cursor:pointer;font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;\\\">OPC Publisher</a><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><span>&nbsp;</span>modules. The OPC Publisher module receives publish instructions (“jobs”) and executes these long running jobs. A publish job specifies the server and its nodes (Variables/events) that should be monitored and whose samples should be sent to Azure IoT Hub.</span><br></div><div><br></div><div>Please review this <a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-publish-data.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4696\"\n    },\n    {\n      \"id\": 4695,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:58.43Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:51:00.35Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Device Update Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub-device-update/deploy-update?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4695\"\n    },\n    {\n      \"id\": 4694,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:58.277Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:29.567Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Build a High level Application\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review <a href=\\\"https://docs.microsoft.com/en-us/azure-sphere/install/qs-blink-application?tabs=windows%2ccliv2beta&amp;pivots=visual-studio?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">this</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4694\"\n    },\n    {\n      \"id\": 4693,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:58.14Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:38.57Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Define Asset Hierarchy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#asset-hierarchy?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4693\"\n    },\n    {\n      \"id\": 4692,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:58Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:50:55.02Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Automatic Device Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Automatic device management in Azure IoT Hub automates many of the repetitive and complex tasks of managing large device fleets.<span>&nbsp;</span></span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span><br></span></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-automatic-device-management?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4692\"\n    },\n    {\n      \"id\": 4691,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:57.797Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:24.467Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Configure Networking for Azure Sphere device\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure-sphere/install/configure-wifi?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4691\"\n    },\n    {\n      \"id\": 4690,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:57.67Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:57.67Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Integrate Digital Twins with Azure Map\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-in/azure/digital-twins/how-to-integrate-maps\\\">Integrate Digital Twins with Azure Map</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4801\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4690\"\n    },\n    {\n      \"id\": 4689,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:57.33Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:50:49.317Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Monitoring\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this<a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-applicationinsights.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\"> guidance&nbsp;</a> and 1 <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/monitor-iot-hub#:~:text=%20Monitoring%20Azure%20IoT%20Hub%20%201%20Monitoring%2cwith%20metrics%20from%20other%20Azure%20services...%20More?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">more</a></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4689\"\n    },\n    {\n      \"id\": 4688,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:57.17Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:52:32.383Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Discover your assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The discovery module supports network scanning which will be used to find all OPC UA assets</span><br></div><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><p style=\\\"margin:0in;margin-left:.375in;\\\">Note: You must put correct I/P address (CIDR) format in the engineering tool. The address range is the IP range of the Azure VNet one where your simulation serves are located. In the real-world scenarios, it should map to the on-premises network (peered with Azure VNet through S2S VPN or Express route)&nbsp;</p><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><p style=\\\"margin:0in;margin-left:.375in;\\\">Please review below guidance's</p><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><p style=\\\"margin:0in;margin-left:.375in;\\\">Discover using Engineering <a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-discover-assets.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Tool </a>or <a href=\\\"https://azure.github.io/Industrial-IoT/tutorials/tut-use-postman.html?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">REST API</a></p><p style=\\\"margin:0in;margin-left:.375in;\\\"><br></p><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4688\"\n    },\n    {\n      \"id\": 4687,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:57.033Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:57.033Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Explore Azure Digital Twins with a sample client app\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-in/azure/digital-twins/tutorial-command-line-app\\\">Explore Azure Digital Twins with a sample client app</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4800\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4687\"\n    },\n    {\n      \"id\": 4686,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:56.657Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:56.657Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Explore Azure Digital Twins with a sample app - ADT Explorer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-in/azure/digital-twins/quickstart-adt-explorer\\\">Explore Azure Digital Twin with a sample app - ADT Explorer</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4800\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4686\"\n    },\n    {\n      \"id\": 4685,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:56.5Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:56.5Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Azure Digital Twins (ADT) Explorer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-us/samples/azure-samples/digital-twins-explorer/digital-twins-explorer/\\\">Azure Digital Twins (ADT) Explorer</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4800\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4685\"\n    },\n    {\n      \"id\": 4684,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:55.98Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:55.98Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Ingest Data into Azure Digital Twins\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/develop-with-azure-digital-twins/ingest-data-into-azure-digital-twins/\\\">Ingest Data into Azure Digital Twins</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4801\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4684\"\n    },\n    {\n      \"id\": 4683,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:55.52Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:04:55.52Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Azure Digital Twins use cases in different industries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p lang=x-none><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/develop-with-azure-digital-twins/introduction-to-azure-digital-twins/4-use-cases?ns-enrollment-type=LearningPath&amp;ns-enrollment-id=learn.azure.develop-azure-digital-twins\\\">Azure Digital Twins use cases in different industries</a></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4800\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4683\"\n    },\n    {\n      \"id\": 4682,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:55.347Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:18.283Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - On-board device to the tenant\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure-sphere/install/claim-device?tabs=cliv2beta?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4682\"\n    },\n    {\n      \"id\": 4681,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:55.19Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:50:43.323Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Using Azure advisor for cost control\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Optimize across, security, reliability, operations and cost</div><div style=\\\"box-sizing:border-box;\\\">Please refer to this<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/advisor/advisor-overview?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4779\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4681\"\n    },\n    {\n      \"id\": 4680,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:04:55.063Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:56:11.967Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Create Azure Sphere Tenant\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure-sphere/deployment/create-tenant#:~:text=Create%20Azure%20Sphere%20Tenant%20If%20your%20Azure%20Sphere%2cSphere%20Developer%20Command%20Prompt.azsphere%20tenant%20create...%20See%20More.?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4769\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4680\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ModernIOT/WorkItems/User Story.json",
    "content": "{\n  \"count\": 36,\n  \"value\": [\n    {\n      \"id\": 4804,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:18Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:49:28.777Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Networking\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-understand-ip-address#best-practices?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">IP addressing </a>of IoT Hub and <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-protocol-gateway?WT.mc_id=devops_userstory_service_iot-inproduct-devopsporta\\\">IoT Protocol gateway</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4804\"\n    },\n    {\n      \"id\": 4803,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:17.86Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:49:23.15Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Device Configurations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Study details on <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-configuration-best-practices?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Device Configurations</a>&nbsp; and Device <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-x509ca-overview?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Authentication</a></div><div>Concepts <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-x509ca-concept?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">details</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4803\"\n    },\n    {\n      \"id\": 4802,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:17.543Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:17.543Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Insight : IoT Digital Twin\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Insight : IoT Digital Twin\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4735\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4708\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4709\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4802\"\n    },\n    {\n      \"id\": 4801,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:17.4Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:17.4Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Action : IoT Digital Twin\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Action : IoT Digital Twin\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4690\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4684\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4801\"\n    },\n    {\n      \"id\": 4800,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:17.267Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:17.267Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Things : IoT Digital Twin\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Things : IoT Digital Twin\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4685\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4686\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4683\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4697\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4687\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4800\"\n    },\n    {\n      \"id\": 4799,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:17.123Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:17.123Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Insight : Securing IoT Edge Devices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Insight : Securing IoT Edge Devices\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4736\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4737\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4738\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4799\"\n    },\n    {\n      \"id\": 4798,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:16.983Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:16.983Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Action : Securing IoT Edge Devices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Action : Securing IoT Edge Devices\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4741\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4798\"\n    },\n    {\n      \"id\": 4797,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:16.727Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:16.727Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Things : Securing IoT Edge Devices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Things : Securing IoT Edge Devices\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4742\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4739\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4740\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4797\"\n    },\n    {\n      \"id\": 4796,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:16.567Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:16.567Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Action:  IoT Edge Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>In most cases data from the IoT edge will get collected into the cloud for historical analysis &amp; visualization but sometimes you'll need to visualize data at the edge and for that there are open-source tools like Grafana that can be hosted &amp; managed with Azure IoT Edge.</div><div><br></div><div><a href=\\\"https://github.com/Azure-Samples/iot-edge-influxdb-grafana?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure-Samples/iot-edge-influxdb-grafana: This repo sends simulated data to influxdb and displays it using grafana as an HMI. (github.com)</a></div><div>&nbsp;</div><div><a href=\\\"https://github.com/Azure-Samples/iot-edge-for-iiot/blob/master/2-DeployOfflineDashboard.md?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">iot-edge-for-iiot/2-DeployOfflineDashboard.md at master · Azure-Samples/iot-edge-for-iiot (github.com)</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4747\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4678\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4743\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4796\"\n    },\n    {\n      \"id\": 4795,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:16.307Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:16.307Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Insight:  IoT Edge Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Azure Stream Analytics on IoT Edge empowers developers to deploy near-real-time analytical intelligence closer to IoT devices so that they can unlock the full value of device-generated data. Azure Stream Analytics is designed for low latency, resiliency, efficient use of bandwidth, and compliance. Enterprises can deploy control logic close to the industrial operations and complement Big Data analytics done in the cloud.<br></span><div><br></div><span>Azure Stream Analytics on IoT Edge runs within the Azure IoT Edge framework. Once the job is created in Stream Analytics, you can deploy and manage it using IoT Hub.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4748\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4678\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4795\"\n    },\n    {\n      \"id\": 4794,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:16.07Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:16.07Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Things:  IoT Edge Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure IoT Edge lets you deploy and manage business logic on the edge in the form of modules. Azure IoT Edge modules are the smallest unit of computation managed by IoT Edge and can contain Azure services (such as Azure Stream Analytics) or your own solution-specific code. To understand how modules are developed, deployed, and maintained, consider the four conceptual elements of a module:<br></div><div><br></div><div><span>IoT Edge module images contain applications that take advantage of the management, security, and communication features of the IoT Edge runtime. You can develop your own module images, or export one from a supported Azure service, such as Azure Stream Analytics. The images exist in the cloud and they can be updated, changed, and deployed in different solutions. For instance, a module that uses machine learning to predict production line output exists as a separate image than a module that uses computer vision to control a drone.<br></span><div><br></div><span>Each time a module image is deployed to a device and started by the IoT Edge runtime; a new instance of that module is created. Two devices in various parts of the world could use the same module image. However, each device would have its own module instance when the module is started on the device.</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4678\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4749\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4744\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4750\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4794\"\n    },\n    {\n      \"id\": 4793,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:15.92Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:15.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Insight:  Using Microsoft Azure IoT Solution Accelerators\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><b>Deployment options</b><br></span><div>You can deploy the solution accelerators from the Microsoft Azure IoT Solution Accelerators site or using the command line.&nbsp;<span style=\\\"\\\">The cost of running a solution accelerator is the combined cost of running the underlying Azure services. You see details of the Azure services used when you choose your deployment options.</span></div></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\"><span><b>Architectures and languages</b><br></span><div>The original solution accelerators were written using .NET using a model-view-controller (MVC) architecture. Microsoft is updating the solution accelerators to a new microservices architecture.</div></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4745\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4677\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4793\"\n    },\n    {\n      \"id\": 4792,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:15.78Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:15.78Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Things:  Using Microsoft Azure IoT Solution Accelerators\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;\\\"><b>Connected Factory Solution Accelerator</b></span><br></span></div><div><span>Use the Connected Factory solution accelerator to collect telemetry from industrial assets with an OPC Unified Architecture interface and to control them. Industrial assets might include assembly and test stations on a factory production line.&nbsp;</span><span style=\\\"\\\">You can use the connected factory dashboard component of this solution accelerator to monitor and manage your industrial devices.</span></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\"><span style=\\\"display:inline !important;\\\"><b>Device Simulation Solution Accelerator</b></span><br></span></div><div><span style=\\\"\\\"><span>Use the Device Simulation solution accelerator to run simulated devices that generate realistic telemetry. You can use this solution accelerator to test the behavior of the other solution accelerators or to test your own custom IoT solutions.&nbsp;</span><span>You can use the device simulation web app to configure and run simulations.</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4746\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4677\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4792\"\n    },\n    {\n      \"id\": 4791,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:15.643Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:15.643Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Action:  IoT Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"font-family:&quot;Segoe UI Condensed&quot;, &quot;Segoe UI&quot;, &quot;Segoe WP&quot;, Tahoma, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Real-time data empowers users to make quick decisions on time-sensitive information, and to identify emergent trends as they happen. We’ve seen an explosion of powerful real-time use cases – from factories using IoT sensors to monitor their equipment, to media agencies monitoring their social media campaigns as they go viral. Power BI further amplifies the power of real-time data with an easy setup process, and an array of powerful visualization and analysis tools.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4751\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4676\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4791\"\n    },\n    {\n      \"id\": 4790,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:15.387Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:15.387Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Insight:  IoT Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>It's important for any Iot analytics solution to be focused on actionable business outcomes and tuned for the specific use cases and data &amp; device characteristics present in the solution. Some IoT use cases are more geared towards telemetry collection and storage while others may have unique needs. Each Azure IoT analytics service has capabilities which will fit for specific use cases. Refer to the documentation below which can be used to help find the right service:</div><div><br></div><div><a href=\\\"https://azure.microsoft.com/en-us/product-categories/iot/?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure IoT Products and Services | Microsoft Azure</a><br></div><div><a href=\\\"https://azure.microsoft.com/en-us/overview/iot/#products?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Azure IoT – Internet of Things Platform | Microsoft Azure</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4676\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4752\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4790\"\n    },\n    {\n      \"id\": 4789,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:15.253Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:15.253Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Things:  IoT Analytics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure has many purpose-built analytics services in which customers build solutions that meet their needs. To gain the benefit from IoT analytics one or more of these services are often used:</div><div><br></div><div><b>Azure Stream Analytics</b>:&nbsp;&nbsp;a real-time analytics and complex event-processing engine that is designed to analyze and process high volumes of fast streaming data from multiple sources simultaneously. Patterns and relationships can be identified in information extracted from several input sources including devices, sensors, clickstreams, social media feeds, and applications. These patterns can be used to trigger actions and initiate workflows such as creating alerts, feeding information to a reporting tool, or storing transformed data for later use. Also, Stream Analytics is available on Azure IoT Edge runtime, enabling to process data on IoT devices.<br><div><br></div><div><b>Azure Databricks</b>:&nbsp;&nbsp;provides an interactive workspace that enables collaboration between data engineers, data scientists, and machine learning engineers. For a big data pipeline, the data (raw or structured) is ingested into Azure through Azure Data Factory in batches, or streamed near real-time using Apache Kafka, Event Hub, or IoT Hub.<br></div><div><br></div><div><b>Azure Time Series Insights</b>:&nbsp;&nbsp;<span>an open and scalable end-to-end IoT analytics service featuring best-in-class user experiences and rich APIs to integrate its powerful capabilities into your existing workflow or application.&nbsp;</span><span>You can use it to collect, process, store, query and visualize data at Internet of Things (IoT) scale--data that's highly contextualized and optimized for time series.&nbsp;</span><span>Azure Time Series Insights is designed for ad hoc data exploration and operational analysis allowing you to uncover hidden trends, spotting anomalies, and conduct root-cause analysis. It's an open and flexible offering that meets the broad needs of industrial IoT deployments.</span><br></div><div><br></div><b>Azure Data Explorer</b>:&nbsp;&nbsp;a fast and highly scalable data exploration service for log and telemetry data. It helps you handle the many data streams emitted by modern software, so you can collect, store, and analyze data. Azure Data Explorer is ideal for analyzing large volumes of diverse data from any data source, such as websites, applications, IoT devices, and more. This data is used for diagnostics, monitoring, reporting, machine learning, and additional analytics capabilities. Azure Data Explorer makes it simple to ingest this data and enables you to do complex ad hoc queries on the data in seconds.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4753\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4676\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4789\"\n    },\n    {\n      \"id\": 4788,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:15.12Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:15.12Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Action : Solution Scenario : Condition Monitoring for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><b style=\\\"box-sizing:border-box;\\\">Architecture Components</b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/code-structure.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/code-structure.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://github.com/Azure/Industrial-IoT\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://github.com/Azure/Industrial-IoT</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;&nbsp;&nbsp;&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(Microservices)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-details.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-details.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-flow.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-flow.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/api/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/api/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(REST APIs)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/dependencies.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/dependencies.html</a></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><b style=\\\"box-sizing:border-box;\\\">e-book</b></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><a href=\\\"https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf</a></p><br style=\\\"box-sizing:border-box;\\\"><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4719\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4717\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4718\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4674\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4788\"\n    },\n    {\n      \"id\": 4787,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:14.973Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:14.973Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Insight : Solution Scenario : Condition Monitoring for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><b style=\\\"box-sizing:border-box;\\\">Architecture Components</b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/code-structure.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/code-structure.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://github.com/Azure/Industrial-IoT\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://github.com/Azure/Industrial-IoT</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;&nbsp;&nbsp;&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(Microservices)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-details.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-details.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-flow.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-flow.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/api/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/api/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(REST APIs)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/dependencies.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/dependencies.html</a></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><b style=\\\"box-sizing:border-box;\\\">e-book</b></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><a href=\\\"https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf</a></p><br style=\\\"box-sizing:border-box;\\\"><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4720\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4722\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4724\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4725\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4727\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4674\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4726\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4721\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4723\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4787\"\n    },\n    {\n      \"id\": 4786,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:14.837Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:14.837Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Historical Data Upload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Years of historical data likely exists in your current SCADA, MES, or historian system. In most cases, you will want to import your historical data into your IIoT analytics solution.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review the<span>&nbsp;</span><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#historical-data-ingestion?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">guidance&nbsp;</a>&nbsp;</span><span style=\\\"box-sizing:border-box;\\\">and from<span>&nbsp;</span><a href=\\\"https://www.ge.com/digital/documentation/historian/version81/c_about_using_azure_iot_hub.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Historian</a></span></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Also review details from<span>&nbsp;</span><a href=\\\"https://openautomationsoftware.com/knowledge-base/transfer-opc-azure/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">OPC</a></span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4674\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4786\"\n    },\n    {\n      \"id\": 4785,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:14.337Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:14.337Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Things : Solution Scenario : Condition Monitoring for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The architecture we recommend for IoT solutions is cloud native, microservice, and serverless based. The IoT solution subsystems should be built as discrete services that are independently deployable, and able to scale independently. These attributes enable greater scale, more flexibility in updating individual subsystems, and provide the flexibility to choose appropriate technology on a per subsystem basis. It is critical to have the ability to monitor individual subsystems as well as the IoT application as a whole. We recommend subsystems communicate over REST/HTTPS using JSON (as it is human readable) though binary protocols should be used for high performance needs. The architecture also supports a hybrid cloud and edge compute strategy; i.e. some data processing is expected to happen on premise. We recommend use of an orchestrator (e.g. Azure Kubernetes Services - AKS or Service Fabric) to scale individual subsystems horizontally or PaaS services (e.g. Azure App Services) that offer built-in horizontal scale capabilities<br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Azure<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span><a href=\\\"https://azure.github.io/Industrial-IoT/?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Industrial IoT</a><span style=\\\"box-sizing:border-box;color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>allows plant operators to discover OPC UA enabled servers in a factory network and register them in Azure IoT Hub.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><b style=\\\"box-sizing:border-box;\\\">Architecture Components</b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/code-structure.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/code-structure.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://github.com/Azure/Industrial-IoT\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://github.com/Azure/Industrial-IoT</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;&nbsp;&nbsp;&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(Microservices)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-details.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-details.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-flow.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-flow.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/api/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/api/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(REST APIs)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/dependencies.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/dependencies.html</a></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><b style=\\\"box-sizing:border-box;\\\">e-book</b></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><a href=\\\"https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf</a></p><br style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4710\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4711\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4707\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4674\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4731\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4729\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4730\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4728\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4712\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4785\"\n    },\n    {\n      \"id\": 4784,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:14.19Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:14.19Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Action : Predictive Maintenance for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><b style=\\\"box-sizing:border-box;\\\">Architecture Components</b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/code-structure.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/code-structure.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://github.com/Azure/Industrial-IoT\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://github.com/Azure/Industrial-IoT</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;&nbsp;&nbsp;&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(Microservices)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-details.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-details.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-flow.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-flow.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/api/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/api/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(REST APIs)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/dependencies.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/dependencies.html</a></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><b style=\\\"box-sizing:border-box;\\\">e-book</b></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><a href=\\\"https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf</a></p><br><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4757\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4673\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4706\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4755\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4784\"\n    },\n    {\n      \"id\": 4783,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:14.053Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:14.053Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Insight : Predictive Maintenance for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><b style=\\\"box-sizing:border-box;\\\">Architecture Components</b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/code-structure.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/code-structure.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://github.com/Azure/Industrial-IoT\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://github.com/Azure/Industrial-IoT</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;&nbsp;&nbsp;&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(Microservices)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-details.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-details.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-flow.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-flow.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/api/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/api/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span>(REST APIs)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/dependencies.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/dependencies.html</a></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><b style=\\\"box-sizing:border-box;\\\">e-book</b></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><a href=\\\"https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf</a></p><br><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4701\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4734\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4698\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4756\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4696\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4699\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4688\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4673\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4700\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4693\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4783\"\n    },\n    {\n      \"id\": 4782,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:13.907Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:13.907Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Historical Data Upload\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Years of historical data likely exists in your current SCADA, MES, or historian system. In most cases, you will want to import your historical data into your IIoT analytics solution.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please review the <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/guide/iiot-guidance/iiot-services#historical-data-ingestion?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance&nbsp;</a>&nbsp;</span><span style=\\\"\\\">and from <a href=\\\"https://www.ge.com/digital/documentation/historian/version81/c_about_using_azure_iot_hub.html\\\">Historian</a></span></div><div><br></div><div><span style=\\\"\\\">Also review details from <a href=\\\"https://openautomationsoftware.com/knowledge-base/transfer-opc-azure/\\\">OPC</a></span><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4673\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4782\"\n    },\n    {\n      \"id\": 4781,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:13.753Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:13.753Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Things : Predictive Maintenance for Industrial IoT\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">The architecture we recommend for IoT solutions is cloud native, microservice, and serverless based. The IoT solution \\nsubsystems should be built as discrete services that are independently deployable, and able to scale independently. \\nThese attributes enable greater scale, more flexibility in updating individual subsystems, and provide the flexibility to \\nchoose appropriate technology on a per subsystem basis. It is critical to have the ability to monitor individual \\nsubsystems as well as the IoT application as a whole. We recommend subsystems communicate over REST/HTTPS using \\nJSON (as it is human readable) though binary protocols should be used for high performance needs. The architecture \\nalso supports a hybrid cloud and edge compute strategy; i.e. some data processing is expected to happen on premise. \\nWe recommend use of an orchestrator (e.g. Azure Kubernetes Services - AKS or Service Fabric) to scale individual \\nsubsystems horizontally or PaaS services (e.g. Azure App Services) that offer built-in horizontal scale capabilities<br></span></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\">Azure<span>&nbsp;</span></span><a href=\\\"https://azure.github.io/Industrial-IoT/?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Industrial IoT</a><span style=\\\"color:rgb(34, 34, 34);font-family:segoe-ui_normal, &quot;Segoe UI&quot;, Segoe, &quot;Segoe WP&quot;, &quot;Helvetica Neue&quot;, Helvetica, sans-serif;font-size:16px;text-align:left;display:inline !important;\\\"><span>&nbsp;</span>allows plant operators to discover OPC UA enabled servers in a factory network and register them in Azure IoT Hub.</span><br></div><div style=\\\"box-sizing:border-box;margin:0px 0in 0px 0.375in;\\\"><br></div><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><br></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><b>Architecture Components</b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/code-structure.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/code-structure.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://github.com/Azure/Industrial-IoT\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://github.com/Azure/Industrial-IoT</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;&nbsp;&nbsp;&nbsp;<span>&nbsp;</span></span>(Microservices)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-details.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-details.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/architecture-flow.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/architecture-flow.html</a></p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/api/\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/api/</a><span style=\\\"box-sizing:border-box;\\\">&nbsp;<span>&nbsp;</span></span>(REST APIs)</p><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.375in;\\\"><a href=\\\"https://azure.github.io/Industrial-IoT/services/dependencies.html\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://azure.github.io/Industrial-IoT/services/dependencies.html</a></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><br></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><b>e-book</b></p><p style=\\\"box-sizing:border-box;margin-left:0.375in;margin-top:7pt;margin-bottom:0pt;\\\"><a href=\\\"https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">https://download.microsoft.com/download/A/4/D/A4DAD253-BC21-41D3-B9D9-87D2AE6F0719/Microsoft_Azure_IoT_Reference_Architecture.pdf</a></p><br><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4673\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4758\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4759\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4760\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4761\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4781\"\n    },\n    {\n      \"id\": 4780,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:13.617Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:48:19.627Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Review Landing Zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\">Setup Azure Subscription</div><div style=\\\"box-sizing:border-box;\\\">Setup<span>&nbsp;</span><a href=\\\"https://github.com/Azure/Enterprise-Scale#:~:text=Objective%20%20%20%20Key%20customer%20landing%20zone%2c%20%20Yes%20%206%20more%20rows%20?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Enterprise scale Landing Zone&nbsp;</a></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4764\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4670\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4765\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4780\"\n    },\n    {\n      \"id\": 4779,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:13.48Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:51:25.48Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Implement Operational Excellence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Operational Excellence\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4703\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4695\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4692\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4689\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4681\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4679\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4779\"\n    },\n    {\n      \"id\": 4778,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:13.2Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:51:20.49Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Implement Process Efficiency\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/devops/pipelines/release/deploy-iot-using-azure-pipelines?view=azure-devops?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4679\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4778\"\n    },\n    {\n      \"id\": 4777,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:13.047Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:48:10.567Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Review the scope and align with the scenarios\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review Scenarios to being the scoping ::</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/iot/introduction-to-solutions?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Conceptual Overview</a>&nbsp; and <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/iot/builders-developers-operators?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Examples</a></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4767\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4754\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4766\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4763\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4762\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4670\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4768\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4777\"\n    },\n    {\n      \"id\": 4776,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:12.85Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:48:03.383Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Preparation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Preparation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4715\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4714\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4670\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4716\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4776\"\n    },\n    {\n      \"id\": 4775,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:12.653Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:49:17.333Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - High Availability and Disaster Recovery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-ha-dr?context=/azure/iot-hub/rc/rc?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4775\"\n    },\n    {\n      \"id\": 4774,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:12.497Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:49:10.387Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Implement Scalability\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/iot/application-stamps?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">guidance </a>and<a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-how-to-clone?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\"> 1 more</a></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4774\"\n    },\n    {\n      \"id\": 4773,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:12.367Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:49:02.027Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Implement Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Study<a href=\\\"https://docs.microsoft.com/en-us/azure/iot-fundamentals/iot-security-best-practices?context=/azure/iot-hub/rc/rc?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\"> IoT Security best practices</a>&nbsp;and <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/security-baseline?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Security Baseline</a></div><div><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">When designing a system, it is important to understand the potential threats to that system, and add appropriate defenses accordingly, as the system is designed and architected. It is important to design the product from the start with security in mind because understanding how an attacker might be able to compromise a system helps make sure appropriate mitigations are in place from the beginning.</span><br></div><div><br></div><div><b>Please Review</b></div><div><font color=\\\"#171717\\\" face=\\\"Segoe UI, SegoeUI, Helvetica Neue, Helvetica, Arial, sans-serif\\\"><span style=\\\"font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-fundamentals/iot-security-architecture?context=/azure/iot-hub/rc/rc?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Architecture</a></span></font></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-fundamentals/iot-security-deployment?context=/azure/iot-hub/rc/rc?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">Deployment Security</a></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-security#:~:text=Azure%20IoT%20Hub%20grants%20access%20to%20endpoints%20by%2care%20all%20providers%20in%20the%20Azure%20Resource%20Manager.?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">IoT Hub Security</a>&nbsp; and using <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-ip-filtering?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">IP filters</a></div><div><span style=\\\"\\\">SaaS Solution using </span><a href=\\\"https://docs.microsoft.com/en-us/azure/defender-for-iot/getting-started?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\" style=\\\"\\\">defender</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4773\"\n    },\n    {\n      \"id\": 4772,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:12.217Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-18T14:48:55.773Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Implement Reliability\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review the guidance on implementing <a href=\\\"https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-reliability-features-in-sdks?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">reliable messaging using client </a>&nbsp;SDK</div><div><br></div><div>e.g. C SDK details are <a href=\\\"https://github.com/Azure/azure-iot-sdk-c/blob/master/doc/connection_and_messaging_reliability.md?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal\\\">here</a></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4671\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4772\"\n    },\n    {\n      \"id\": 4771,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:12.07Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:12.07Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"\\\"Action\\\" Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"&quot;Action&quot; Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4675\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4732\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4771\"\n    },\n    {\n      \"id\": 4770,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:11.93Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:11.93Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"\\\"Insight\\\" Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"&quot;Insight&quot; Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4713\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4705\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4733\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4675\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4770\"\n    },\n    {\n      \"id\": 4769,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Modern IOT\",\n        \"System.TeamProject\": \"Modern IOT\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-16T14:05:11.713Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-16T14:05:11.713Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"\\\"Things\\\" Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"&quot;Things&quot; Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4704\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4675\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4682\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4694\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4680\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4691\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4702\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4769\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/ImportSourceCode/Retail Recommender - Solution Accelerator.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/Retail Recommender - Solution Accelerator/_git/Retail Recommender - Solution Accelerator\"\n    },\n    \"serviceEndpointId\": \"$Retail Recommender - Solution Accelerator-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Retail Recommender - Solution Accelerator\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/ServiceEndpoints/Retail Recommender - Solution Accelerator-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Retail Recommender - Solution Accelerator-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/wayneme/Retail Recommender - Solution Accelerator/_git/Retail Recommender - Solution Accelerator\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/Teams/Retail Recommender - Solution Accelerator Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/Teams/Retail Recommender - Solution Accelerator Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/Teams/Retail Recommender - Solution Accelerator Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/Teams/Retail Recommender - Solution Accelerator Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/Teams/Retail Recommender - Solution Accelerator Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"328d2a46-f573-47b9-8dd0-0e1747a2014a\",\n    \"name\": \"Retail Recommender - Solution Accelerator Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/WorkItems/Epic.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 4216,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T17:07:44.53Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-20T21:23:17.117Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Planning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4223\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4216\"\n    },\n    {\n      \"id\": 4218,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T17:18:56.997Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-20T21:23:17.117Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Ready the platform\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4219\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4218\"\n    },\n    {\n      \"id\": 4220,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T18:21:50.997Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-20T21:23:17.117Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Build the environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4615\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4634\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4220\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/WorkItems/Feature.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 4613,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-18T00:38:13.453Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-20T21:23:22.07Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Resource Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/tree/master/Resource_Deployment\\\">Resource Deployment GitHub repo</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4212\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4625\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4210\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4213\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4208\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4211\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\"\n    },\n    {\n      \"id\": 4615,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-18T00:39:03.183Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-20T21:23:22.07Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Application Front-end Web Application Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4630\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4615\"\n    },\n    {\n      \"id\": 4634,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T21:34:53.13Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-20T21:23:22.07Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Resources and Reference\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4614\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4616\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4617\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4634\"\n    },\n    {\n      \"id\": 4223,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T18:46:44.383Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-20T21:23:22.07Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Organization enablement\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4216\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4229\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4224\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4223\"\n    },\n    {\n      \"id\": 4219,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T17:24:56.767Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-20T21:23:22.07Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Landing Zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Landing Zone</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4231\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4232\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4218\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4219\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/WorkItems/Task.json",
    "content": "{\n  \"count\": 53,\n  \"value\": [\n    {\n      \"id\": 4636,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T21:55:50.08Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:47.493Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Identity and Access\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Ensure team have correct access rights and roles to build and deploy</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4231\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4636\"\n    },\n    {\n      \"id\": 4635,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T21:54:44.857Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:47.493Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Connectivity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Verify connectivity and routing requirements</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4231\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4635\"\n    },\n    {\n      \"id\": 4633,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T21:29:25.383Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Available Scripts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">In the project directory<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Application_Frontend_Deployment/contoso-retail\\\">contoso-retail</a></code>, you can run:</p><h3 style=\\\"box-sizing:border-box;margin-top:24px;margin-bottom:16px;font-size:1.25em;font-weight:600;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Application_Frontend_Deployment#yarn-start\\\" style=\\\"box-sizing:border-box;float:left;padding-right:4px;margin-left:-20px;\\\"></a><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">yarn start</code></h3><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">Runs the app in the development mode.<br style=\\\"box-sizing:border-box;\\\">Open<span>&nbsp;</span><a href=\\\"http://localhost:3000/\\\" rel=nofollow style=\\\"box-sizing:border-box;\\\">http://localhost:3000</a><span>&nbsp;</span>to view it in the browser.</p><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">The page will reload if you make edits.<br style=\\\"box-sizing:border-box;\\\">You will also see any lint errors in the console.</p><h3 style=\\\"box-sizing:border-box;margin-top:24px;margin-bottom:16px;font-size:1.25em;font-weight:600;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Application_Frontend_Deployment#yarn-test\\\" style=\\\"box-sizing:border-box;float:left;padding-right:4px;margin-left:-20px;\\\"></a><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">yarn test</code></h3><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">Launches the test runner in the interactive watch mode.<br style=\\\"box-sizing:border-box;\\\">See the section about<span>&nbsp;</span><a href=\\\"https://facebook.github.io/create-react-app/docs/running-tests\\\" rel=nofollow style=\\\"box-sizing:border-box;\\\">running tests</a><span>&nbsp;</span>for more information.</p><h3 style=\\\"box-sizing:border-box;margin-top:24px;margin-bottom:16px;font-size:1.25em;font-weight:600;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Application_Frontend_Deployment#yarn-build\\\" style=\\\"box-sizing:border-box;float:left;padding-right:4px;margin-left:-20px;\\\"></a><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">yarn build</code></h3><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">Builds the app for production to the<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">build</code><span>&nbsp;</span>folder.<br style=\\\"box-sizing:border-box;\\\">It correctly bundles React in production mode and optimizes the build for the best performance.</p><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">The build is minified and the filenames include the hashes.<br style=\\\"box-sizing:border-box;\\\">Your app is ready to be deployed!</p><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">See the section about<span>&nbsp;</span><a href=\\\"https://facebook.github.io/create-react-app/docs/deployment\\\" rel=nofollow style=\\\"box-sizing:border-box;\\\">deployment</a><span>&nbsp;</span>for more information.</p><h3 style=\\\"box-sizing:border-box;margin-top:24px;margin-bottom:16px;font-size:1.25em;font-weight:600;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Application_Frontend_Deployment#yarn-eject\\\" style=\\\"box-sizing:border-box;float:left;padding-right:4px;margin-left:-20px;\\\"></a><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">yarn eject</code></h3><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Note: this is a one-way operation. Once you<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">eject</code>, you can’t go back!</strong></p><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">If you aren’t satisfied with the build tool and configuration choices, you can<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">eject</code><span>&nbsp;</span>at any time. This command will remove the single build dependency from your project.</p><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">eject</code><span>&nbsp;</span>will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.</p><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">You don’t have to ever use<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">eject</code>. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.</p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4630\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4633\"\n    },\n    {\n      \"id\": 4632,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T21:27:49.817Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Demo Site\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>View Demo:&nbsp;<a href=\\\"https://synapsefornextgenretail.azurewebsites.net/\\\">https://synapsefornextgenretail.azurewebsites.net/</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4630\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4632\"\n    },\n    {\n      \"id\": 4631,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T21:27:27.34Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Edit config.ts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Edit the Config.ts file</div><div><span style=\\\"color:rgb(36, 41, 46);font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;text-align:left;background-color:rgba(27, 31, 35, 0.05);display:inline !important;\\\">/contoso-retail/src/config.ts&nbsp;</span><br></div><div><br></div><div><br></div><pre><code><div><pre style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;margin-top:0px;margin-bottom:16px;padding:16px;overflow:auto;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\"><code style=\\\"box-sizing:border-box;margin:0px;border-radius:6px;display:inline;\\\">&nbsp;/** USER PROFILE API from API Management URL */ \\n&nbsp; &nbsp; export const GET_USER_PROFILES = &quot;[ENTER USERS PROFILE API]&quot; +&quot;?subscription-key=&quot; + SUBSCRIPTION_KEY;\\n\\n&nbsp; &nbsp; /** ITEM RECOMMENDATION from API Management URL */\\n&nbsp; &nbsp; export function getItemRecommendations(product_id: number) {\\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return &quot;[ENTER ITEM RECOMMENDER API ]&quot; + product_id + &quot;?subscription-key=&quot; + SUBSCRIPTION_KEY;\\n&nbsp; &nbsp; }\\n\\n&nbsp; &nbsp; /** GET USER RECOMMENDATION API from API Management */ \\n&nbsp; &nbsp; export function getUserRecommendations(user_id: string) {\\n&nbsp; &nbsp; &nbsp; &nbsp; return &quot;[ENTER GET USER RECOMMENDATION API]&quot; + user_id + &quot;?subscription-key=&quot; + SUBSCRIPTION_KEY;\\n&nbsp; &nbsp; }\\n\\n&nbsp; &nbsp; /** GET PRODUCT DETAILS API from API Management */\\n&nbsp; &nbsp; export function getProductDetails(product_id: string) {\\n&nbsp; &nbsp; &nbsp; &nbsp; return &quot;[ENTER GET PRODUCT DETAILS API]&quot; + product_id + &quot;?subscription-key=&quot; + SUBSCRIPTION_KEY;\\n&nbsp; &nbsp; }\\n\\n&nbsp; &nbsp; /** GET PRODUCT BY CATEGORY API from API Management */ \\n&nbsp; &nbsp; export const GET_PRODUCTS_BY_CATEGORY = &quot;[ENTER GET PRODUCT BY CATEGORY ID API]&quot; + &quot;?subscription-key=&quot; + SUBSCRIPTION_KEY + &quot;&amp;categoryname=&quot;;\\n\\n&nbsp; &nbsp; /** EVENT HUB NAMESPACE from Event Hub */\\n&nbsp; &nbsp; export const EVENT_HUB_NAMESPACE = &quot;[ENTER NAMESPACE]&quot;;\\n\\n&nbsp; &nbsp; /** EVENT HUB KEY NAME from Event Hubs */ \\n&nbsp; &nbsp; export const EVENT_HUB_KEYNAME = &quot;[ENTER KEY NAME]&quot;;\\n\\n&nbsp; &nbsp; /** EVENT HUB ACCESS KEY from Event Hub */ \\n&nbsp; &nbsp; export const EVENT_HUB_ACCESS_KEY = &quot;[ENTER ACCESS KEY]&quot;;\\n&nbsp; &nbsp; \\n&nbsp; &nbsp; /** PRODUCT IMAGE STORAGE ACCOUNT NAME from Application_Backend_Deploymnet */ \\n&nbsp; &nbsp; export const STORAGE_ACCOUNT = &quot;[ENTER STORAGE ACCOUNT NAME]&quot;\\n\\n&nbsp; &nbsp; /** POWER BI URL */\\n&nbsp; &nbsp; export const POWER_BI_URL = &quot;[ENTER POWER BI NAME]&quot;</code></pre><br></div></code></pre>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4630\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4631\"\n    },\n    {\n      \"id\": 4628,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T17:34:07.907Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Execute the notebook\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/spark/apache-spark-development-using-notebooks?tabs=classical\\\">Synapse Studio notebooks - Azure Synapse Analytics | Microsoft Docs</a>&nbsp;<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4625\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4628\"\n    },\n    {\n      \"id\": 4627,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T17:33:10.3Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Import to CreateOrUpdateProductDetails.ipynb to Synapse workspace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Import<span>&nbsp;</span><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/blob/main/Analytics_Deployment/synapse-workspace/notebooks/01_CreateOrUpdateProductDetails.ipynb\\\" style=\\\"box-sizing:border-box;\\\"><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Analytics_Deployment\\\\synapse-workspace\\\\notebooks\\\\01_CreateOrUpdateProductDetails.ipynb</code></a><span>&nbsp;</span>to the Synapse workspace and fill out the parameters for the filesystem name and the account name.<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4625\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4627\"\n    },\n    {\n      \"id\": 4626,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T17:30:49.643Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Upload JSON to Datalake\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/blob/main/Analytics_Deployment/data/product_detail.json\\\">product_detail.json</a></span></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">Upload this JSON to the Azure Data Lake Storage Account attached to your Synapse workspace</span><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;\\\"><li style=\\\"box-sizing:border-box;\\\">Make sure you put it into the filesystem that is the Primary Filesystem for the Synapse workspace</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Put it in the folder<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">synapse/workspaces</code><span>&nbsp;</span>in the filesystem that is the primary filesystem for the Synapse workspace</li></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4625\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4626\"\n    },\n    {\n      \"id\": 4607,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-18T00:34:16.667Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:30.723Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Accountability and responsibility for the build\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Who is on point for the actual build</div><div>Agreement on naming standards, tagging rules for ownership and reporting</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4229\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4607\"\n    },\n    {\n      \"id\": 4272,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T00:07:28.233Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Configure Application Front-end\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Navigate to the Application Front-end config.ts file:&nbsp;<a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Application_Frontend_Deployment/contoso-retail/src/config.ts\\\">Azure-Synapse-Solution-Accelerator-Retail-Recommender/config.ts at master · microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender (github.com)</a></div><div><br></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">add the<span>&nbsp;</span></span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\">EVENT_HUB_ACCESS_KEY</code><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">,<span>&nbsp;</span></span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\">EVENT_HUB_KEYNAME</code><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">, and<span>&nbsp;</span></span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\">EVENT_HUB_NAMESPACE</code><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><span>&nbsp;</span>created in the previous steps to the application</span><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4272\"\n    },\n    {\n      \"id\": 4271,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T00:05:48.283Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Configure the Event Hub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px !important;\\\"><li style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;box-sizing:border-box;margin-top:0.25em;\\\"><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">From the Overview, go to<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Event Hubs</code>, click the<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">clickthrough</code><span>&nbsp;</span>Event Hub created in the previous step</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Click<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Capture events</code><span>&nbsp;</span>to turn on and configure the settings to send events to the storage account you are using for this solution accelerator.</li></ul></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">Navigate to the<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">clickthrough</code><span>&nbsp;</span>Event Hub and click<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Shared access policies</code>, click &quot;+ Add&quot; and configure a new policy and click<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">send</code>.</p></li><ul style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Click<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Create</code></li></ul></ol><div><font color=\\\"#24292e\\\" face=\\\"SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace\\\"><span style=\\\"font-size:13.6px;\\\"><br></span></font></div></div><div><font color=\\\"#24292e\\\" face=\\\"SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace\\\"><span style=\\\"font-size:13.6px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-features?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Reference: Features and Terminology&nbsp;</a></span></font></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4271\"\n    },\n    {\n      \"id\": 4270,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T00:03:37.813Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Create Event Hub and Namespace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Deploy into the Resource Group you are using for this solution accelerator</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-create?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Quickstart: Create Event Hub and Namespace</a></div><div><br></div><pre><code><div><pre style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;margin-top:0px;margin-bottom:0px;padding:16px;overflow:auto;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;Set your Azure subscription to the subscription used in this solution accelerator</span>\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;NOTE: you will need to replace the following: </span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;Subscription-Id&gt;</span>\\naz account <span style=\\\"box-sizing:border-box;\\\">set</span>&nbsp;--subscription <span style=\\\"box-sizing:border-box;\\\">&lt;</span>Subscription-Id<span style=\\\"box-sizing:border-box;\\\">&gt;</span>\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;Create Event Hub namespace </span>\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;NOTE: you will need to replace the following: </span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;event-hub-namespace&gt;, &lt;resourse-group&gt;, &lt;location&gt;</span>\\naz eventhubs namespace create --name <span style=\\\"box-sizing:border-box;\\\">&lt;</span>event-hub-namespace<span style=\\\"box-sizing:border-box;\\\">&gt;</span>&nbsp;--resource-group <span style=\\\"box-sizing:border-box;\\\">&lt;</span>resource-group<span style=\\\"box-sizing:border-box;\\\">&gt;</span>&nbsp;-l <span style=\\\"box-sizing:border-box;\\\">&lt;</span>location<span style=\\\"box-sizing:border-box;\\\">&gt;</span>\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;Creat Event Hub called clickthrough</span>\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;NOTE: you will need to replace the followng: </span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;resource-group&gt;, &lt;event-hub-namespace&gt;</span>\\naz eventhubs eventhub create --name clickthrough --resource-group <span style=\\\"box-sizing:border-box;\\\">&lt;</span>resource-group<span style=\\\"box-sizing:border-box;\\\">&gt;</span>&nbsp;--namespace-name <span style=\\\"box-sizing:border-box;\\\">&lt;</span>event-hub-namespace<span style=\\\"box-sizing:border-box;\\\">&gt;</span></pre><br></div></code></pre>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4270\"\n    },\n    {\n      \"id\": 4269,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T23:18:06.657Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8. Create and Configure API\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">In the Azure API Management, go to<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">APIs</code><span>&nbsp;</span>and choose<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Blank API</code></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Configure the name of your API and click Create</li></ol><div><span style=\\\"color:rgb(106, 115, 125);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">Now you are ready to integrate the API with your front-end by utilizing the API you built in Azure API Management</span><br></div><div><span style=\\\"color:rgb(106, 115, 125);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\"><b>Example recommendation call</b></span></div><pre><code><div><span style=\\\"color:rgb(106, 115, 125);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\"><span style=\\\"color:rgb(36, 41, 46);font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;background-color:rgba(27, 31, 35, 0.05);display:inline !important;\\\">https://{ENTER_YOUR_APIM_NAME}.net/{VERSION_NUM_OF_API}/get_shopper_recommendations?subscription-key={APIM_SUBSCRIPTION_KEY}&amp;user_id=568778435</span><br></span></div></code></pre>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4269\"\n    },\n    {\n      \"id\": 4268,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T23:16:55.7Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7. Deploy Azure API Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Deploy to resource group for this solution accelerator</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/api-management/get-started-create-service-instance?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Quickstart - Create an Azure API Management instance | Microsoft Docs</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4268\"\n    },\n    {\n      \"id\": 4267,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T23:06:49.46Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Initialize, Deploy and Upload data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><h4 style=\\\"box-sizing:border-box;margin-top:24px;margin-bottom:16px;font-weight:600;font-size:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\">In this step we are going to deploy master data and upload images for Product and Profile APIs</h4></div><div><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/blob/main/Application_Backend_Deployment/Step4.md\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/Step4.md at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4267\"\n    },\n    {\n      \"id\": 4266,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T22:53:38.717Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Configure SSL\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><h4 style=\\\"box-sizing:border-box;margin-top:24px;margin-bottom:16px;font-weight:600;font-size:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\">Your API services has been already deployed in Kubernetes but you can't access their service endpoint so far.<br style=\\\"box-sizing:border-box;\\\">Because they don't expose any public network endpoint. so we are going to set up Network Ingress configuration and apply SSL encryption.</h4><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;\\\"><li style=\\\"box-sizing:border-box;\\\">Creating Certificate Issuer</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Creating Certicifate with LetsEncrypt</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Config Ingress Controller for Services to support SSL</li></ul><br></div><div><br></div><div><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/blob/main/Application_Backend_Deployment/Step3.md\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/Step3.md at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4266\"\n    },\n    {\n      \"id\": 4265,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T22:45:23.337Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Configure Kubernetes Ingress Controller and Cert Manager\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Update parameters in deploy1.bat.</div><div><a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Application_Backend_Deployment/Deploy1.bat\\\">Azure-Synapse-Solution-Accelerator-Retail-Recommender/Deploy1.bat at master · microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender (github.com)</a></div><div><br></div><div><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;\\\"><li style=\\\"box-sizing:border-box;\\\">Deploy API Services in Kubernetes</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Deploy Nginix Ingress Controller in Kubernetes</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Deploy cert-manager to preparing self-signed certificate to support SSL</li></ul><br></div><div><br></div><div>NOTE: Email address should be valid for your certificate</div><div><br></div><div>&nbsp;<span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">Wait for a while ingress-nginx-controller-* 's READY status from 0/1 to 1/1.&nbsp;<span style=\\\"display:inline !important;\\\">Once nginx controller's READY status is 1/1, press CTRL+C and exit the batch process.</span></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4265\"\n    },\n    {\n      \"id\": 4264,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T22:30:46.433Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Deploy Azure Resources using deploy1.bat\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The following script will deploy these services.&nbsp;<a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Application_Backend_Deployment/Step1%2c2.md\\\">Azure-Synapse-Solution-Accelerator-Retail-Recommender/Step1,2.md at master · microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender (github.com)</a></div><div><br></div><div><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;\\\"><li style=\\\"box-sizing:border-box;\\\">Deploy Azure Container Registry Service (<a href=\\\"https://docs.microsoft.com/en-us/azure/container-instances/container-instances-quickstart?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">quickstart</a>)</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Deploy Azure Kubernetes Service&nbsp; (<a href=\\\"https://docs.microsoft.com/en-us/azure/aks/kubernetes-walkthrough?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">quickstart</a>)</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Deploy Azure Storage Account (<a href=\\\"https://docs.microsoft.com/en-us/azure/storage/common/storage-account-overview?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">quickstart</a>)</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Deploy Azure CosmosDB Mongo API (<a href=\\\"https://docs.microsoft.com/en-us/azure/cosmos-db/create-cosmosdb-resources-portal?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">quickstart</a>)</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Setting Service Principal to work together with ACR and AKS (<a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/develop/app-objects-and-service-principals?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">overview</a>)</li></ul><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4264\"\n    },\n    {\n      \"id\": 4263,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T22:25:34.877Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Local Build and Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Local build and test : Open solution file<span>&nbsp;<a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Application_Backend_Deployment/Contoso.Retail.NextGen/src/Contoso.Retail.NextGen.API.sln\\\">Azure-Synapse-Solution-Accelerator-Retail-Recommender/Contoso.Retail.NextGen.API.sln at master · microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender (github.com)</a>&nbsp;</span>from your Visual Studio.&nbsp;<br></div><div><br></div><div><b>NOTE</b>:&nbsp;<span style=\\\"font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\"><font color=\\\"#24292e\\\">Through Azure Pipeline, you may deploy on Kubernetes cluster. Check&nbsp;</font>deployment.yml and service.yml </span><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">in <a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/tree/master/Application_Backend_Deployment/Contoso.Retail.NextGen/manifests\\\">manifests</a></span><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>folder and<span>&nbsp;</span></span><a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Application_Backend_Deployment/Contoso.Retail.NextGen/azure-pipelines.yml\\\" style=\\\"box-sizing:border-box;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">azure-pipelines.yml</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4263\"\n    },\n    {\n      \"id\": 4262,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T22:13:51.293Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Prerequisites \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\">Azure CLI - For Azure Resources and Source code deployment (<a href=\\\"https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Install the Azure CLI | Microsoft Docs</a>)&nbsp;</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Kubectl- For Deploying API Services and Configuration (<a href=\\\"https://kubernetes.io/docs/tasks/tools/install-kubectl/\\\">Install and Set Up kubectl | Kubernetes</a>)&nbsp;</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Docker Desktop - For Debugging in local or containerizing codes in Deployment process (<a href=\\\"https://www.docker.com/get-started\\\">Get Started with Docker | Docker</a>)</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><span>PowerShell 7.x&nbsp;</span>- For executing Deployment Script (<a href=\\\"https://github.com/PowerShell/PowerShell#get-powershell\\\">PowerShell/PowerShell: PowerShell for every system! (github.com)</a></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Helm 3.x - For installing cert-manager, ingress-nginx Ingress Controller (<a href=\\\"https://helm.sh/docs/intro/install/\\\">Helm | Installing Helm</a>)</li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4262\"\n    },\n    {\n      \"id\": 4261,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T21:34:18.393Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Run the model\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">run<span>&nbsp;</span></span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\">python deploy_model.py</code><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><span>&nbsp;</span>and the model will be registered with AMLS and deployed to the AKS cluster.</span><br></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Analytics_Deployment/amls/model_deployment\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/Analytics_Deployment/amls/model_deployment at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4213\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4261\"\n    },\n    {\n      \"id\": 4260,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T21:33:22.323Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Deploy the model: Prepare deploy_model.py\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"\\\">Update deploy_model.py</span><br></div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Analytics_Deployment/amls/model_deployment\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/Analytics_Deployment/amls/model_deployment at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></span></div><pre><code><div><pre style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;margin-top:0px;margin-bottom:0px;padding:16px;overflow:auto;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\"><span style=\\\"box-sizing:border-box;\\\"># Subscription ID for the Solution Accelerator</span>\\n<span style=\\\"box-sizing:border-box;\\\">SUBSCRIPTION_ID</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n<span style=\\\"box-sizing:border-box;\\\"># Resource Group that you are using for the Solution Accelerator</span>\\n<span style=\\\"box-sizing:border-box;\\\">RESOURCE_GROUP</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n<span style=\\\"box-sizing:border-box;\\\"># Found in the output of the Service Principal created earlier</span>\\n<span style=\\\"box-sizing:border-box;\\\">TENANT_ID</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n<span style=\\\"box-sizing:border-box;\\\"># Found in the output of the Service Principal created earlier</span>\\n<span style=\\\"box-sizing:border-box;\\\">APP_ID</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n<span style=\\\"box-sizing:border-box;\\\"># Found in the output of the Service Principal created earlier</span>\\n<span style=\\\"box-sizing:border-box;\\\">SP_PASSWORD</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n<span style=\\\"box-sizing:border-box;\\\"># Name of the Azure Machine Learning Service that you deployed</span>\\n<span style=\\\"box-sizing:border-box;\\\">WORKSPACE_NAME</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n<span style=\\\"box-sizing:border-box;\\\"># Name of the Azure Kubernetes Service that you deployed</span>\\n<span style=\\\"box-sizing:border-box;\\\">AKS_CLUSTER_NAME</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span></pre><br></div></code></pre>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4213\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4260\"\n    },\n    {\n      \"id\": 4259,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T21:32:18.787Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Deploy the model: Prepare score.py\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Update the score.py file</div><div><br></div><div><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Analytics_Deployment/amls/model_deployment\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/Analytics_Deployment/amls/model_deployment at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></div><div><br></div><pre><code><div><pre style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;margin-top:0px;margin-bottom:0px;padding:16px;overflow:auto;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\"><span style=\\\"box-sizing:border-box;\\\">def</span>&nbsp;<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">init</span></span>():\\n&nbsp; &nbsp; <span style=\\\"box-sizing:border-box;\\\">## Add in your Data Lake Details Here</span>\\n&nbsp; &nbsp; \\n&nbsp; &nbsp; <span style=\\\"box-sizing:border-box;\\\">## The DATA_LAKE_NAME should be the attached Data Lake to your Synapse workspace where the saved ALS Model is</span>\\n&nbsp; &nbsp; <span style=\\\"box-sizing:border-box;\\\">DATA_LAKE_NAME</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n&nbsp; &nbsp; <span style=\\\"box-sizing:border-box;\\\">## DATA_LAKE_FILE_SYSTEM_NAME should be the filesystem that is attached to the Synapse workspace where the Model is saved</span>\\n&nbsp; &nbsp; <span style=\\\"box-sizing:border-box;\\\">DATA_LAKE_FILE_SYSTEM_NAME</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n&nbsp; &nbsp; <span style=\\\"box-sizing:border-box;\\\">## DATA_LAKE_PRIMARY_KEY is the Primary Key of the Azure Data Lake Storage Gen2 that can be found in the portal</span>\\n&nbsp; &nbsp; <span style=\\\"box-sizing:border-box;\\\">DATA_LAKE_PRIMARY_KEY</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span></pre><br></div></code></pre>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4213\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4259\"\n    },\n    {\n      \"id\": 4258,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T21:30:02.693Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Create data model\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">In the repository on your local machine, open<span>&nbsp;<a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/tree/master/Analytics_Deployment/amls/model_deployment\\\">Azure-Synapse-Solution-Accelerator-Retail-Recommender/Analytics_Deployment/amls/model_deployment at master · microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender (github.com)</a></span><span>&nbsp;</span>in an IDE like VS Code</p></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">Run<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">pip install -r requirements.txt</code></p></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">Edit the<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">download_model.py</code><span>&nbsp;</span>file:</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">In the file<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">download_model.py</code>, edit the following:<div style=\\\"box-sizing:border-box;margin-bottom:16px;\\\"><pre style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;margin-top:0px;margin-bottom:0px;padding:16px;overflow:auto;border-radius:6px;\\\"><span style=\\\"box-sizing:border-box;\\\"><b># Enter the name of the Azure Data Lake Storage Gen2 Account</b></span>\\n<span style=\\\"box-sizing:border-box;\\\">DATA_LAKE_NAME</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n<span style=\\\"box-sizing:border-box;\\\"><b># Enter the name of the filesystem</b></span>\\n<span style=\\\"box-sizing:border-box;\\\">DATA_LAKE_FILE_SYSTEM_NAME</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span>\\n<span style=\\\"box-sizing:border-box;\\\"><b># Enter the Primary Key of the Data Lake Account</b></span>\\n<span style=\\\"box-sizing:border-box;\\\">DATA_LAKE_PRIMARY_KEY</span><span style=\\\"box-sizing:border-box;\\\">=</span><span style=\\\"box-sizing:border-box;\\\">&quot;&quot;</span></pre></div></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Now run<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">python download_model.py</code><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">This should create a ZIP of the model on your local machine.</li></ul></li></ul></li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4213\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4258\"\n    },\n    {\n      \"id\": 4257,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T21:26:04.83Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Create new inference cluster\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">Launch the Azure Machine Learning Studio:</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Go to the resource page in the portal and click the &quot;Launch Studio&quot;</li></ul></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">Go to &quot;Compute&quot;, click &quot;Inference Clusters&quot; and click &quot;+ New&quot;</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">fill in the <b>Compute Name</b>, <b>Region</b>, choose the <b>Dev-test or Production </b>for the cluster purpose and select Create.</li></ul></li></ol><a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/how-to-create-attach-compute-cluster?tabs=python?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Create a compute cluster for Machine Learning</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4213\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4257\"\n    },\n    {\n      \"id\": 4256,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T21:14:58.71Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Configure and Train data models\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Fill out the parameters in the following files and run in order.</div><div><span style=\\\"\\\"><br></span></div><div><span style=\\\"\\\"><ol><li><span style=\\\"\\\">Clean training data:&nbsp;</span><a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Analytics_Deployment/synapse-workspace/notebooks/02_Clean_Training_Data.ipynb\\\" style=\\\"\\\">https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Analytics_Deployment/synapse-workspace/notebooks/02_Clean_Training_Data.ipynb</a></li><li>&nbsp;ALS Model training:&nbsp;<a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Analytics_Deployment/synapse-workspace/notebooks/03_ALS_Model_Training.ipynb\\\" style=\\\"\\\">https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Analytics_Deployment/synapse-workspace/notebooks/03_ALS_Model_Training.ipynb</a></li><li>Recommendation Refresh:&nbsp;<a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Analytics_Deployment/synapse-workspace/notebooks/04_RecommendationRefresh.ipynb\\\" style=\\\"\\\">https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Analytics_Deployment/synapse-workspace/notebooks/04_RecommendationRefresh.ipynb</a></li></ol></span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4212\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4256\"\n    },\n    {\n      \"id\": 4255,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T21:05:52.213Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Create Service Principal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Service Principal needs contributor access to Azure Machine Learning Service. <a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/develop/app-objects-and-service-principals?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Creating Service Principal</a></div><div><br></div><div><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Note</strong>: Save the client-id and password of this Service Principal for future steps in the<span>&nbsp;</span><a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Analytics_Deployment/synapse-workspace/notebooks/03_ALS_Model_Training.ipynb\\\" style=\\\"box-sizing:border-box;\\\">Notebook</a>. This will install the Azure Machine Learning CLI Extention.<br></div><div><br></div><pre><code><div><pre style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;margin-top:0px;margin-bottom:0px;padding:16px;overflow:auto;border-radius:6px;color:rgb(36, 41, 46);\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>After running the script, it will propt you to login to the portal or enter a device code. </span>\\naz login\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>Install the Azure Machine Learning CLI Extention </span>\\naz extension add -n azure-cli-ml\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;Set the subscription you will be using for this solution accelerator</span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;NOTE: you will need to replace the following </span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;subscription-id&gt;</span>\\naz account <span style=\\\"box-sizing:border-box;\\\">set</span>&nbsp;--subscription <span style=\\\"box-sizing:border-box;\\\">&lt;</span>subsciption-id<span style=\\\"box-sizing:border-box;\\\">&gt;</span>\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;Create a Service Principal</span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;NOTE: you will need to replace the following </span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;service-principal-name&gt;: Desired name for the serive principal</span>\\naz ad sp create-for-rbac --sdk-auth --name <span style=\\\"box-sizing:border-box;\\\">&lt;</span>service-principal-name<span style=\\\"box-sizing:border-box;\\\">&gt;</span>\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;Get details of your service principal </span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;NOTE: you will need to replace the following</span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;client-id&gt;: the client id from the previous step</span>\\naz ad sp show --id <span style=\\\"box-sizing:border-box;\\\">&lt;</span>client-id<span style=\\\"box-sizing:border-box;\\\">&gt;</span>&nbsp;\\n\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;Assign contributor role to the Azure Machine Learning Service </span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;NOTE: you will need to replace the following</span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;workspace-name&gt;: Azure Machine learning workspace name</span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;resource-group&gt;: name of the resource group used for this solution accelerator </span>\\n<span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">#</span>&nbsp;- &lt;object-id&gt;: the object id of the service principal </span>\\naz ml workspace share -w <span style=\\\"box-sizing:border-box;\\\">&lt;</span>workspace-name<span style=\\\"box-sizing:border-box;\\\">&gt;</span>&nbsp;-g <span style=\\\"box-sizing:border-box;\\\">&lt;</span>resource-group<span style=\\\"box-sizing:border-box;\\\">&gt;</span>&nbsp;--user <span style=\\\"box-sizing:border-box;\\\">&lt;</span>object-id<span style=\\\"box-sizing:border-box;\\\">&gt;</span>&nbsp;--role contributor</pre><br></div></code></pre>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4212\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4255\"\n    },\n    {\n      \"id\": 4254,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T21:03:56.293Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Deploy Azure Machine Learning Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/tutorial-1st-experiment-sdk-setup\\\">Tutorial: Get started in Jupyter Notebooks (Python) - Azure Machine Learning | Microsoft Docs</a>&nbsp;<br></div><div><br></div><div><strong style=\\\"box-sizing:border-box;font-weight:600;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;\\\">NOTE</strong><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">: Along with the service comes the following:</span><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;\\\"><li style=\\\"box-sizing:border-box;\\\">Azure Key Vault</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Azure Storage</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Azure Application Insights</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Azure Container Registry (<strong style=\\\"box-sizing:border-box;font-weight:600;\\\">ATTENTION</strong>: The name of this service will be needed in the deployment of the Azure Kubernetes Service)<ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">You can find the name of the associated Container Registry in the resource page of the deployed Azure Machine Learning Service</li></ul></li></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4212\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4254\"\n    },\n    {\n      \"id\": 4253,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:53:31.507Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Import the notebook\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Import<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span><a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/blob/master/Analytics_Deployment/synapse-workspace/notebooks/01_CreateOrUpdateProductDetails.ipynb\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Analytics_Deployment\\\\synapse-workspace\\\\notebooks\\\\01_CreateOrUpdateProductDetails.ipynb</code></a><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>to the Synapse workspace and fill out the parameters for the filesystem name and the account name</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Execute the Notebook</li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4211\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4253\"\n    },\n    {\n      \"id\": 4252,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:52:18.49Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Upload JSON to ADLS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Use the product_details.json file:&nbsp;<a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/tree/master/Analytics_Deployment/data\\\">Azure-Synapse-Solution-Accelerator-Retail-Recommender/Analytics_Deployment/data at master · microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender (github.com)</a></div><div><br></div><div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\">Upload the JSON to the Azure Data Lake Storage Account attached to your Synapse workspace<ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Make sure you put it into the filesystem that is the Primary Filesystem for the Synapse workspace</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Put it in the folder<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">synapse/workspaces</code><span>&nbsp;</span>in the filesystem that is the primary filesystem for the Synapse workspace</li></ul></li></ol><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4211\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4252\"\n    },\n    {\n      \"id\": 4250,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:34:13.337Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Link Cosmos db to your Synapse Workspace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/synapse-link/how-to-connect-synapse-link-cosmos-db#connect-an-azure-cosmos-db-database-to-a-synapse-workspace\\\">Connect to Azure Synapse Link (preview) for Azure Cosmos DB - Azure Synapse Analytics | Microsoft Docs</a><br></div><div><br></div><div><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">NOTE</strong>: Make sure to create a Linked Service in the Synapse workspace for the Cosmos DB connection and name it<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">retail_ai_cosmos_synapse_link</code><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4211\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4250\"\n    },\n    {\n      \"id\": 4249,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:32:58.227Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Create Second Container\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Database id: Use existing: product_data</div><div>Container id: user_recommendations</div><div>Partition key: /user_id</div><div>Analytics store: On</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4211\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4249\"\n    },\n    {\n      \"id\": 4248,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:31:54.89Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Create First Container\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Database ID: use existing: product_data</div><div>Container id: product_details</div><div>Partition key: /productID</div><div><br></div><div>Analytics store: Off</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4211\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4248\"\n    },\n    {\n      \"id\": 4247,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:30:19.957Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Create New Database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">Go to the Cosmos DB service that was created in Step 2</p></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">Go to the Data Explorer and create a database named<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">product_data</code><span>&nbsp;</span>with the configurations below:</p></li></ol><div><font color=\\\"#24292e\\\" face=\\\"-apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji\\\"><span style=\\\"font-size:16px;\\\">Provision throughput: checked</span></font></div><div><span style=\\\"font-size:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\">Select manual, throughput variable of 1,000</span><br></div><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4211\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4247\"\n    },\n    {\n      \"id\": 4246,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:23:14.297Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Assign permissions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">Ensure that you give yourself and any other user admin privilages for this accelerator by going to the<span>&nbsp;</span></span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\">Manage</code><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><span>&nbsp;</span>tab, then<span>&nbsp;</span></span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\">Access control</code><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><span>&nbsp;</span>underneath<span>&nbsp;</span></span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;color:rgb(36, 41, 46);text-align:left;\\\">Security</code><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><span>&nbsp;</span>and click &quot;+ Add&quot;</span><br></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">Admin roles</span></div><div><ul><li><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\">Workspace Admin</span></li><li><font color=\\\"#24292e\\\" face=\\\"-apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji\\\"><span style=\\\"font-size:16px;\\\">SQL Admin</span></font></li><li><font color=\\\"#24292e\\\" face=\\\"-apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji\\\"><span style=\\\"font-size:16px;\\\">Apache Spark admin</span></font></li></ul><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:left;display:inline !important;\\\"></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4210\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4246\"\n    },\n    {\n      \"id\": 4245,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:16:34.213Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Upload configuration packages\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Go to the &quot;Manage&quot; tab in the Synapse workspace and click on the Apache Spark pools</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Click on the Spark Pool that you deployed and click &quot;Packages, then click &quot;Upload environment config file&quot;<ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Go to<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Analytics Deployment\\\\synapse-workspace\\\\cluster_config</code><span>&nbsp;</span>to get the requirements.txt for upload</li></ul></li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4210\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4245\"\n    },\n    {\n      \"id\": 4244,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T20:14:07.86Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Import data into Synapse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\">Launch the Synapse workspace:<ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Go to the resource page in the portal and click the &quot;Launch Synapse Studio&quot;</li></ul></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Go to &quot;Develop&quot;, click the &quot;+&quot;, and click Import:<ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">In the demo's repository, go to<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Analytics Deployment\\\\synapse-workspace\\\\notebooks</code><span>&nbsp;</span>to select all of the the Spark Notebooks</li></ul><li><span style=\\\"\\\">Click Publish and confirm the assets to be published</span><br></li></li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4210\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4244\"\n    },\n    {\n      \"id\": 4243,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:46:04.71Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8. Storage Account permissions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">In order to read files from your Azure Storage Account from the Synapse workspace, you will need to grant<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Storage Blob Data Contributor</code>. Follow the steps below to assign Storage Blob Data Contributor to the users.</p><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\">Go to the Azure Data Lake Storage Account created in Step 2</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Go to the<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Access Control (IAM)</code></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Click &quot;+ Add&quot;</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Click &quot;Add role assignment&quot;</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Now click the Role dropdown and select<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">Storage Blob Data Contributor</code><span>&nbsp;</span>and search for your username and the other user's usernames to be added by using the search bar.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Click &quot;Save&quot; at the bottom</li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4243\"\n    },\n    {\n      \"id\": 4242,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:44:40.54Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7. NOTE: Azure CLI extension for Azure Synapse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\">Open Powershell as Administrator</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Navigate to this folder<span>&nbsp;<a href=\\\"https://github.com/microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender/tree/master/Resource_Deployment/deployment/backend\\\">Azure-Synapse-Solution-Accelerator-Retail-Recommender/Resource_Deployment/deployment/backend at master · microsoft/Azure-Synapse-Solution-Accelerator-Retail-Recommender (github.com)</a></span></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Run the following command:<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:SFMono-Regular, Consolas, &quot;Liberation Mono&quot;, Menlo, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">./deployment_script.ps1</code></li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4242\"\n    },\n    {\n      \"id\": 4241,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:42:56.493Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T22:18:39.153Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Cosmos DB account name\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Cosmos DB Account Name</strong>: the name of the Cosmos DB Account that will be used to store the User Recommendations and Product Details<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4241\"\n    },\n    {\n      \"id\": 4240,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:42:38.97Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T22:18:26.1Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Directory path for dataset\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Directory Path</strong>: the directory path where the dataset is located locally on your computer<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4240\"\n    },\n    {\n      \"id\": 4239,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:41:59.387Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T22:18:12.65Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Location for resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Location</strong>: the location to deploy all the resources<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4239\"\n    },\n    {\n      \"id\": 4238,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:41:39.52Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T22:17:59.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Username and Password for Synapse workspace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Username</strong>: SQL user for Synapse workspace</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Password</strong>: SQL user for Synapse workspace (must be at least 8 characters)</li></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4238\"\n    },\n    {\n      \"id\": 4237,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:39:49.887Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T22:17:29.543Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Define a globally unique resource name\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/synapse-analytics/get-started-create-workspace?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Quickstart: Get started - create a Synapse workspace - Azure Synapse Analytics | Microsoft Docs</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4237\"\n    },\n    {\n      \"id\": 4236,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:38:31.75Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T22:16:32.337Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Get Azure Subscription ID and Resource Group Name\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\"><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Subscription</strong>: Azure Subscription Id</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><strong style=\\\"box-sizing:border-box;font-weight:600;\\\">Resource Group</strong>: Name of the resource group to create</li></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4236\"\n    },\n    {\n      \"id\": 4235,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:37:47.91Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Download data from Kaggle Open Dataset\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">- 2019-Oct.csv</span><br style=\\\"box-sizing:border-box;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">- 2019-Nov.csv</span><br style=\\\"box-sizing:border-box;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">- 2019-Dec.csv.gz (available<span>&nbsp;</span></span><a href=\\\"https://drive.google.com/drive/folders/1Nan8X33H8xrXS5XhCKZmSpClFTCJsSpE\\\" rel=nofollow style=\\\"box-sizing:border-box;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">here</a><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">)</span><br style=\\\"box-sizing:border-box;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">- 2020-Jan.csv.gz (available<span>&nbsp;</span></span><a href=\\\"https://drive.google.com/drive/folders/1Nan8X33H8xrXS5XhCKZmSpClFTCJsSpE\\\" rel=nofollow style=\\\"box-sizing:border-box;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">here</a><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">)</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4208\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4235\"\n    },\n    {\n      \"id\": 4234,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:32:58.517Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:47.493Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Verify and validate policies for compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>If this is a demo environment are their policies which prevent you from building the demo.</div><div>Validate compliance requirements for data usage&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4232\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4234\"\n    },\n    {\n      \"id\": 4233,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:31:21.25Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:47.493Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Subscription & Resource Groups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>You will need to know which subscription and resource group you are deploying to.</div><div><br></div><div>Subscription name &amp; ID</div><div>Resource group</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4231\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4233\"\n    },\n    {\n      \"id\": 4230,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:16:29.31Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:30.723Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Alignment of the CCOE, Platform, Governance and Data teams\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Ensure that common principles and operating environment are adhered to.</div><div><br></div><div><b>Cloud Function Alignment</b></div><div><span style=\\\"\\\">Strategy &amp; CCOE informed and cleared the path to proceed with project</span><br></div><div>Governance &amp; Security informed and no blockers from a compliance perspective</div><div>Data and Platform/Adoption function have the correct rights, roles and operating environment</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4229\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4230\"\n    },\n    {\n      \"id\": 4228,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T18:49:59.81Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:30.723Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Tutorial: Data Role Learning Paths on Microsoft Learn\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/browse/?products=azure%2csql-server%2cwindows-server&amp;roles=data-scientist?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Data Scientist Learning Path on Microsoft Docs</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/browse/?products=azure&amp;roles=data-engineer?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Data engineer Learning Path on Microsoft Docs</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/browse/?products=azure&amp;roles=data-analyst?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Data Analyst Learning Path on Microsoft Docs</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4224\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4228\"\n    },\n    {\n      \"id\": 4227,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T18:49:15.18Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:30.723Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Tutorial: Azure Machine Learning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/intro-to-azure-machine-learning-service?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Introduction to Azure Machine Learning SDK</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/use-automated-machine-learning?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Use automated machine learning in Azure Machine Learning</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/automate-model-selection-with-azure-automl?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Automate machine learning model selection with Azure Machine Learning</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4224\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4227\"\n    },\n    {\n      \"id\": 4226,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T18:48:49.217Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:30.723Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Tutorial: Azure Kubernetes Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/intro-to-azure-kubernetes-service?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Introduction to Azure Kubernetes Service</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/aks-deploy-container-app?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Deploy a containerized application on Azure Kubernetes Service</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4224\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4226\"\n    },\n    {\n      \"id\": 4225,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T18:48:26.75Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:30.723Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Tutorial: Azure Synapse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/introduction-azure-synapse-analytics?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Introduction to Azure Synapse Analytics</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/data-integration-azure-data-factory?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Integrate Data with Azure Data Factory or Azure Synapse Pipeline</a></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/explore-azure-synapse-studio?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Explore Azure Synapse Studio</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4224\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4225\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-RetailRecommender-SolutionAccelerator/WorkItems/User Story.json",
    "content": "{\n  \"count\": 17,\n  \"value\": [\n    {\n      \"id\": 4208,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T16:56:52.357Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step1: Data Gathering\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4235\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4208\"\n    },\n    {\n      \"id\": 4209,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T16:57:30.627Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step2: Create Azure Synapse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4238\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4242\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4243\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4241\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4239\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4237\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4209\"\n    },\n    {\n      \"id\": 4210,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T16:58:27.217Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step3: Upload Assets and Data to Synapse and assign permissions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4245\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4246\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4244\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4210\"\n    },\n    {\n      \"id\": 4211,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T16:58:50.06Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step4: Setting up Cosmos DB and Azure Synapse Link\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>In this section we will be creating containers for recommendations and product details</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4252\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4249\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4248\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4253\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4247\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4250\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4211\"\n    },\n    {\n      \"id\": 4625,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T17:28:31.853Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step4.1: Upload Additional Dataset\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4626\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4627\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4628\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4625\"\n    },\n    {\n      \"id\": 4212,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T16:59:09.74Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step5: Running of the Notebooks and SQL Scripts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4255\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4254\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4256\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4212\"\n    },\n    {\n      \"id\": 4213,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T16:59:36.037Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step6: Setup Item-based Recommendation Web Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><blockquote style=\\\"box-sizing:border-box;margin:0px 0px 16px;padding:0px 1em;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:0px;\\\">In this section we will set up the Item-Based Recommendation Web Service by using Azure Machine Learning Service to package and deploy the model and Azure Kubernetes Service to host the model.</p></blockquote><blockquote style=\\\"box-sizing:border-box;margin:0px 0px 16px;padding:0px 1em;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><p style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:0px;\\\"><b>NOTE</b>: You will need Python 3.7+ installed on your local machine.</p></blockquote><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4257\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4258\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4259\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4261\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4260\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4213\"\n    },\n    {\n      \"id\": 4214,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T16:59:47.997Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step7: Setting up API infrastructure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4263\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4262\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4267\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4269\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4266\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4264\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4265\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4268\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4214\"\n    },\n    {\n      \"id\": 4215,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T16:59:58.61Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step8: Setting up the Event Hub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Event Hubs is a Big Data streaming platform and event ingestion service that can receive and process millions of events per second. Event Hubs can process and store events, data, or telemetry produced by distributed software and devices. Data sent to an event hub can be transformed and stored using any real-time analytics provider or batching/storage adapters.</span><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-create\\\">Azure Quickstart - Create an event hub using the Azure portal - Azure Event Hubs | Microsoft Docs</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4271\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4270\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4272\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4215\"\n    },\n    {\n      \"id\": 4229,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:15:52.303Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T22:12:54.527Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/plan/initial-org-alignment?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Organization Alignment</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4223\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4607\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4230\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4229\"\n    },\n    {\n      \"id\": 4224,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T18:46:57.89Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T22:13:29.94Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"http://docs.microsoft.com/learn?wt.mc_id=devops_userstory_service_retai-inproduct-devopsportal\\\">Microsoft Learn</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4228\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4223\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4227\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4225\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4226\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4224\"\n    },\n    {\n      \"id\": 4231,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:30:50.33Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:47.493Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Build Environment (landing zone)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4219\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4636\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4233\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4635\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4231\"\n    },\n    {\n      \"id\": 4232,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-09T19:31:01.367Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:57:48.04Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Governance and policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4219\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4232\"\n    },\n    {\n      \"id\": 4614,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-18T00:38:31.757Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Analytics Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Analytics_Deployment\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/Analytics_Deployment at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></div><div><br></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">This folder contains the Notebooks needed to complete this solution accelerator. Once you have deployed all the required resources from ResourceDeploymnet.md, run through the Notebooks following the instructions in<span>&nbsp;</span></span><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/blob/main/Resource_Deployment\\\" style=\\\"box-sizing:border-box;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\">Resource Deployment</a><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">.</span><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4634\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4614\"\n    },\n    {\n      \"id\": 4616,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-18T00:39:39.103Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Application Backend API Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">This folder contains the resources for product details and managing the list of products that are presented to the Portal.</span><br></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Application_Backend_Deployment\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/Application_Backend_Deployment at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4634\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4616\"\n    },\n    {\n      \"id\": 4630,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-19T21:25:01.417Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Step1: UI Demo\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/Application_Frontend_Deployment\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/Application_Frontend_Deployment at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4632\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4633\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4615\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4631\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4630\"\n    },\n    {\n      \"id\": 4617,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Retail Recommender - Solution Accelerator\",\n        \"System.TeamProject\": \"Retail Recommender - Solution Accelerator\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-18T00:39:56.82Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-19T21:58:17.947Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"ML Model Building\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\">This user story contains the resources for exploring how the model was constructed.</span><br></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;display:inline !important;\\\"><a href=\\\"https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator/tree/main/ML_Model_Building\\\">Azure-Synapse-Retail-Recommender-Solution-Accelerator/ML_Model_Building at main · microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator (github.com)</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4634\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4617\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Dashboard/Dashboard.json",
    "content": "\"text\""
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Dashboard/Queries/Assigned to me.json",
    "content": "{\n  \"name\": \"Assigned to me\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Dashboard/Queries/Followed work items.json",
    "content": "{\n  \"name\": \"Followed work items\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Extensions.json",
    "content": "{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"ARM Outputs\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'><b>ARM Outputs</b></a>\",\n      \"publisherId\": \"keesschollaart\",\n      \"extensionId\": \"arm-outputs\",\n      \"publisherName\": \"Kees Schollaart\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Team Project Health\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.TeamProjectHealth' target='_blank'><b>Team Project Health</b></a>\",\n      \"publisherId\": \"ms-devlabs\",\n      \"extensionId\": \"TeamProjectHealth\",\n      \"publisherName\": \"Microsoft DevLabs\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.TeamProjectHealth' target='_blank'>License Terms</a>\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/ImportSourceCode/Azure Sentinel Template.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/SQL Proj - Azure BG Test/_git/Azure Sentinel Template\"\n    },\n    \"serviceEndpointId\": \"$Azure Sentinel Template-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"SQL Proj - Azure BG Test\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/ServiceEndpoints/Azure Sentinel Template-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Azure Sentinel Template-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vandyr/Azure Sentinel Template/_git/Azure Sentinel Template\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Teams/SQL Proj - Azure BG Test Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Teams/SQL Proj - Azure BG Test Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Teams/SQL Proj - Azure BG Test Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Teams/SQL Proj - Azure BG Test Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Teams/SQL Proj - Azure BG Test Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"77257c73-0a3c-4afd-9a58-dd4664d4a402\",\n    \"name\": \"SQL Proj - Azure BG Test Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 3627,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-10T22:15:44.27Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:41:42.807Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Build the Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate your plan, ensure that adoption aligns with the CCOE or Strategy teams guidance.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3374\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3627\"\n    },\n    {\n      \"id\": 3373,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:19.127Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:28:18.17Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"SQL Migration \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF SQL Migration Project Plan\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3376\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3375\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3373\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/WorkItems/Feature.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 3374,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:19.493Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:27:50.143Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Strategy, Plan, Readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Strategy, Plan, Readiness\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3414\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3627\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3413\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3374\"\n    },\n    {\n      \"id\": 3376,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:19.877Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:28:31.313Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"CAF SQL Migration - Governance and Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF SQL Migration - Governance and Manage\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3373\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3376\"\n    },\n    {\n      \"id\": 3375,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:19.713Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:32:23.167Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"SQL Migration Scenarios and paths\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF SQL Migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3418\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3373\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3417\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3416\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3375\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/WorkItems/Task.json",
    "content": "{\n  \"count\": 43,\n  \"value\": [\n    {\n      \"id\": 3391,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:22.543Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:28:26.997Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Azure Setup Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate that you have covered all areas specified in the Azure Setup Guide</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3391\"\n    },\n    {\n      \"id\": 3381,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:21.01Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:28:26.997Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Create and/or Verify Landing Zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Decide and Create Landing Zone, this is where the assets will reside and how they will be managed and governed.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/landing-zone/implementation-options?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/landing-zone/implementation-options?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3381\"\n    },\n    {\n      \"id\": 3392,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:22.677Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:28:26.997Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Pros and Cons of Landing Zones and Migration Tools Decision Guide\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Migration Tools Decision Guide</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/decision-guides/migrate-decision-guide/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/decision-guides/migrate-decision-guide/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3392\"\n    },\n    {\n      \"id\": 3393,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:22.81Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:28:26.997Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Guide: Migrate SSIS, SSAS and SSRS to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Migrate SSIS, SSAS and SSRS to Azure</div><div><br></div><div>SSIS:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/scenario-ssis-migration-overview?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/data-factory/scenario-ssis-migration-overview?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div><div><br></div><div>SSRS:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/sql/reporting-services/report-data/sql-azure-connection-type-ssrs?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/sql/reporting-services/report-data/sql-azure-connection-type-ssrs?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a>&nbsp;</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3393\"\n    },\n    {\n      \"id\": 3400,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:23.92Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:35:56.807Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Assessment</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/sql/dma/dma-migrateonpremsqltosqldb?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/sql/dma/dma-migrateonpremsqltosqldb?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/sql/dma/dma-consolidatereports?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/sql/dma/dma-consolidatereports?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3417\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3400\"\n    },\n    {\n      \"id\": 4062,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T19:00:04.783Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:28:26.997Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Reference Architectures\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Windows N-Tier application on Azure</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/n-tier/n-tier-sql-server?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/n-tier/n-tier-sql-server?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div><div><br></div><div>Loan Credit Risk with SQL Server</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/loan-credit-risk-with-sql-server?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/loan-credit-risk-with-sql-server?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div><div><br></div><div>Scalable Sitecore marketing website</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/digital-marketing-sitecore?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/solution-ideas/articles/digital-marketing-sitecore?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4062\"\n    },\n    {\n      \"id\": 4066,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T21:28:20.223Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:42:51.63Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Tutorial: Azure SQL Fundamentals\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure SQL Fundamentals</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/paths/azure-sql-fundamentals/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/paths/azure-sql-fundamentals/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4066\"\n    },\n    {\n      \"id\": 3399,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:23.79Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:36:02.557Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Deployment and Migration Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Deployment and Migration Testing - Data Migration Assistannt</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/sql/dma/dma-overview?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/sql/dma/dma-overview?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3417\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3399\"\n    },\n    {\n      \"id\": 3398,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:23.647Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:36:09.117Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Release and Additional Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Release and Additional Resources<br><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/contoso-migration-sql-server-db-to-azure?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/contoso-migration-sql-server-db-to-azure?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3417\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3398\"\n    },\n    {\n      \"id\": 4063,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T21:11:02.677Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:28:26.997Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Tutorial: Database migration to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Microsoft Mechanics video, Database migration to Azure</div><div><br></div><div><a href=\\\"https://azure.microsoft.com/en-us/resources/videos/database-migration-to-azure/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://azure.microsoft.com/en-us/resources/videos/database-migration-to-azure/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4063\"\n    },\n    {\n      \"id\": 4064,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T21:14:14.733Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:28:26.997Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8 - Tutorial: Migrate your relational data stored in SQL to Azure SQL DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Plan and implement the migration of relational data from SQL Server to Azure SQL Database</span><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/migrate-sql-server-relational-data/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/migrate-sql-server-relational-data/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4064\"\n    },\n    {\n      \"id\": 4065,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T21:19:18.7Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:19:32.457Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Review Database Compatibility\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Read the compatibility certification article.</div><div><br></div><div><a href=\\\"http://aka.ms/dbcompat?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">http://aka.ms/dbcompat?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3414\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4065\"\n    },\n    {\n      \"id\": 4061,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T18:53:10.42Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T18:54:44.64Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7 - Additional Resources for Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Governance assets and materials:</div><div><br></div><div><a href=\\\"https://github.com/microsoft/azuredevopsgenerator/tree/master/azuregovernance/docs\\\">azuredevopsgenerator/azuregovernance/docs at master · microsoft/azuredevopsgenerator (github.com)</a><br></div><div><br></div><div>Also review the Governance ADO project in the Generator.</div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4061\"\n    },\n    {\n      \"id\": 4060,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T18:00:46.717Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T18:01:10.87Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Azure Quickstart SQL Managed Instance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Quickstart for SQL Managed Instance</div><div><br></div><div><a href=\\\"https://azure.microsoft.com/en-us/resources/templates/?term=Azure+SQL+managed+instance\\\">Azure Quickstart Templates (microsoft.com)</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3418\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4060\"\n    },\n    {\n      \"id\": 4059,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T17:59:20.687Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T18:01:28.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Azure Quickstart SQL Database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Quickstart code for Azure SQL Database</div><div><br></div><div><a href=\\\"https://azure.microsoft.com/en-us/resources/templates/?term=Azure+SQL+Database\\\">Azure Quickstart Templates (microsoft.com)</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3417\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4059\"\n    },\n    {\n      \"id\": 4058,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-16T17:58:29.927Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T18:01:28.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Azure Quickstart for SQL VMs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Quickstarts for SQL VMs</div><div><br></div><div><a href=\\\"https://azure.microsoft.com/en-us/resources/templates/?term=SQL+Virtual+machine\\\">Azure Quickstart Templates (microsoft.com)</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3416\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4058\"\n    },\n    {\n      \"id\": 3626,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-10T21:23:19.12Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:38:41.773Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Define Objectives and Key Results\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>A key part of driving alignment in the organization is to have a core set of objectives and key results which teams can snap to.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/business-outcomes/okr?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/business-outcomes/okr?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3413\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3626\"\n    },\n    {\n      \"id\": 3412,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:25.53Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-04T21:18:25.53Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"SQL Data Migration documents review\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"SQL Data Migration documents review\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3420\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3412\"\n    },\n    {\n      \"id\": 3411,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:25.407Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-04T21:18:25.407Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"SQL Data Migration Project review meeting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"SQL Data Migration Project review meeting\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3420\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3411\"\n    },\n    {\n      \"id\": 3410,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:25.277Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:37:59.28Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6 - Monitoring and Reporting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Cloud Monitoring guide:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/manage/monitor/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/manage/monitor/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3410\"\n    },\n    {\n      \"id\": 3409,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:25.117Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:37:53.497Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Governance, Security and Compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review how you govern data to ensure compliance and security:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/data-guide/scenarios/securing-data-solutions?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/data-guide/scenarios/securing-data-solutions?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/governance-or-compliance?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/governance-or-compliance?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3409\"\n    },\n    {\n      \"id\": 3408,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:24.987Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:37:48.017Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Manage Costs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Cost management is an effective way to understand usage as well as potential optimization paths.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-costs?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-costs?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3408\"\n    },\n    {\n      \"id\": 3407,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:24.85Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:37:09.607Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Manage Access\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Do the correct individuals have the right access to assets:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-access?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/manage-access?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3407\"\n    },\n    {\n      \"id\": 3406,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:24.72Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:37:00.407Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Organize resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Well organized resources ensure security, simplified management and enables you to track costs and operational issues related to workloads:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div><div><br></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3406\"\n    },\n    {\n      \"id\": 3405,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:24.583Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:36:44.97Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Release and Additional Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Release and Additional How To Resources:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql/managed-instance/how-to-content-reference-guide?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/azure-sql/managed-instance/how-to-content-reference-guide?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3418\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3405\"\n    },\n    {\n      \"id\": 3404,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:24.443Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:36:38.077Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Deployment and Migration Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Deployment and Migration Guide</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql/migration-guides/managed-instance/sql-server-to-managed-instance-guide?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/azure-sql/migration-guides/managed-instance/sql-server-to-managed-instance-guide?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3418\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3404\"\n    },\n    {\n      \"id\": 3403,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:24.313Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:36:29.603Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Assess SQL Managed Instance Compatibility</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-sql/managed-instance/migrate-to-instance-from-sql-server#assess-sql-managed-instance-compatibility?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/azure-sql/managed-instance/migrate-to-instance-from-sql-server#assess-sql-managed-instance-compatibility?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3418\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3403\"\n    },\n    {\n      \"id\": 3402,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:24.18Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:36:15.833Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - OnPrem to Azure SQL Managed Instance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>OnPrem to Azure SQL Managed Instance</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/contoso-migration-rehost-vm-sql-managed-instance?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/contoso-migration-rehost-vm-sql-managed-instance?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3418\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3402\"\n    },\n    {\n      \"id\": 3397,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:23.51Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:33:51.19Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Release and Additional Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Release and Additional Resources</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-migration-guide/optimize-and-transform?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-migration-guide/optimize-and-transform?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3416\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3397\"\n    },\n    {\n      \"id\": 3396,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:23.257Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:33:45.44Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Deployment and Migration Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Deployment and Migration Testing</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-migration-guide/migrate?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-migration-guide/migrate?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3416\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3396\"\n    },\n    {\n      \"id\": 3395,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:23.12Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:33:38.857Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Assessment</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-migration-guide/assess?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-migration-guide/assess?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3416\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3395\"\n    },\n    {\n      \"id\": 3380,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:20.7Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:33:32.14Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - OnPrem to Azure Virtual Machine Overview\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>OnPrem to Azure Virtual Machine Overview</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/migrate/azure-best-practices/contoso-migration-rehost-vm?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">Rehost an application on Azure VMs by using Azure Migrate - Cloud Adoption Framework | Microsoft Docs</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3416\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3380\"\n    },\n    {\n      \"id\": 3379,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:20.47Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:36:54.073Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Manage Governance (Inventory / Operational Compliance)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review Governance policies for the platform as well as determine the data governance needs</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3379\"\n    },\n    {\n      \"id\": 3378,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:20.27Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-04T21:18:20.27Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Sign off on Project delivery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Sign off on Project delivery\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3420\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3378\"\n    },\n    {\n      \"id\": 3390,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:22.417Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:39:36.35Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5 - Cloud Adoption plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Develop / Update Cloud Adoption plan,&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/plan/plan-intro?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/plan/plan-intro?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3414\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3390\"\n    },\n    {\n      \"id\": 3389,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:22.283Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:39:22.15Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4 - Skills Readiness Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Skills Readiness Plan - Leverage Learn portal to help define learning path for data teams</div><div><br></div><div><a href=\\\"http://docs.microsoft.com/learn?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">http://docs.microsoft.com/learn?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3414\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3389\"\n    },\n    {\n      \"id\": 3388,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:22.067Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:39:15.93Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3 - Initial Organization Alignment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Initial Organization Alignment - what are the cloud data functions needed</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-data?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-data?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3414\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3388\"\n    },\n    {\n      \"id\": 3387,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:21.933Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:39:08.31Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Align assets to cloud offerings to calculate pricing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Align assets to cloud offerings to calculate pricing</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/sql/dma/dma-sku-recommend-sql-db?view=sql-server-ver15?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/sql/dma/dma-sku-recommend-sql-db?view=sql-server-ver15?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3414\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3387\"\n    },\n    {\n      \"id\": 3386,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:21.767Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T21:16:23.043Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Digital Estate: Collect Current Inventory with DMA\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Digital Estate: Collect Current Inventory using Database Migrate Assistant</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/sql/dma/dma-overview?view=sql-server-ver15?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/sql/dma/dma-overview?view=sql-server-ver15?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3414\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3386\"\n    },\n    {\n      \"id\": 3385,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:21.613Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:38:36.593Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2 - Align SQL Migration project to business motivations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Define Business Motivations, Security, Cost and Innovation strategies</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/motivations?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/motivations?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3413\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3385\"\n    },\n    {\n      \"id\": 3384,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:21.48Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:38:30.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1 - Review Cloud Adoption Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review Cloud Adoption Plan for principles and motivations.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/strategy/?WT.mc_id=devops_userstory_service_sql-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3413\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3384\"\n    },\n    {\n      \"id\": 3383,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"SQL Proj - Azure BG Test\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:21.35Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-04T21:18:21.35Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Marketplace images\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Marketplace images\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3383\"\n    },\n    {\n      \"id\": 3382,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"SQL Proj - Azure BG Test\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:21.173Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-04T21:18:21.173Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Azure Backup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Backup\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3382\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SQL_Migration/WorkItems/User Story.json",
    "content": "{\n  \"count\": 8,\n  \"value\": [\n    {\n      \"id\": 3420,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:26.983Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:00:03.34Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"CAF SQL Migration Project Review and Closer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF SQL Migration Project Review and Closer\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3412\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3378\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3411\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3420\"\n    },\n    {\n      \"id\": 3419,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:26.853Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:29:34.203Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"SQL Migration - Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"SQL Migration - Governance\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3376\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3406\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3408\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3407\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3379\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3409\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3410\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4061\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3419\"\n    },\n    {\n      \"id\": 3418,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:26.71Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:29:14.367Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Migration - On-Prem to Azure SQL Managed Instance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Migration - On-Prem to Azure SQL Managed Instance\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3403\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3402\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3404\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3375\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3405\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4060\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3418\"\n    },\n    {\n      \"id\": 3417,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:26.53Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:29:14.367Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Migration - On-Prem to Azure SQL Database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Migration - On-Prem to Azure SQL Database\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3400\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3375\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3399\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3398\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4059\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3417\"\n    },\n    {\n      \"id\": 3416,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:26.233Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:29:14.367Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Migration of On-Prem to Azure VM\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Migration of On-Prem to Azure VM\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Migrate\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3397\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3380\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3375\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3395\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3396\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4058\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3416\"\n    },\n    {\n      \"id\": 3415,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:26.073Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T18:57:20.03Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"SQL Migration Readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"CAF SQL Migration Readiness\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3391\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3393\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3392\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3381\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3374\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4063\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4066\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4064\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4062\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3415\"\n    },\n    {\n      \"id\": 3414,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:25.823Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:27:50.143Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Plan and Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Plan and Assessment\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3387\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3388\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3374\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4065\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3386\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3389\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3390\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3414\"\n    },\n    {\n      \"id\": 3413,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"SQL Proj - Azure BG Test\",\n        \"System.TeamProject\": \"SQL Proj - Azure BG Test\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-04T21:18:25.68Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-16T17:27:50.143Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Define Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Define Strategy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3384\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3374\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3626\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3385\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3413\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/ImportSourceCode/Secure Research.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/Secure Research/_git/Secure Research\"\n    },\n    \"serviceEndpointId\": \"$Secure Research-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Secure Research\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/ServiceEndpoints/Secure Research-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Secure Research-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/wayneme/Secure Research/_git/Secure Research\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/Teams/Secure Research Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/Teams/Secure Research Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/Teams/Secure Research Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/Teams/Secure Research Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/Teams/Secure Research Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"22490fe2-94f4-46cd-ab10-927e965680fb\",\n    \"name\": \"Secure Research Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/WorkItems/Epic.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 4076,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-12-18T20:32:34.05Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.69Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Secure Research Planning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>In this EPIC we will cover all the areas of planning needed for a successful Secure Research project</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4281\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4078\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4076\"\n    },\n    {\n      \"id\": 4273,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T15:03:57.857Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.21Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Ready the environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Post planning we will need to start getting the environment Ready for the Secure Research environment.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5144\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5176\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4284\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4273\"\n    },\n    {\n      \"id\": 4077,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-18T20:32:43.233Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Build the Secure Research Landing Zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>In this EPIC we go to build the Secure Research environment using the Plan and Ready resources</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4079\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4077\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/WorkItems/Feature.json",
    "content": "{\n  \"count\": 8,\n  \"value\": [\n    {\n      \"id\": 4078,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2020-12-18T20:32:54.677Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Organization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4276\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4076\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4287\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4275\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4288\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4078\"\n    },\n    {\n      \"id\": 4079,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-18T20:33:04.373Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Secure Research Environment (SRE) Landing Zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>This is the main area where research compute and data will reside.&nbsp; It should be locked down with limited access to the internet at large.&nbsp;</div><div><br></div><div>Microsoft's best practice for landing zones can be found here:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5172\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5241\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4077\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5197\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4079\"\n    },\n    {\n      \"id\": 4284,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T18:31:12.353Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define Target Workload (use case)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Define the primary use case with an understanding of user expectations and data flow.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4273\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5230\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4285\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4286\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4284\"\n    },\n    {\n      \"id\": 5144,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-25T15:14:02.773Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Windows Virtual Desktop  - linked project\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>link to existing WVD project - WVD will be the access plane into the SRE - WVD may be used as an architectural element as a streaming app for access to the DSVM but could also be used to process data - if the latter, it would need to be treated as &quot;in scope&quot; and additional considerations would need to made to secure WVD</div><div><br></div><div><a href=\\\"https://azuredevopsdemogenerator.azurewebsites.net/?name=wvdmigration\\\">https://azuredevopsdemogenerator.azurewebsites.net/?name=wvdmigration</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4273\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5144\"\n    },\n    {\n      \"id\": 4281,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T15:10:06.62Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Assess Enterprise Platform Readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Use the guidance in the Cloud Adoption Framework to ensure platform maturity:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5201\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5210\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5365\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5212\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5204\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4076\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4281\"\n    },\n    {\n      \"id\": 5176,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-15T19:17:39.387Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review all elements of security needed for Secure Research Environment</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4273\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5247\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5176\"\n    },\n    {\n      \"id\": 5197,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:17:58.98Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4079\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5226\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5197\"\n    },\n    {\n      \"id\": 5230,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:36:24.63Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Validate SRE Architectural Elements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5232\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5233\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5234\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5231\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4284\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5235\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5230\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/WorkItems/Task.json",
    "content": "{\n  \"count\": 69,\n  \"value\": [\n    {\n      \"id\": 4283,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T18:29:04.693Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Create VNETs for Data Science Virtual Machines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Secure VNet with subnets for DSVMs and private endpoints for PaaS services (AML, Storage etc)</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/hybrid-networking/network-level-segmentation?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/reference-architectures/hybrid-networking/network-level-segmentation?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4283\"\n    },\n    {\n      \"id\": 5202,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T21:48:26.32Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Privileged Identity Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Once you have deployed your landing zone, identity is a key element to be addressed:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/identity-and-access-management?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/identity-and-access-management?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5201\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5202\"\n    },\n    {\n      \"id\": 5219,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:39:01.783Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Configure network peering\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-peering-overview?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-peering-overview?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5219\"\n    },\n    {\n      \"id\": 5193,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:12:08.307Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Data Movement\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Define data movement into the environment and specifically around who has access to data in each stage</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4286\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5193\"\n    },\n    {\n      \"id\": 5173,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-15T14:30:15.173Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Build Landing Zone Storage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Build storage for data owners to upload data to Azure in less secure area via https</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/framework/security/storage-data-encryption?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/framework/security/storage-data-encryption?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5172\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5173\"\n    },\n    {\n      \"id\": 5246,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T03:04:04.697Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Azure Key Vault\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/key-vault/general/basic-concepts?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/key-vault/general/basic-concepts?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5246\"\n    },\n    {\n      \"id\": 5203,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T21:58:49.867Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Multi-factor Authentication\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>A key component in securing your identity and environment is with the use of multi-factor authentication. Regulatory compliance such as CIS and NIST both have controls for multi-factor auth.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/authentication/concept-mfa-howitworkshttps://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/identity-and-access-management?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/active-directory/authentication/concept-mfa-howitworkshttps://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/identity-and-access-management?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5201\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5203\"\n    },\n    {\n      \"id\": 4291,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T21:13:30.037Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Configure SRE Storage Account\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Add storage account.&nbsp; Only accessible via private endpoint - no public access</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/private-link/tutorial-private-endpoint-storage-portal#:~:text=Create%20storage%20account%20with%20a%20private%20endpoint%201%2cSelect%20copy%20on%20the%20Connection%20string%20for%20key1.?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/private-link/tutorial-private-endpoint-storage-portal#:~:text=Create%20storage%20account%20with%20a%20private%20endpoint%201,Select%20copy%20on%20the%20Connection%20string%20for%20key1.?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4291\"\n    },\n    {\n      \"id\": 4292,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T21:13:46.02Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Configure ADF\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Configure ADF to pick up data from less secure storage and move into the SRE and delete the original copy on the less secure storage</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/quickstart-create-data-factory-portal?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/data-factory/quickstart-create-data-factory-portal?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4292\"\n    },\n    {\n      \"id\": 5200,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T21:00:43.79Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Define Roles for RBAC\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/identity-and-access-management?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/identity-and-access-management?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5201\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5200\"\n    },\n    {\n      \"id\": 5502,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-28T17:03:42.38Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Data Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Refer to the Cloud Adoption Framework governance methodology:&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/methodology?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/methodology?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Deep dive on Data classification, security and data annotation:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/innovate/best-practices/data-classificationhttps://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/methodology?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/innovate/best-practices/data-classificationhttps://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/methodology?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4286\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5502\"\n    },\n    {\n      \"id\": 5183,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T19:18:21.727Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Data Science Virtual Machine (DSVM)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Configure DSVM (Windows or Linux) - Preferable to add AAD or AD integration when possible for authentication so logins can be individually attributable and logged without local computer accounts.&nbsp; Add all libraries required prior to closing down network to internet.&nbsp; Provide access to Secure Storage Account (mount drive - blobfuse etc.)</div><div><br></div><div>Windows:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/provision-vm?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/provision-vm?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Linux:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/dsvm-ubuntu-intro?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/dsvm-ubuntu-intro?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Using an ARM template:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/dsvm-tutorial-resource-manager?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/dsvm-tutorial-resource-manager?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5183\"\n    },\n    {\n      \"id\": 5223,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:48:35.98Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Validate Azure Security Center\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Tutorial: investigate the health of the resources:</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/investigate-resource-health?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/security-center/investigate-resource-health?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5223\"\n    },\n    {\n      \"id\": 5745,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-05-10T16:29:31.917Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Deploy Enterprise-scale landing zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Microsoft has built recommended best practice for landing zones. Leverage the model to rapidly define your operating environment:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5204\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5745\"\n    },\n    {\n      \"id\": 5222,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:48:14.28Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Validate Sentinel\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Tutorial:&nbsp;</div><div>Monitor your Data:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/tutorial-monitor-your-data?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/sentinel/tutorial-monitor-your-data?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Investigate incidents:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/tutorial-investigate-cases?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/sentinel/tutorial-investigate-cases?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Use automation to respond:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/tutorial-respond-threats-playbook?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/sentinel/tutorial-respond-threats-playbook?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5222\"\n    },\n    {\n      \"id\": 5221,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:47:43.057Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Validate Logging\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Tutorial: Log Analytics</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/logs/log-analytics-tutorial?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/logs/log-analytics-tutorial?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5221\"\n    },\n    {\n      \"id\": 5500,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-27T21:20:05.117Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. VPN/Express Route\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Connectivity to Azure</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/connectivity-to-azure?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/connectivity-to-azure?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5210\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5500\"\n    },\n    {\n      \"id\": 5499,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-27T21:19:39.82Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Hub Network\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review your network design</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/define-an-azure-network-topology?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/define-an-azure-network-topology?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5210\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5499\"\n    },\n    {\n      \"id\": 5368,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-22T20:45:25.333Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Azure DevOps\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Each customer should have at least 1 individual who are strong in the skills measured in the AZ-400 track training</span><br></div><div><span style=\\\"display:inline !important;\\\"><br></span></div><div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/browse/?products=azure%2csql-server%2cwindows-server&amp;terms=devops?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/browse/?products=azure%2Csql-server%2Cwindows-server&amp;terms=devops?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></span></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/certifications/exams/az-400?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/certifications/exams/az-400?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5365\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5368\"\n    },\n    {\n      \"id\": 5367,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-22T20:45:13.64Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Azure Security training\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Each customer should have at least 1 individuals who are strong in the skills measured in the AZ-500 track</span><br></div><div><span style=\\\"display:inline !important;\\\"><br></span></div><div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/learn/browse/?products=azure&amp;terms=azure%20security?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/browse/?products=azure&amp;terms=azure%20security?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></span></div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/certifications/exams/az-500?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/certifications/exams/az-500?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5365\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5367\"\n    },\n    {\n      \"id\": 5366,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-22T20:44:58.803Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Azure Administrator Training\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Each customer should have at least 2 individuals who are strong in the skills measured in the AZ-104 track</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/learn/browse/?products=azure&amp;terms=az-104?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/browse/?products=azure&amp;terms=az-104?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5365\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5366\"\n    },\n    {\n      \"id\": 5364,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-22T20:38:15.98Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Documented Processes for communication\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Establish a process for driving documentation and project updates.</div><div><br></div><div>Possible tools:</div><div><ul><li>Teams and or SharePoint</li><li>Azure DevOps or GitHub wikis</li><li>Microsoft Sway for online publications</li></ul><div><br></div></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4275\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5364\"\n    },\n    {\n      \"id\": 5248,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T03:10:44.903Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define data connectors for log ingestion\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/watchlists?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/sentinel/watchlists?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5247\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5248\"\n    },\n    {\n      \"id\": 5245,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T03:03:39.11Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Connect KeyVault\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/connect-azure-key-vault?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/sentinel/connect-azure-key-vault?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5245\"\n    },\n    {\n      \"id\": 5244,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T03:03:13.627Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Connect Azure AD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/connect-azure-active-directory?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/sentinel/connect-azure-active-directory?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5244\"\n    },\n    {\n      \"id\": 5243,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:58:43.463Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Act on compliance remediation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Generate tasks as needed to work through policy/compliance issues.</div><div><br></div><div>Review and remediate your security recommendations:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/security-center-recommendations?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/security-center/security-center-recommendations?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div><div>Compliance Blog:&nbsp;<a href=\\\"https://azure.microsoft.com/en-us/blog/regulatory-compliance-dashboard-in-azure-security-center-now-available?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://azure.microsoft.com/en-us/blog/regulatory-compliance-dashboard-in-azure-security-center-now-available?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5241\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5243\"\n    },\n    {\n      \"id\": 5242,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:57:47.687Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Review compliance status\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review security posture and compliance status</div><div><br></div><div>Azure Policy:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/governance/policy/how-to/get-compliance-data?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/governance/policy/how-to/get-compliance-data?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div><div>Azure Security Center:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/security-center-compliance-dashboard?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/security-center/security-center-compliance-dashboard?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5241\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5242\"\n    },\n    {\n      \"id\": 5240,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:51:43Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Create remediation tasks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Remediate non-compliant resources:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/policy/how-to/remediate-resources?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/governance/policy/how-to/remediate-resources?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5240\"\n    },\n    {\n      \"id\": 5239,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:51:15.03Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Assign institutional policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Additional policies such as SKU limits, regions, operational policies and controls.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/governance/policy/samples/built-in-policies?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/governance/policy/samples/built-in-policies?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5239\"\n    },\n    {\n      \"id\": 5238,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:50:42.93Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Tutorial: Assign regulatory initiative\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>HIPPA/800-171/800-53:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/security-center-compliance-dashboard?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/security-center/security-center-compliance-dashboard?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5236\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5238\"\n    },\n    {\n      \"id\": 5237,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:49:32.65Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Define acceptance criteria\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4285\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5237\"\n    },\n    {\n      \"id\": 5235,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:40:16.057Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Azure Data Factory\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>What is Azure Data Factory:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/introduction?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/data-factory/introduction?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Azure Data Factory Tutorials:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/data-factory-tutorials?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/data-factory/data-factory-tutorials?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5230\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5235\"\n    },\n    {\n      \"id\": 5234,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:38:18.41Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. VNet/Subnet design\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Plan your network:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/network-topology-and-connectivity?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/network-topology-and-connectivity?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5230\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5234\"\n    },\n    {\n      \"id\": 5233,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:37:55.24Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Review Azure Data Science Virtual Machine (DSVM)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/overview?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/overview?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5230\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5233\"\n    },\n    {\n      \"id\": 5232,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:37:34.62Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Azure Machine Learning - Optional\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Machine Learning -&nbsp; optional</div><div><br></div><div>Machine Learning Intro:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/overview-what-is-azure-ml?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/machine-learning/overview-what-is-azure-ml?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Train your first machine learning model:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/tutorial-1st-experiment-sdk-train?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/machine-learning/tutorial-1st-experiment-sdk-train?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5230\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5232\"\n    },\n    {\n      \"id\": 5231,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:37:02.34Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. NVA or Azure Firewall\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Placeholder for firewall if needed</div><div><br></div><div>Introduction to Azure Firewall - MS Learn:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/learn/modules/introduction-azure-firewall?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/introduction-azure-firewall?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Deploy &amp; Configure Azure Firewall:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/firewall/tutorial-firewall-deploy-portal?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/firewall/tutorial-firewall-deploy-portal?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5230\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5231\"\n    },\n    {\n      \"id\": 5228,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:51:21.58Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Validate Performance - Customer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Validate performance:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/framework/scalability/test-checklist?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/framework/scalability/test-checklist?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5226\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5228\"\n    },\n    {\n      \"id\": 5227,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:50:58.237Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. End to End Testing - customer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Testing your application with Well-Architected:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/framework/devops/release-engineering-testing?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/framework/devops/release-engineering-testing?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5226\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5227\"\n    },\n    {\n      \"id\": 5224,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:49:00.69Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Validate Performance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Tutorial:</div><div><br></div><div>Create metric charts with Azure monitor:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/tutorial-metrics-explorer?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/tutorial-metrics-explorer?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Autoscale based on performance:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/autoscale/tutorial-autoscale-performance-schedule?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/autoscale/tutorial-autoscale-performance-schedule?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5220\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5224\"\n    },\n    {\n      \"id\": 5218,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:30:53.063Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Assess platform security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Zero Trust model</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/get-started/security?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/get-started/security?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a>&nbsp;<br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5218\"\n    },\n    {\n      \"id\": 5217,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:30:07.747Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Define Policy Requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>These will be a mix of regulatory and institutional policies required.&nbsp; This will be where we initially agree on exemptions (Duo for MFA etc)</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5217\"\n    },\n    {\n      \"id\": 5216,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:28:50.063Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define encryption and key management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<ul><li><span>Ensure data privacy, compliance, and data residency in Azure</span></li><li><span>Leverage Azure Key Vault for encryption key, secret, and certificate management and establish an automated process for key and certificate rotation</span></li></ul><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/security-governance-and-compliance?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/security-governance-and-compliance?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5215\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5216\"\n    },\n    {\n      \"id\": 5214,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:26:20.86Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Establish Metrics for monitoring\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/data-platform-metrics?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/azure-monitor/essentials/data-platform-metrics?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5212\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5214\"\n    },\n    {\n      \"id\": 5213,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:26:01.16Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Configure Log Analytics workspace \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Note Log Analytics Workspace ID - this could be used as a parameter when policies are assigned as well as a Sentinel enabled workspace.</div><div>Enterprise-scale enables central logging</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/management-and-monitoring?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/management-and-monitoring?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5212\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5213\"\n    },\n    {\n      \"id\": 5211,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:14:06.417Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Plan for your networking, IP and DNS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>allocate IP ranges for SRE VNET and peering strategies with hub and other spokes (WVD, AD DS, etc.)</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/plan-for-ip-addressing?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/plan-for-ip-addressing?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5210\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5211\"\n    },\n    {\n      \"id\": 5209,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:10:57.047Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Establish Cost Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Cost Management is a core discipline of the govern methodology. Ensure that objectives and outcomes are defined.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/guides/complex/cost-management-improvement?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/govern/guides/complex/cost-management-improvement?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5204\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5209\"\n    },\n    {\n      \"id\": 5206,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:04:28.673Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Subscription Organization and Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Read through subscription democratization.&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?tabs=AzureManagementGroupsAndHierarchy?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?tabs=AzureManagementGroupsAndHierarchy?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5204\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5206\"\n    },\n    {\n      \"id\": 5205,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:03:47.607Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Review management group hierarchy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Will policy and RBAC be centralized via management groups and subscription hierarchy or will it be decentralized with minimal inheritance.&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?tabs=AzureManagementGroupsAndHierarchy?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-setup-guide/organize-resources?tabs=AzureManagementGroupsAndHierarchy?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5204\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5205\"\n    },\n    {\n      \"id\": 5199,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:51:21.773Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7. Secure SRE VNet\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Use NSGs or firewalls to limit internet traffic from SRE to only essential services/ports<br><br>Log Analytics Agent</div><div>Guest Config</div><div>WVD</div><div>Qualys</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-network/manage-network-security-group?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-network/manage-network-security-group?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5199\"\n    },\n    {\n      \"id\": 5198,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-04-20T20:44:47.79Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-23T00:42:22.407Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Monitor/Logging\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>This should be done before application of policies - Log Analytics Workspace will need to be configured and identified prior to policy deployment.</div>\",\n        \"System.AssignedTo\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5142\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5198\"\n    },\n    {\n      \"id\": 5196,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:15:56.067Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Data/Model Exportation Requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>What should be allowed out of the SRE?&nbsp; Manual approval?&nbsp; Automated?</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4286\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5196\"\n    },\n    {\n      \"id\": 5195,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:13:49.063Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Define Logging/Monitoring Environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Will we use Azure Monitor/Log Analytics or on prem.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4287\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5195\"\n    },\n    {\n      \"id\": 5194,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:12:41.767Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. ETL Requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Enrichment?&nbsp; Cleaning of data?</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4286\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5194\"\n    },\n    {\n      \"id\": 5181,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-04-15T22:53:44.627Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Provide Institutional Security Policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Here you can find built-in sample policies:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/governance/policy/samples/built-in-policies\\\">https://docs.microsoft.com/en-us/azure/governance/policy/samples/built-in-policies</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4276\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5181\"\n    },\n    {\n      \"id\": 5180,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-15T19:20:56.06Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Connect Azure Security Center to Sentinel\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/connect-azure-security-center?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/sentinel/connect-azure-security-center?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Related\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5179\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Related\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5180\"\n    },\n    {\n      \"id\": 5179,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-15T19:20:34.39Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Connect Azure Activity to Sentinel\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/sentinel/connect-data-sources?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/sentinel/connect-data-sources?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Related\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5180\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Related\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5179\"\n    },\n    {\n      \"id\": 5175,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-04-15T19:16:59.63Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define SIEM Solution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure Sentinel Microsoft's native SIEM solution:&nbsp;<a href=\\\"https://azure.microsoft.com/en-us/resources/quick-start-guide-to-azure-sentinel/\\\">https://azure.microsoft.com/en-us/resources/quick-start-guide-to-azure-sentinel/</a></div><div><br></div><div>The following Azure DevOps project will step you through deploying Sentinel:&nbsp;<a href=\\\"https://azuredevopsdemogenerator.azurewebsites.net/?name=azuresentinel\\\">https://azuredevopsdemogenerator.azurewebsites.net/?name=azuresentinel</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4276\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5175\"\n    },\n    {\n      \"id\": 5192,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:08:27.943Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define SRE Research Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Key stakeholder who will speak to usability, who will be the data owners and users.</div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4288\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5192\"\n    },\n    {\n      \"id\": 5191,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-04-20T20:07:40.74Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Define SRE Security Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Resources dedicated to project - accountable for security decisions for the institution.&nbsp;&nbsp;</span><br></div><div><span style=\\\"display:inline !important;\\\"><br></span></div><div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-security?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-security?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4276\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5191\"\n    },\n    {\n      \"id\": 5190,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-04-20T20:07:17.367Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define Secure Research Environment (SRE) and Governance Risk & Compliance Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Resources dedicated to project - accountable for risk decisions for the institution.&nbsp;&nbsp;</div><div><br></div><div>Guidance for cloud functions:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-governance?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-governance?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4275\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5190\"\n    },\n    {\n      \"id\": 5189,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:06:26.35Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Define SRE IT Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Resources dedicated to project - accountable for implementation of SRE in customer's Azure environment</span><br></div><div><span style=\\\"display:inline !important;\\\"><br></span></div><div><span style=\\\"display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-platform?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-platform?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4287\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5189\"\n    },\n    {\n      \"id\": 5188,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T20:05:12.663Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define Existing Environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Networking, AD, AAD etc.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4287\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5188\"\n    },\n    {\n      \"id\": 5186,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T19:23:42.55Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Define required libraries - packages\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The customer should enumerate the packages and libraries they want installed on the DSVM or configured in the SRE</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4285\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5186\"\n    },\n    {\n      \"id\": 5185,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T19:22:42.85Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define preferred work environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Linux vs Windows Data Science Virtual Machine (DSVM).&nbsp; Agree on OS and style (Linux DSVM is a specific distro - customer should be encouraged to use Azure DSVM images).</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/overview?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/overview?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4285\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5185\"\n    },\n    {\n      \"id\": 5184,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T19:20:30.697Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Enable Azure Defender\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Enable Azure Defender (Security Center Standard) to enable vulnerability management, compliance dashboard.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/azure-defender?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/security-center/azure-defender?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5184\"\n    },\n    {\n      \"id\": 5143,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Work halted\",\n        \"System.CreatedDate\": \"2021-03-25T15:10:56.507Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-23T00:42:19.087Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"1 - Reference Architecture \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5142\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5143\"\n    },\n    {\n      \"id\": 4282,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T15:18:58.563Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-10T15:18:58.563Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"NIST 800-53\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4278\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4282\"\n    },\n    {\n      \"id\": 4280,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T15:09:52.857Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-02-10T15:18:16.02Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"NIST 800-171\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4278\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4280\"\n    },\n    {\n      \"id\": 4279,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T15:09:45.847Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-20T19:20:46.05Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"HIPAA\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4278\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4279\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-SecureResearch/WorkItems/User Story.json",
    "content": "{\n  \"count\": 23,\n  \"value\": [\n    {\n      \"id\": 4275,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T15:08:21.89Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Governance, Risk and Compliance (GRC) Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review Governance Function:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-governance?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-governance?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4078\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5364\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4275\"\n    },\n    {\n      \"id\": 4276,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T15:08:36.42Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Security Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review Cloud Security Function:</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-security?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-security?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5191\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5181\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4078\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5175\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4276\"\n    },\n    {\n      \"id\": 5142,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-03-25T15:10:23.277Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-03-25T15:10:28.367Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Enterprise-scale\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5198\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5143\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5142\"\n    },\n    {\n      \"id\": 4278,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T15:09:31.453Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-04-15T14:31:47.62Z\",\n        \"System.ChangedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.Title\": \"Policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Apply appropriate policy control set to SRE Subscription</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4280\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4282\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4279\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4278\"\n    },\n    {\n      \"id\": 4285,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T18:32:46.047Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. User Expectations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>This should define how the user expects to use the solution and inform the architecture</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5237\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4284\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5186\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5185\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4285\"\n    },\n    {\n      \"id\": 4286,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T18:33:05.2Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Data Flow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">This should define how the user expects to use the solution and inform the architecture</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5502\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5194\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4284\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5193\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5196\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4286\"\n    },\n    {\n      \"id\": 4287,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T18:33:55.73Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. IT Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Team responsible for deployment and development</div><div><br></div><div>Review more functions:&nbsp;</div><div>Central IT:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/central-it?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/central-it?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Cloud Platform:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-platform?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-platform?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div><div>Cloud Adoption:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-adoption?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-adoption?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5188\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5189\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5195\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4078\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4287\"\n    },\n    {\n      \"id\": 4288,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-02-10T18:34:42.72Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Research Team\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The research team will be the users of the SR solution</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4078\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5192\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4288\"\n    },\n    {\n      \"id\": 5172,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-15T14:18:36.647Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Build Data Landing Zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4079\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5173\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5172\"\n    },\n    {\n      \"id\": 5171,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-15T14:17:43.963Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Build Secure Infrastructure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Build out Secure Area of the environment</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4079\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5183\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4283\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5246\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5219\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4292\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5171\"\n    },\n    {\n      \"id\": 5177,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-15T19:18:58.1Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Configure Azure Sentinel - or other SIEM\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Configure Sentinel for SRE - Log Analytics Workspace ID -&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5180\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5179\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5244\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4079\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5245\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5177\"\n    },\n    {\n      \"id\": 5241,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:57:04.367Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. ASC/Policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Undoubtedly there will be a lot of &quot;red&quot; on the compliance page - we will trouble shoot and work through them in this phase</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5242\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4079\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5243\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5241\"\n    },\n    {\n      \"id\": 5178,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-15T19:19:49.147Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Configure Azure Security Center\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/security-center/security-center-introduction?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/security-center/security-center-introduction?WT.mc_id=devops_userstory_service_secureresearch-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5184\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5176\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5178\"\n    },\n    {\n      \"id\": 5247,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T03:09:52.643Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Enable Sentinel\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Enable Azure Sentinel on a Log Analytics Workspace - the workspace ID may be used as a parameter when the policy set is applied.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5248\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5176\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5247\"\n    },\n    {\n      \"id\": 5204,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:01:29.773Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Management group and subscription organization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4281\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5745\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5206\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5205\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5204\"\n    },\n    {\n      \"id\": 5201,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T21:16:34.66Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Identity and Access Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5203\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5200\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4281\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5202\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5201\"\n    },\n    {\n      \"id\": 5210,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:11:44.4Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Network Topology & Connectivity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5500\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4281\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5499\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5211\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5210\"\n    },\n    {\n      \"id\": 5212,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:25:01.157Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Management & Monitoring\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5213\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4281\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5214\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5212\"\n    },\n    {\n      \"id\": 5215,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:27:14.84Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Security, Governance & Compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5217\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5216\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5218\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4281\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5215\"\n    },\n    {\n      \"id\": 5365,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-22T20:44:48.1Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:35:49.92Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Enterprise Skilling and Certifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Planning\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5366\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5367\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/4281\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5368\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5365\"\n    },\n    {\n      \"id\": 5220,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:47:26.983Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Internal Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5222\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5223\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5224\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5221\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5197\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5220\"\n    },\n    {\n      \"id\": 5226,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-20T22:50:40.317Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:31.81Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. User Acceptance Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Run through scenarios with your users to identify potential problems.</div><div>Use current UAT process.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5228\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5197\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5227\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5226\"\n    },\n    {\n      \"id\": 5236,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Secure Research\",\n        \"System.TeamProject\": \"Secure Research\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-04-21T02:48:54.857Z\",\n        \"System.CreatedBy\": \"Clayton Barlow <clbarlow@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-05-12T15:36:11.667Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Assign Policies and Initiatives\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Apply policies/initiatives to defined scope</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5240\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5239\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5238\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5176\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/5236\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/ImportSourceCode/Azure Sentinel Template.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/Server_Migration_Project/_git/Azure Sentinel Template\"\n    },\n    \"serviceEndpointId\": \"$Azure Sentinel Template-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Server_Migration_Project\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/ServiceEndpoints/Azure Sentinel Template-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Azure Sentinel Template-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vandyr/Azure Sentinel Template/_git/Azure Sentinel Template\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/SQL Proj - Azure BG Test Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/SQL Proj - Azure BG Test Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/SQL Proj - Azure BG Test Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/SQL Proj - Azure BG Test Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/SQL Proj - Azure BG Test Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/Server_Migration_Project Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/Server_Migration_Project Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/Server_Migration_Project Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/Server_Migration_Project Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/Server_Migration_Project Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"3ca0e469-0d6e-47fe-953c-3ae49629f44f\",\n    \"name\": \"Server_Migration_Project Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/WorkItems/Epic.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 460,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:12:48.41Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:12:48.41Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"CAF Server Migration Project Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/531\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/476\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/461\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/520\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/511\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/460\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/WorkItems/Feature.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 531,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T06:21:24.437Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"05 STAKEHOLDER SIGN OFF AND CLOSURE\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/460\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/532\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/531\"\n    },\n    {\n      \"id\": 520,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T06:21:24.437Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"04 CAF Migration Operation and Support\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/460\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/526\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/521\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/520\"\n    },\n    {\n      \"id\": 511,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T06:21:24.437Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"03 CAF Server Migration Govern and Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/460\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/516\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/512\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/511\"\n    },\n    {\n      \"id\": 476,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T06:21:24.437Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"02 CAF Server Pre-Config & Migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/495\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/489\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/460\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/500\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/505\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/476\"\n    },\n    {\n      \"id\": 461,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:13:38.007Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T06:21:24.437Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"01 Plan, Assessment & Designing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/465\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/470\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/460\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/462\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/461\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/WorkItems/Task.json",
    "content": "{\n  \"count\": 58,\n  \"value\": [\n    {\n      \"id\": 536,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Sign off on Project delivery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/532\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/536\"\n    },\n    {\n      \"id\": 535,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Lessons Learnt documentation, Troubleshooting Guide for future supporting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/532\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/535\"\n    },\n    {\n      \"id\": 534,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Server Migration Project documentation and Supported documents review\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/532\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/534\"\n    },\n    {\n      \"id\": 533,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Server Migration Project review meeting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/532\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/533\"\n    },\n    {\n      \"id\": 530,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Documentation of monitoring and reporting process\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/526\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/530\"\n    },\n    {\n      \"id\": 529,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Automation of reporting and alerting configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/526\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/529\"\n    },\n    {\n      \"id\": 528,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Configure Report Building\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/526\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/528\"\n    },\n    {\n      \"id\": 527,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Configure Monitoring System\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/526\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/527\"\n    },\n    {\n      \"id\": 525,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Cutover and Decommission\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/521\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/525\"\n    },\n    {\n      \"id\": 524,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Protect and recover\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/521\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/524\"\n    },\n    {\n      \"id\": 523,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Operational compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/521\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/523\"\n    },\n    {\n      \"id\": 522,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Inventory and visibility\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/521\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/522\"\n    },\n    {\n      \"id\": 519,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/516\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/519\"\n    },\n    {\n      \"id\": 518,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Security Implemtation and reporting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/516\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/518\"\n    },\n    {\n      \"id\": 517,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Governance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/516\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/517\"\n    },\n    {\n      \"id\": 515,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Release Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/512\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/515\"\n    },\n    {\n      \"id\": 514,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Transition to Support\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/512\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/514\"\n    },\n    {\n      \"id\": 513,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Server migration Functional Validation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/512\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/513\"\n    },\n    {\n      \"id\": 510,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration: Documentation of implementation and Change request for performing the activity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/505\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/510\"\n    },\n    {\n      \"id\": 509,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Test and Validate the VMWare Virtual server migration to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/505\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/509\"\n    },\n    {\n      \"id\": 508,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migrate VMWare Virtual Servers to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/505\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/508\"\n    },\n    {\n      \"id\": 507,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Configure the Azure envirnment based on the assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/505\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/507\"\n    },\n    {\n      \"id\": 506,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Prepare the VMWare Virtual Server Assessment and requirement\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/505\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/506\"\n    },\n    {\n      \"id\": 504,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Test and Validate the  Hyper V Host and Virtual server migration to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/500\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/504\"\n    },\n    {\n      \"id\": 503,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migrate  Hyper V Host and Virtual Servers to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/500\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/503\"\n    },\n    {\n      \"id\": 502,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Configure the Azure envirnment based on the assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/500\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/502\"\n    },\n    {\n      \"id\": 501,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Prepare the Hyper V Host and Virtual Server Assessment and requirement\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/500\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/501\"\n    },\n    {\n      \"id\": 499,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Test and Validate the physical server migration to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/495\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/499\"\n    },\n    {\n      \"id\": 498,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migrate Physical Servers to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/495\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/498\"\n    },\n    {\n      \"id\": 497,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Configure the Azure envirnment based on the assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/495\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/497\"\n    },\n    {\n      \"id\": 496,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Prepare the Physical Server Assessment and requirement\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/495\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/496\"\n    },\n    {\n      \"id\": 494,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration: Application Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/489\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/494\"\n    },\n    {\n      \"id\": 493,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration: Infrastructure Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/489\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/493\"\n    },\n    {\n      \"id\": 492,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration: Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/489\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/492\"\n    },\n    {\n      \"id\": 491,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/489\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/491\"\n    },\n    {\n      \"id\": 490,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration Pre-requirement configuration and validation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/489\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/490\"\n    },\n    {\n      \"id\": 488,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Cost and Billing of Azure resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/488\"\n    },\n    {\n      \"id\": 487,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Site-to-Site Connectivity Summary\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/487\"\n    },\n    {\n      \"id\": 486,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Azure Migration Readiness\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/486\"\n    },\n    {\n      \"id\": 485,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Azure tools and Approaches\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/485\"\n    },\n    {\n      \"id\": 484,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Managing Access\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/484\"\n    },\n    {\n      \"id\": 483,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Azure Role Based Access\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/483\"\n    },\n    {\n      \"id\": 482,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Azure Subscription target\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/482\"\n    },\n    {\n      \"id\": 481,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Azure Cloud Resources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/481\"\n    },\n    {\n      \"id\": 480,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Azure Setup and Configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/480\"\n    },\n    {\n      \"id\": 479,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Prep on-prem Infrastructure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/479\"\n    },\n    {\n      \"id\": 478,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Create Pre-configuration documentation and Change Request\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/478\"\n    },\n    {\n      \"id\": 475,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Develop Cloud Adoption plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/470\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/475\"\n    },\n    {\n      \"id\": 474,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Businesss logic and Infrastructure dependencies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/470\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/474\"\n    },\n    {\n      \"id\": 473,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Data requirement and Classification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/470\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/473\"\n    },\n    {\n      \"id\": 472,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Skills Readiness and Role Based Responsibilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/470\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/472\"\n    },\n    {\n      \"id\": 471,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Organizational alignment to support the Adaption plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/470\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/471\"\n    },\n    {\n      \"id\": 469,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Planning, Assessement & Desiging review and SignOff\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/465\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/469\"\n    },\n    {\n      \"id\": 468,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Security and Tisk Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/465\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/468\"\n    },\n    {\n      \"id\": 467,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Network Topology Desiging\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/465\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/467\"\n    },\n    {\n      \"id\": 466,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Detailed migration plan and effort documentation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/465\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/466\"\n    },\n    {\n      \"id\": 464,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:14:46.173Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:14:46.173Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Inventory and Rationalize Digital Estate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/462\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/464\"\n    },\n    {\n      \"id\": 463,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:14:30.083Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:14:30.083Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Define Strategy CAF Plan Template\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/462\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/463\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-ServerMigration/WorkItems/User Story.json",
    "content": "{\n  \"count\": 13,\n  \"value\": [\n    {\n      \"id\": 532,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"CAF Server Migration Project Review and Clouser\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/536\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/535\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/534\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/533\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/531\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/532\"\n    },\n    {\n      \"id\": 526,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Monitoring and Reporting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/529\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/528\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/527\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/530\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/520\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/526\"\n    },\n    {\n      \"id\": 521,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Manage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/524\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/525\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/523\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/522\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/520\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/521\"\n    },\n    {\n      \"id\": 516,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Govern\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/511\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/518\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/519\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/517\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/516\"\n    },\n    {\n      \"id\": 512,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Server Migration Transition\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/515\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/514\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/513\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/511\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/512\"\n    },\n    {\n      \"id\": 505,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration of VMware to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/509\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/476\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/510\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/508\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/505\"\n    },\n    {\n      \"id\": 500,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration of Hyper-V to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/476\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/501\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/502\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/503\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/504\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/500\"\n    },\n    {\n      \"id\": 495,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Migration of On-Prem to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/496\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/498\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/497\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/476\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/499\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/495\"\n    },\n    {\n      \"id\": 489,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:31:41.113Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Adopt-Migrate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/491\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/490\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/494\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/492\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/493\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/476\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/489\"\n    },\n    {\n      \"id\": 477,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Server Migration Pre-Configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/476\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/488\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/478\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/485\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/483\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/486\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/487\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/484\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/482\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/480\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/481\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/479\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/477\"\n    },\n    {\n      \"id\": 470,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Cloud Assessment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/471\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/474\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/473\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/475\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/472\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/461\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/470\"\n    },\n    {\n      \"id\": 465,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:17:14.167Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"CAF Server Migration Design\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/468\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/466\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/469\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/467\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/461\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/465\"\n    },\n    {\n      \"id\": 462,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Server_Migration_Project\",\n        \"System.TeamProject\": \"Server_Migration_Project\",\n        \"System.IterationPath\": \"Server_Migration_Project\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-07-15T01:14:03.65Z\",\n        \"System.CreatedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.ChangedDate\": \"2020-07-15T01:14:03.65Z\",\n        \"System.ChangedBy\": \"Viswanadham kudapu <Viswanadham.kudapu@peopletech.com>\",\n        \"System.Title\": \"Define Strategy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/464\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/461\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/463\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Viswanadhamkudapu/_apis/wit/workItems/462\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/ImportSourceCode/SAP on Azure.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/Unified Data Governance/_git/SAP on Azure\"\n    },\n    \"serviceEndpointId\": \"$SAP on Azure-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Unified Data Governance\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/ServiceEndpoints/SAP on Azure-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"SAP on Azure-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/lpcs/Unified Data Governance/_git/SAP on Azure\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"5cf18184-86f6-404c-a7fe-b84f8caa2df1\",\n    \"name\": \"Unified Data Governance Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/Teams/Unified Data Governance Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/Teams/Unified Data Governance Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/Teams/Unified Data Governance Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/Teams/Unified Data Governance Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/Teams/Unified Data Governance Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 7030,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:03.073Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:03.073Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Unified Data Governance on Azure Planning \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Unified Data Governance on Azure Planning \",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7037\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7030\"\n    },\n    {\n      \"id\": 7029,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:02.78Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:02.78Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"2. Unified Data Governance on Azure Implementation \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Unified Data Governance on Azure Implementation \",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7034\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7035\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7032\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7031\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7033\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7036\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7029\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/WorkItems/Feature.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 7037,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:05.03Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:05.03Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Planning for Unified Data Governance on Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Planning for Unified Data Governance on Azure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7127\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7030\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7126\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7037\"\n    },\n    {\n      \"id\": 7036,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:04.707Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:04.707Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Implementation of Architecture Strategy and Execution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implementation of Architecture Strategy and Execution\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7029\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7111\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7110\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7036\"\n    },\n    {\n      \"id\": 7035,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:04.477Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:04.477Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"2. Phase 1: Pilot\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:14px;text-align:left;display:inline !important;\\\">Discussion with all stakeholders to gather a full set of requirements. Different personas must participate to agree on a subset of requirements to complete for each phase of the project.</span><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">In this phase, Purview must be created and configured for a very small set of users. Usually, it is just a group of 2-3 people working together to run through end-to-end scenarios. They are considered the advocates of Purview in their organization. The main goal of this phase is to ensure key functionalities can be met and the right stakeholders are aware of the project.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7125\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7029\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7124\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7123\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7035\"\n    },\n    {\n      \"id\": 7034,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:04.193Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:04.193Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"3. Phase 2: Minimum viable product\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Once you have the agreed requirements and participated business units to onboard Purview, the next step is to work on a Minimum Viable Product (MVP) release. In this phase, you will expand the usage of Purview to more users who will have additional needs horizontally and vertically. There will be key scenarios that must be met horizontally for all users such as glossary terms, search, and browse. There will also be in-depth requirements vertically for each business unit or group to cover specific end-to-end scenarios such as lineage from Azure Data Lake Storage to Azure Synapse DW to Power BI.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7121\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7029\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7119\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7118\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7120\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7122\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7034\"\n    },\n    {\n      \"id\": 7033,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:03.91Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:03.91Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"4. Phase 3: Pre-production\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Once the MVP phase has passed, it’s time to plan for pre-production milestone. Your organization may decide to have a separate instance of Purview for pre-production and production, or keep the same instance but restrict access. Also in this phase, you may want to include scanning on on-premise data sources such as SQL Server. If there is any gap in data sources not supported by Purview, it is time to explore the Atlas API to understand additional options.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7117\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7115\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7029\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7116\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7033\"\n    },\n    {\n      \"id\": 7032,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:03.69Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:03.69Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"5. Phase 4: Production\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">The above phases should be followed to create an effective information governance, which is the foundation for better governance programs.&nbsp;</p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><b>The outcome of this phase is unified data governance in practice</b></p><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Data governance will help your organization prepare for the growing trends such as AI, Hadoop, IoT, and blockchain. It is just the start for many things data and analytics, and there is plenty more that can be discussed. The outcome of this solution would deliver:</p><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\"><strong style=\\\"font-weight:600;\\\">Business Focused</strong><span>&nbsp;</span>- A solution that is aligned to business requirements and scenarios over technical requirements.</li><li style=\\\"margin:0px;list-style:outside none disc;\\\"><strong style=\\\"font-weight:600;\\\">Future Ready</strong><span>&nbsp;</span>- A solution will maximize default features of the platform and use standardized industry practices for configuration or scripting activities to support the advancements/evolution of the platform.</li></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7029\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7112\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7113\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7114\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7032\"\n    },\n    {\n      \"id\": 7031,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:03.423Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:03.423Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"6. Post Implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Post Implementation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7058\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7029\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7038\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7057\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7039\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7031\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/WorkItems/Task.json",
    "content": "{\n  \"count\": 72,\n  \"value\": [\n    {\n      \"id\": 7109,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:32.36Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:32.36Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Review Functional Requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:1rem 0px 0px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Some of the common data governance objectives that you might want to identify in the early phases, include:</p><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\">Maximizing the business value of your data</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Enabling a data culture where data consumers can easily find, interpret, and trust data</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Increasing collaboration amongst various business units to provide a consistent data experience</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Fostering innovation by accelerating data analytics to reap the benefits of the cloud</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Decreasing time to discover data through self-service options for various skill groups</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Reducing time-to-market for the delivery of analytics solutions that improve service to their customers</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">Reducing the operational risks that are due to the use of domain-specific tools and unsupported technology</li></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7127\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7109\"\n    },\n    {\n      \"id\": 7108,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:32.137Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:32.137Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Scan - Azure Multiple Sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-multiple-sources?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7108\"\n    },\n    {\n      \"id\": 7107,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:31.883Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:31.883Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Scan - Azure Data Lake Storage Gen 1 (ADLSGen1)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\">Networking: Verify if Service Endpoint is ON, AND check if 'Allow all Azure services to access this Data Lake Storage Gen1 account' is enabled.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Permissions: Verify if Azure Purview MSI has access to Read/Execute.</li></ul>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-adls-gen1?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7107\"\n    },\n    {\n      \"id\": 7106,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:31.65Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:31.65Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Scan Azure hosted Data Sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/manage-data-sources\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Manage data sources in Azure Purview (Preview) - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-synapse-analytics\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">How to scan Dedicated SQL pools - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-synapse-workspace\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">How to scan Azure Synapse Workspaces - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-multiple-sources\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Scan multiple sources in Azure Purview - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-blob-storage-source\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">How to scan Azure storage blob - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-cosmos-database\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">How to scan Azure Cosmos Database (SQL API) - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-data-explorer\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">How to scan Azure Data Explorer - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-adls-gen1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Register and scan Azure Data Lake Storage (ADLS) Gen1 - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-adls-gen2\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Register and scan Azure Data Lake Storage (ADLS) Gen2 - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-sql-database\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Register and scan Azure SQL Database - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-sql-database-managed-instance\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">Register and scan Azure SQL Database Managed Instance - Azure Purview | Microsoft Docs</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7064\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7105\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7104\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7108\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7065\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7066\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7069\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7075\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7107\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7076\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7067\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7068\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7063\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7121\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\"\n    },\n    {\n      \"id\": 7105,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:30.963Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:30.963Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Scan - Azure Data Lake Storage Gen 2 (ADLSGen2)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><font color=\\\"#24292e\\\" face=\\\"-apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji\\\"><span style=\\\"font-size:16px;\\\"><b>Setup:</b><br></span></font><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\">RBAC: Verify and assign Azure RBAC 'Reader' role to Azure Purview MSI on selected scope.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">RBAC: Verify and assign Azure RBAC 'Storage Blob Data Reader role' to Azure Purview MSI in each of the subscriptions below selected scope.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Networking: Verify and report if Private Endpoint is created for storage and enabled for Blob Storage.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Service Endpoint: If Private Endpoint is disabled check if Service Endpoint is ON, AND enable 'Allow trusted Microsoft services to access this storage account'.</li></ul><div><font color=\\\"#24292e\\\" face=\\\"-apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji\\\"><span style=\\\"font-size:16px;\\\">Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-adls-gen2?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</span></font></div></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7105\"\n    },\n    {\n      \"id\": 7104,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:30.69Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:30.69Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Scan Power BI\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-power-bi-tenant?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7104\"\n    },\n    {\n      \"id\": 7103,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:30.467Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:30.467Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Scan on premises data sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"2. Scan on premises data sources\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7121\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7071\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7072\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7103\"\n    },\n    {\n      \"id\": 7102,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:29.98Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:29.98Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Scan sources with custom API (Apache Atlas)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://github.com/wjohnson/pyapacheatlas?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7121\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7102\"\n    },\n    {\n      \"id\": 7101,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:29.76Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:29.76Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Scan Teradata hosted data sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"\\\">Please follow this </span><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-teradata-source?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"\\\">guidance</a><span style=\\\"\\\">.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7101\"\n    },\n    {\n      \"id\": 7100,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:29.54Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:29.54Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Scan SAP data sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"\\\">Please follow this </span><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/abap-functions-deployment-guide?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"\\\">guidance</a><span style=\\\"\\\"> for metadata extraction of ABAP function module for SAP R/3.</span><br></div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-sapecc-source?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a> to register SAP ECC Source</div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-saps4hana-source?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a> to register SAP S/4HANA source<br><h1 style=\\\"font-size:2.5rem;margin:-10px 0px 0px;font-weight:600;word-break:break-word;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\\\"><br></h1></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7070\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7100\"\n    },\n    {\n      \"id\": 7099,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:29.32Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:29.32Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Scan Oracle Data source\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-oracle-source?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7070\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7099\"\n    },\n    {\n      \"id\": 7098,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:29.093Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:29.093Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Define collections\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/manage-data-sources#manage-collections?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7110\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7098\"\n    },\n    {\n      \"id\": 7097,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:28.86Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:28.86Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Create/Import glossary terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><span style=\\\"font-size:16px;text-align:start;display:inline !important;\\\">Business glossary term defines the business vocabulary for an organization and helps in bridging the gap between various departments in your company.&nbsp;<span style=\\\"font-size:14px;display:inline !important;\\\">In most cases, your organization may already develop a collection of glossary terms and term assignment to assets. This will require an import process into Purview via .csv file.</span></span></span></div><div><br></div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/how-to-create-import-export-glossary?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7110\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7097\"\n    },\n    {\n      \"id\": 7096,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:28.637Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:28.637Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Review / Define sensitive data classification definitions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/supported-classifications?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7122\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7096\"\n    },\n    {\n      \"id\": 7095,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:28.413Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:28.413Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Review Technical Requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ol style=\\\"box-sizing:border-box;padding-left:40px;margin:16px 0px 16px 38px;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">What are the main organization data sources and data systems?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">For data sources that are not supported yet by Purview, what are my options?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">How many Purview instances do we need?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">Who are the users?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">Who can scan new data sources?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">Who can modify content inside of Purview?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">What process can I use to improve the data quality in Purview?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">How to bootstrap the platform with existing critical assets, glossary terms, and contacts?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">How to integrate with existing systems?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">How to gather feedback and build a sustainable process?</li><li style=\\\"box-sizing:border-box;list-style:outside none decimal;margin:0px;\\\">What type of business value are we trying to maximize?&nbsp;</li></ol><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7127\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7095\"\n    },\n    {\n      \"id\": 7094,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:28.167Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:28.167Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Create custom classifications and rules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">The Azure Purview Data Catalog provides a large set of default classifications that represent typical personal data types that you might have in your data estate.&nbsp;</span><br></div><div><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;color:rgb(23, 23, 23);font-size:16px;\\\"><br></span></div><div><span style=\\\"font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;color:rgb(23, 23, 23);font-size:16px;\\\">Classifications are annotations that can be assigned to entities. The flexibility of classifications enables you to use them for multiple scenarios such as:</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><ul style=\\\"margin:16px 0px 16px 38px;list-style:none;\\\"><li style=\\\"margin:0px;list-style:outside none disc;\\\">understanding the nature of data stored in the data assets</li><li style=\\\"margin:0px;list-style:outside none disc;\\\">defining access control policies</li></ul><p style=\\\"margin:1rem 0px 0px;\\\">Purview has more than 100 system classifiers today and you can define your own classifiers in catalog. As part of the scanning process, we automatically detect these classifications and apply them to data assets and schemas. However, you can override them at any point of time. The human overrides are never replaced by automated scans.</p></span></div><div><br></div><div><br></div><div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/create-a-custom-classification-and-classification-rule?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7122\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7094\"\n    },\n    {\n      \"id\": 7093,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:27.953Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:27.953Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Create Purview Account and Set up the starter kit\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Go through<span>&nbsp;</span></span><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/create-catalog-portal?wt.mc_id=caf-ado_datagov_content_1\\\">Quick Start&nbsp;</a>&nbsp;and set up the&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/purview/tutorial-scan-data?wt.mc_id=caf-ado_datagov_content_1\\\">Starter Kit</a>&nbsp;</span><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">to demo Purview to all stakeholders.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7125\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7093\"\n    },\n    {\n      \"id\": 7092,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:27.73Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:27.73Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Configure Azure Data Factory (ADF) for lineage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Identify key pipelines and data assets. Gather all information required to connect to an internal ADF account.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Please refer to below guidance</span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><br></span></div><div><font color=\\\"#171717\\\" face=\\\"Segoe UI, SegoeUI, Helvetica Neue, Helvetica, Arial, sans-serif\\\">Connect a data factory to <a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/connect-data-factory-to-azure-purview?wt.mc_id=caf-ado_datagov_content_1\\\">Purview&nbsp;</a></font></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/how-to-discover-explore-purview-data?wt.mc_id=caf-ado_datagov_content_1\\\">Discover and Explore</a> data in data factory</span></div><div>Push <a href=\\\"https://docs.microsoft.com/en-us/azure/data-factory/turorial-push-lineage-to-purview?wt.mc_id=caf-ado_datagov_content_1\\\">Data Factory Lineage data </a>to Azure Preview</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7124\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7092\"\n    },\n    {\n      \"id\": 7091,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:27.503Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:27.503Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Configure data share for lineage\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/how-to-link-azure-data-share?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7124\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7091\"\n    },\n    {\n      \"id\": 7090,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:27.287Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:27.287Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Scan a data source\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Add the data source and set up a scan. Ensure the scan successfully detects all assets.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/tutorial-data-sources-readiness?wt.mc_id=caf-ado_datagov_content_1\\\">guidance </a>and one <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/tutorial-msi-configuration?wt.mc_id=caf-ado_datagov_content_1\\\">more</a></span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7125\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7090\"\n    },\n    {\n      \"id\": 7089,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:27.05Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:27.05Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Review your industry/domain specific glossary terms (Taxonomy)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">A glossary provides vocabulary for business users. &nbsp;It consists of business terms that can be related to each other and allows them to be categorized so that they can be understood in different contexts. These terms can be then mapped to assets like a database, tables, columns etc. This helps in abstracting the technical jargon associated with the data repositories and allows the business user to discover and work with data in the vocabulary that is more familiar to them.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/concept-business-glossary?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7122\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7089\"\n    },\n    {\n      \"id\": 7088,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:26.797Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:26.797Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Add sensitive labels (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Sensitivity labels are a type of annotation that allows you to classify and protect your organization's data, without hindering productivity and collaboration. Sensitivity labels are used to identify the categories of classification types within your organizational data, and group the policies that you wish to apply to each category. Purview makes use of the same sensitive information types as Microsoft 365, which allows you to stretch your existing security policies and protection across your entire content and data estate. The same labels can be shared across Microsoft Office products and data assets in Purview.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/create-sensitivity-label?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7122\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7088\"\n    },\n    {\n      \"id\": 7087,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:26.577Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:26.577Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Add contacts to assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Assign owners for the Assets</div><div><br></div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/how-to-bulk-edit-assets?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7122\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7087\"\n    },\n    {\n      \"id\": 7086,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:26.337Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:26.337Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Onboard addition users using Purview managed users\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Purview Admin to work with the Azure Active Directory Admin to establish new Security Groups to grant access to Purview.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/catalog-permissions?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7122\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7086\"\n    },\n    {\n      \"id\": 7085,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:26.067Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:26.067Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Scan AWS Sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Scan AWS Sources\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7121\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7084\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7085\"\n    },\n    {\n      \"id\": 7084,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:25.843Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:25.843Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Scan AWS S3 bucket\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-amazon-s3?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7085\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7084\"\n    },\n    {\n      \"id\": 7083,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:25.607Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:25.607Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Define team roles, permissions, responsibilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review roles in this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/deployment-best-practices#include-the-right-stakeholders?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div><div><br></div><div>The Cloud Adoption Framework references functions needed:&nbsp;</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-data\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/organize/cloud-data</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7127\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7083\"\n    },\n    {\n      \"id\": 7082,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:25.377Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:25.377Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Assess region availability for scan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Depending on the region of the data sources and organizational requirements on compliance and security, you may want to consider what regions must be available for scanning.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7117\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7082\"\n    },\n    {\n      \"id\": 7081,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:25.15Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:25.15Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Identify all data sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Identify all data sources\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7081\"\n    },\n    {\n      \"id\": 7080,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:24.493Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:24.493Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement connections\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement connections\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7080\"\n    },\n    {\n      \"id\": 7079,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:24.27Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:24.27Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Understand firewall concept when scanning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">This step requires some exploration of how the organization configures its firewall and how Purview can authenticate itself to access the data sources for scanning.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7117\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7079\"\n    },\n    {\n      \"id\": 7078,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:24.053Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:24.053Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Understand Private Link concept when scanning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/catalog-private-link?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7117\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7078\"\n    },\n    {\n      \"id\": 7077,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:23.837Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:23.837Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Use Purview REST API for integration scenarios\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/tutorial-using-rest-apis?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7117\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7077\"\n    },\n    {\n      \"id\": 7076,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:19.84Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:19.84Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Scan - Azure dedicated SQL Pool (formerly SQL DW)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-synapse-analytics?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7076\"\n    },\n    {\n      \"id\": 7075,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:19.617Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:19.617Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Scan - Azure Data Explorer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-data-explorer?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7075\"\n    },\n    {\n      \"id\": 7074,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:19.4Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:19.4Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Tutorial: Enterprise-scale learning path (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Follow the<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/learn/paths/enterprise-scale-architecture/?wt.mc_id=caf-ado_datagov_content_1\\\">tutorial<span>&nbsp;</span></a><span style=\\\"display:inline !important;\\\">as a preparation effort&nbsp;</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7111\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7074\"\n    },\n    {\n      \"id\": 7073,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:19.18Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:19.18Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Verify Landing Zone implementation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"display:inline !important;\\\">Please review this<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7111\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7073\"\n    },\n    {\n      \"id\": 7072,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:18.96Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:18.96Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Scan - On-prem SQL Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">The scan will require setting up<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></span><font color=\\\"rgba(0, 0, 0, 0)\\\" face=\\\"Segoe UI, SegoeUI, Helvetica Neue, Helvetica, Arial, sans-serif\\\"><span style=\\\"text-decoration-style:initial;text-decoration-color:initial;cursor:pointer;\\\"><u><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/manage-integration-runtimes?wt.mc_id=caf-ado_datagov_content_1\\\">Self-hosted Integration Runtime</a></u></span></font><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>and adding SQL Server as a data source.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\">Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-on-premises-sql-server?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7103\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7072\"\n    },\n    {\n      \"id\": 7071,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:18.743Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:18.743Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Scan - Teradata\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-teradata-source?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7103\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7071\"\n    },\n    {\n      \"id\": 7070,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:18.4Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:18.4Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Scan Saas Sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Scan Saas Sources\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7121\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7100\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7099\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7070\"\n    },\n    {\n      \"id\": 7069,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:18.17Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:18.17Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"7. Scan - Cosmos DB (SQL API)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-cosmos-database?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7069\"\n    },\n    {\n      \"id\": 7068,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:17.487Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:17.487Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"8. Scan - Hive Metastore Database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-hive-metastore-source?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7068\"\n    },\n    {\n      \"id\": 7067,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:17.267Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:17.267Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"9. Scan - Azure Files\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-files-storage-source?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7067\"\n    },\n    {\n      \"id\": 7066,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:17.043Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:17.043Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"10. Scan - Azure Synapse (Synapse)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">RBAC: Verify if Azure Purview MSI has 'Storage Blob Data Reader role' in each of the subscriptions below the selected scope.</p></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">RBAC: Verify if Azure Purview MSI has 'Reader' role on selected scope.</p></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">SQL Servers (dedicated pools):</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Network: Verify if Public or Private Endpoint is enabled.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Firewall: Verify if 'Allow Azure services and resources to access this server' is enabled.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Azure AD Admin: Check if Azure SQL Server has AAD Authentication.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">AAD Admin: Populate Azure SQL Server AAD Admin user or group.</li></ul></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">SQL Databases:</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">SQL Role: Check if Azure Purview MSI has db_datareader role.</li></ul></li></ul></div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-synapse-workspace?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7066\"\n    },\n    {\n      \"id\": 7065,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:16.82Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:16.82Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"11. Scan - Azure SQL Managed Instance (AzureSQLMI)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">SQL Managed Instance Servers:</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Network: Verify if Public or Private Endpoint is enabled.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">ProxyOverride: Verify if Azure SQL Managed Instance is configured as Proxy or Redirect.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Networking: Verify if NSG has an inbound rule to allow AzureCloud over required ports; Redirect: 1433 and 11000-11999 or Proxy: 3342.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Azure AD Admin: Check if Azure SQL Server has AAD Authentication.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">AAD Admin: Populate Azure SQL Server AAD Admin user or group.</li></ul></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">SQL Databases:</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">SQL Role: Check if Azure Purview MSI has db_datareader role.</li></ul></li></ul>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-sql-database-managed-instance?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7065\"\n    },\n    {\n      \"id\": 7064,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:16.137Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:16.137Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"12. Scan - Azure SQL Database (AzureSQLDB)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 46);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;\\\"><li style=\\\"box-sizing:border-box;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">SQL Servers:</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Network: Verify if Public or Private Endpoint is enabled.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Firewall: Verify if 'Allow Azure services and resources to access this server' is enabled.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">Azure AD Admin: Check if Azure SQL Server has AAD Authentication.</li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\">AAD Admin: Populate Azure SQL Server AAD Admin user or group.</li></ul></li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><p style=\\\"box-sizing:border-box;margin-top:16px;margin-bottom:16px;\\\">SQL Databases:</p><ul style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">SQL Role: Check if Azure Purview MSI has db_datareader role.</li></ul></li></ul>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-sql-database?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7064\"\n    },\n    {\n      \"id\": 7063,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:15.917Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:15.917Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"13. Scan - Azure Blob Storage (BlobStorage)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">RBAC: Verify if Azure Purview MSI has 'Storage Blob Data Reader role' in each of the subscriptions below the selected scope.</span><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;\\\">RBAC: Verify if Azure Purview MSI has 'Reader' role on selected scope.</div><div style=\\\"box-sizing:border-box;\\\">Service Endpoint: Verify if Service Endpoint is ON, AND check if 'Allow trusted Microsoft services to access this storage account' is enabled.</div><div style=\\\"box-sizing:border-box;\\\">Networking: check if Private Endpoint is created for storage and enabled for Blob.</div><br></div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-blob-storage-source?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7063\"\n    },\n    {\n      \"id\": 7062,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:15.253Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:15.253Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Discover Subtask\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Discover Subtask\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7061\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7062\"\n    },\n    {\n      \"id\": 7061,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:14.61Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:14.61Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Maintain and update processes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">PROCESSES</span></b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">To manage data as a valuable organizational asset, four processes must be involved in data governance. This requires initiatives that build competences, roles and responsibilities assignment, and investments in technologies that will support the processes for data governance to be effective. These processes may be focused on a particular business function as an example to proof the efficiency, before being deployed enterprise wide. The business function selected should be such that involves critical business data assets. The 4 processes are:</span></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Discover</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Define</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Analyze</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Measure and Monitor</span></li></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7112\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7062\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7061\"\n    },\n    {\n      \"id\": 7060,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:14.393Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:14.393Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Maintain and update policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">An organization needs data governance policy so as to align with its corprate strategy. Corporate strategies are usually futuristic. Is the data in the organization good enough to meet those strategic goals? If the answer is no, then why is the data not good enough? Hence, what do we need to do with the data to enable the strategic goals? With that in mind, it then becomes clearer on policies to formulate for data governance.</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\">Data governance policies are designed as a collection of strategic principles and guidelines that describe the development of common data definitions, business terms, processes for data acquisition, creation, capture, integrity, quality, security and usage/access, retention, archival and destruction. These strategic principles must align with the strategic objectives of the company and necessary regulatory authorities.</p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">Most organizations kind of have some policies, but usually lack a formal structure, coordination, consistency and communication/awareness. These means that these policies are either in silos, implemented in silos, alignment in silos, and/or awareness is in silos, therefore disparate and lack organizational and enterprise wide structure.</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">Data policy with corporate executive backing provides a mandate and authority for data governance. It ensures the executive branch acknowledges and signs off on the fact that data is a valuable asset to the organization and must be managed as such.</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">Formulating a data policy involves the following:</span></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Convene the right people: This involves inviting people that know and use the data. Basically people that have a stake with the data. Legal/Risk/Compliance/Security personnel must be involved, so as to incorporate the appropriate and necessary legalistic and regulatory compliance terms as applicable.</span></li></ul><p style=\\\"box-sizing:border-box;margin:0in 0in 0in 0.5in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Policy should be based on principles. Below are some examples of what a policy may comprise of:</span></li><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">All data must have a data owner.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">The most critical sets of data is identified and proactively managed.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data quality issues are resolved as close to the source of the data as appropriate.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Limited number of people should have access to production data.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Sensitive data must be protected and available on a need to know basis.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Sensitive data needs to be encrypted or masked when copied to non-production environments.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data retention, archival and storage on external devices must be defined.</span><br style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></li></ul><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span>What to include and level of details: Examples of things to include are:</span></li><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Scope of the policy.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Roles and responsibilities</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Processes</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data Quality Standards: Categories of data that need to be measured.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data Quality Dimensions: metrics to measure the quality of the data.</span></li></ul></ul><br><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7112\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7060\"\n    },\n    {\n      \"id\": 7059,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:14.17Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:14.17Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Maintain and Update Roles and Responsibilities \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Purview Existing Roles:</span></b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:11pt;\\\">Curator: Data Owner, etc. check within purview.&nbsp;</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:11pt;\\\">Reader:</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-size:11pt;\\\">Admin: Experts, Owners (copy, individual table, datasets).&nbsp;</span><br></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"font-size:11pt;\\\">Create mapping between Data Governance Framework (for a company) and existing roles within Purview.&nbsp;</b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><br></span></b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Executive Sponsor:</span></b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">This should be someone at the executive level who will perform the following functions:</span></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Proactively evangelize the need for data governance as a means to managing the organization’s data to support corporate and business achieve its strategic objectives and vision.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Obtains mandate and authority from senior executives, sets vision to govern the organization’s data in adherence to the strategic objectives.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Exerts influence in the drafting of personnel into various roles and responsibilities for data governance.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">May provide inputs into policy drafting and decisions.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">If necessary, data governance office and/or council may be constituted that implements the vision and enforces policy.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Ensure that data governance framework continues to persist, be relevant and deliver good results.</span></li></ul><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data Owners:</span></b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">Data owner needs to be defined for each data domain. Data owner will be accountable for the data in the domain. The following functions are played by the data owner:</span></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Accountable for the quality of the data sets of the domain.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Determines access rights to the data and how the data may be used.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Oversees the protection of the data.</span></li></ul><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data Stewards:</span></b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">Data owner delegates responsibilities of the data to data stewards. There may be many data stewards under a data owner, depending on the various data set domains in the group. The following functions are played by data stewards:</span></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Understand the data in their domain.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Responsible for elements of data stored in different fields.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Responsible for the quality of the data sets in the domain.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Resolve data issues related to the domain.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Responsible for operationalizing and compliance.</span></li></ul><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data Producers &amp; Consumers:</span></b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">These are people who basically capture data as it comes into the organization. It may be a blurry line between producers and consumers as some consumers also use data to produce more data. The following functions are applicable:</span></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Capture data into the systems via various means.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Use data for reporting and analysis.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">May produce more data from what they consume.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Assist in defining requirements for data quality/usefulness.</span></li></ul><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><b style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Data Custodians:</span></b></p><p style=\\\"box-sizing:border-box;margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">This may be applicable where the technical team is not responsible for data ownership. The responsibilities are:</span></p><ul style=\\\"box-sizing:border-box;padding:0px 0px 0px 40px;margin-bottom:0in;\\\"><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Maintaining data in the systems in accordance with business requirements.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Safe custody, transport, and storage of the data in the systems.</span></li><li style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">Responsible for databases.</span></li></ul><br><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7112\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7059\"\n    },\n    {\n      \"id\": 7058,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:13.94Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:13.94Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Implement Disaster Recovery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/disaster-recovery?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7031\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7058\"\n    },\n    {\n      \"id\": 7057,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:13.717Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:13.717Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Monitor Health\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/how-to-monitor-with-azure-monitor?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div><div><br></div><div>In the Cloud Adoption Framework we cover off management at scale. Review the section around workload specialization:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/manage/azure-management-guide/workload-specialization\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/manage/azure-management-guide/workload-specialization</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7031\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7057\"\n    },\n    {\n      \"id\": 7056,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:13.483Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:13.483Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Perform bulk edit (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/how-to-bulk-edit-assets?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7117\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7056\"\n    },\n    {\n      \"id\": 7055,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:13.22Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:13.22Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Perform Data Catalog Search\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/concept-search?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7112\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7055\"\n    },\n    {\n      \"id\": 7054,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:12.96Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:12.96Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Perform Data Lineage Analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/concept-data-lineage?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7112\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7054\"\n    },\n    {\n      \"id\": 7053,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:12.31Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:12.31Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Analyze/View All Insights (Assets, Glossary, Scan, Classification, Sensitivity, File)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);\\\">For reporting and insight in Purview, you can access this functionality to get various reports and provide presentation to management.<br style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></span><span style=\\\"box-sizing:border-box;\\\"></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);\\\">Insights are one of the key pillars of Purview. The feature provides customers, a single pane of glass view into their catalog and further aims to provide specific insights to the data source administrators, business users, data stewards, data officer and, security administrators. Currently, Purview has the following Insights reports that will be available to customers at public preview.</span><span style=\\\"box-sizing:border-box;\\\"></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/concept-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Understand Insights in Azure Purview</span></a><br style=\\\"box-sizing:border-box;\\\"></span><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/classification-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Classification insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/asset-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Asset Insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/glossary-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Glossary Insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/scan-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Scan Insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/sensitivity-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Sensitivity Label Insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/file-extension-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">File extension insights</span></a></span></p></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7112\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7053\"\n    },\n    {\n      \"id\": 7052,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:12.077Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:12.077Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Enable Private Link\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/catalog-private-link?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7114\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7052\"\n    },\n    {\n      \"id\": 7051,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:11.863Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:11.863Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Scan production data sources with Firewall enabled\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">This is optional when firewall is in place but it’s important to explore options to hardening your infrastructure</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7114\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7051\"\n    },\n    {\n      \"id\": 7050,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:11.623Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:11.623Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Get classification and sensitive insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:Calibri, sans-serif;font-size:11pt;\\\">For reporting and insight in Purview, you can access this functionality to get various reports and provide presentation to management.</span><br></div><div><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);\\\"><br style=\\\"box-sizing:border-box;\\\"></span><span style=\\\"box-sizing:border-box;\\\"></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);\\\">Insights are one of the key pillars of Purview. The feature provides customers, a single pane of glass view into their catalog and further aims to provide specific insights to the data source administrators, business users, data stewards, data officer and, security administrators. Currently, Purview has the following Insights reports that will be available to customers at public preview.</span><span style=\\\"box-sizing:border-box;\\\"></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\">&nbsp;</span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/concept-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Understand Insights in Azure Purview</span></a><br style=\\\"box-sizing:border-box;\\\"></span><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/classification-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Classification insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/asset-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Asset Insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/glossary-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Glossary Insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/scan-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Scan Insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/sensitivity-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">Sensitivity Label Insights</span></a></span></p><p style=\\\"box-sizing:border-box;margin:0in;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/file-extension-insights?wt.mc_id=caf-ado_datagov_content_1\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\"><span style=\\\"box-sizing:border-box;color:blue;\\\">File extension insights</span></a></span></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7115\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7050\"\n    },\n    {\n      \"id\": 7049,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:10.97Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:10.97Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"6. Refine your scan using scan rule set\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/create-a-scan-rule-set?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7117\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7049\"\n    },\n    {\n      \"id\": 7048,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:10.46Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:10.46Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Get classification and sensitive insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span style=\\\"font-size:14px;text-align:left;display:inline !important;\\\"></span></span></div><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:#171717;\\\">For\\nreporting and insight in Purview, you can access this functionality to get\\nvarious reports and provide presentation to management.<br style=\\\"\\\"><br style=\\\"\\\"></span><span style=\\\"\\\"></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:#171717;\\\">Insights\\nare one of the key pillars of Purview. The feature provides customers, a single\\npane of glass view into their catalog and further aims to provide specific\\ninsights to the data source administrators, business users, data stewards, data\\nofficer and, security administrators. Currently, Purview has the following\\nInsights reports that will be available to customers at public preview.</span><span style=\\\"\\\"></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"\\\">&nbsp;</span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"color:#171717;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/concept-insights?wt.mc_id=caf-ado_datagov_content_1\\\"><span style=\\\"color:blue;\\\">Understand Insights in Azure Purview</span></a><br></span><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/classification-insights?wt.mc_id=caf-ado_datagov_content_1\\\"><span style=\\\"color:blue;\\\">Classification insights</span></a></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/asset-insights?wt.mc_id=caf-ado_datagov_content_1\\\"><span style=\\\"color:blue;\\\">Asset Insights</span></a></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/glossary-insights?wt.mc_id=caf-ado_datagov_content_1\\\"><span style=\\\"color:blue;\\\">Glossary Insights</span></a></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/scan-insights?wt.mc_id=caf-ado_datagov_content_1\\\"><span style=\\\"color:blue;\\\">Scan Insights</span></a></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/sensitivity-insights?wt.mc_id=caf-ado_datagov_content_1\\\"><span style=\\\"color:blue;\\\">Sensitivity Label Insights</span></a></span></p><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:0in;\\\"><span style=\\\"\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/purview/file-extension-insights?wt.mc_id=caf-ado_datagov_content_1\\\"><span style=\\\"color:blue;\\\">File extension insights</span></a></span></p>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7119\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7048\"\n    },\n    {\n      \"id\": 7047,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:09.8Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:09.8Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Search and browse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Allow end users to access Purview and perform end-to-end search and browse scenarios.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/tutorial-browse-and-view-lineage?wt.mc_id=caf-ado_datagov_content_1\\\">guidance </a>and one <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/tutorial-schemas-and-classifications?wt.mc_id=caf-ado_datagov_content_1\\\">more</a></span></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7123\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7047\"\n    },\n    {\n      \"id\": 7046,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:09.147Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:09.147Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Navigating Purview\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Understand how to use Purview from the <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/tutorial-asset-search?wt.mc_id=caf-ado_datagov_content_1\\\">home </a>page.</span><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7123\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7046\"\n    },\n    {\n      \"id\": 7045,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:08.51Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:08.51Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"1. Solution Scenario : Govern data assets with friendly user experience\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">I need to have a Business glossary for business-specific metadata. The business users can use Purview for self-service scenarios to annotate their data and enable the data to be discovered easily via search.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7126\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7045\"\n    },\n    {\n      \"id\": 7044,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:08.227Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:08.227Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"2. Solution Scenario : Enrich metadata on critical data assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">I need to enrich the data set in the catalog with technical metadata that is generated automatically.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7126\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7044\"\n    },\n    {\n      \"id\": 7043,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:08.003Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:08.003Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Solution Scenario :  Track data to understand its origin and troubleshoot data issues\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">I need to have data lineage to track data in reports, predictions, or models back to its original source and understand the changes and where the data has resided through the data life cycle.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7126\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7043\"\n    },\n    {\n      \"id\": 7042,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:07.3Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:07.3Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Solution Scenario : Discover business-critical assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><span>I&nbsp;</span>need to have a search engine that can search through all metadata in the catalog. I should be able to search using technical term, business term with either simple or complex search using wildcard.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7126\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7042\"\n    },\n    {\n      \"id\": 7041,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:06.627Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:06.627Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"5. Solution Scenario : Catalog business-critical assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><span>I&nbsp;</span>need to have information about each data sets to have a good understanding of what it is. This scenario includes both business and technical metadata data about the data set in the catalog.&nbsp;</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7126\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7041\"\n    },\n    {\n      \"id\": 7040,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:06.303Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:06.303Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Implement Data Catalog\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Data Catalog\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7040\"\n    },\n    {\n      \"id\": 7039,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:05.653Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:05.653Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"3. Implement Operational Excellence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Data governance is not a one-time project. It is an ongoing program to fuel data-driven decision making and creating opportunities for business. It is critical to document key procedure and business standards.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;\\\">Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/framework/devops/principles?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7031\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7039\"\n    },\n    {\n      \"id\": 7038,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:05.36Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:05.36Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"4. Implement Process Efficiency\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;text-align:left;display:inline !important;\\\">Workflow is important to automate process such as approval, escalation, review and issue management.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7031\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7038\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-UnifiedDataGovernance/WorkItems/User Story.json",
    "content": "{\n  \"count\": 18,\n  \"value\": [\n    {\n      \"id\": 7127,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:39.12Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:39.12Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Preparation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Preparation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7083\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7095\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7109\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7037\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7127\"\n    },\n    {\n      \"id\": 7126,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:38.847Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:38.847Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"2. Review the scope and align with the scenarios\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Review the scope and align with the scenarios\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7043\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7042\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7044\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7041\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7037\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7045\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7126\"\n    },\n    {\n      \"id\": 7125,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:38.2Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:38.2Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Register and scan data sources\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Register and scan data sources\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7035\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7090\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7093\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7125\"\n    },\n    {\n      \"id\": 7124,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:37.973Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:37.973Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"2. Setup Configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Setup Configuration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7035\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7091\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7092\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7124\"\n    },\n    {\n      \"id\": 7123,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:37.757Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:37.757Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"3. Create demo for business stakeholders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"3. Create demo for business stakeholders\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7046\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7035\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7047\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7123\"\n    },\n    {\n      \"id\": 7122,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:37.11Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:37.11Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Extend Setup Configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Extend Setup Configuration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7089\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7094\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7086\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7096\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7034\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7087\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7088\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7122\"\n    },\n    {\n      \"id\": 7121,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:36.467Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:36.467Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"2. Register and scan additional data sources as applicable\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Register and scan additional data sources as applicable\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7106\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7103\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7085\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7034\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7070\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7102\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7121\"\n    },\n    {\n      \"id\": 7120,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:36.24Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:36.24Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"3. Initiate Re-scan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-multiple-sources#create-and-run-a-scan?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7034\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7120\"\n    },\n    {\n      \"id\": 7119,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:36.01Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:36.01Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"4. View / Analyze data insights\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/concept-insights?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7048\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7034\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7119\"\n    },\n    {\n      \"id\": 7118,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:35.36Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:35.36Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"5. Implement Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div>Please use the following guidnce:</div><div><ol><li><a href=\\\"https://techcommunity.microsoft.com/t5/azure-purview/network-isolation-and-security-use-private-endpoints-for-your/ba-p/2233446?wt.mc_id=caf-ado_datagov_content_1\\\">Use private endpoints</a><br></li><li><a href=\\\"https://techcommunity.microsoft.com/t5/azure-purview/march-ahead-with-azure-purview-access-management-in-azure/ba-p/2199809?wt.mc_id=caf-ado_datagov_content_1\\\">RBAC</a></li><li><a href=\\\"https://techcommunity.microsoft.com/t5/azure-purview/march-ahead-with-azure-purview-access-management-in-azure/ba-p/2209936?wt.mc_id=caf-ado_datagov_content_1\\\">Access Management</a></li></ol></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7034\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7118\"\n    },\n    {\n      \"id\": 7117,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:35.13Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:35.13Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Extend Setup Configuration and expand scope\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Extend Setup Configuration and expand scope\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7056\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7033\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7079\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7078\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7077\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7082\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7049\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7117\"\n    },\n    {\n      \"id\": 7116,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:34.437Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:34.437Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"2. Initiate Re-Scan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please refer to this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-multiple-sources#create-and-run-a-scan?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7033\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7116\"\n    },\n    {\n      \"id\": 7115,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:34.153Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:34.153Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"3. Extended data insights with granular visibility\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Please review this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/asset-insights?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7033\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7050\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7115\"\n    },\n    {\n      \"id\": 7114,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:33.927Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:33.927Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Implement Security enabled scan configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement Security enabled scan configuration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7051\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7032\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7052\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7114\"\n    },\n    {\n      \"id\": 7113,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:33.7Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:33.7Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"2. Initiate Re-scan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div>Please follow this <a href=\\\"https://docs.microsoft.com/en-us/azure/purview/register-scan-azure-multiple-sources#create-and-run-a-scan?wt.mc_id=caf-ado_datagov_content_1\\\">guidance</a>.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7032\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7113\"\n    },\n    {\n      \"id\": 7112,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:33.05Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:33.05Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"3. Practice Data governance for your enterprise\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Practice Data governance for your enterprise\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7059\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7032\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7060\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7054\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7055\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7053\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7061\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7112\"\n    },\n    {\n      \"id\": 7111,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:32.813Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:32.813Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"1. Provision Core Infrastructure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;\\\">Setup Azure Subscription</div><div style=\\\"box-sizing:border-box;\\\">Setup<span style=\\\"box-sizing:border-box;\\\">&nbsp;</span><a href=\\\"https://github.com/Azure/Enterprise-Scale#:~:text=Objective%20%20%20%20Key%20customer%20landing%20zone%2c%20%20Yes%20%206%20more%20rows%20?wt.mc_id=caf-ado_datagov_content_1\\\">Enterprise scale Landing Zone&nbsp;</a></div><br><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7073\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7036\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7074\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7111\"\n    },\n    {\n      \"id\": 7110,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Unified Data Governance\",\n        \"System.TeamProject\": \"Unified Data Governance\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-07-22T14:34:32.59Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2021-07-22T14:34:32.59Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"2. Create business specific setup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create business specific setup\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7097\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7098\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7036\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/australiaEastaksh/_apis/wit/workItems/7110\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Dashboard/Dashboard.json",
    "content": "\"text\""
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Dashboard/Queries/All Workitems.json",
    "content": "{\n  \"name\": \"All Workitems\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Dashboard/Queries/Assigned to me.json",
    "content": "{\n  \"name\": \"Assigned to me\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Dashboard/Queries/Followed work items.json",
    "content": "{\n  \"name\": \"Followed work items\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Extensions.json",
    "content": "{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"ARM Outputs\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'><b>ARM Outputs</b></a>\",\n      \"publisherId\": \"keesschollaart\",\n      \"extensionId\": \"arm-outputs\",\n      \"publisherName\": \"Kees Schollaart\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Team Project Health\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.TeamProjectHealth' target='_blank'><b>Team Project Health</b></a>\",\n      \"publisherId\": \"ms-devlabs\",\n      \"extensionId\": \"TeamProjectHealth\",\n      \"publisherName\": \"Microsoft DevLabs\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.TeamProjectHealth' target='_blank'>License Terms</a>\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/ImportSourceCode/Azure Sentinel Template.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/wayneme/Windows Virtual Desktop/_git/Azure Sentinel Template\"\n    },\n    \"serviceEndpointId\": \"$Azure Sentinel Template-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Windows Virtual Desktop\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/ServiceEndpoints/Azure Sentinel Template-code.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"Azure Sentinel Template-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vandyr/Azure Sentinel Template/_git/Azure Sentinel Template\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"aa792b1d-2c72-47d2-ad71-173549e3655d\",\n    \"name\": \"Windows Virtual Desktop Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/WVD-CAF-Project-Template Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/WVD-CAF-Project-Template Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/WVD-CAF-Project-Template Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/WVD-CAF-Project-Template Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/WVD-CAF-Project-Template Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/Windows Virtual Desktop Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/Windows Virtual Desktop Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/Windows Virtual Desktop Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/Windows Virtual Desktop Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/Teams/Windows Virtual Desktop Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/WorkItems/Epic.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 3544,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:58.02Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Strategy/Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Milestone 1: Assess and Review\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3612\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3544\"\n    },\n    {\n      \"id\": 3545,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:58.16Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:51.16Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Ready - Landing zone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Milestone 2: Ready - Landing zone</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3555\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3554\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3553\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3552\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3545\"\n    },\n    {\n      \"id\": 3546,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:58.307Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:20:07.853Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Adopt - Windows Virtual Desktop\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Milestone 3: Adopt - Windows Virtual Desktop&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/windows-virtual-desktop?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3551\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3546\"\n    },\n    {\n      \"id\": 3547,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:58.593Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Govern - Windows Virtual Desktop\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Milestone 4: Govern - Windows Virtual Desktop</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3550\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3547\"\n    },\n    {\n      \"id\": 3548,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:58.723Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Manage - Windows Virtual Desktop\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><p style=\\\"margin:0in 0in 12pt;font-size:11pt;font-family:Calibri, sans-serif;text-align:justify;\\\"><span style=\\\"font-size:10.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;background:white;\\\">Milestone 5: Managing&nbsp;the ongoing\\noperation of the digital assets that deliver business outcomes is a key to this\\nprocess. Unless, we have a plan to manage the operations, the efforts put in\\nplanning, readiness and adoption will yield little value. The following details\\nwill help develop the business approach to provide cloud management.</span></p></div></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3549\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3548\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/WorkItems/Feature.json",
    "content": "{\n  \"count\": 9,\n  \"value\": [\n    {\n      \"id\": 3549,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:58.933Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Optimize Windows Virtual Desktop in Microsoft Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"When you move from Remote Desktop Services to Windows Virtual Desktop, you no longer have to manage basic infrastructure components like RDSH servers and gateways. Windows Virtual Desktop includes new ways to componentize compute environments, enabling you to separate the operating system layer from the user profile layer. You can then take advantage of Microsoft 365 and Microsoft Azure services for file management options at the user and file share level.\\n\\nThere are post-deployment steps to optimize Windows Virtual Desktop:\\nusing dynamic FSLogix profiles, enabling and configuring OneDrive for Business and OneDrive Files on Demand, and synchronizing on-premises or hosted file shares with Azure using Azure File Sync.\\nhttps://docs.microsoft.com/en-us/azure/virtual-desktop/fslogix-containers-azure-files?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3585\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3548\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3586\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3587\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3588\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3592\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3549\"\n    },\n    {\n      \"id\": 3550,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:59.177Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Azure governance policies for WVD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Governance creates guardrails that keep the company on a safe path throughout the journey. Governance guides that describe the experiences of fictional companies that are based on the experiences of real customers. Governance is an iterative process. For organizations with existing policies that govern on-premises IT environments, governance should complement those policies. The level of corporate policy integration between on-premises and the cloud varies depending on governance maturity and a digital estate in the cloud. <br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3547\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3593\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3550\"\n    },\n    {\n      \"id\": 3551,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:59.39Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:40:10.223Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Deploy Windows Virtual Desktop in Microsoft Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review your options for:&nbsp;</div><div>&nbsp;*  Creating pooled or personal virtual machines&nbsp;</div><div>&nbsp;*  Choosing images, including the Windows images available in the Azure gallery&nbsp;</div><div>&nbsp;*  Using domain-joined user accounts versus service identities.&nbsp;\\n</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3594\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3595\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3598\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3596\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3546\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3597\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3551\"\n    },\n    {\n      \"id\": 3552,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:59.517Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:43:06.487Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Windows 10 Image Customization and Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create a custom image. In Azure, we create VM to install our business apps. With the help of custom image, we can create multiple session hosts. Below are some of the approaches to create custom images:&nbsp;</div><div>&nbsp;*  Managed image&nbsp;</div><div>&nbsp;*  Shared Image Gallery&nbsp;</div><div>&nbsp;*  VHD in a storage account&nbsp;\\n</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-customize-master-image?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-customize-master-image?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3545\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3599\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3552\"\n    },\n    {\n      \"id\": 3553,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:59.643Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:28:21.013Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Azure landing zone for domain (Greenfield)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Configure Azure landing zone for domain (Greenfield)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3545\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3584\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3600\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3553\"\n    },\n    {\n      \"id\": 3554,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:59.833Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:42:06.103Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Azure landing zone for domain (Hybrid)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Hosts(Azure VMs) will be created on azure portal and these hosts will be joined to on premises domain controller. So AD users in that domain can access these hosts.&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/enterprise-scale/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3545\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3601\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3603\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3602\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3554\"\n    },\n    {\n      \"id\": 3555,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:51:59.957Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:41:00.45Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Azure landing zone for Azure Tenant\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Windows Virtual Desktop is an elastically scalable service to deliver remote desktop and remote app experiences - without having to manage the underlying server infrastructure. Review the prerequisites and tools provided by Microsoft to get ready to provision your first Windows Virtual Desktop host pool.&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/wvd/ready?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/wvd/ready?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3604\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3606\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3605\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3545\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3555\"\n    },\n    {\n      \"id\": 3556,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:00.173Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Assess the Digital landscape for current infrastructure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"During this phase assess the environment readiness\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3544\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3610\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3609\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3608\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3607\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\"\n    },\n    {\n      \"id\": 3612,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T17:58:42.15Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Skilling Plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Address skilling needs through self-paced learning and tutorials.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3614\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3544\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3612\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/WorkItems/Task.json",
    "content": "{\n  \"count\": 36,\n  \"value\": [\n    {\n      \"id\": 3615,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:01:27.31Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create a host pool with the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;<br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3614\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3615\"\n    },\n    {\n      \"id\": 3616,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:02:11.073Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Manage app groups with the Azure portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/manage-app-groups?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/manage-app-groups?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3614\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3616\"\n    },\n    {\n      \"id\": 3617,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:02:46.217Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Create a host pool to validate service updates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-validation-host-pool?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-validation-host-pool?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3614\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3617\"\n    },\n    {\n      \"id\": 3618,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:03:43.753Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorial: Set up service alerts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-service-alerts?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-service-alerts?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3614\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3618\"\n    },\n    {\n      \"id\": 3619,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:05:30.437Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Deliver remote desktops and apps from Azure with Windows Virtual Desktop\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/paths/m365-wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/paths/m365-wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3619\"\n    },\n    {\n      \"id\": 3620,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:06:17.04Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Prepare for Windows Virtual Desktop in Microsoft Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/m365-prepare-for-wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/m365-prepare-for-wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3620\"\n    },\n    {\n      \"id\": 3621,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:07:00.313Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Introduction to Windows Virtual Desktop in Microsoft Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/m365-wvd-intro/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/m365-wvd-intro/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3621\"\n    },\n    {\n      \"id\": 3622,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:07:46.457Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Optimize Windows Virtual Desktop in Microsoft Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/m365-optimize-wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/m365-optimize-wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3622\"\n    },\n    {\n      \"id\": 3623,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T18:09:15.513Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Deploy Windows Virtual Desktop in Microsoft Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><a href=\\\"https://docs.microsoft.com/en-us/learn/modules/m365-deploy-wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/learn/modules/m365-deploy-wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3613\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3623\"\n    },\n    {\n      \"id\": 3557,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:00.3Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:05.08Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Azure Bastion Configuration to access azure virtual machine\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Bastion Configuration to access azure virtual machine\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3603\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3557\"\n    },\n    {\n      \"id\": 3558,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:00.51Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:05.08Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Azure Virtual Network\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Virtual Network\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3603\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3558\"\n    },\n    {\n      \"id\": 3559,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:00.653Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:05.08Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Azure VPN Gateway (Site-to-Site VPN)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure VPN Gateway (Site-to-Site VPN)\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3603\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3559\"\n    },\n    {\n      \"id\": 3560,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:00.79Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:05.08Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Site2Site VPN between Azure and on-premises network / firewall\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Configure Site2Site VPN between Azure and on-premises network / firewall\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3603\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3560\"\n    },\n    {\n      \"id\": 3561,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:00.92Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:41:29.74Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Extend on-premises AD Forest to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Extend on-premises AD Forest to Azure&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/multi-forest-azure-managed?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/multi-forest-azure-managed?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3602\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3561\"\n    },\n    {\n      \"id\": 3562,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:01.047Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:41:40.86Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create 2x Domain Controllers in Azure (one in each geo redundant data center region)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create 2x Domain Controllers in Azure (one in each geo redundant data center region)&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/multi-forest?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/architecture/example-scenario/wvd/multi-forest?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3602\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3562\"\n    },\n    {\n      \"id\": 3563,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:01.177Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:05.08Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Add to on-premises forest\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add to on-premises forest\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3602\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3563\"\n    },\n    {\n      \"id\": 3564,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:01.3Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:05.08Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Azure Bastion Configuration to access azure virtual machine\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Bastion Configuration to access azure virtual machine\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3600\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3564\"\n    },\n    {\n      \"id\": 3565,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:01.443Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:18.423Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Validate custom images\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Validate custom images\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3599\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3565\"\n    },\n    {\n      \"id\": 3566,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:01.577Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:42.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Validate pre-requirements Fs logix container have been completed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Validate pre-requirements Fs logix container have been completed\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3595\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3566\"\n    },\n    {\n      \"id\": 3567,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:01.717Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:22:14.197Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Deploy and Configure FS-Logix container\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Deploy and Configure FS-Logix container</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/fslogix/install-ht?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/fslogix/install-ht?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3595\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3567\"\n    },\n    {\n      \"id\": 3568,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:01.847Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:42.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Migration to Personal/Pooled Desktops\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Migration to Personal/Pooled Desktops\\nhttps://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-personal-desktop-assignment-type?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3594\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3568\"\n    },\n    {\n      \"id\": 3569,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:01.973Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:42.89Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Migrate existing user profiles to FS-Logix Profile Containers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Migrate existing user profiles to FS-Logix Profile Containers\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3594\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3569\"\n    },\n    {\n      \"id\": 3570,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:02.113Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:23:14.38Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create and manage policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Business has their own “Policies” to protect data and workloads in their infrastructures. Most of the time end goal of these policies is to make sure if“ IT department” done their part to support business compliance requirements.  There are two great tools available from Microsoft to make it easier for enterprises to reach their corporate compliance requirements within Azure environments. *  Compliance Manager: This service can scan your azure environment and provide report of your compliance level against most common industry standard such as GDPR, ISO 27000 etc.&nbsp;</div><div>*  Azure Policy: This is more to review continues compliance in corporate infrastructure policies. As an example, a corporate need to make sure all their Azure resources are deployed under west us region. With help of Azure policy, we can continuously monitor resources and make sure it does stay compliance with that policy. in event of breach it will flag it up as well.</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3593\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3570\"\n    },\n    {\n      \"id\": 3571,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:02.247Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:23:14.38Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Disaster recovery plan\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Setup a disaster recovery plan.&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/disaster-recovery?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/disaster-recovery?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3588\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3571\"\n    },\n    {\n      \"id\": 3572,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:02.377Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review the marketplace images like predefined Azure Gallery OS Images\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Review the marketplace images like predefined Azure Gallery OS Images\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3572\"\n    },\n    {\n      \"id\": 3573,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:02.517Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review the custom OS images requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review the custom OS images requirements&nbsp;</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/windows/quick-create-portal#create-virtual-machine?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/windows/quick-create-portal#create-virtual-machine?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3573\"\n    },\n    {\n      \"id\": 3574,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:02.653Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Confirm licensing requirements have been met\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Confirm licensing requirements have been met.</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/apply-windows-license?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/apply-windows-license?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3610\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3574\"\n    },\n    {\n      \"id\": 3575,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:02.78Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:51:18.423Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create a custom image in Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create a custom image in Azure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3599\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3575\"\n    },\n    {\n      \"id\": 3576,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:02.983Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review Microsoft applications requirements like office apps\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Microsoft applications\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3576\"\n    },\n    {\n      \"id\": 3577,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:03.13Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Confirm in-scope application(s) that require GPU acceleration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Confirm in-scope application(s) that require GPU acceleration\\nhttps://docs.microsoft.com/en-us/azure/virtual-desktop/configure-vm-gpu?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3577\"\n    },\n    {\n      \"id\": 3578,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:03.267Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review requirements for custom applications like customer business apps\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Custom applications\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3578\"\n    },\n    {\n      \"id\": 3579,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:03.4Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review requirements for third party commercial applications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Third party commercial applications\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3579\"\n    },\n    {\n      \"id\": 3580,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:03.52Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review Azure Active Directory requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Review Azure Active Directory requirements\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3610\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3580\"\n    },\n    {\n      \"id\": 3581,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:03.69Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Confirm Operating Systems to deploy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Confirm Operating Systems to deploy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3610\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3581\"\n    },\n    {\n      \"id\": 3582,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:03.827Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review supported Operation Systems and licensing requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Review supported Operation Systems and licensing requirements\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3610\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3582\"\n    },\n    {\n      \"id\": 3583,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:03.953Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:22:29.2Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Align assets to cloud offerings to calculate pricing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Align assets to cloud offerings to calculate pricing\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3610\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3583\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CAF-WindowsVirtualDesktop/WorkItems/User Story.json",
    "content": "{\n  \"count\": 29,\n  \"value\": [\n    {\n      \"id\": 3584,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:04.137Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:46:56.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Azure AD Domain Services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Configure Azure AD Domain Services\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3553\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3584\"\n    },\n    {\n      \"id\": 3585,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:04.287Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Migrate files from local file shares into Azure storage using Azure File Sync\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"If your current Remote Desktop architecture uses file shares in Windows Server to access shared files, folders, and locations, you can use Azure File Sync to synchronize your on-premises file server contents into the same file share location you created for user profile virtual disks. You can also use Azure NetApp files with local NetApp technology to migrate files and properties to Azure storage.\\nAzure File Sync enables seamless access for files that were initially generated in Azure or on-premises - Windows Virtual Desktop session hosts can access the files from a nearby location stored in Azure. You can also map drives using SMB 3.0 protocols (as you may have already configured if you’re migrating from on-premises Remote Desktop Services infrastructure to Windows Virtual Desktop), so users don’t experience changes in their workflow.\\nIf you’re already using FSLogix in your on-premises implementation of Remote Desktop Services, you can also use Azure File Sync to migrate and synchronize your user profile virtual disks into Azure storage to use with Windows Virtual Desktop.\\nhttps://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-user-profile?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3549\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3585\"\n    },\n    {\n      \"id\": 3586,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:04.43Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure OneDrive in Office 365 in Windows Virtual Desktop host pools\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"In Windows Virtual Desktop, you can leverage Office and OneDrive Group Policy settings to direct files to Office 365 storage locations. This lets you take advantage of the 1 TB and greater storage available in OneDrive, plus collaboration capabilities like improved sharing, seamless secure access across devices, improved discovery of recently used files, and real-time coauthoring with coworkers and partners.\\nYou can use Active Directory Group Policy with Office 365 ProPlus and Office 2019 Volume Licensing editions. You can download administrative template files (.ADMX) from the Microsoft Download Center.\\nAfter you provision accounts for OneDrive, you can use policies to configure Office default save locations and implement OneDrive Known Folder Move.\\nhttps://docs.microsoft.com/en-us/azure/virtual-desktop/install-office-on-wvd-master-image?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3549\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3586\"\n    },\n    {\n      \"id\": 3587,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:04.56Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Separate user profiles from virtual machines with FS-Logix profiles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:1rem;text-align:left;\\\">You can use <strong style=\\\"box-sizing:border-box;font-weight:bolder;\\\">FSLogix profiles</strong> to separate user profiles from virtual machines, persist these profiles as user-assigned virtual disks in Azure storage, Azure NetApp Files, and Storage Spaces Direct, and then dynamically attach them to a user. Each time the user signs in to a remote resource, their profile is attached to the resource, and they're able to access all of their data.</p><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;text-align:left;\\\"></span><p style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:1rem;text-align:left;\\\">Compared to classic roaming user profiles in Windows, separating the user profiles and data enables a seamless roaming experience for apps that rely on %localappdata% locations, like Outlook and OneDrive. It's fast and stateful - as far as users can tell, their data loads as fast as locally stored data. FSLogix profiles let you use cached mailboxes for local-like access to email and OneDrive Files on Demand.</p><div style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:16px;text-align:left;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/store-fslogix-profile\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/store-fslogix-profile?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:16px;text-align:left;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/fslogix-containers-azure-files\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/fslogix-containers-azure-files?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3549\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3587\"\n    },\n    {\n      \"id\": 3588,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:04.757Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Backup & Recovery (BUR)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Azure backup options:&nbsp;</div><div>&nbsp;*  On-premises - Back up files, folders, system state using the Microsoft Azure Recovery Services (MARS) agent. Or use the DPM or Azure Backup Server (MABS) agent to protect on-premises VMs (Hyper-V and VMWare) and other on-premises workloads&nbsp;</div><div>*  Azure VMs - Back up entire Windows (using backup extensions) or back up files, folders, and system state using the MARS agent.&nbsp; </div><div>*  Azure Files shares - Back up Azure File shares to a storage account&nbsp;\\n</div><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/disaster-recovery?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/disaster-recovery?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3549\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3571\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3588\"\n    },\n    {\n      \"id\": 3589,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:04.883Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review document in-scope Users and their Application requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review document in-scope Users and their Application requirements:<br></div><div><ol><li>Review Microsoft applications requirements like office apps</li><li>Review requirements for third party commercial applications<br></li><li>Review requirements for custom applications like customer business apps<br></li><li>Confirm in-scope application(s) that require GPU acceleration<br></li></ol></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3577\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3576\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3578\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3579\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3589\"\n    },\n    {\n      \"id\": 3590,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:05.027Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review and confirm OS images to deploy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Review and confirm OS images to deploy:<br></div><div><ol><li>Review the marketplace images like predefined Azure Gallery OS Images<br></li><li><span>Review the custom OS images requirements</span></li><li><span>Align assets to cloud offerings to calculate pricing</span><br></li></ol></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3572\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3573\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3590\"\n    },\n    {\n      \"id\": 3591,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:05.197Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Review and document Windows Virtual Desktop session hosts and host pool requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Review and document Windows Virtual Desktop session hosts and host pool requirements\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3591\"\n    },\n    {\n      \"id\": 3592,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:05.34Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Automate depth and breadth scaling for Windows Virtual Desktop host pools\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">The Windows Virtual Desktop scaling scripts include logic to periodically determine activity levels in VMs before draining underutilized user session hosts and shutting them down. During off-peak usage (usually after hours) the script can reduce the number of running VMs; during peak usage, the script can dynamically provision additional VMs when user density exceeds defined thresholds that trigger scaling.&nbsp;</span></div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-scaling-script\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/set-up-scaling-script</a><br style=\\\"box-sizing:border-box;\\\"></span></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manage\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3549\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3592\"\n    },\n    {\n      \"id\": 3593,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:05.48Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:58.447Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Azure Security Center for policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Security Center is a unified infrastructure security management system that strengthens the security posture of your data centers, and provides advanced threat protection across your hybrid workloads in the cloud - whether they're in Azure or not - as well as on premises.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Govern\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3570\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3550\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3593\"\n    },\n    {\n      \"id\": 3594,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:05.63Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:48:02.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Migrate RDS Workloads to WVD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"margin:0in 0in 12pt;font-size:11pt;font-family:Calibri, sans-serif;margin-bottom:6.0pt;text-align:justify;line-height:115%;\\\"><span style=\\\"font-size:10.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\">Whether it is migrating\\nRemote Desktop Services (RDS) or Virtual Desktop Infrastructure (VDI)\\nenvironments to Windows Virtual Desktop, Azure enables to migrate existing\\nvirtual desktop workloads to Microsoft Azure as part of $ProjectName$\\neven if you are working with a greenfield scenario (i.e. building a new\\nenvironment from the ground up) or a brownfield scenario (i.e. transforming\\nexisting RDS resources and Windows 10 single-session virtual machines). These\\nmigration processes are described below in this section.</span></p></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3568\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3569\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3551\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3594\"\n    },\n    {\n      \"id\": 3595,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:05.763Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:48:02.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure FS Logix container  to store user profiles\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">The Windows Virtual Desktop service offers FSLogix profile containers as the recommended user profile solution.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">FSLogix profile configuration for WVD options:</span></div><div><font color=\\\"#171717\\\" face=\\\"Segoe UI, SegoeUI, Helvetica Neue, Helvetica, Arial, sans-serif\\\"><span style=\\\"font-size:16px;\\\"><ol start=1 type=1 style=\\\"margin-bottom:0in;\\\">\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;background:white;\\\"><span style=\\\"font-size:12.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-user-profile\\\">VM\\n     based file share</a></span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;background:white;\\\"><span style=\\\"font-size:12.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-fslogix-profile-container\\\">NetApp\\n     Files</a></span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;background:white;\\\"><span style=\\\"font-size:12.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-profile-container-adds\\\">Azure\\n     Files and Azure AD</a></span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"></span></li>\\n <li style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;color:black;background:white;\\\"><span style=\\\"font-size:12.0pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-file-share\\\">Azure\\n     Files and ADDS</a></span><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;\\\"></span></li></ol><br></span></font></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3566\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3551\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3567\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3595\"\n    },\n    {\n      \"id\": 3596,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:05.893Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:48:02.673Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure apps and desktops for users\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Windows Virtual Desktop uses app groups to share RemoteApps with users. When you share an app, the user sees and can use only the application window, not the entire desktop.\\nUse PowerShell cmdlets to create an app group.\\nhttps://docs.microsoft.com/en-us/azure/virtual-desktop/manage-app-groups?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3551\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3596\"\n    },\n    {\n      \"id\": 3597,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:06.03Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:39:50.15Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Provision a Windows Virtual Desktop host pool\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:1rem;text-align:left;\\\">You can use your host pool to provision full desktops and remote apps for users.</p><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;text-align:left;\\\"></span><p style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:1rem;text-align:left;\\\">There's a Resource Manager template in the Azure marketplace that helps you build out Windows Virtual Desktop environments in repeatable way. The template includes the basic steps that you need to go through. Start by finding the template:</p><div style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:16px;text-align:left;\\\"><ol style=\\\"box-sizing:border-box;margin-bottom:16px;margin-left:38px;margin-top:16px;padding-left:40px;\\\"><li style=\\\"box-sizing:border-box;list-style-type:decimal;margin-bottom:0px;margin-top:0px;outline-color:invert;\\\">Sign in to the <a style=\\\"box-sizing:border-box;cursor:pointer;outline-color:invert;text-decoration:underline;\\\" href=\\\"https://portal.azure.com/\\\">Azure portal</a>.</li><li style=\\\"box-sizing:border-box;list-style-type:decimal;margin-bottom:0px;margin-top:0px;outline-color:invert;\\\">In the upper-left corner, select <strong style=\\\"box-sizing:border-box;font-weight:bolder;\\\">Create a Resource.</strong></li><li style=\\\"box-sizing:border-box;list-style-type:decimal;margin-bottom:0px;margin-top:0px;outline-color:invert;\\\">In <strong style=\\\"box-sizing:border-box;font-weight:bolder;\\\">Search the Marketplace</strong>, search for &quot;Windows Virtual Desktop.&quot;</li><li style=\\\"box-sizing:border-box;list-style-type:decimal;margin-bottom:0px;margin-top:0px;outline-color:invert;\\\">In the search results, select <strong style=\\\"box-sizing:border-box;font-weight:bolder;\\\">Windows Virtual Desktop – Provision a host pool</strong>.</li></ol><div style=\\\"box-sizing:border-box;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-powershell\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-powershell?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br style=\\\"box-sizing:border-box;\\\"></div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3551\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3597\"\n    },\n    {\n      \"id\": 3598,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:06.163Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:39:36.77Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Configure Windows Virtual Desktop host pool\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Additional configuration:&nbsp;&nbsp;</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-load-balancing?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-load-balancing?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/customize-rdp-properties?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/customize-rdp-properties?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-personal-desktop-assignment-type?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/configure-host-pool-personal-desktop-assignment-type?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a>&nbsp;</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Adopt\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3551\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3598\"\n    },\n    {\n      \"id\": 3599,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:06.297Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:46:56.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Create custom images with business line apps\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create a managed image of a generalized VM in Azure:<br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">A managed image resource can be created from a generalized virtual machine (VM) that is stored as either a managed disk or an unmanaged disk in a storage account. The image can then be used to create multiple VMs.<span>&nbsp;</span></span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span><br></span></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-machines/windows/capture-image-resource\\\">https://docs.microsoft.com/en-us/azure/virtual-machines/windows/capture-image-resource?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></span></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3565\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3575\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3552\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3599\"\n    },\n    {\n      \"id\": 3600,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:06.427Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:46:56.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Network configuration for WVD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Provision the Azure Bastion service in your virtual network, the seamless RDP/SSH experience is available to all of the VMs in the same virtual network. Azure Bastion deployment is per virtual network, not per subscription/account or virtual machine.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/bastion/bastion-create-host-portal\\\">Create\\nan Azure Bastion host using the portal</a></p></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3564\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3553\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3600\"\n    },\n    {\n      \"id\": 3601,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:06.56Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:46:56.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Integrate Azure AD with Active Directory Domain Services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">Azure Active Directory Domain Services (Azure AD DS) provides managed domain services such as domain join, group policy, lightweight directory access protocol (LDAP), and Kerberos / NTLM authentication. You use these domain services without the need to deploy, manage, and patch domain controllers (DCs) in the cloud.</span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><br></span></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><p style=\\\"margin:0in 0in 8pt;font-size:11pt;font-family:Calibri, sans-serif;\\\"><span style=\\\"font-family:&quot;Segoe UI&quot;,sans-serif;color:#171717;background:white;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory-domain-services/tutorial-create-instance\\\">Create\\nand configure an Azure Active Directory Domain Services managed domain</a></span></p></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3554\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3601\"\n    },\n    {\n      \"id\": 3602,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:06.69Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:46:56.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Resilient Identity Pattern (RIP)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Identity synchronization and duplicate attribute resiliency:</div><div><span>Duplicate Attribute Resiliency is a feature in Azure Active Directory that will eliminate friction caused by UserPrincipalName and SMTP ProxyAddress conflicts when running one of Microsoft’s synchronization tools.<br></span><div><br></div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-syncservice-duplicate-attribute-resiliency\\\">https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-syncservice-duplicate-attribute-resiliency?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br></div><div><br></div><span>These two attributes are generally required to be unique across all User, Group, or Contact objects in a given Azure Active Directory tenant.</span><br></div><div><span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3554\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3562\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3561\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3563\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3602\"\n    },\n    {\n      \"id\": 3603,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:06.817Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:46:56.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Network configuration for WVD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>To join the hosts(Azure VMs) to on premise domain controller you need setup Network configuration.</div><div><br></div><div>Site to Site VPN configurations options:</div><div><ul style=\\\"margin-bottom:0in;\\\"><li><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-site-to-site-resource-manager-portal\\\">Create\\na Site-to-Site connection</a></li><li><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-multi-site-to-site-resource-manager-portal\\\">Add\\na Site-to-Site connection to a VNet with an existing VPN gateway connection</a></li><li><a href=\\\"https://docs.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-connect-multiple-policybased-rm-ps\\\">Connect\\nAzure VPN gateways to multiple on-premises policy-based VPN devices</a></li><li><a href=\\\"https://docs.microsoft.com/en-us/azure/expressroute/expressroute-howto-coexist-resource-manager?toc=/azure/vpn-gateway/toc.json\\\">Configure\\nExpressRoute and Site-to-Site coexisting connections</a></li></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3557\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3554\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3559\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3560\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3558\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3603\"\n    },\n    {\n      \"id\": 3604,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:06.953Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T18:40:43.657Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Set up the Windows Virtual Desktop tenant\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">Create a Windows Virtual Desktop tenant. The tenant is used to group your host pools and to identify your resources in later provisioning and customization steps.</span></div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br style=\\\"box-sizing:border-box;\\\"></span></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3555\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3604\"\n    },\n    {\n      \"id\": 3605,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:07.11Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:46:56.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Provision the required administrator roles in Azure AD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><p style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:1rem;text-align:left;\\\">After you establish your network and directory connections, you can provision the Microsoft Azure services required for your Windows Virtual Desktop VMs.</p><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;text-align:left;\\\"></span><p style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:1rem;text-align:left;\\\">Configure the following resources in Microsoft Azure:</p><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;text-align:left;\\\"></span><ul style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;list-style-type:none;margin-bottom:16px;margin-left:38px;margin-top:16px;padding-left:40px;text-align:left;\\\"><li style=\\\"box-sizing:border-box;list-style-type:disc;margin-bottom:0px;margin-top:0px;outline-color:invert;\\\">One or more resource groups as a foundation to group services in Azure.</li><li style=\\\"box-sizing:border-box;list-style-type:disc;margin-bottom:0px;margin-top:0px;outline-color:invert;\\\">A storage account in Azure to store virtual disk files used with FSLogix profiles and to synchronize or provision file share services for Windows Virtual Desktop session hosts. You can also use <a style=\\\"box-sizing:border-box;cursor:pointer;outline-color:invert;text-decoration:underline;\\\" href=\\\"https://docs.microsoft.com/azure/azure-netapp-files/azure-netapp-files-introduction\\\">Azure NetApp Files</a> and <a style=\\\"box-sizing:border-box;cursor:pointer;outline-color:invert;text-decoration:underline;\\\" href=\\\"https://docs.microsoft.com/windows-server/storage/storage-spaces/storage-spaces-direct-overview\\\">Storage Spaces Direct</a>.</li><li style=\\\"box-sizing:border-box;list-style-type:disc;margin-bottom:0px;margin-top:0px;outline-color:invert;\\\">Administrator, user, and system accounts required to manage services.</li></ul><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;text-align:left;\\\"></span><p style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:1rem;text-align:left;\\\">In large organizations, it's a good idea to assign administrator roles to different people and establish multiple people per role. If you’re just starting out or you have a small IT department, these can be the same person if needed.</p><div style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:16px;text-align:left;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/create-service-principal-role-powershell\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-service-principal-role-powershell?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a></div><div style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:16px;text-align:left;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/delegated-access-virtual-desktop\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/delegated-access-virtual-desktop?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br style=\\\"box-sizing:border-box;\\\"></div><p style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;margin-bottom:0px;margin-top:1rem;text-align:left;\\\"><br style=\\\"box-sizing:border-box;\\\"></p><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3555\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3605\"\n    },\n    {\n      \"id\": 3606,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:07.247Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T17:46:56.353Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Provision an Azure tenant and set up Azure Active Directory\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><span style=\\\"box-sizing:border-box;color:rgb(23, 23, 23);display:inline;font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">Once you've got your Azure tenant, you need to populate Azure Active Directory (Azure AD) with administrators and users. Azure AD is used for multiple identity and access management aspects for Windows Virtual Desktop, including access to remote sessions, administration elements, and user provisioning.</span></div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><br style=\\\"box-sizing:border-box;\\\"></div><div style=\\\"box-sizing:border-box;color:rgba(0, 0, 0, 1);text-align:left;\\\"><a href=\\\"https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory\\\" style=\\\"box-sizing:border-box;cursor:pointer;text-decoration:underline;\\\">https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a><br style=\\\"box-sizing:border-box;\\\"></div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Ready\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3555\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3606\"\n    },\n    {\n      \"id\": 3607,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:07.37Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Extend to Azure vs Connect to on-premises\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Extend to Azure vs Connect to on-premises: Partner should analyze and gather requirement from customer want to extend their environment to Azure or connect to on-premises</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3607\"\n    },\n    {\n      \"id\": 3608,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:07.507Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Present SMB File Share: Prerequisites and requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>SMB File Share: Prerequisites and requirements</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/files/storage-files-introduction\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Azure Files</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>supports identity-based authentication over Server Message Block (SMB) through<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/get-started/virtual-dc/active-directory-domain-services-overview\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">on-premises Active Directory Domain Services (AD DS)</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span>&nbsp;</span>and<span>&nbsp;</span></span><a href=\\\"https://docs.microsoft.com/en-us/azure/active-directory-domain-services/overview\\\" style=\\\"cursor:pointer;font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;\\\">Azure Active Directory Domain Services (Azure AD DS)</a><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">.<span>&nbsp;</span></span><br></div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\"><span><br></span></span></div><div>Collect the SMB File share requirements from customer.</div><div><a href=\\\"https://docs.microsoft.com/en-us/azure/storage/files/storage-files-identity-auth-active-directory-domain-service-enable#prerequisites\\\">https://docs.microsoft.com/en-us/azure/storage/files/storage-files-identity-auth-active-directory-domain-service-enable#prerequisites?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal</a></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3608\"\n    },\n    {\n      \"id\": 3609,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:07.633Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Present FSLogix Prerequisites and requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>FSLogix Prerequisites and requirements:</div><div><span style=\\\"color:rgb(23, 23, 23);font-family:&quot;Segoe UI&quot;, SegoeUI, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size:16px;display:inline !important;\\\">The Windows Virtual Desktop service recommends FSLogix profile containers as a user profile solution. FSLogix is designed to roam profiles in remote computing environments, such as Windows Virtual Desktop. It stores a complete user profile in a single container. At sign in, this container is dynamically attached to the computing environment using natively supported Virtual Hard Disk (VHD) and Hyper-V Virtual Hard disk (VHDX). The user profile is immediately available and appears in the system exactly like a native user profile.</span><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3609\"\n    },\n    {\n      \"id\": 3610,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-08T23:52:07.777Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Present Windows Virtual Desktop: Prerequisites and requirements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Present Windows Virtual Desktop: Prerequisites and requirements\\n\\nhttps://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/wvd/?WT.mc_id=devops_userstory_service_wvd-inproduct-devopsportal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3583\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3574\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3580\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3581\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3582\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3610\"\n    },\n    {\n      \"id\": 3613,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T17:59:23.37Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Learning Paths\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Microsoft Docs | Learn platform - self paged learning</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3612\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3621\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3619\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3620\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3622\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3623\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3613\"\n    },\n    {\n      \"id\": 3614,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Windows Virtual Desktop\",\n        \"System.TeamProject\": \"Windows Virtual Desktop\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2020-12-09T17:59:32.263Z\",\n        \"System.CreatedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.ChangedDate\": \"2020-12-09T19:21:27.177Z\",\n        \"System.ChangedBy\": \"Wayne Meyer <wayneme@microsoft.com>\",\n        \"System.Title\": \"Tutorials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Microsoft Docs tutorials specific to workload</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Plan\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3616\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3612\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3617\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3615\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3618\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/wayneme/_apis/wit/workItems/3614\"\n    }\n\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/Dashboard/Dashboard.json",
    "content": "﻿{\n   \"name\":\"Overview\",\n   \"refreshInterval\":0,\n   \"position\":1,\n   \"widgets\":[\n    {\n      \"name\": \"Work in Progress\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"queryId\\\":\\\"$WorkinProgress$\\\", \\\"queryName\\\": \\\"Work in Progress\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n    },\n      {\n         \"name\":\"Team Members\",\n         \"position\":{\n            \"row\":1,\n            \"column\":6\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.TeamMembersWidget\"\n      },\n      {\n         \"name\":\"Sprint Burndown\",\n         \"position\":{\n            \"row\":3,\n            \"column\":1\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\"\n      },\n      {\n         \"name\":\"Work Links\",\n         \"position\":{\n            \"row\":2,\n            \"column\":6\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WorkLinksWidget\"\n      },\n      {\n         \"name\":\"New Work Item\",\n         \"position\":{\n            \"row\":3,\n            \"column\":3\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget\"\n      },\n      {\n         \"name\":\"Assigned to Me\",\n         \"position\":{\n            \"row\":1,\n            \"column\":3\n         },\n         \"size\":{\n            \"rowSpan\":2,\n            \"columnSpan\":3\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n         \"lightboxOptions\":{\n            \"width\":900,\n            \"height\":700,\n            \"resizable\":true\n         }\n      },\n      {\n         \"name\":\"Visual Studio Shortcuts\",\n         \"position\":{\n            \"row\":3,\n            \"column\":6\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.VSLinksWidget\"\n      },\n    {\n      \"name\": \"Welcome\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.HowToLinksWidget\"\n    }\n   ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/Dashboard/Queries/Work in Progress.json",
    "content": "﻿{\n  \"name\": \"Work in Progress_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.WorkItemType],[System.Title], [System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork] FROM workitems WHERE [System.TeamProject] = @project     AND [System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND [System.WorkItemType] IN GROUP 'Microsoft.TaskCategory'     AND [System.State] = 'In Progress' ORDER BY [System.AssignedTo],[Microsoft.VSTS.Common.BacklogPriority],[System.Id]\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/EpicfromTemplate.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 309,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:49.967Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:49.967Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Connector Shuttle Schedule Site\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Connector Shuttle Schedule Site\",\n        \"System.AssignedTo\": \"romsak@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/309\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/ImportSourceCode/ContosoShuttle.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://dev.azure.com/contososhuttle/_git/ContosoShuttle\"\n        },\n      \"serviceEndpointId\": \"$ContosoShuttle-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/PBIfromTemplate.json",
    "content": "{\n  \"count\": 11,\n  \"value\": [\n    {\n      \"id\": 318,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:53.887Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Create user sign up section\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create user sign up section\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/311\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/318\"\n    },\n    {\n      \"id\": 317,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:53.42Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Create user login\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create user login\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/311\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/317\"\n    },\n    {\n      \"id\": 316,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:53.217Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add user favourites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add user favourites\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/311\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/316\"\n    },\n    {\n      \"id\": 315,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:52.997Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add reminder notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add reminder notifications\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/311\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/315\"\n    },\n    {\n      \"id\": 314,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:52.73Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add shuttle bookings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add shuttle bookings\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/310\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/314\"\n    },\n    {\n      \"id\": 313,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:52.45Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Show when shuttle is fully booked\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show when shuttle is fully booked\",\n        \"System.AssignedTo\": \"romsak@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/310\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/313\"\n    },\n    {\n      \"id\": 320,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:54.45Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Show schedules filtered by destination\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show schedules filtered by destination\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/308\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/307\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/312\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/320\"\n    },\n    {\n      \"id\": 319,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:54.263Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Show days shuttle schedules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show days shuttle schedules\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/312\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/305\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/306\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/304\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/303\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/319\"\n    },\n    {\n      \"id\": 323,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:55.137Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Move ConnectionString to Azure Key Vault\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"Move the connection strings from web.config file to Azure Key Vault\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/323\"\n    },\n    {\n      \"id\": 322,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Work stopped\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:54.903Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add Help section\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"Add Help section\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/300\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/312\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/301\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/322\"\n    },\n    {\n      \"id\": 321,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Work stopped\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:54.67Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T23:01:08.687Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add countdown timer to next shuttle\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"Add countdown timer to next shuttle\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/312\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/299\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/321\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/ProjectSettings.json",
    "content": "﻿{\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\"]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"ContosoShuttle\",\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/ServiceEndpoints/ContosoShuttle-code.json",
    "content": "﻿{\n  \"data\": {\n\t\t\t\n\t\t},\t\t\n\t\t\"name\": \"ContosoShuttle-code\",\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://dev.azure.com/contososhuttle/_git/ContosoShuttle\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$ContosoUserID$\",\n      \"password\": \"$ContosoPassword$\"\n    }\n  },\n\t\t\"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/TaskfromTemplate.json",
    "content": "{\n  \"count\": 10,\n  \"value\": [\n    {\n      \"id\": 299,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:46.247Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:46.247Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add countdown timer to schedules page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add countdown timer to schedules page\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/321\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/299\"\n    },\n    {\n      \"id\": 300,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:46.48Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:46.48Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add link to top navigation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add link to top navigation\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/322\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/300\"\n    },\n    {\n      \"id\": 301,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:46.7Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:46.7Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Create help page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create help page\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/322\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/301\"\n    },\n    {\n      \"id\": 302,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:47.137Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:47.137Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Initialize repo using Key Vault secret\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Initialize repo using Key Vault secret\",\n        \"System.AssignedTo\": \"romsak@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/323\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/302\"\n    },\n    {\n      \"id\": 303,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:47.387Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:47.387Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Create home page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create home page\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/319\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/303\"\n    },\n    {\n      \"id\": 304,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:47.607Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:47.607Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Create schedules page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create schedules page\",\n        \"System.AssignedTo\": \"romsak@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/319\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/304\"\n    },\n    {\n      \"id\": 305,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:47.81Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:47.81Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add navigation to schedules page in header\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add navigation to schedules page in header\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/319\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/305\"\n    },\n    {\n      \"id\": 306,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:48.013Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:48.013Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add link on home page to view schedules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add link on home page to view schedules\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/319\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/306\"\n    },\n    {\n      \"id\": 307,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:48.247Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:48.247Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Enable filtering on schedules page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Enable filtering on schedules page\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/320\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/307\"\n    },\n    {\n      \"id\": 308,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-04-16T22:59:48.467Z\",\n        \"System.CreatedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.ChangedDate\": \"2018-04-16T22:59:48.467Z\",\n        \"System.ChangedBy\": \"Jason M <jsmcbr@outlook.com>\",\n        \"System.Title\": \"Add destination links to home page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add destination links to home page\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/320\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://jsmcbr.visualstudio.com/9829f9d8-eac6-427d-9501-5c87af847b02/_apis/wit/workItems/308\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle/Teams.json",
    "content": "[\n  {\n    \"name\": \"Team1\",\n    \"Description\": \"Team1 Description\"\n  },\n  {\n    \"name\": \"Team2\",\n    \"Description\": \"Team2 Description\"\n  }\n\n]\n    \n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Dashboard/Dashboard.json",
    "content": "﻿{\n   \"name\":\"Overview\",\n   \"refreshInterval\":0,\n   \"position\":1,\n   \"widgets\":[\n    {\n      \"name\": \"Work in Progress\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"queryId\\\":\\\"$WorkinProgress$\\\", \\\"queryName\\\": \\\"Work in Progress\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n    },\n      {\n         \"name\":\"Team Members\",\n         \"position\":{\n            \"row\":1,\n            \"column\":6\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.TeamMembersWidget\"\n      },\n      {\n         \"name\":\"Sprint Burndown\",\n         \"position\":{\n            \"row\":3,\n            \"column\":1\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\"\n      },\n      {\n         \"name\":\"Work Links\",\n         \"position\":{\n            \"row\":2,\n            \"column\":6\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WorkLinksWidget\"\n      },\n      {\n         \"name\":\"New Work Item\",\n         \"position\":{\n            \"row\":3,\n            \"column\":3\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget\"\n      },\n      {\n         \"name\":\"Assigned to Me\",\n         \"position\":{\n            \"row\":1,\n            \"column\":3\n         },\n         \"size\":{\n            \"rowSpan\":2,\n            \"columnSpan\":3\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n         \"lightboxOptions\":{\n            \"width\":900,\n            \"height\":700,\n            \"resizable\":true\n         }\n      },\n      {\n         \"name\":\"Visual Studio Shortcuts\",\n         \"position\":{\n            \"row\":3,\n            \"column\":6\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":null,\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.VSLinksWidget\"\n      },\n    {\n      \"name\": \"Welcome\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.HowToLinksWidget\"\n    }\n   ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Dashboard/Queries/Work in Progress.json",
    "content": "﻿{\n  \"name\": \"Work in Progress_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.WorkItemType],[System.Title], [System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork] FROM workitems WHERE [System.TeamProject] = @project     AND [System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND [System.WorkItemType] IN GROUP 'Microsoft.TaskCategory'     AND [System.State] = 'In Progress' ORDER BY [System.AssignedTo],[Microsoft.VSTS.Common.BacklogPriority],[System.Id]\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/ImportSourceCode/ContosoShuttle.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://dev.azure.com/contososhuttle/_git/ContosoShuttle\"\n        },\n      \"serviceEndpointId\": \"$ContosoShuttle-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 4\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"ContosoShuttle\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/ServiceEndpoints/ContosoShuttle-code.json",
    "content": "﻿{\n  \"data\": {\n\t\t\t\n\t\t},\t\t\n\t\t\"name\": \"ContosoShuttle-code\",\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://dev.azure.com/contososhuttle/_git/ContosoShuttle\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$ContosoUserID$\",\n      \"password\": \"$ContosoPassword$\"\n    }\n  },\n\t\t\"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Teams/ContosoShuttle Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Teams/ContosoShuttle Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Teams/ContosoShuttle Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"false\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"false\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Teams/ContosoShuttle Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Teams/ContosoShuttle Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"78fd3c46-56f1-4db1-9db6-a8c285db68d1\",\n    \"name\": \"ContosoShuttle Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/WorkItems/Epic.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 22,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:47.103Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-14T15:52:40.913Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Connector Shuttle Schedule Site\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Connector Shuttle Schedule Site\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/22\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 9,\n  \"value\": [\n    {\n      \"id\": 11,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Work stopped\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:45.45Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add countdown timer to next shuttle\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"Add countdown timer to next shuttle\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/12\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/11\"\n    },\n    {\n      \"id\": 10,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Work stopped\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:45.277Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add Help section\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"Add Help section\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/13\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/14\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/10\"\n    },\n    {\n      \"id\": 8,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:45.043Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Show days shuttle schedules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show days shuttle schedules\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/17\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/16\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/19\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/18\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/8\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:44.713Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Show when shuttle is fully booked\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show when shuttle is fully booked\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:44.433Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add shuttle bookings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add shuttle bookings\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:44.247Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add reminder notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add reminder notifications\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:44.103Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add user favourites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add user favourites\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:43.933Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Create user login\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create user login\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 1,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:43.59Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-10-19T16:16:49.35Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Create user sign up section\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create user sign up section\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/1\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/ContosoShuttle2/WorkItems/Task.json",
    "content": "{\n  \"count\": 10,\n  \"value\": [\n    {\n      \"id\": 21,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:46.933Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:46.933Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add destination links to home page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add destination links to home page\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/21\"\n    },\n    {\n      \"id\": 20,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:46.777Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:46.777Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Enable filtering on schedules page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Enable filtering on schedules page\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/20\"\n    },\n    {\n      \"id\": 19,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:46.65Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:46.65Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add link on home page to view schedules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add link on home page to view schedules\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/8\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/19\"\n    },\n    {\n      \"id\": 18,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:46.527Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:46.527Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add navigation to schedules page in header\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add navigation to schedules page in header\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/8\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/18\"\n    },\n    {\n      \"id\": 17,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:46.387Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:46.387Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Create schedules page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create schedules page\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/8\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/17\"\n    },\n    {\n      \"id\": 16,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:46.2Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:46.2Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Create home page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create home page\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/8\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/16\"\n    },\n    {\n      \"id\": 15,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:46.073Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:46.073Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Initialize repo using Key Vault secret\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Initialize repo using Key Vault secret\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/15\"\n    },\n    {\n      \"id\": 14,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:45.933Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:45.933Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Create help page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create help page\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/10\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/14\"\n    },\n    {\n      \"id\": 13,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:45.777Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:45.777Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add link to top navigation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add link to top navigation\",\n        \"System.AssignedTo\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/10\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/13\"\n    },\n    {\n      \"id\": 12,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoShuttle\",\n        \"System.TeamProject\": \"ContosoShuttle\",\n        \"System.IterationPath\": \"ContosoShuttle\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T20:39:45.603Z\",\n        \"System.CreatedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-08-20T20:39:45.603Z\",\n        \"System.ChangedBy\": \"David Svab (Infosys Ltd) <v-dasvab@microsoft.com>\",\n        \"System.Title\": \"Add countdown timer to schedules page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add countdown timer to schedules page\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/11\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/contososhuttle/_apis/wit/workItems/12\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CreateProject.json",
    "content": "{\n  \"name\": \"$projectName$\",\n  \"description\": \"Generated by Azure DevOps Demo Generator\",\n  \"capabilities\": {\n    \"versioncontrol\": {\n      \"sourceControlType\": \"Git\"\n    },\n    \"processTemplate\": {\n      \"templateTypeId\": \"$processTemplateId$\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/CreateWiki.json",
    "content": "﻿{\n  \"type\": \"projectWiki\",\n  \"name\": \"$Name$_wiki\",\n  \"projectId\": \"$ProjectID$\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/BuildDefinitions/AKS.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"721709\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"ACR\": {\n      \"value\": \"YOURACR.azurecr.io\",\n      \"isSecret\": true\n    },\n    \"SQLpassword\": {\n      \"value\": \"P2ssw0rd1234\",\n      \"isSecret\": true\n    },\n    \"SQLserver\": {\n      \"value\": \"YOURSQLSERVER.database.windows.net\",\n      \"isSecret\": true\n    },\n    \"SQLuser\": {\n      \"value\": \"sqladmin\",\n      \"isSecret\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Replace tokens in appsettings.json\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"a8515ec8-7254-4ffd-912c-86772e2b5962\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"rootDirectory\": \"$(build.sourcesdirectory)/src/MyHealth.Web\",\n              \"targetFiles\": \"appsettings.json\",\n              \"encoding\": \"auto\",\n              \"writeBOM\": \"true\",\n              \"actionOnMissing\": \"warn\",\n              \"keepToken\": \"false\",\n              \"tokenPrefix\": \"__\",\n              \"tokenSuffix\": \"__\",\n              \"emptyValue\": \"(empty)\",\n              \"escapeType\": \"none\",\n              \"escapeChar\": \"\",\n              \"charsToEscape\": \"\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Replace tokens in mhc-aks.yaml\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"a8515ec8-7254-4ffd-912c-86772e2b5962\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"rootDirectory\": \"\",\n              \"targetFiles\": \"mhc-aks.yaml\",\n              \"encoding\": \"auto\",\n              \"writeBOM\": \"true\",\n              \"actionOnMissing\": \"warn\",\n              \"keepToken\": \"false\",\n              \"tokenPrefix\": \"__\",\n              \"tokenSuffix\": \"__\",\n              \"emptyValue\": \"(empty)\",\n              \"escapeType\": \"none\",\n              \"escapeChar\": \"\",\n              \"charsToEscape\": \"\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Run services\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"DockerCompose1\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"dockerComposeFile\": \"docker-compose.ci.build.yml\",\n              \"additionalDockerComposeFiles\": \"\",\n              \"dockerComposeFileArgs\": \"\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Run services\",\n              \"additionalImageTags\": \"\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"false\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build services\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"DockerCompose2\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"dockerComposeFile\": \"docker-compose.yml\",\n              \"additionalDockerComposeFiles\": \"\",\n              \"dockerComposeFileArgs\": \"DOCKER_BUILD_SOURCE=\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Build services\",\n              \"additionalImageTags\": \"$(Build.BuildId)\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Push services\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"DockerCompose3\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"dockerComposeFile\": \"docker-compose.yml\",\n              \"additionalDockerComposeFiles\": \"\",\n              \"dockerComposeFileArgs\": \"DOCKER_BUILD_SOURCE=\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Push services\",\n              \"additionalImageTags\": \"$(Build.BuildId)\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Lock services\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"DockerCompose4\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"dockerComposeFile\": \"docker-compose.yml\",\n              \"additionalDockerComposeFiles\": \"\",\n              \"dockerComposeFileArgs\": \"DOCKER_BUILD_SOURCE=\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Lock services\",\n              \"additionalImageTags\": \"\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"CopyFiles5\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"\",\n              \"Contents\": \"**/mhc-aks.yaml\\n**/*.dacpac\\n\",\n              \"TargetFolder\": \"$(Build.ArtifactStagingDirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"PublishBuildArtifacts6\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.ArtifactStagingDirectory)\",\n              \"ArtifactName\": \"deploy\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$AKS$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"AKS\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"MyHealth.AKS.build\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/BuildDefinitions/MyHealthAKSbuild-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"ACR\": {\n      \"value\": \"YOURACR.azurecr.io\"\n    },\n    \"SQLpassword\": {\n      \"value\": \"P2ssw0rd1234\"\n    },\n    \"SQLserver\": {\n      \"value\": \"YOURSQLSERVER.database.windows.net\"\n    },\n    \"SQLuser\": {\n      \"value\": \"sqladmin\"\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/AKS\",\n      \"fullName\": \"AKS\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$AKS$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$AKS$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"AKS\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/AKS\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"MyHealth.AKS.build-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 3,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"Kubernetes extension\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=tsuyoshiushio.k8s-endpoint' target='_blank'>Kubernetes extension</a>\",\n      \"publisherId\": \"tsuyoshiushio\",\n      \"extensionId\": \"k8s-endpoint\",\n      \"publisherName\": \"Tsuyoshi Ushio\",\n      \"License\": \"\"\n    },\n    {\n      \"extensionName\": \"Replace Tokens\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=qetza.replacetokens' target='_blank'><b>Replace Tokens</b></a>\",\n      \"publisherId\": \"qetza\",\n      \"extensionId\": \"replacetokens\",\n      \"publisherName\": \"Guillaume Rouchon\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/qetza.replacetokens/license' target='_blank'>License Terms</a>\"\n\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/ImportSourceCode/AKS.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://vstsdemodata.visualstudio.com/_git/AKS\"\n        },\n      \"serviceEndpointId\": \"$AKS-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/ReleaseDefinitions/AKS.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 33,\n  \"description\": null,\n  \"isDeleted\": false,\n  \"variables\": {\n    \"ACR\": {\n      \"value\": \"YOURACR.azurecr.io\",\n      \"isSecret\": false\n    },\n    \"DatabaseName\": {\n      \"value\": \"mhcdb\",\n      \"isSecret\": false\n    },\n    \"SQLpassword\": {\n      \"value\": \"P2ssw0rd1234\",\n      \"isSecret\": false\n    },\n    \"SQLuser\": {\n      \"value\": \"sqladmin\",\n      \"isSecret\": false\n    },\n    \"SQLserver\": {\n      \"value\": \"YOURSQLSERVER.database.windows.net\",\n      \"isSecret\": false\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {},\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"DB deployment\",\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"ce85a08b-a538-4d2b-8589-1d37a9ab970f\",\n              \"version\": \"1.*\",\n              \"name\": \"Execute Azure SQL : DacpacTask\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceNameSelector\": \"ConnectedServiceNameARM\",\n                \"ConnectedServiceName\": \"\",\n                \"ConnectedServiceNameARM\": \"\",\n                \"ServerName\": \"$(SQLserver)\",\n                \"DatabaseName\": \"$(DatabaseName)\",\n                \"SqlUsername\": \" $(SQLuser)\",\n                \"SqlPassword\": \"$(SQLpassword)\",\n                \"DeploymentAction\": \"Publish\",\n                \"TaskNameSelector\": \"DacpacTask\",\n                \"DacpacFile\": \"$(System.DefaultWorkingDirectory)/**/*.dacpac\",\n                \"BacpacFile\": \"\",\n                \"SqlFile\": \"\",\n                \"SqlInline\": \"\",\n                \"PublishProfile\": \"\",\n                \"AdditionalArguments\": \"\",\n                \"SqlAdditionalArguments\": \"\",\n                \"InlineAdditionalArguments\": \"\",\n                \"IpDetectionMethod\": \"IPAddressRange\",\n                \"StartIpAddress\": \"0.0.0.0\",\n                \"EndIpAddress\": \"255.255.255.255\",\n                \"DeleteFirewallRule\": \"true\"\n              }\n            }\n          ]\n        },\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"ubuntu-18.04\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 2,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"AKS deployment\",\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"cbc316a2-586f-4def-be79-488a1f503564\",\n              \"version\": \"1.*\",\n              \"name\": \"Create Deployments & Services in AKS\",\n              \"refName\": \"Kubernetes1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"\",\n                \"kubernetesCluster\": \"\",\n                \"namespace\": \"\",\n                \"command\": \"apply\",\n                \"useConfigurationFile\": \"true\",\n                \"configuration\": \"$(System.DefaultWorkingDirectory)/MyHealth.AKS.build/deploy/mhc-aks.yaml\",\n                \"arguments\": \"\",\n                \"secretType\": \"dockerRegistry\",\n                \"secretArguments\": \"\",\n                \"containerRegistryType\": \"Azure Container Registry\",\n                \"dockerRegistryEndpoint\": \"\",\n                \"azureSubscriptionEndpointForSecrets\": \"\",\n                \"azureContainerRegistry\": \"$(ACR)\",\n                \"secretName\": \"mysecretkey\",\n                \"forceUpdate\": \"true\",\n                \"configMapName\": \"\",\n                \"forceUpdateConfigMap\": \"false\",\n                \"useConfigMapFile\": \"false\",\n                \"configMapFile\": \"\",\n                \"configMapArguments\": \"\",\n                \"versionOrLocation\": \"version\",\n                \"versionSpec\": \"1.8.1\",\n                \"checkLatest\": \"true\",\n                \"specifyLocation\": \"\",\n                \"cwd\": \"$(System.DefaultWorkingDirectory)\",\n                \"outputFormat\": \"json\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"cbc316a2-586f-4def-be79-488a1f503564\",\n              \"version\": \"1.*\",\n              \"name\": \"Update image in AKS\",\n              \"refName\": \"Kubernetes2\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"\",\n                \"kubernetesCluster\": \"\",\n                \"namespace\": \"\",\n                \"command\": \"set\",\n                \"useConfigurationFile\": \"false\",\n                \"configuration\": \"\",\n                \"arguments\": \"image deployments/mhc-front mhc-front=$(ACR)/myhealth.web:$(Build.BuildId)\",\n                \"secretType\": \"dockerRegistry\",\n                \"secretArguments\": \"\",\n                \"containerRegistryType\": \"Azure Container Registry\",\n                \"dockerRegistryEndpoint\": \"\",\n                \"azureSubscriptionEndpointForSecrets\": \"\",\n                \"azureContainerRegistry\": \"$(ACR)\",\n                \"secretName\": \"mysecretkey\",\n                \"forceUpdate\": \"true\",\n                \"configMapName\": \"\",\n                \"forceUpdateConfigMap\": \"false\",\n                \"useConfigMapFile\": \"false\",\n                \"configMapFile\": \"\",\n                \"configMapArguments\": \"\",\n                \"versionOrLocation\": \"version\",\n                \"versionSpec\": \"1.8.1\",\n                \"checkLatest\": \"true\",\n                \"specifyLocation\": \"\",\n                \"cwd\": \"$(System.DefaultWorkingDirectory)\",\n                \"outputFormat\": \"json\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {},\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$MyHealth.AKS.build-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"MyHealth.AKS.build\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$MyHealth.AKS.build-id$\",\n          \"name\": \"MyHealth.AKS.build\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"MyHealth.AKS.build\",\n      \"triggerConditions\": [],\n      \"triggerType\": \"artifactSource\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\" \n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    }\n  },\n  \"name\": \"MyHealth.AKS.Release\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/ServiceEndpoints/AKS-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"AKS-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/_git/AKS\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Azure Kubernetes Service Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Azure Kubernetes Service Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Azure Kubernetes Service Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Azure Kubernetes Service Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Azure Kubernetes Service Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team1/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team1/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team1/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team1/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team2/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team2/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team2/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team2/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"2ed16fd4-51f0-46ef-900e-e1775679192d\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"5033d4de-08be-4e86-9fe0-16a11f662991\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"d9c2fb62-65dd-426a-982d-a24a5cc2314e\",\n    \"name\": \"Azure Kubernetes Service Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/WorkItems/Epic.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 7382,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:01.42Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:01.6Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Patient Information\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Patient Information\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7318\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7314\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7382\"\n    },\n    {\n      \"id\": 7383,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:01.727Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:01.6Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Fianance Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Fianance Management\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7320\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7383\"\n    },\n    {\n      \"id\": 7384,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:02.03Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:01.6Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Patient Mobile App\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Patient Mobile App\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7316\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7315\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7384\"\n    },\n    {\n      \"id\": 7385,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:02.317Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:01.6Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Web Portal for Doctors\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Web Portal for Doctors\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7317\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7321\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7385\"\n    },\n    {\n      \"id\": 7386,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:02.607Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:01.6Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"HIPAA Compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"HIPAA Compliance\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7319\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7386\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/WorkItems/Feature.json",
    "content": "{\n  \"count\": 8,\n  \"value\": [\n    {\n      \"id\": 7314,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:37.003Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:06.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Visit Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Visit Management\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7382\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7314\"\n    },\n    {\n      \"id\": 7315,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:37.96Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:06.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Alerts and Reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Alerts and Reminders\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7384\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7315\"\n    },\n    {\n      \"id\": 7316,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:38.537Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:06.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Appointments Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7384\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7316\"\n    },\n    {\n      \"id\": 7317,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:38.997Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:06.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Consultation Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Consultation Management\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7385\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7317\"\n    },\n    {\n      \"id\": 7318,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:39.433Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:06.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Patient Register\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7382\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7318\"\n    },\n    {\n      \"id\": 7319,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:39.873Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:06.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7386\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7319\"\n    },\n    {\n      \"id\": 7320,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:40.333Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:06.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Backoffice\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7383\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7320\"\n    },\n    {\n      \"id\": 7321,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:40.733Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:23:06.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Schedule Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Schedule Management\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 15.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7385\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7321\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 19,\n  \"value\": [\n    {\n      \"id\": 7322,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:41.023Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:41.023Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Settings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7322\"\n    },\n    {\n      \"id\": 7323,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:41.44Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:41.44Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Print Patient Invoice\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Print Patient Invoice\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Compliance; Finance\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7323\"\n    },\n    {\n      \"id\": 7324,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:41.947Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:41.947Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Print Prescription\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Print Prescription\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7324\"\n    },\n    {\n      \"id\": 7325,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:42.73Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:42.73Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Show patient visit history over time periods - month & year\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 15.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7325\"\n    },\n    {\n      \"id\": 7326,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:43.213Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:43.213Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Sign-in with O365\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 35.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7326\"\n    },\n    {\n      \"id\": 7327,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:43.543Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:43.543Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Map with the position of the next patient\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Mobile; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7327\"\n    },\n    {\n      \"id\": 7328,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:43.853Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:43.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Payment Reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Payment Reminders\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Finance\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7328\"\n    },\n    {\n      \"id\": 7329,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:44.24Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:44.24Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Send e-prescription to patients\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 4.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 17.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7329\"\n    },\n    {\n      \"id\": 7330,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:44.533Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:44.533Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Backend Services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Backend Services\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7330\"\n    },\n    {\n      \"id\": 7331,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:45.04Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:45.04Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Appointment Reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Appointment Integration with Native Calendar\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Doctor; Mobile; Notification; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7331\"\n    },\n    {\n      \"id\": 7332,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:45.343Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:45.343Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Countdown to the next pill\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Mobile; Notification\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7332\"\n    },\n    {\n      \"id\": 7333,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:45.643Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:17:03.267Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add Contact Us to the WebApp\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add Contact Us to the WebApp\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/3faf4b1f-cf26-4926-bf49-7ce7ef3a1395%2F%2F$Added Contact Us Tab to homepage$\",\n          \"attributes\": {\n            \"authorizedDate\": \"2021-09-21T12:17:03.267Z\",\n            \"id\": \"4330306\",\n            \"resourceCreatedDate\": \"2021-09-21T12:17:03.267Z\",\n            \"resourceModifiedDate\": \"2021-09-21T12:17:03.267Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/3faf4b1f-cf26-4926-bf49-7ce7ef3a1395%2f%2f180f79b29eea8a90998c7a75acdb806cc31cbbad\",\n          \"attributes\": {\n            \"authorizedDate\": \"2021-09-21T12:17:02.887Z\",\n            \"id\": \"4330305\",\n            \"resourceCreatedDate\": \"2021-09-21T12:17:02.887Z\",\n            \"resourceModifiedDate\": \"2021-09-21T12:17:02.887Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7333\"\n    },\n    {\n      \"id\": 7334,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:46.023Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:46.023Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create recurring appointment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 25.0,\n        \"System.Description\": \"We need to be able to crate new appointments for the clinic\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7334\"\n    },\n    {\n      \"id\": 7335,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:46.4Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:46.4Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"My Medical Appointments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 30.0,\n        \"System.Description\": \"My Medical Appointments\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Calendar; Mobile; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7335\"\n    },\n    {\n      \"id\": 7336,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:46.707Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:46.707Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Patient Information Summary\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 35.0,\n        \"System.Description\": \"Personal Patient Information\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Compliance; Doctor; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7336\"\n    },\n    {\n      \"id\": 7337,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:47Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:47Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Appointment detail info\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor; Mobile; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7337\"\n    },\n    {\n      \"id\": 7338,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:47.557Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:47.557Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update visit status\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update visit status\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7338\"\n    },\n    {\n      \"id\": 7339,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:47.887Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:47.887Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Patient Medical History\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 1.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Compliance; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7339\"\n    },\n    {\n      \"id\": 7340,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:48.22Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:48.22Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Manage Doctors Schedule\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Manage Doctors\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 15.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7340\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AKS/WorkItems/Task.json",
    "content": "{\n  \"count\": 41,\n  \"value\": [\n    {\n      \"id\": 7341,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:48.527Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:48.527Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update patient information page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update patient information page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7341\"\n    },\n    {\n      \"id\": 7342,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:48.887Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:48.887Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Auto update of visit status with doctors analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Auto update of visit status with doctors analysis\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7342\"\n    },\n    {\n      \"id\": 7343,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:49.17Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:49.17Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Send terms by email\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Send terms by email\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7343\"\n    },\n    {\n      \"id\": 7344,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:49.45Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:49.45Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Position change query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Position change query\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7344\"\n    },\n    {\n      \"id\": 7345,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:49.913Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:49.913Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add send payment reminder option to the navigation menu\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add send payment reminder option to the navigation menu\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7345\"\n    },\n    {\n      \"id\": 7346,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:50.217Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:50.217Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Show outstanding payments by date range\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show outstanding payments by date range\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7346\"\n    },\n    {\n      \"id\": 7347,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:50.497Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:50.497Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Show outstanding payments by patient ID\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show outstanding payments by patient ID\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7347\"\n    },\n    {\n      \"id\": 7348,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:50.78Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:50.78Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update settings for reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update settings for reminders\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7348\"\n    },\n    {\n      \"id\": 7349,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:51.057Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:51.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"email prescription as an attachment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"email prescription as an attachment\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7349\"\n    },\n    {\n      \"id\": 7350,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:51.983Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:51.983Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Show past appointments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show past appointments\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 16.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7350\"\n    },\n    {\n      \"id\": 7351,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:52.26Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:52.26Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Test appointment views\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Test appointment views\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7351\"\n    },\n    {\n      \"id\": 7352,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:52.54Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:52.54Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Allow filtering of dates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Visited patients\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 12.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7352\"\n    },\n    {\n      \"id\": 7353,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:52.827Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:52.827Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Print patient visit history\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Print patient visit history\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 24.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7353\"\n    },\n    {\n      \"id\": 7354,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:53.103Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:53.103Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add New \\\"Visit History\\\" page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add New &quot;Visit History&quot; page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 16.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7354\"\n    },\n    {\n      \"id\": 7355,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:53.387Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:53.387Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Redesign the calendar page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Redesign the calendar page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7355\"\n    },\n    {\n      \"id\": 7356,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:53.68Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:53.68Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"AD Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"AD Integration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 20.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7356\"\n    },\n    {\n      \"id\": 7357,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:53.963Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:53.963Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"SIgn-in with O365\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 15.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7357\"\n    },\n    {\n      \"id\": 7358,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:54.28Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:54.28Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Next pill -reminder\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Next pill -reminder\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7358\"\n    },\n    {\n      \"id\": 7359,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:54.57Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:54.57Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Allow reminder options in the settings page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Allow reminder options in the settings page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7359\"\n    },\n    {\n      \"id\": 7360,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:54.85Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:54.85Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Position change query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Position change query\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7360\"\n    },\n    {\n      \"id\": 7361,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:55.13Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:55.13Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Settings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7361\"\n    },\n    {\n      \"id\": 7362,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:55.42Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:55.42Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Form - New Appointment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Form - New Appointment\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7362\"\n    },\n    {\n      \"id\": 7363,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:55.72Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:55.72Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Visited patients\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7363\"\n    },\n    {\n      \"id\": 7364,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:56.01Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:56.01Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Next pill -reminder\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Next pill -reminder\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 13.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7364\"\n    },\n    {\n      \"id\": 7365,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:56.297Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:56.297Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Navigation menu update\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Navigation menu update\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7365\"\n    },\n    {\n      \"id\": 7366,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:56.573Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:56.573Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Backed Query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Backed Query\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 12.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7366\"\n    },\n    {\n      \"id\": 7367,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:56.853Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:56.853Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add Reminders to settings page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add Reminders to settings page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 45.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7367\"\n    },\n    {\n      \"id\": 7368,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:57.277Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:57.277Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Disable dates of doctors non-availaibilty\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Disable dates of doctors non-availaibilty\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7368\"\n    },\n    {\n      \"id\": 7369,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:57.567Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:57.567Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Filter medical history by date range\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Filter medical history by date range upcaxdxrdxxx drx\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7369\"\n    },\n    {\n      \"id\": 7370,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:57.847Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:57.847Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Show Doctor list \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show Doctor list \",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7370\"\n    },\n    {\n      \"id\": 7371,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:58.137Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:58.137Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Filter by speciality and clinic\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Filter by speciality and clinic\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 4.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7371\"\n    },\n    {\n      \"id\": 7372,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:58.42Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:58.42Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Design new settings page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design new settings page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7372\"\n    },\n    {\n      \"id\": 7373,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:58.7Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:58.7Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Display name of the pill and countdown timer on the main page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Display name of the pill and countdown timer on the main page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7373\"\n    },\n    {\n      \"id\": 7374,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"Azure Kubernetes Service\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:58.983Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:58.983Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update settings for reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update settings for reminders\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7374\"\n    },\n    {\n      \"id\": 7375,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:59.267Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:59.267Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Display upcoming appointments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Display upcoming appointments\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7375\"\n    },\n    {\n      \"id\": 7376,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:59.583Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:59.583Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Design screen layout\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design screen layout\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7376\"\n    },\n    {\n      \"id\": 7377,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:16:59.907Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:16:59.907Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Cancel Appointment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cancel Appointment\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7377\"\n    },\n    {\n      \"id\": 7378,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:00.207Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:17:00.207Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update insurance provider details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update insurance provider details\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7378\"\n    },\n    {\n      \"id\": 7379,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:00.487Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:17:00.487Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update patient details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update patient details\",\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7379\"\n    },\n    {\n      \"id\": 7380,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:00.82Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:17:00.82Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add recurring option in new appointment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Form - New Appointment\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7380\"\n    },\n    {\n      \"id\": 7381,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Kubernetes Service\",\n        \"System.TeamProject\": \"Azure Kubernetes Service\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-09-21T12:17:01.117Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T12:17:01.117Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Navigation menu update\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Navigation menu update\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7381\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/BuildDefinitions/Ansible-CI-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/SmartHotel360-CouponManagement\",\n      \"fullName\": \"SmartHotel360-CouponManagement\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$SmartHotel360-CouponManagement$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$SmartHotel360-CouponManagement$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"SmartHotel360-CouponManagement\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/SmartHotel360-CouponManagement\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Ansible-CI-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/BuildDefinitions/Ansible-CI.json",
    "content": "{\n    \"options\": [\n        {\n            \"enabled\": true,\n            \"definition\": {\n                \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n            },\n            \"inputs\": {\n                \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n                \"additionalFields\": \"{}\"\n            }\n        },\n        {\n            \"enabled\": false,\n            \"definition\": {\n                \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n            },\n            \"inputs\": {\n                \"workItemType\": \"Bug\",\n                \"assignToRequestor\": \"true\",\n                \"additionalFields\": \"{}\"\n            }\n        }\n    ],\n    \"variables\": {\n        \"system.debug\": {\n            \"value\": \"false\",\n            \"allowOverride\": true\n        }\n    },\n    \"retentionRules\": [\n        {\n            \"branches\": [\n                \"+refs/heads/*\"\n            ],\n            \"artifacts\": [],\n            \"artifactTypesToDelete\": [\n                \"FilePath\",\n                \"SymbolStore\"\n            ],\n            \"daysToKeep\": 10,\n            \"minimumToKeep\": 1,\n            \"deleteBuildRecord\": true,\n            \"deleteTestResults\": true\n        }\n    ],\n    \"properties\": {},\n    \"tags\": [],\n    \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n    \"jobAuthorizationScope\": \"projectCollection\",\n    \"jobTimeoutInMinutes\": 60,\n    \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Maven Build \",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"ac4ee482-65da-4485-a532-7b085873e532\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"mavenPOMFile\": \"$(Parameters.mavenPOMFile)\",\n              \"goals\": \"package\",\n              \"options\": \"\",\n              \"publishJUnitResults\": \"true\",\n              \"testResultsFiles\": \"**/surefire-reports/TEST-*.xml\",\n              \"testRunTitle\": \"\",\n              \"codeCoverageTool\": \"None\",\n              \"classFilter\": \"\",\n              \"classFilesDirectories\": \"\",\n              \"srcDirectories\": \"\",\n              \"failIfCoverageEmpty\": \"false\",\n              \"javaHomeSelection\": \"JDKVersion\",\n              \"jdkVersion\": \"default\",\n              \"jdkUserInputPath\": \"\",\n              \"jdkArchitecture\": \"x64\",\n              \"mavenVersionSelection\": \"Default\",\n              \"mavenPath\": \"\",\n              \"mavenSetM2Home\": \"false\",\n              \"mavenOpts\": \"-Xmx1024m\",\n              \"mavenFeedAuthenticate\": \"false\",\n              \"sqAnalysisEnabled\": \"false\",\n              \"sqMavenPluginVersionChoice\": \"latest\",\n              \"checkstyleAnalysisEnabled\": \"false\",\n              \"pmdAnalysisEnabled\": \"false\",\n              \"findbugsAnalysisEnabled\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files to: $(build.artifactstagingdirectory)\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(build.sourcesdirectory)\",\n              \"Contents\": \"**/*.war\\n**/*.yml\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact: drop\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n    \"repository\": {\n        \"properties\": {\n            \"cleanOptions\": \"0\",\n            \"labelSources\": \"0\",\n            \"labelSourcesFormat\": \"$(build.buildNumber)\",\n            \"reportBuildStatus\": \"true\",\n            \"gitLfsSupport\": \"false\",\n            \"skipSyncSource\": \"false\",\n            \"checkoutNestedSubmodules\": \"false\",\n            \"fetchDepth\": \"0\"\n        },\n        \"id\": \"$SmartHotel360-CouponManagement$\",\n        \"type\": \"TfsGit\",\n        \"name\": \"SmartHotel360-CouponManagement\",\n        \"defaultBranch\": \"refs/heads/master\",\n        \"clean\": \"false\",\n        \"checkoutSubmodules\": false\n    },\n    \"processParameters\": {\n        \"inputs\": [\n            {\n                \"aliases\": [],\n                \"options\": {},\n                \"properties\": {},\n                \"name\": \"mavenPOMFile\",\n                \"label\": \"Maven POM file\",\n                \"defaultValue\": \"pom.xml\",\n                \"required\": true,\n                \"type\": \"filePath\",\n                \"helpMarkDown\": \"\"\n            }\n        ]\n    },\n    \"quality\": \"definition\",\n    \"drafts\": [],\n    \"queue\": {\n        \"name\": \"Azure Pipelines\",\n        \"pool\": {\n            \"name\": \"Azure Pipelines\",\n            \"isHosted\": true\n        }\n    },\n    \"name\": \"Ansible-CI\",\n    \"path\": \"\\\\\",\n    \"type\": \"build\"    \n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"Replace Tokens\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=qetza.replacetokens' target='_blank'><b>Replace Tokens</b></a>\",\n      \"publisherId\": \"qetza\",\n      \"extensionId\": \"replacetokens\",\n      \"publisherName\": \"Guillaume Rouchon\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/qetza.replacetokens/license' target='_blank'>License Terms</a>\"\n\n    },\n    {\n      \"extensionName\": \"Ansible\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-vscs-rm.vss-services-ansible' target='_blank'><b>Ansible</b></a>\",\n      \"publisherId\": \"ms-vscs-rm\",\n      \"extensionId\": \"vss-services-ansible\",\n      \"publisherName\": \"microsoft\",\n      \"License\": \"\"\n\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/ImportSourceCode/SmartHotel360-CouponManagement.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/Ansible/_git/SmartHotel360-CouponManagement\"\n    },\n    \"serviceEndpointId\": \"$Ansible-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"CardStyles.json\",\n  \"CardField\": \"CardFields.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/ReleaseDefinitions/Ansible.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 16,\n  \"description\": null,\n  \"isDeleted\": false,\n  \"variables\": {\n    \"location\": {\n      \"value\": \"east us\",\n      \"isSecret\": false\n    },\n    \"mysqlAdmin\": {\n      \"value\": \"vmadmin\",\n      \"isSecret\": false\n    },\n    \"mysqlAdminSecret\": {\n      \"value\": \"P2ssw0rd@123\",\n      \"isSecret\": false\n    },\n    \"mysqlDbName\": {\n      \"value\": \"hotel_coupon\",\n      \"isSecret\": false\n    },\n    \"mysqlServerName\": {\n      \"value\": \"smh360mysql$UUID$\",\n      \"isSecret\": false\n    },\n    \"resourceGroupName\": {\n      \"value\": \"ansible\",\n      \"isSecret\": false\n    },\n    \"webappName\": {\n      \"value\": \"smh360web$UUID$\",\n      \"isSecret\": false\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 2,\n      \"name\": \"Azure Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 4\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 5\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 6\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": [\n                {\n                  \"artifactItems\": [],\n                  \"alias\": \"_Ansible-CI\",\n                  \"artifactType\": \"Build\",\n                  \"artifactDownloadMode\": \"All\"\n                }\n              ]\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent job\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"a8515ec8-7254-4ffd-912c-86772e2b5962\",\n              \"version\": \"4.*\",\n              \"name\": \"Replace variables in Ansible script to deploy Azure resources\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"rootDirectory\": \"\",\n                \"targetFiles\": \"**/*.yml\",\n                \"encoding\": \"auto\",\n                \"writeBOM\": \"true\",\n                \"actionOnMissing\": \"warn\",\n                \"keepToken\": \"false\",\n                \"tokenPrefix\": \"__\",\n                \"tokenSuffix\": \"__\",\n                \"emptyValue\": \"(empty)\",\n                \"escapeType\": \"none\",\n                \"escapeChar\": \"\",\n                \"charsToEscape\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"6f650d20-9c5d-4cce-ad66-e68742ceadf5\",\n              \"version\": \"0.*\",\n              \"name\": \"Run playbook to deploy Azure resources\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ansibleInterface\": \"remoteMachine\",\n                \"connectionOverSsh\": \"\",\n                \"playbookSourceRemoteMachine\": \"agentMachine\",\n                \"playbookRootRemoteMachine\": \"$(System.DefaultWorkingDirectory)/_Ansible-CI/drop/ansible-scripts\",\n                \"playbookPathLinkedArtifactOnRemoteMachine\": \"webapp.yml\",\n                \"playbookPathAnsibleMachineOnRemoteMachine\": \"\",\n                \"playbookPathOnAgentMachine\": \"\",\n                \"inventoriesRemoteMachine\": \"noInventory\",\n                \"inventoryFileSourceRemoteMachine\": \"agentMachine\",\n                \"inventoryFileLinkedArtifactOnRemoteMachine\": \"\",\n                \"inventoryFileAnsibleMachineOnRemoteMachine\": \"\",\n                \"inventoryHostListRemoteMachine\": \"\",\n                \"inventoryInlineDynamicRemoteMachine\": \"false\",\n                \"inventoryInlineContentRemoteMachine\": \"\",\n                \"inventoriesAgentMachine\": \"noInventory\",\n                \"inventoryFileOnAgentMachine\": \"\",\n                \"inventoryHostListAgentMachine\": \"\",\n                \"inventoryInlineDynamicAgentMachine\": \"false\",\n                \"inventoryInlineContentAgentMachine\": \"\",\n                \"sudoEnabled\": \"false\",\n                \"sudoUser\": \"\",\n                \"args\": \"\",\n                \"failOnStdErr\": \"false\",\n                \"connectionAnsibleTower\": \"\",\n                \"jobTemplateName\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppKind\": \"app\",\n                \"WebAppName\": \"$(webappName)\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"ImageSource\": \"Registry\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.war\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"-SPRING_DATASOURCE_USERNAME $(mysqlAdmin)@$(mysqlServerName) -SPRING_DATASOURCE_PASSWORD $(mysqlAdminSecret) -SPRING_DATASOURCE_URL jdbc:mysql://$(mysqlServerName).mysql.database.azure.com:3306/hotel_coupon?useSSL=true&requireSSL=false\",\n                \"ConfigurationSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"UseWebDeploy\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"true\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Ansible-CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Ansible-CI\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"selectDuringReleaseCreationType\",\n          \"name\": \"Specify at the time of release creation\"\n        },\n        \"definition\": {\n          \"id\": \"$Ansible-CI-id$\",\n          \"name\": \"Ansible-CI\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"Other\"\n    }\n  },\n  \"name\": \"Ansible-CD\",\n  \"path\": \"\\\\\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/ServiceEndpoints/SmartHotel360-CouponManagement.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Ansible-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/Ansible/_git/SmartHotel360-CouponManagement\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/Teams/Ansible Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/Teams/Ansible Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/Teams/Ansible Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/Teams/Ansible Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/Teams/Ansible Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Ansible/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"1c340aca-25b9-4ebc-847c-47fdc294b886\",\n    \"name\": \"Ansible Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/BuildDefinitions/AzureFunctions_CI-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/AzureFunctions\",\n      \"fullName\": \"AzureFunctions\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$AzureFunctions$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$AzureFunctions$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"AzureFunctions\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/AzureFunctions\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"AzureFunctions_CI-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 3,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/BuildDefinitions/AzureFunctions_CI.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"773141\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Restore\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.RestoreBuildProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"build\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.RestoreBuildProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"test\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.TestProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"publish\",\n              \"publishWebProjects\": \"false\",\n              \"projects\": \"**/*.csproj\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"True\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"windows-2019\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$AzureFunctions$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"AzureFunctions\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"RestoreBuildProjects\",\n        \"label\": \"Project(s) to restore and build\",\n        \"defaultValue\": \"**/*.csproj\",\n        \"type\": \"multiline\",\n        \"helpMarkDown\": \"Relative path of the .csproj file(s) from repo root. Wildcards can be used. For example, **/*.csproj for all .csproj files in all the subfolders.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"TestProjects\",\n        \"label\": \"Project(s) to test\",\n        \"defaultValue\": \"**/*Tests/*.csproj\",\n        \"type\": \"multiline\",\n        \"helpMarkDown\": \"Relative path of the .csproj file(s) from repo root. Wildcards can be used. For example, **/*.csproj for all .csproj files in all the subfolders.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"AzureFunctions_CI\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/ImportSourceCode/AzureFunctions.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/vstsdemodata/_git/AzureFunctions\"\n    },\n    \"serviceEndpointId\": \"$AzureFunctions-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Azure Functions\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"IsPrivate\": \"true\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/ReleaseDefinitions/AzureFunctions_CD.json",
    "content": "{\n  \"name\": \"AzureFunctions_CD\",\n  \"source\": 2,\n  \"revision\": 10,\n  \"description\": null,\n  \"isDeleted\": false,\n  \"variables\": {},\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 1,\n      \"name\": \"Environment 1\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": 1\n        }\n      },\n      \"deployStep\": {\n        \"id\": 2\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": 2\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": 0\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": [\n                {\n                  \"alias\": \"AzureFunctions_CI\",\n                  \"artifactType\": \"Build\",\n                  \"artifactDownloadMode\": \"All\",\n                  \"artifactItems\": []\n                }\n              ]\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": 1,\n          \"name\": \"Agent phase\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Deploy PartsUnlimited Website\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppKind\": \"app\",\n                \"WebAppName\": \"\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"ImageSource\": \"Registry\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*Website.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            },\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Deploy PartsUnlimited APIs\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppKind\": \"app\",\n                \"WebAppName\": \"\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"ImageSource\": \"Registry\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*API.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"501dd25d-1785-43e4-b4e5-a5c78ccc0573\",\n              \"version\": \"1.*\",\n              \"name\": \"Deploy PartsUnlimited AzureFunction\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"azureSubscription\": \"\",\n                \"appType\": \"functionApp\",\n                \"appName\": \"\",\n                \"deployToSlotOrASE\": \"false\",\n                \"resourceGroupName\": \"\",\n                \"slotName\": \"production\",\n                \"package\": \"$(System.DefaultWorkingDirectory)/**/*AzureFunction.zip\",\n                \"runtimeStack\": \"\",\n                \"startUpCommand\": \"\",\n                \"customWebConfig\": \"\",\n                \"appSettings\": \"\",\n                \"configurationStrings\": \"\",\n                \"deploymentMethod\": \"auto\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": 1,\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      }\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$AzureFunctions_CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"AzureFunctions_CI\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$AzureFunctions_CI-id$\",\n          \"name\": \"AzureFunctions_CI\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/ServiceEndpoints/AzureFunctions-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"AzureFunctions-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vstsdemodata/_git/AzureFunctions\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Azure Functions Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Azure Functions Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Azure Functions Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Azure Functions Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Azure Functions Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team1/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team1/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team1/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team1/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team2/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team2/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team2/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team2/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"e8414d50-c4f5-41a8-b29d-c1aed71f8cbe\",\n    \"name\": \"Azure Functions Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"f302bae8-9b24-47be-8218-95e1c16b83e6\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"820da793-7aa0-4366-aea2-55d36e13eb6a\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/WorkItems/Epic.json",
    "content": "{\n  \"count\": 16,\n  \"value\": [\n    {\n      \"id\": 7200,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:44.753Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7200\"\n    },\n    {\n      \"id\": 7201,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:45.053Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Shopping Cart Facility\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Shopping Cart Facility\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7193\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7189\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7190\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7187\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7201\"\n    },\n    {\n      \"id\": 7202,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:45.75Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Online tracking of shipments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Online tracking of shipments\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7188\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7191\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7202\"\n    },\n    {\n      \"id\": 7203,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:46.037Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Product reviews and ratings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Product reviews and ratings\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7186\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7185\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7203\"\n    },\n    {\n      \"id\": 7204,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:46.313Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Promotion and Rewards\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Promotion and Rewards\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7197\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7194\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7204\"\n    },\n    {\n      \"id\": 7205,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:46.61Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Notification\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7192\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7205\"\n    },\n    {\n      \"id\": 7206,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:46.893Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Membership and Rewards Program\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Membership and Rewards Program\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7184\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7183\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7206\"\n    },\n    {\n      \"id\": 7207,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:47.31Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Customer Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Customer Service\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7195\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7196\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7207\"\n    },\n    {\n      \"id\": 7208,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:47.597Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Product Catalog\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Product Catalog\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7198\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7208\"\n    },\n    {\n      \"id\": 7209,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:47.88Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:09.463Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Payment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Payment\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7199\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7209\"\n    },\n    {\n      \"id\": 7210,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:48.167Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-31T15:22:48.167Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As ops guy, I'd like to make sure I am notified anytime public availability is impacted for key user scenarios\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As ops guy, I'd like to make sure I am notified anytime public availability is impacted for key user scenarios\",\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7210\"\n    },\n    {\n      \"id\": 7211,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:48.51Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-31T15:22:48.51Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a user i want to be able to search the PartsUnlimited Website so that i can find the products i want to purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a user i want to be able to search the PartsUnlimited Website so that i can find the products i want to purchase\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7211\"\n    },\n    {\n      \"id\": 7212,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:48.817Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-31T15:22:48.817Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7212\"\n    },\n    {\n      \"id\": 7213,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:49.12Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-31T15:22:49.12Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"We want to make frequent enhancements to the MRP application and need to modernize the application from its current legacy state.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"We want to make frequent enhancements to the MRP application and need to modernize the application from its current legacy state.\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7213\"\n    },\n    {\n      \"id\": 7214,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:49.413Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-31T15:22:49.413Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As ops guy, I'd like to keep the business owners happy ensuring there is no wasted spend in cloud resources.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As ops guy, I'd like to keep the business owners happy ensuring there is no wasted spend in cloud resources.\",\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7214\"\n    },\n    {\n      \"id\": 7215,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:49.837Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-31T15:22:49.837Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7215\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-AzureFunctions/WorkItems/Feature.json",
    "content": "{\n  \"count\": 17,\n  \"value\": [\n    {\n      \"id\": 7183,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:18.953Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Points Accural on Purchases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Points Accural on Purchases\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7206\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7183\"\n    },\n    {\n      \"id\": 7184,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:19.81Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Rewards Redemption\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Rewards Redemption\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7206\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7184\"\n    },\n    {\n      \"id\": 7185,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:20.14Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Ratings for purchased items\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ratings for purchased items\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7203\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7185\"\n    },\n    {\n      \"id\": 7186,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:21.153Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Supplier Feedback\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Supplier Feedback\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7203\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7186\"\n    },\n    {\n      \"id\": 7187,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:21.643Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Shipping charges calculation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Shipping charges calculation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7201\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7187\"\n    },\n    {\n      \"id\": 7188,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:22.17Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Delivery Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Delivery Options\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7202\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7188\"\n    },\n    {\n      \"id\": 7189,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:22.65Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Order cancellation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Order cancellation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7201\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7189\"\n    },\n    {\n      \"id\": 7190,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:23.037Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Order confirmation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Order confirmation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7201\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7190\"\n    },\n    {\n      \"id\": 7191,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:23.93Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Delivery confirmation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Delivery confirmation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7202\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7191\"\n    },\n    {\n      \"id\": 7192,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:24.437Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Customer notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Customer notification\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7205\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7192\"\n    },\n    {\n      \"id\": 7193,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:24.987Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Gift Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Gift Options\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7201\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7193\"\n    },\n    {\n      \"id\": 7194,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:25.283Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Ad-hoc promotions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ad-hoc promotions\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7204\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7194\"\n    },\n    {\n      \"id\": 7195,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:25.597Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Customer issues\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Customer issues\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7207\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7195\"\n    },\n    {\n      \"id\": 7196,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:25.993Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Ask for customer feedback\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ask for customer feedback\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7207\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7196\"\n    },\n    {\n      \"id\": 7197,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:26.893Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Product Recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Product Recommendations\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7204\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7197\"\n    },\n    {\n      \"id\": 7198,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:27.173Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Product catalog changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Product catalog changes\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7208\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7198\"\n    },\n    {\n      \"id\": 7199,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Azure Functions\",\n        \"System.TeamProject\": \"Azure Functions\",\n        \"System.IterationPath\": \"Azure Functions\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-31T15:22:27.453Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:29:15.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Credit Card Purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Credit Card Purchase\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7209\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7199\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/BoardColumns.json",
    "content": "[\n  {\n    \"description\": \"\",\n    \"name\": \"New\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"New\",\n      \"Bug\": \"New\"\n    },\n    \"columnType\": \"incoming\",\n    \"isSplit\": null\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Approved\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Approved\",\n      \"Bug\": \"Approved\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Committed\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Committed\",\n      \"Bug\": \"Committed\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Done\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Done\",\n      \"Bug\": \"Done\"\n    },\n    \"columnType\": \"outgoing\",\n    \"isSplit\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/BoardRowsFromTemplate.json",
    "content": "[\n  {\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"name\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/BuildDefinitions/DeploymentGroups.json",
    "content": "{\n\n  \"name\": \"DeploymentGroups\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"723305\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+refs/heads/master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"NuGet restore\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"\",\n            \"task\": {\n              \"id\": \"333b11bd-d341-40d9-afcf-b32d5ce6f23b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"solution\": \"$(Parameters.solution)\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"allowPackageConflicts\": \"false\",\n              \"externalEndpoint\": \"\",\n              \"verbosityPush\": \"Detailed\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"versioningScheme\": \"off\",\n              \"includeReferencedProjects\": \"false\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"packTimezone\": \"utc\",\n              \"includeSymbols\": \"false\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"arguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build solution\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"\",\n            \"task\": {\n              \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"solution\": \"$(Parameters.solution)\",\n              \"vsVersion\": \"latest\",\n              \"msbuildArgs\": \"/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation=\\\"$(build.artifactstagingdirectory)\\\\\\\\\\\"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"clean\": \"false\",\n              \"maximumCpuCount\": \"false\",\n              \"restoreNugetPackages\": \"false\",\n              \"msbuildArchitecture\": \"x86\",\n              \"logProjectEvents\": \"true\",\n              \"createLogFile\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test Assemblies\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"\",\n            \"task\": {\n              \"id\": \"ef087383-ee5e-42c7-9a53-ab56c98420f9\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"testSelector\": \"testAssemblies\",\n              \"testAssemblyVer2\": \"**\\\\$(BuildConfiguration)\\\\*test*.dll\\n!**\\\\obj\\\\**\",\n              \"testPlan\": \"\",\n              \"testSuite\": \"\",\n              \"testConfiguration\": \"\",\n              \"tcmTestRun\": \"$(test.RunId)\",\n              \"searchFolder\": \"$(System.DefaultWorkingDirectory)\",\n              \"testFiltercriteria\": \"\",\n              \"runOnlyImpactedTests\": \"False\",\n              \"runAllTestsAfterXBuilds\": \"50\",\n              \"uiTests\": \"false\",\n              \"vstestLocationMethod\": \"version\",\n              \"vsTestVersion\": \"latest\",\n              \"vstestLocation\": \"\",\n              \"runSettingsFile\": \"\",\n              \"overrideTestrunParameters\": \"\",\n              \"pathtoCustomTestAdapters\": \"\",\n              \"runInParallel\": \"False\",\n              \"runTestsInIsolation\": \"False\",\n              \"codeCoverageEnabled\": \"False\",\n              \"otherConsoleOptions\": \"\",\n              \"distributionBatchType\": \"basedOnTestCases\",\n              \"batchingBasedOnAgentsOption\": \"autoBatchSize\",\n              \"customBatchSizeValue\": \"10\",\n              \"batchingBasedOnExecutionTimeOption\": \"autoBatchSize\",\n              \"customRunTimePerBatchValue\": \"60\",\n              \"dontDistribute\": \"False\",\n              \"testRunTitle\": \"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"publishRunAttachments\": \"true\",\n              \"rerunFailedTests\": \"False\",\n              \"rerunFailedThreshold\": \"30\",\n              \"rerunMaxAttempts\": \"3\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy DACPAC\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"PartsUnlimited-aspnet45/Database\",\n              \"Contents\": \"**\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\\\\DataBase\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"\",\n              \"Contents\": \"**/*.zip\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"$(Parameters.ArtifactName)\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"vs2017-win2016\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$DeploymentGroups$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"DeploymentGroup\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"solution\",\n        \"label\": \"Path to solution or packages.config\",\n        \"defaultValue\": \"**\\\\*.sln\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"The path to the Visual Studio solution file or NuGet packages.config\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"ArtifactName\",\n        \"label\": \"Artifact Name\",\n        \"defaultValue\": \"drop\",\n        \"required\": true,\n        \"type\": \"string\",\n        \"helpMarkDown\": \"The name of the artifact to create.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Dashboard/Dashboard.json",
    "content": "{\n    \"name\": \"Overview\",\n    \"refreshInterval\": 0,\n    \"position\": 1,\n    \"widgets\": [\n        {\n            \"name\": \"New Work Item\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget.Configuration\",\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Work Links\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WorkLinksWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WorkLinksWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Team Members\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.TeamMembersWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.TeamMembersWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \n            \"name\": \"Sprint Burndown\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n           \n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Welcome\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.HowToLinksWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.HowToLinksWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Assigned to Me\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget.Configuration\",\n            \"isNameConfigurable\": false,\n            \"lightboxOptions\": {\n                \"width\": 900,\n                \"height\": 700,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"Work in Progress\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 5\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"queryId\\\":\\\"$WorkinProgress$\\\", \\\"queryName\\\": \\\"Work in Progress\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Visual Studio Shortcuts\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.VSLinksWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.VSLinksWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        }\n    ]    \n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Dashboard/Queries/UnfinishedWork.json",
    "content": "﻿{\n  \"name\": \"Unfinished Work_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.Title],[Microsoft.VSTS.Common.BacklogPriority],[System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork],[Microsoft.VSTS.CMMI.Blocked],[System.WorkItemType] FROM workitemLinks WHERE ([Source].[System.TeamProject] = @project AND [Source].[System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND ([Source].[System.WorkItemType] IN GROUP 'Microsoft.RequirementCategory' OR [Source].[System.WorkItemType] IN GROUP 'Microsoft.TaskCategory' ) AND [Source].[System.State] <> 'Removed' AND [Source].[System.State] <> 'Done') AND ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward')  AND ([Target].[System.WorkItemType] IN GROUP 'Microsoft.TaskCategory' AND [Target].[System.State] <> 'Done' AND [Target].[System.State] <> 'Removed') ORDER BY [Microsoft.VSTS.Common.BacklogPriority],[Microsoft.VSTS.Scheduling.Effort], [Microsoft.VSTS.Scheduling.RemainingWork],[System.Id] MODE (Recursive)\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Dashboard/Queries/Work in Progress.json",
    "content": "﻿{\n  \"name\": \"Work in Progress_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.WorkItemType],[System.Title], [System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork] FROM workitems WHERE [System.TeamProject] = @project     AND [System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND [System.WorkItemType] IN GROUP 'Microsoft.TaskCategory'     AND [System.State] = 'In Progress' ORDER BY [System.AssignedTo],[Microsoft.VSTS.Common.BacklogPriority],[System.Id]\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/ImportSourceCode/DeploymentGroup.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/Deployment%20Groups/_git/DeploymentGroup\"\n    },\n    \"serviceEndpointId\": \"$DeploymentGroup-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Iterations.json",
    "content": "{\n  \"id\": 85,\n  \"name\": \"WhiteSource Bolt\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true,\n  \"children\": [\n    {\n      \"id\": 87,\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n      \"url\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations/Iteration%201\",\n      \"children\": null\n    },\n    {\n      \"id\": 88,\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n      \"url\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations/Iteration%202\",\n      \"children\": null\n    },\n    {\n      \"id\": 89,\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n      \"url\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations/Iteration%203\",\n      \"children\": null\n    }\n  ],\n  \"_links\": {\n    \"self\": {\n      \"href\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations\"\n    }\n  },\n  \"url\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations\",\n  \"HttpStatusCode\": 200,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/ProjectSettings.json",
    "content": "﻿{\n  \"type\": \"Scrum\",\n  \"users\": [ \"josau@microsoft.com\", \"dahat@microsoft.com\", \"erehrlic@microsoft.com\" ]\n \n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"DeploymentGroups\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"\",\n  \"BoardColumns\": \"\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"\",\n  \"CardField\": \"\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"UerStoriesfromTemplate.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"\",\n  \"Widget\": \"\",\n  \"Chart\": \"\",\n  \"TeamArea\": \"TeamArea.json\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/QueueBuild.json",
    "content": "﻿{\n  \"definition\": {\n    \"id\": \"$buildId$\"\n  },\n  \"sourceBranch\": \"refs/heads/master\"  \n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/ReleaseDefinitions/DeploymentGroups.json",
    "content": "﻿{\n  \"name\": \"Deployment Groups\",\n  \"description\": null,\n  \"isDeleted\": false,\n  \"path\": \"\\\\\",\n  \"variables\": {\n    \"DatabaseName\": {\n      \"value\": \"\"\n    },\n    \"DBPassword\": {\n      \"value\": \"\"\n    },\n    \"DBUserName\": {\n      \"value\": \"\"\n    },\n    \"DefaultConnectionString\": {\n      \"value\": \"\"\n    },\n    \"ServerName\": {\n      \"value\": \"\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipeline$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent phase\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Resource Group Deployment\",\n              \"refName\": \"AzureResourceGroupDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Select Resource Group\",\n                \"resourceGroupName\": \"\",\n                \"location\": \"\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"\",\n                \"csmParametersFile\": \"\",\n                \"overrideParameters\": \"\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"ConfigureVMWithDGAgent\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"outputVariable\": \"\"\n              }\n            }\n          ]\n        },\n        {\n          \"deploymentInput\": {\n            \"healthPercent\": 0,\n            \"deploymentHealthOption\": \"Custom\",\n            \"tags\": [\n              \"SQL-Svr-DB\"\n            ],\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 2,\n          \"phaseType\": \"machineGroupBasedDeployment\",\n          \"name\": \"Deployment group phase\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"4b506f7f-720f-47bb-bf21-029bac6a690d\",\n              \"version\": \"0.*\",\n              \"name\": \"Deploy Dacpac\",\n              \"refName\": \"SqlDacpacDeploymentOnMachineGroup1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"TaskType\": \"dacpac\",\n                \"DacpacFile\": \"$(System.DefaultWorkingDirectory)/DeploymentGroups/drop/DataBase/pul.dacpac\",\n                \"SqlFile\": \"\",\n                \"ExecuteInTransaction\": \"false\",\n                \"ExclusiveLock\": \"false\",\n                \"AppLockName\": \"\",\n                \"InlineSql\": \"\",\n                \"TargetMethod\": \"server\",\n                \"ServerName\": \"$(ServerName)\",\n                \"DatabaseName\": \"$(DatabaseName)\",\n                \"AuthScheme\": \"sqlServerAuthentication\",\n                \"SqlUsername\": \"$(DBUserName)\",\n                \"SqlPassword\": \"$(DBPassword)\",\n                \"ConnectionString\": \"\",\n                \"PublishProfile\": \"\",\n                \"AdditionalArguments\": \"\",\n                \"AdditionalArgumentsSql\": \"\"\n              }\n            }\n          ]\n        },\n        {\n          \"deploymentInput\": {\n            \"healthPercent\": 0,\n            \"deploymentHealthOption\": \"Custom\",\n            \"tags\": [\n              \"WebSrv\"\n            ],\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 3,\n          \"phaseType\": \"machineGroupBasedDeployment\",\n          \"name\": \"IIS Deployment Phase\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"e94f1750-a6a8-11e6-be69-bdf37a7b15d8\",\n              \"version\": \"1.*\",\n              \"name\": \"Disconnect Azure Network Load Balancer\",\n              \"refName\": \"AzureNLBManagement1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"ResourceGroupName\": \"\",\n                \"LoadBalancer\": \"\",\n                \"Action\": \"Disconnect\"\n              }\n            },\n            {\n              \"taskId\": \"1b2aec60-dc49-11e6-9b76-63056e018cac\",\n              \"version\": \"0.*\",\n              \"name\": \"IIS Web App Manage\",\n              \"refName\": \"IISWebAppManagementOnMachineGroup1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"EnableIIS\": \"false\",\n                \"IISDeploymentType\": \"$(Parameters.IISDeploymentType)\",\n                \"ActionIISWebsite\": \"$(Parameters.ActionIISWebsite)\",\n                \"ActionIISApplicationPool\": \"CreateOrUpdateAppPool\",\n                \"StartStopWebsiteName\": \"$(Parameters.WebsiteName)\",\n                \"WebsiteName\": \"$(Parameters.WebsiteName)\",\n                \"WebsitePhysicalPath\": \"%SystemDrive%\\\\inetpub\\\\wwwroot\",\n                \"WebsitePhysicalPathAuth\": \"WebsiteUserPassThrough\",\n                \"WebsiteAuthUserName\": \"\",\n                \"WebsiteAuthUserPassword\": \"\",\n                \"AddBinding\": \"$(Parameters.AddBinding)\",\n                \"Protocol\": \"http\",\n                \"IPAddress\": \"All Unassigned\",\n                \"Port\": \"80\",\n                \"ServerNameIndication\": \"false\",\n                \"HostNameWithOutSNI\": \"\",\n                \"HostNameWithHttp\": \"\",\n                \"HostNameWithSNI\": \"\",\n                \"SSLCertThumbPrint\": \"\",\n                \"Bindings\": \"$(Parameters.Bindings)\",\n                \"CreateOrUpdateAppPoolForWebsite\": \"true\",\n                \"ConfigureAuthenticationForWebsite\": \"false\",\n                \"AppPoolNameForWebsite\": \"PartsUnlimited\",\n                \"DotNetVersionForWebsite\": \"v4.0\",\n                \"PipeLineModeForWebsite\": \"Integrated\",\n                \"AppPoolIdentityForWebsite\": \"ApplicationPoolIdentity\",\n                \"AppPoolUsernameForWebsite\": \"\",\n                \"AppPoolPasswordForWebsite\": \"\",\n                \"AnonymousAuthenticationForWebsite\": \"false\",\n                \"BasicAuthenticationForWebsite\": \"false\",\n                \"WindowsAuthenticationForWebsite\": \"true\",\n                \"ParentWebsiteNameForVD\": \"$(Parameters.WebsiteName)\",\n                \"VirtualPathForVD\": \"$(Parameters.VirtualPathForApplication)\",\n                \"PhysicalPathForVD\": \"%SystemDrive%\\\\inetpub\\\\wwwroot\",\n                \"VDPhysicalPathAuth\": \"VDUserPassThrough\",\n                \"VDAuthUserName\": \"\",\n                \"VDAuthUserPassword\": \"\",\n                \"ParentWebsiteNameForApplication\": \"$(Parameters.WebsiteName)\",\n                \"VirtualPathForApplication\": \"$(Parameters.VirtualPathForApplication)\",\n                \"PhysicalPathForApplication\": \"%SystemDrive%\\\\inetpub\\\\wwwroot\",\n                \"ApplicationPhysicalPathAuth\": \"ApplicationUserPassThrough\",\n                \"ApplicationAuthUserName\": \"\",\n                \"ApplicationAuthUserPassword\": \"\",\n                \"CreateOrUpdateAppPoolForApplication\": \"false\",\n                \"AppPoolNameForApplication\": \"\",\n                \"DotNetVersionForApplication\": \"v4.0\",\n                \"PipeLineModeForApplication\": \"Integrated\",\n                \"AppPoolIdentityForApplication\": \"ApplicationPoolIdentity\",\n                \"AppPoolUsernameForApplication\": \"\",\n                \"AppPoolPasswordForApplication\": \"\",\n                \"AppPoolName\": \"$(Parameters.AppPoolName)\",\n                \"DotNetVersion\": \"v4.0\",\n                \"PipeLineMode\": \"Integrated\",\n                \"AppPoolIdentity\": \"ApplicationPoolIdentity\",\n                \"AppPoolUsername\": \"\",\n                \"AppPoolPassword\": \"\",\n                \"StartStopRecycleAppPoolName\": \"\",\n                \"AppCmdCommands\": \"\"\n              }\n            },\n            {\n              \"taskId\": \"1b467810-6725-4b6d-accd-886174c09bba\",\n              \"version\": \"0.*\",\n              \"name\": \"IIS Web App Deploy\",\n              \"refName\": \"IISWebAppDeploymentOnMachineGroup2\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"WebSiteName\": \"$(Parameters.WebsiteName)\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)\\\\**\\\\*.zip\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"XmlTransformation\": \"true\",\n                \"XmlVariableSubstitution\": \"true\",\n                \"JSONFiles\": \"\"\n              }\n            },\n            {\n              \"taskId\": \"e94f1750-a6a8-11e6-be69-bdf37a7b15d8\",\n              \"version\": \"1.*\",\n              \"name\": \"Connect Azure Network Load Balancer\",\n              \"refName\": \"AzureNLBManagement2\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"ResourceGroupName\": \"\",\n                \"LoadBalancer\": \"\",\n                \"Action\": \"Connect\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {\n        \"inputs\": [\n          {\n            \"aliases\": [],\n            \"options\": {\n              \"IISWebsite\": \"IIS Website\",\n              \"IISWebApplication\": \"IIS Web Application\",\n              \"IISVirtualDirectory\": \"IIS Virtual Directory\",\n              \"IISApplicationPool\": \"IIS Application Pool\"\n            },\n            \"properties\": {},\n            \"name\": \"IISDeploymentType\",\n            \"label\": \"Configuration type\",\n            \"defaultValue\": \"IISWebsite\",\n            \"required\": true,\n            \"type\": \"pickList\",\n            \"helpMarkDown\": \"You can create or update sites, applications, virtual directories, and application pools.\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [],\n            \"options\": {\n              \"CreateOrUpdateWebsite\": \"Create Or Update\",\n              \"StartWebsite\": \"Start\",\n              \"StopWebsite\": \"Stop\"\n            },\n            \"properties\": {},\n            \"name\": \"ActionIISWebsite\",\n            \"label\": \"Action\",\n            \"defaultValue\": \"CreateOrUpdateWebsite\",\n            \"required\": true,\n            \"type\": \"pickList\",\n            \"helpMarkDown\": \"Select the appropriate action that you want to perform on an IIS website.<br /><br />\\\\\\\"Create Or Update\\\\\\\" will create a website or update an existing website.<br /><br /> Start, Stop will start or stop the website respectively.\",\n            \"visibleRule\": \"IISDeploymentType = IISWebsite\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [],\n            \"options\": {},\n            \"properties\": {},\n            \"name\": \"WebsiteName\",\n            \"label\": \"Website name\",\n            \"defaultValue\": \"Default Web Site\",\n            \"required\": true,\n            \"type\": \"string\",\n            \"helpMarkDown\": \"Provide the name of the IIS website to create or update.\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [],\n            \"options\": {},\n            \"properties\": {},\n            \"name\": \"AddBinding\",\n            \"label\": \"Add binding\",\n            \"defaultValue\": \"True\",\n            \"type\": \"boolean\",\n            \"helpMarkDown\": \"Select the option to add port binding for the website.\",\n            \"visibleRule\": \"IISDeploymentType = IISWebsite && ActionIISWebsite = CreateOrUpdateWebsite\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [],\n            \"options\": {},\n            \"properties\": {\n              \"resizable\": \"true\",\n              \"editorExtension\": \"ms.vss-services-azure.iis-multiple-binding\",\n              \"displayFormat\": \"{{#bindings}}{{protocol}}/{{ipAddress}}:{{port}}:{{hostname}}\\n{{/bindings}}\"\n            },\n            \"name\": \"Bindings\",\n            \"label\": \"Add bindings\",\n            \"defaultValue\": \"{\\\"bindings\\\":[{\\\"protocol\\\":\\\"http\\\",\\\"ipAddress\\\":\\\"All Unassigned\\\",\\\"port\\\":\\\"80\\\",\\\"hostname\\\":\\\"\\\",\\\"sslThumbprint\\\":\\\"\\\",\\\"sniFlag\\\":false}]}\",\n            \"required\": true,\n            \"type\": \"multiLine\",\n            \"helpMarkDown\": \"Click on the extension [...] button to add bindings for the website.\",\n            \"visibleRule\": \"IISDeploymentType = IISWebsite && ActionIISWebsite = CreateOrUpdateWebsite && AddBinding = true\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [],\n            \"options\": {},\n            \"properties\": {},\n            \"name\": \"AppPoolName\",\n            \"label\": \"Application pool name\",\n            \"defaultValue\": \"\",\n            \"required\": true,\n            \"type\": \"string\",\n            \"helpMarkDown\": \"Provide the name of the IIS application pool to create or update.\",\n            \"visibleRule\": \"IISDeploymentType = IISApplicationPool\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [],\n            \"options\": {},\n            \"properties\": {},\n            \"name\": \"VirtualPathForApplication\",\n            \"label\": \"Virtual path\",\n            \"defaultValue\": \"\",\n            \"required\": true,\n            \"type\": \"string\",\n            \"helpMarkDown\": \"Provide the virtual path of the application. <br /><br />Example: To create an application Site/Application enter /Application. The parent website should be already existing.\",\n            \"visibleRule\": \"IISDeploymentType = IISWebApplication || IISDeploymentType = IISVirtualDirectory\",\n            \"groupName\": \"\"\n          }\n        ]\n      },\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"gatesOptions\": {\n          \"isEnabled\": false,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 15\n        },\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"gatesOptions\": {\n          \"isEnabled\": false,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 15\n        },\n        \"gates\": []\n      }\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$DeploymentGroups-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"DeploymentGroups\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$DeploymentGroups-id$\",\n          \"name\": \"DeploymentGroups\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/ServiceEndPoints/DeploymentGroup - code.json",
    "content": "{\n    \"data\": {},\n    \"name\": \"DeploymentGroup-code\",\n    \"type\": \"git\",\n    \"url\":\"https://vstsdemodata.visualstudio.com/Deployment%20Groups/_git/DeploymentGroup\",\n    \"authorization\": {\n      \"scheme\": \"UsernamePassword\",\n      \"parameters\": {\n        \"username\": \"$username$\",\n        \"password\": \"$password$\"\n      }\n    },\n    \"isReady\": true\n  }"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/Teams.json",
    "content": "[\n    {\n      \"name\": \"Team1\",\n      \"description\": \"Team1 description\"\n    },\n    {\n      \"name\": \"Team2\",\n      \"description\": \"Team2 description\"\n    }\n]\n    \n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-DeploymentGroups/UpdateCardFields.json",
    "content": "{\n  \"cards\": {\n    \"Bug\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      }\n    ],\n    \"Product Backlog Item\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      }\n    ]\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/BuildDefinitions/Docker.json",
    "content": "{\n  \"name\": \"MHCDocker.build\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"708962\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+refs/heads/master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"Release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"Any CPU\"\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Run services\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"Task1\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": null\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"dockerComposeFile\": \"docker-compose.ci.build.yml\",\n              \"additionalDockerComposeFiles\": \"\",\n              \"dockerComposeFileArgs\": \"\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Run services\",\n              \"additionalImageTags\": \"\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"false\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build services\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"Task2\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": null\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"dockerComposeFile\": \"$(Parameters.dockerComposeFile)\",\n              \"additionalDockerComposeFiles\": \"$(Parameters.additionalDockerComposeFiles)\",\n              \"dockerComposeFileArgs\": \"DOCKER_BUILD_SOURCE=\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Build services\",\n              \"additionalImageTags\": \"$(Build.BuildId)\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Push services\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"Task3\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": null\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"dockerComposeFile\": \"$(Parameters.dockerComposeFile)\",\n              \"additionalDockerComposeFiles\": \"$(Parameters.additionalDockerComposeFiles)\",\n              \"dockerComposeFileArgs\": \"DOCKER_BUILD_SOURCE=\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Push services\",\n              \"additionalImageTags\": \"$(Build.BuildId)\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"PublishBuildArtifacts2\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"myhealthclinic.dacpac\",\n              \"ArtifactName\": \"dacpac\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Docker\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"fetchDepth\": \"0\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"false\"\n    },\n    \"id\": \"$Docker$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"Docker\",\n\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"dockerComposeFile\",\n        \"label\": \"Docker Compose File\",\n        \"defaultValue\": \"docker-compose.yml\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"Path to the primary Docker Compose file to use.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"additionalDockerComposeFiles\",\n        \"label\": \"Additional Docker Compose File\",\n        \"defaultValue\": \"\",\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"Path to the Additional Docker Compose file to use.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"azureSubscriptionEndpoint\",\n        \"label\": \"Azure subscription\",\n        \"defaultValue\": \"\",\n        \"type\": \"connectedService:AzureRM\",\n        \"helpMarkDown\": \"Select an Azure subscription\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"azureContainerRegistry\",\n        \"label\": \"Azure Container Registry\",\n        \"defaultValue\": \"{\\\"loginServer\\\":\\\"testmhcacr.azurecr.io\\\", \\\"id\\\" : \\\"/subscriptions/e7b26610-1586-4dd7-b7b3-32e11f2f19bd/resourceGroups/testdockerRG/providers/Microsoft.ContainerRegistry/registries/testmhcacr\\\"}\",\n        \"type\": \"pickList\",\n        \"helpMarkDown\": \"Select an Azure Container Registry\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ],\n    \"dataSourceBindings\": [\n      {\n        \"dataSourceName\": \"AzureRMContainerRegistries\",\n        \"parameters\": {},\n        \"endpointId\": \"$(azureSubscriptionEndpoint)\",\n        \"target\": \"azureContainerRegistry\",\n        \"resultTemplate\": \"{\\\"Value\\\":\\\"{\\\\\\\"loginServer\\\\\\\":\\\\\\\"{{{properties.loginServer}}}\\\\\\\", \\\\\\\"id\\\\\\\" : \\\\\\\"{{{id}}}\\\\\\\"}\\\",\\\"DisplayValue\\\":\\\"{{{name}}}\\\"}\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/BuildDefinitions/MHCDockerbuild-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/Docker\",\n      \"fullName\": \"Docker\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$Docker$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$Docker$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"Docker\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/Docker\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"MHCDocker.build-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Dashboard/Dashboard.json",
    "content": "{\n  \"name\": \"Overview\",\n  \"position\": 1,\n  \"widgets\": [\n    {\n      \"name\": \"Task\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 8\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbfd52\\\",\\\"queryId\\\":\\\"$Task$\\\",\\\"queryName\\\":\\\"Task\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Task\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n\n      \"isEnabled\": true,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n    },\n    {\n\n      \"name\": \"All Work Items\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#292e6b\\\",\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n    },\n    {\n\n      \"name\": \"Feature\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#5c197b\\\",\\\"queryId\\\":\\\"$Feature$\\\",\\\"queryName\\\":\\\"Feature\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Feature\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n    },\n    {\n\n\n      \"name\": \"Docker\",\n      \"position\": {\n        \"row\": 5,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"name\\\":\\\"Docker\\\",\\\"id\\\":$BuildDocker$,\\\"type\\\":2,\\\"uri\\\":\\\"vstfs:///Build/Definition/$BuildDocker$\\\",\\\"projectId\\\":\\\"$Projectid$\\\",\\\"lastArtifactName\\\":\\\"Docker\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\"\n    },\n    {\n\n\n      \"name\": \"All Work Items by Work Item Type\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 4\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllWorkItems$\\\",\\\"title\\\":\\\"All Work Items by Work Item Type\\\",\\\"chartType\\\":\\\"ColumnChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllWorkItems$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[{\\\"value\\\":\\\"Task\\\",\\\"backgroundColor\\\":\\\"#fbe74b\\\"},{\\\"value\\\":\\\"Product Backlog Item\\\",\\\"backgroundColor\\\":\\\"#0d60ab\\\"},{\\\"value\\\":\\\"Feature\\\",\\\"backgroundColor\\\":\\\"#5c197b\\\"},{\\\"value\\\":\\\"Epic\\\",\\\"backgroundColor\\\":\\\"#f58b1f\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items by Work Item Type\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n\n      \"name\": \"Product Backlog Items\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#007acc\\\",\\\"queryId\\\":\\\"$PBI$\\\",\\\"queryName\\\":\\\"Product Backlog Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Product Backlog Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n    },\n    {\n      \"name\": \"Release Definition Overview\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"releaseDefinitionId\\\":$ReleaseDocker$}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n\n      \"contributionId\": \"ms.vss-releaseManagement-web.release-definition-summary-widget\"\n    },\n    {\n\n\n      \"name\": \"Markdown\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"## Overview\\n\\n![](https://peterjausovec.gallerycdn.vsassets.io/extensions/peterjausovec/vscode-docker/0.0.21/1510186490362/Microsoft.VisualStudio.Services.Icons.Default)\\n\\nDocker is the company driving the container movement and the only container platform provider to address every application across the hybrid cloud.\\n\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n      \"lightboxOptions\": {\n        \"width\": 600,\n        \"height\": 500,\n        \"resizable\": true\n      }\n    },\n    {\n\n      \"name\": \"All Work Items\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"query\\\":{\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"contributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\"\n    },\n    {\n\n      \"name\": \"Deployment status\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"buildDefinitionId\\\":$BuildDocker$,\\\"projectId\\\":\\\"$Projectid$\\\",\\\"useDefaultBranch\\\":true,\\\"branchName\\\":\\\"\\\",\\\"buildSourceType\\\":\\\"Build\\\",\\\"environments\\\":[{\\\"definitionEnvironmentId\\\":1,\\\"definitionEnvironmentName\\\":\\\"\\\",\\\"releaseDefinitionId\\\":$ReleaseDocker$,\\\"releaseDefinitionName\\\":\\\"\\\"}],\\\"lastColumnType\\\":0,\\\"viewType\\\":\\\"Deployment Status\\\",\\\"viewTypeIdentifier\\\":1,\\\"ruleOperators\\\":[\\\"\\\",\\\"\\\",\\\"\\\"],\\\"ruleBoundaries\\\":[\\\"\\\",\\\"\\\",\\\"\\\"],\\\"ruleBoundariesErrors\\\":[false,false,false],\\\"repository\\\":{\\\"properties\\\":{},\\\"id\\\":\\\"$RepoMyShuttleDocker$\\\",\\\"type\\\":\\\"TfsGit\\\",\\\"name\\\":\\\"Docker\\\",\\\"url\\\":\\\"\\\",\\\"defaultBranch\\\":\\\"refs/heads/master\\\",\\\"clean\\\":\\\"false\\\",\\\"checkoutSubmodules\\\":false},\\\"metricsView\\\":\\\"testPassRate\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-releaseManagement-web.rm-deployment-status-widget\",\n      \"typeId\": \"rm-deployment-status-widget\",\n      \"configurationContributionId\": \"ms.vss-releaseManagement-web.rm-deployment-status-widget.configuration\",\n      \"configurationContributionRelativeId\": \"rm-deployment-status-widget.configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n\n      \"name\": \"Epic\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#f7a24b\\\",\\\"queryId\\\":\\\"$Epic$\\\",\\\"queryName\\\":\\\"Epic\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Epic\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Extensions.json",
    "content": "﻿{\n\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/ImportSourceCode/Docker.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://vstsdemodata.visualstudio.com/_git/Docker\"\n        },\n      \"serviceEndpointId\": \"$Docker-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/ReleaseDefinitions/Docker.json",
    "content": "{\n  \"source\": \"portalExtensionApi\",\n  \"name\": \"MHCDocker.release\",\n  \"description\": null,\n  \"isDeleted\": false,\n  \"path\": \"\\\\\",\n  \"variables\": {\n    \"ACR\": {\n      \"value\": \"YOUR_ACR.azurecr.io\"\n    },\n    \"DatabaseName\": {\n      \"value\": \"mhcdb\",\n      \"isSecret\": false\n    },\n    \"Password\": {\n      \"value\": \"P2ssw0rd1234\",\n      \"isSecret\": false\n    },\n    \"SQLadmin\": {\n      \"value\": \"sqladmin\",\n      \"isSecret\": false\n    },\n    \"SQLserver\": {\n      \"value\": \"YOUR_DBSERVER.database.windows.net\",\n      \"isSecret\": false\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployStep\": {\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"DB deployment\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"ce85a08b-a538-4d2b-8589-1d37a9ab970f\",\n              \"version\": \"1.*\",\n              \"name\": \"Execute Azure SQL : DacpacTask\",\n              \"refName\": \"SqlAzureDacpacDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceNameSelector\": \"ConnectedServiceNameARM\",\n                \"ConnectedServiceName\": \"\",\n                \"ConnectedServiceNameARM\": \"\",\n                \"ServerName\": \"$(SQLserver)\",\n                \"DatabaseName\": \"$(DatabaseName)\",\n                \"SqlUsername\": \" $(SQLadmin)\",\n                \"SqlPassword\": \"$(Password)\",\n                \"TaskNameSelector\": \"DacpacTask\",\n                \"DacpacFile\": \"$(System.DefaultWorkingDirectory)/**/*.dacpac\",\n                \"SqlFile\": \"\",\n                \"SqlInline\": \"\",\n                \"PublishProfile\": \"\",\n                \"AdditionalArguments\": \"\",\n                \"SqlAdditionalArguments\": \"\",\n                \"InlineAdditionalArguments\": \"\",\n                \"IpDetectionMethod\": \"AutoDetect\",\n                \"StartIpAddress\": \"\",\n                \"EndIpAddress\": \"\",\n                \"DeleteFirewallRule\": \"true\"\n              }\n            }\n          ]\n        },\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"ubuntu-18.04\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 2,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Web App deployment\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppKind\": \"applinux\",\n                \"WebAppName\": \"mhcwebapp\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"ImageSource\": \"Registry\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"$(ACR)\",\n                \"DockerRepository\": \"myhealth.web\",\n                \"DockerImageTag\": \"$(BUILD.BUILDID)\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      }\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$MHCDocker.build-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"MHCDocker.build\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$MHCDocker.build-id$\",\n          \"name\": \"MHCDocker.build\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"MHCDocker.build\",\n      \"triggerConditions\": [],\n      \"triggerType\": \"artifactSource\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"PortalExtension VisualStudio/15.0.27004.2002 DevOpsExtension/0.3.439+g813063e514.EXP\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/ServiceEndpoints/Docker-code.json",
    "content": "﻿{\n  \"data\": {\n\t\t\t\n\t\t},\t\t\n\t\t\"name\": \"Docker-code\",\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://vstsdemodata.visualstudio.com/_git/Docker\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n\t\t\"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Docker Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Docker Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Docker Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"false\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"true\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Docker Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Docker Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team1/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team1/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team1/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team1/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team2/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team2/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team2/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team2/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"2f556caa-9951-4dda-8a12-70f0eb8b0987\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"b32c72f9-18ca-409c-9f10-faaffe0a54bd\",\n    \"name\": \"Docker Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"ea6e12f1-9289-455f-939d-0baecdefd437\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 7310,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-09-13T07:11:00.597Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:37:15.103Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add docker support for .NETCORE project\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 30.0,\n        \"System.Description\": \"<div>Add docker support for .NETCORE project by adding below files:</div><div><br></div><div>1. Dockerfile</div><div>2. DockerCompose.yml</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7296\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7297\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7310\"\n    },\n    {\n      \"id\": 7311,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-09-13T07:11:01.023Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:37:15.103Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create CI-CD pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 40.0,\n        \"System.Description\": \"Create CI-CD pipeline using VSTS and Azure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7311\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/WorkItems/Feature.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 7294,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:52.103Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:37:20.327Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create Azure components through ARM template\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"<div>Create Azure components through ARM template, such as:</div><div><br></div><div>1. Azure Container Registry</div><div>2. Azure Web App which uses Linux OS</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7300\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7311\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7294\"\n    },\n    {\n      \"id\": 7295,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:53.367Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:37:20.327Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create Endpoints in VSTS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"Create Endpoints in VSTS so that VSTS is connected to Azure components\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7299\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7298\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7311\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7295\"\n    },\n    {\n      \"id\": 7296,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:53.97Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:37:20.327Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create Dockerfile for .web project\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"<div>Create Dockerfile for .web project</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7310\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7303\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7296\"\n    },\n    {\n      \"id\": 7297,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:54.417Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-22T11:37:20.327Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create DockerCompose.yml files\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"Create DockerCompose.yml files\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7310\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7301\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7297\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 7298,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:54.897Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:54.897Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create Endpoint for Azure Resource Manager\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 1.0,\n        \"System.Description\": \"Create Endpoint for Azure Resource Manager such that it points to your active Azure subscription\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure; VSTS\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7306\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7298\"\n    },\n    {\n      \"id\": 7299,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:55.52Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:55.52Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create Endpoint for Azure Container Registry\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 1.0,\n        \"System.Description\": \"Create Endpoint for Azure Container Registry in VSTS\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure; VSTS\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7299\"\n    },\n    {\n      \"id\": 7300,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:56.013Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:56.013Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Identify Azure components required\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Identify Azure components required\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7300\"\n    },\n    {\n      \"id\": 7301,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:56.72Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:56.72Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add Dockercompose.yml files\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"<div>Add below files:</div><div><br></div><div>1. docker-compose.ci.build.yml<br>2. docker-compose.yml </div><div>3. Under (2) add docker-compose.override.yml</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Docker\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7297\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7309\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7301\"\n    },\n    {\n      \"id\": 7302,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:57.12Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:57.12Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Develop ARM template\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"<div>Develop ARM template with below components:</div><div><br></div><div>1. azuredeploy.json</div><div>2. azuredeploy.parameters.json</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Templates\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7305\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7304\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7302\"\n    },\n    {\n      \"id\": 7303,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:57.473Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:57.473Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add Dockerfile to .web project\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"<div>Add Dockerfile to .web project</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Docker\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7308\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7296\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7303\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Docker/WorkItems/Task.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 7304,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:57.78Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:57.78Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create azuredeploy.json file\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create azuredeploy.json file with below functionalities:</div><div><br></div><div>1. Deploy both Azure Container Registry and Azure Web App in a single template</div><div>2. Should accept Subscription automatically</div><div>3. Should accept Resource Group name</div><div>4.&nbsp;Should accept Location name</div><div>5. Should accept Azure Container Registry (ACR) name</div><div>6.&nbsp;Should have a dropdown to know if Admin user in ACR must be enabled or not. Use True or False as options.</div><div>7. Should have a dropdown to accept ACR Storage Type. Use Standard_LRS, Standard_ZRS,&nbsp;Standard_GRS as options in dropdown</div><div>8. Should accept Azure Web App name</div><div>9. Provide means to accept Terms &amp; Conditions</div><div>10. Provide Purchase button</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7304\"\n    },\n    {\n      \"id\": 7305,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:58.33Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:58.33Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create azuredeploy.parameters file\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create azuredeploy.parameters file with below functionalities, so that we could have a collection of parameters to pass into the azuredeploy.json template:</div><div><br></div><div>1. Set default values <font>for ACR such that a unique name is given</font></div><div>2. ACR Admin user is set to true</div><div>3. ACR Storage type is set to Standard_LRS</div><div>4. Web App name is set to null</div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7305\"\n    },\n    {\n      \"id\": 7306,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:58.797Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:58.797Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update existing Azure Resource Manager endpoint\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update existing Azure Resource Manager endpoint, such that it points to your active Azure subscription\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 1.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7298\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7306\"\n    },\n    {\n      \"id\": 7307,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:59.093Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:59.093Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create ACR Endpoint\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<p style=\\\"margin:0px 0px 11px;\\\"><font color=\\\"#000000\\\" face=Calibri size=3><span style=\\\"margin:0px;line-height:107%;font-family:&quot;Calibri&quot;,sans-serif;font-size:11pt;\\\">Create ACR\\nEndpoint by mapping details from Azure Portal:</span></font></p><p style=\\\"margin:0px 0px 11px;\\\"><font color=\\\"#000000\\\" face=Calibri size=3><b><br></b></font></p><p style=\\\"margin:0px 0px 11px;\\\"><font color=\\\"#000000\\\" face=Calibri size=3>Login server – Docker Registry </font></p>\\n\\n<p style=\\\"margin:0px 0px 11px;\\\"><font color=\\\"#000000\\\" face=Calibri size=3>Username – Docker ID</font></p>\\n\\n<p style=\\\"margin:0px 0px 11px;\\\"><font color=\\\"#000000\\\" face=Calibri size=3>Password – Password</font></p>\\n\\n<p style=\\\"margin:0px 0px 11px;\\\"><font color=\\\"#000000\\\" face=Calibri size=3>Enter email id associated with your Azure account – email</font></p>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7299\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7307\"\n    },\n    {\n      \"id\": 7308,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-13T07:10:59.467Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:10:59.467Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create and add a dockerfile\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create and add a dockerfile with below contents:<div><br></div><div>FROM microsoft/aspnetcore:1.0<br>ARG source<br>WORKDIR /app<br>EXPOSE 80<br>COPY ${source:-obj/Docker/publish} .<br>ENTRYPOINT [&quot;dotnet&quot;, &quot;MyHealth.Web.dll&quot;]</div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7303\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7308\"\n    },\n    {\n      \"id\": 7309,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Docker\",\n        \"System.TeamProject\": \"Docker\",\n        \"System.IterationPath\": \"Docker\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-13T07:11:00.24Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-13T07:11:00.24Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add docker-compose.ci.build.yml file\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7301\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7309\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/BoardColumns.json",
    "content": "[\n  {\n    \"description\": \"\",\n    \"name\": \"New\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"New\",\n      \"Bug\": \"New\"\n    },\n    \"columnType\": \"incoming\",\n    \"isSplit\": null\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Approved\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Approved\",\n      \"Bug\": \"Approved\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Committed\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Committed\",\n      \"Bug\": \"Committed\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Done\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Done\",\n      \"Bug\": \"Done\"\n    },\n    \"columnType\": \"outgoing\",\n    \"isSplit\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/BoardRowsFromTemplate.json",
    "content": "[\n  {\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"name\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/BugfromTemplate.json",
    "content": "{\n  \"count\": 0,\n  \"value\": null,\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/BuildDefinitions/GitHub.json",
    "content": "{\n  \"name\": \"GitHub\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"719081\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"NuGet restore\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"NuGetCommand2\",\n            \"task\": {\n              \"id\": \"333b11bd-d341-40d9-afcf-b32d5ce6f23b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"solution\": \"$(Parameters.solution)\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"allowPackageConflicts\": \"false\",\n              \"externalEndpoint\": \"\",\n              \"verbosityPush\": \"Detailed\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"versioningScheme\": \"off\",\n              \"includeReferencedProjects\": \"false\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"packTimezone\": \"utc\",\n              \"includeSymbols\": \"false\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"arguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build solution\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"VSBuild3\",\n            \"task\": {\n              \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"solution\": \"$(Parameters.solution)\",\n              \"vsVersion\": \"latest\",\n              \"msbuildArgs\": \"/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation=\\\"$(build.artifactstagingdirectory)\\\\\\\\\\\"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"clean\": \"false\",\n              \"maximumCpuCount\": \"false\",\n              \"restoreNugetPackages\": \"false\",\n              \"msbuildArchitecture\": \"x86\",\n              \"logProjectEvents\": \"true\",\n              \"createLogFile\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test Assemblies\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"VSTest4\",\n            \"task\": {\n              \"id\": \"ef087383-ee5e-42c7-9a53-ab56c98420f9\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"testSelector\": \"testAssemblies\",\n              \"testAssemblyVer2\": \"**\\\\$(BuildConfiguration)\\\\*test*.dll\\n!**\\\\obj\\\\**\",\n              \"testPlan\": \"\",\n              \"testSuite\": \"\",\n              \"testConfiguration\": \"\",\n              \"tcmTestRun\": \"$(test.RunId)\",\n              \"searchFolder\": \"$(System.DefaultWorkingDirectory)\",\n              \"testFiltercriteria\": \"\",\n              \"runOnlyImpactedTests\": \"False\",\n              \"runAllTestsAfterXBuilds\": \"50\",\n              \"uiTests\": \"false\",\n              \"vstestLocationMethod\": \"version\",\n              \"vsTestVersion\": \"latest\",\n              \"vstestLocation\": \"\",\n              \"runSettingsFile\": \"\",\n              \"overrideTestrunParameters\": \"\",\n              \"pathtoCustomTestAdapters\": \"\",\n              \"runInParallel\": \"False\",\n              \"runTestsInIsolation\": \"False\",\n              \"codeCoverageEnabled\": \"true\",\n              \"otherConsoleOptions\": \"\",\n              \"distributionBatchType\": \"basedOnTestCases\",\n              \"batchingBasedOnAgentsOption\": \"autoBatchSize\",\n              \"customBatchSizeValue\": \"10\",\n              \"batchingBasedOnExecutionTimeOption\": \"autoBatchSize\",\n              \"customRunTimePerBatchValue\": \"60\",\n              \"dontDistribute\": \"False\",\n              \"testRunTitle\": \"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"publishRunAttachments\": \"true\",\n              \"rerunFailedTests\": \"False\",\n              \"rerunFailedThreshold\": \"30\",\n              \"rerunMaxAttempts\": \"3\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"CopyFiles1\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"\",\n              \"Contents\": \"**/*.json\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"PublishBuildArtifacts6\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"$(Parameters.ArtifactName)\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"vs2017-win2016\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"labelSources\": \"0\",\n      \"reportBuildStatus\": \"true\",\n      \"fetchDepth\": \"0\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"cleanOptions\": \"0\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\"\n    },\n    \"id\": \"$GitHub$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"GitHub\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"solution\",\n        \"label\": \"Path to solution or packages.config\",\n        \"defaultValue\": \"**\\\\*.sln\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"The path to the Visual Studio solution file or NuGet packages.config\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"ArtifactName\",\n        \"label\": \"Artifact Name\",\n        \"defaultValue\": \"drop\",\n        \"required\": true,\n        \"type\": \"string\",\n        \"helpMarkDown\": \"The name of the artifact to create.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/Dashboard/Dashboard.json",
    "content": "{\n    \"name\": \"Overview\",\n    \"refreshInterval\": 5,\n    \"position\": 1,\n    \"eTag\": \"45\",\n    \"widgets\": [\n        {\n            \"name\": \"Features\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 7\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#5c197b\\\",\\\"queryId\\\":\\\"$Feature$\\\",\\\"queryName\\\":\\\"Features\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Features\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"GitHub\",\n        \"position\": {\n          \"row\": 3,\n          \"column\": 6\n        },\n        \"size\": {\n          \"rowSpan\": 1,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"name\\\":\\\"GitHub\\\",\\\"id\\\":$buildGitHub$,\\\"type\\\":2,\\\"uri\\\":\\\"vstfs:///Build/Definition/$buildGitHub$\\\",\\\"projectId\\\":\\\"$Projectid$\\\",\\\"lastArtifactName\\\":\\\"GitHub\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 1,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n        \"isNameConfigurable\": true\n      },\n       {\n\n            \"name\": \"Deployment status\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": \"{\\\"buildDefinitionId\\\":$buildGitHub$,\\\"projectId\\\":\\\"$Projectid$\\\",\\\"useDefaultBranch\\\":true,\\\"branchName\\\":\\\"\\\",\\\"buildSourceType\\\":\\\"Build\\\",\\\"environments\\\":[{\\\"definitionEnvironmentId\\\":1,\\\"definitionEnvironmentName\\\":\\\"\\\",\\\"releaseDefinitionId\\\":$releaseGitHub$,\\\"releaseDefinitionName\\\":\\\"\\\"}],\\\"lastColumnType\\\":0,\\\"viewType\\\":\\\"Deployment Status\\\",\\\"ruleOperators\\\":[\\\"\\\",\\\"\\\",\\\"\\\"],\\\"ruleBoundaries\\\":[\\\"\\\",\\\"\\\",\\\"\\\"],\\\"ruleBoundariesErrors\\\":[false,false,false],\\\"metricsView\\\":\\\"testPassRate\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-releaseManagement-web.rm-deployment-status-widget\",\n            \"typeId\": \"rm-deployment-status-widget\",\n            \"configurationContributionId\": \"ms.vss-releaseManagement-web.rm-deployment-status-widget.configuration\",\n            \"configurationContributionRelativeId\": \"rm-deployment-status-widget.configuration\",\n            \"isNameConfigurable\": true\n          \n        },\n        {\n            \"name\": \"Product Backlog Items\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#007acc\\\",\\\"queryId\\\":\\\"$PBI$\\\",\\\"queryName\\\":\\\"Product Backlog Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Product Backlog Items\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Test Results Trend\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"{\\\"width\\\":500,\\\"height\\\":500,\\\"title\\\":\\\"Test Results Trend\\\",\\\"buildDefinition\\\":{\\\"_links\\\":{\\\"self\\\":{\\\"href\\\":\\\"https://vstsdemodata.visualstudio.com/$Projectid$/_apis/build/Definitions/$buildGitHub$\\\"},\\\"web\\\":{\\\"href\\\":\\\"https://vstsdemodata.visualstudio.com/_permalink/_build/index?collectionId=517f5b8d-735f-4ce6-811c-c7cf9fcd209e&projectId=$Projectid$&definitionId=$buildGitHub$\\\"},\\\"editor\\\":{\\\"href\\\":\\\"https://vstsdemodata.visualstudio.com/_permalink/_build/definitionEditor?collectionId=517f5b8d-735f-4ce6-811c-c7cf9fcd209e&projectId=$Projectid$&definitionId=$buildGitHub$\\\"}},\\\"drafts\\\":[],\\\"queue\\\":{\\\"id\\\":$Hosted$,\\\"name\\\":\\\"Hosted\\\",\\\"pool\\\":{\\\"id\\\":2,\\\"name\\\":\\\"Hosted\\\",\\\"isHosted\\\":true}},\\\"id\\\":$buildGitHub$,\\\"name\\\":\\\"GitHub\\\",\\\"url\\\":\\\"https://vstsdemodata.visualstudio.com/$Projectid$/_apis/build/Definitions/$buildGitHub$\\\",\\\"uri\\\":\\\"vstfs:///Build/Definition/$buildGitHub$\\\",\\\"project\\\":{\\\"id\\\":\\\"$Projectid$\\\",\\\"name\\\":\\\"GitHub\\\",\\\"description\\\":\\\"This project demonstrates the integration of GitHub with VSTS\\\",\\\"url\\\":\\\"https://vstsdemodata.visualstudio.com/_apis/projects/$Projectid$\\\",\\\"state\\\":\\\"wellFormed\\\",\\\"revision\\\":161,\\\"visibility\\\":0}},\\\"releaseDefinition\\\":null,\\\"releaseEnvironment\\\":null,\\\"chartType\\\":\\\"StackedColumn\\\",\\\"secondaryChartType\\\":\\\"Line\\\",\\\"yAxisOptions\\\":{\\\"seriesType\\\":\\\"StackedColumn\\\",\\\"allowDecimals\\\":false},\\\"secondaryYAxisOptions\\\":{\\\"seriesType\\\":\\\"PassPercentage\\\",\\\"allowDecimals\\\":true},\\\"context\\\":1}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-test-web.Microsoft.VisualStudioTeamServices.Dashboards.TestResultsTrendWidget\",\n            \"typeId\": \"Microsoft.VisualStudioTeamServices.Dashboards.TestResultsTrendWidget\",\n            \"configurationContributionId\": \"ms.vss-test-web.Microsoft.VisualStudioTeamServices.Dashboards.TestResults.TrendWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioTeamServices.Dashboards.TestResults.TrendWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"All Work Items by Work Item Type\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllWorkItems$\\\",\\\"title\\\":\\\"All Work Items by Work Item Type\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllWorkItems$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[{\\\"value\\\":\\\"Task\\\",\\\"backgroundColor\\\":\\\"#fbfd52\\\"},{\\\"value\\\":\\\"Product Backlog Item\\\",\\\"backgroundColor\\\":\\\"#0d60ab\\\"},{\\\"value\\\":\\\"Feature\\\",\\\"backgroundColor\\\":\\\"#5c197b\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items by Work Item Type\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 3,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"isNameConfigurable\": true,\n            \"lightboxOptions\": {\n                \"width\": 900,\n                \"height\": 700,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"Tasks\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 5\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbfd52\\\",\\\"queryId\\\":\\\"$Task$\\\",\\\"queryName\\\":\\\"Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Tasks\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"All Work Items\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#292e6b\\\",\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Release Definition Overview\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": \"{\\\"releaseDefinitionId\\\":1}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-releaseManagement-web.release-definition-summary-widget\",\n            \"typeId\": \"release-definition-summary-widget\",\n            \"configurationContributionId\": \"ms.vss-releaseManagement-web.release-definition-summary-widget-configuration\",\n            \"configurationContributionRelativeId\": \"release-definition-summary-widget-configuration\",\n            \"isNameConfigurable\": true,\n            \"loadingImageUrl\": null\n        },\n        {\n            \"name\": \"Epic\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbbc3d\\\",\\\"queryId\\\":\\\"$Epic$\\\",\\\"queryName\\\":\\\"Epic\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Epic\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"Markdown\",\n        \"position\": {\n          \"row\": 1,\n          \"column\": 1\n        },\n        \"size\": {\n          \"rowSpan\": 2,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"## Overview\\n\\nGitHub is a development platform inspired by the way you work.\\nFrom open source to business, you can host and review code, manage projects, and build software alongside millions of other developers.\\n\\nGitHub brings teams-\\n\\n- Together to work through problems\\n- move ideas forward and\\n- learn from each other along the way\\n\\n\",\n        \"settingsVersion\": {\n          \"major\": 1,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n        \"isNameConfigurable\": false,\n        \"lightboxOptions\": {\n          \"width\": 600,\n          \"height\": 500,\n          \"resizable\": true\n        }\n      },\n        {\n            \"name\": \"All Work Items\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": \"{\\\"query\\\":{\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n            \"configurationContributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n            \"isNameConfigurable\": true\n        }\n    ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/EpicfromTemplate.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 772,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-11-28T05:34:34.863Z\",\n        \"System.CreatedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-11-28T05:34:35.643Z\",\n        \"System.ChangedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.Title\": \"VSTS integration with GitHub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/775\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/774\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/772\"\n    },\n    {\n      \"id\": 781,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-11-30T07:11:16.84Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-11-30T07:11:17.807Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Create CI-CD pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/782\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/781\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n   \n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/FeaturefromTemplate.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 774,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-11-28T05:37:05.583Z\",\n        \"System.CreatedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-11-28T05:37:05.583Z\",\n        \"System.ChangedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Connect VSTS to GitHub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/772\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/776\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/774\"\n    },\n    {\n      \"id\": 775,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-11-28T05:37:40.973Z\",\n        \"System.CreatedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-11-28T05:37:40.973Z\",\n        \"System.ChangedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Setup continuous integration build to GitHub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/778\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/772\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/775\"\n    },\n    {\n      \"id\": 782,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-11-30T07:11:34.54Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-11-30T07:11:34.54Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Create endpoints in VSTS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/783\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/781\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/782\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/ImportSourceCode/GitHub.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://vstsdemodata.visualstudio.com/_git/GitHub\"\n        },\n      \"serviceEndpointId\": \"$GitHub-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/PBIfromTemplate.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 783,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-11-30T07:11:56.26Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-01T08:52:38.06Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Create endpoint for GitHub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/782\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/783\"\n    },\n    {\n      \"id\": 778,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-11-28T06:29:37.553Z\",\n        \"System.CreatedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-01T08:52:38.06Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Create CI Build definition in VSTS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/779\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/775\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/780\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/778\"\n    },\n    {\n      \"id\": 776,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-11-28T05:39:00.613Z\",\n        \"System.CreatedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-01T08:52:38.06Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Create service endpoint to integrate GitHub with VSTS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/774\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/777\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/776\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/ProjectSettings.json",
    "content": "﻿{\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\"]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"GitHub\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/ReleaseDefinitions/GitHub.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 20,\n  \"name\": \"GitHub\",\n  \"description\": null,\n  \"isDeleted\": false,\n  \"path\": \"\\\\\",\n  \"variables\": {\n    \"HostingPlan\": {\n      \"value\": \"githubplan\",\n      \"isSecret\": false\n    },\n    \"ResourceGroup\": {\n      \"value\": \"Github\",\n      \"isSecret\": false\n    },\n    \"ServerName\": {\n      \"value\": \"githubserver$UUID$\",\n      \"isSecret\": false\n    },\n    \"WebsiteName\": {\n      \"value\": \"Githubwebapp$UUID$\",\n      \"isSecret\": false\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployStep\": {\n\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent phase\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Resource Group Deployment \",\n              \"refName\": \"AzureResourceGroupDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(ResourceGroup)\",\n                \"location\": \"Southeast Asia\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/GitHub/drop/PartsUnlimited-aspnet45/env/PartsUnlimitedEnv/Templates/FullEnvironmentSetupMerged.json\",\n                \"csmParametersFile\": \"$(System.DefaultWorkingDirectory)/GitHub/drop/PartsUnlimited-aspnet45/env/PartsUnlimitedEnv/Templates/FullEnvironmentSetupMerged.param.json\",\n                \"overrideParameters\": \"-WebsiteName $(WebsiteName) -PUL_ServerName $(ServerName)  -PUL_HostingPlanName $(HostingPlan)\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"outputVariable\": \"\"\n              }\n            },\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment2\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppKind\": \"app\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"$(ResourceGroup)\",\n                \"SlotName\": \"Dev\",\n                \"ImageSource\": \"Registry\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/GitHub/drop/PartsUnlimitedWebsite.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      }\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$GitHub-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"GitHub\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$GitHub-id$\",\n          \"name\": \"GitHub\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"GitHub\",\n      \"triggerConditions\": [],\n      \"triggerType\": \"artifactSource\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/ServiceEndpoints/GitHub-code.json",
    "content": "﻿{\n  \"data\": {\n\t\t\t\n\t\t},\t\t\n\t\t\"name\": \"GitHub-code\",\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://vstsdemodata.visualstudio.com/_git/GitHub\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n\t\t\"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/TaskfromTemplate.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 777,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-11-28T05:49:17.257Z\",\n        \"System.CreatedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-11-28T05:49:45.817Z\",\n        \"System.ChangedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Create new endpoint with the type GitHub in VSTS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/776\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/777\"\n    },\n    {\n      \"id\": 779,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-11-28T06:30:08.037Z\",\n        \"System.CreatedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-11-28T06:30:08.037Z\",\n        \"System.ChangedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Create new build definition\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/778\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/779\"\n    },\n    {\n      \"id\": 780,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"GitHub\",\n        \"System.TeamProject\": \"GitHub\",\n        \"System.IterationPath\": \"GitHub\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-11-28T06:30:43.103Z\",\n        \"System.CreatedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-11-28T06:30:43.103Z\",\n        \"System.ChangedBy\": \"kini.satish <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Change the source repository to GitHub\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/778\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/780\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-GitHub/Teams.json",
    "content": "[\n  {\n    \"name\": \"Team1\",\n    \"Description\": \"Team1 Description\"\n  },\n  {\n    \"name\": \"Team2\",\n    \"Description\": \"Team2 Description\"\n  }\n\n]\n    \n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/BuildDefinitions/SmartHotel-CouponManagement-CI.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Bug\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build Maven\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"ac4ee482-65da-4485-a532-7b085873e532\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"mavenPOMFile\": \"pom.xml\",\n              \"goals\": \"package\",\n              \"options\": \"\",\n              \"publishJUnitResults\": \"true\",\n              \"testResultsFiles\": \"**/surefire-reports/TEST-*.xml\",\n              \"testRunTitle\": \"\",\n              \"allowBrokenSymbolicLinks\": \"true\",\n              \"codeCoverageTool\": \"None\",\n              \"classFilter\": \"\",\n              \"classFilesDirectories\": \"\",\n              \"srcDirectories\": \"\",\n              \"failIfCoverageEmpty\": \"false\",\n              \"restoreOriginalPomXml\": \"false\",\n              \"javaHomeSelection\": \"JDKVersion\",\n              \"jdkVersion\": \"default\",\n              \"jdkUserInputPath\": \"\",\n              \"jdkArchitecture\": \"x64\",\n              \"mavenVersionSelection\": \"Default\",\n              \"mavenPath\": \"\",\n              \"mavenSetM2Home\": \"false\",\n              \"mavenOpts\": \"-Xmx1024m\",\n              \"mavenFeedAuthenticate\": \"false\",\n              \"skipEffectivePom\": \"false\",\n              \"sqAnalysisEnabled\": \"false\",\n              \"isJacocoCoverageReportXML\": \"false\",\n              \"sqMavenPluginVersionChoice\": \"latest\",\n              \"checkstyleAnalysisEnabled\": \"false\",\n              \"pmdAnalysisEnabled\": \"false\",\n              \"findbugsAnalysisEnabled\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy files to staging folder\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(build.sourcesdirectory)\",\n              \"Contents\": \"**/*.war\\n*.json\\n\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"$(Parameters.flattenFolders)\",\n              \"preserveTimestamp\": \"false\",\n              \"retryCount\": \"0\",\n              \"delayBetweenRetries\": \"1000\",\n              \"ignoreMakeDirErrors\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish artifacts \",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.ArtifactStagingDirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\",\n              \"FileCopyOptions\": \"\",\n              \"StoreAsTar\": \"false\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Job_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1,\n          \"queue\": \"{}\"\n        },\n        \"jobAuthorizationScope\": \"projectCollection\"\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\",\n      \"connectedServiceId\": \"\"\n    },\n    \"id\": \"$azure-key-vault$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"azure-key-vault\",\n    \"url\": \"\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"flattenFolders\",\n        \"label\": \"Flatten Folders\",\n        \"defaultValue\": \"\",\n        \"type\": \"boolean\",\n        \"helpMarkDown\": \"Flatten the folder structure and copy all files into the specified target folder.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": \"{}\",\n    \"id\": \"\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"SmartHotel-CouponManagement-CI\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 3,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/BuildDefinitions/azure-key-vault.json",
    "content": "{\n  \"triggers\": [],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/azure-key-vault\",\n      \"fullName\": \"azure-key-vault\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$azure-key-vault$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$azure-key-vault$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"azure-key-vault\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/azure-key-vault\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"SmartHotel-CouponManagement-CI-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/Extensions.json",
    "content": "{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"ARM Outputs\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'><b>ARM Outputs</b></a>\",\n      \"publisherId\": \"keesschollaart\",\n      \"extensionId\": \"arm-outputs\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/keesschollaart.arm-outputs/license' target='_blank'>License Terms</a>\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/ImportSourceCode/azure-key-vault.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/vstsdemodata/azure-key-vault/_git/azure-key-vault\"\n    },\n    \"serviceEndpointId\": \"$azure-key-vault-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"SmartHotel-CouponManagement\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/ReleaseDefinitions/SmartHotel-CouponManagement-CD.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 2,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"variables\": {\n    \"resourcegroup\": {\n      \"value\": \"azurekeyvaultlab\",\n      \"isSecret\": false\n    },\n    \"webappName\": {\n      \"value\": \"hotel-coupon-mgmt$UUID$\",\n      \"isSecret\": false\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 1,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 1\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 2\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 3\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"1e244d32-2dd4-4165-96fb-b7441ca9331e\",\n              \"version\": \"1.*\",\n              \"name\": \"Azure Key Vault: SMCoupon\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"KeyVaultName\": \"SMCoupon\",\n                \"SecretsFilter\": \"*\",\n                \"RunAsPreJob\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Deployment:Create Or Update Resource Group action on sachinsampletest\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(resourcegroup)\",\n                \"location\": \"East US 2\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/_SmartHotel-CouponManagement-CI/drop/azuredeploy.json\",\n                \"csmParametersFile\": \"\",\n                \"overrideParameters\": \"-webAppName $(webappName) -mySQLAdminLoginName \\\"azureuser\\\" -mySQLAdminLoginPassword $(sqldbpassword) \",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"runAgentServiceAsUser\": \"false\",\n                \"userName\": \"\",\n                \"password\": \"\",\n                \"outputVariable\": \"\",\n                \"deploymentName\": \"\",\n                \"deploymentOutputs\": \"\",\n                \"addSpnToEnvironment\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Azure App Service Deploy: $(webappName)\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"webApp\",\n                \"WebAppName\": \"$(webappName)\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.war\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"true\",\n                \"AdditionalArguments\": \"-retryAttempts:6 -retryInterval:10000\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n       \n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$SmartHotel-CouponManagement-CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_SmartHotel-CouponManagement-CI\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$SmartHotel-CouponManagement-CI-id$\",\n          \"name\": \"SmartHotel-CouponManagement-CI\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"artifactSourceDefinitionUrl\": \"{}\"\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    },\n    \"IntegrateBoardsWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"False\"\n    },\n    \"IntegrateJiraWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"false\"\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"SmartHotel-CouponManagement-CD\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/ServiceEndpoints/Azure-MSDN1.json",
    "content": "{\n  \"data\": {\n    \"environment\": \"AzureCloud\",\n    \"subscriptionId\": \"3fc1987f-3b9d-4339-b3d6-72411a3f0306\",\n    \"subscriptionName\": \"Windows Azure MSDN - Visual Studio Ultimate\",\n    \"scopeLevel\": \"Subscription\"\n  },\n  \"name\": \"AzureRM\",\n  \"type\": \"azurerm\",\n  \"url\": \"https://management.azure.com/\",\n  \"authorization\": {\n    \"parameters\": {\n      \"tenantId\": \"17942a11-2d83-4d4f-8484-c97ba80738df\",\n      \"servicePrincipalId\": \"a40ce25b-cb96-4441-aea6-4c61ffd97fde\",\n      \"authenticationType\": \"spnKey\",\n      \"servicePrincipalKey\": \"spnKey\"\n    },\n    \"scheme\": \"ServicePrincipal\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/ServiceEndpoints/GitHub-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/hsachinraj/SmartHotel360-CouponManagement.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/ServiceEndpoints/GitHubConnection.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"GithUbConnection\",\n  \"type\": \"GitHub\",\n  \"url\": \"https://github.com\",\n  \"authorization\": {\n    \"scheme\": \"InstallationToken\",\n\t\"Parameters\":{\n\t\"AccessToken\":\"AccessToken\"\n\t}\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/ServiceEndpoints/azure-key-vault-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"azure-key-vault-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vstsdemodata/azure-key-vault/_git/azure-key-vault\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/Teams/SmartHotel-CouponManagement Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": true,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/Teams/SmartHotel-CouponManagement Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/Teams/SmartHotel-CouponManagement Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\"\n        },\n        {\n          \"fieldIdentifier\": \"System.IterationPath\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"true\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/Teams/SmartHotel-CouponManagement Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"fill\": [\n        {\n          \"name\": \"Last Sprint\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[System.IterationPath] = @CurrentIteration - 1\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"System.IterationPath\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"@CurrentIteration - 1\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#efffdc\",\n            \"title-color\": \"#000000\"\n          }\n        },\n        {\n          \"name\": \"Current Sprint\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[System.IterationPath] = @currentIteration\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"System.IterationPath\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"@currentIteration\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#fff8d7\",\n            \"title-color\": \"#000000\"\n          }\n        },\n        {\n          \"name\": \"High Priority\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[Microsoft.VSTS.Common.Priority] = '1'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"Microsoft.VSTS.Common.Priority\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"1\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#ffebd7\",\n            \"title-color\": \"#000000\"\n          }\n        }\n      ],\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/Teams/SmartHotel-CouponManagement Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"9784fa20-5970-401d-b8fc-da0f5968a170\",\n    \"name\": \"SmartHotel-CouponManagement Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Keyvault/WorkItems/User Story.json",
    "content": "{\n  \"count\": 12,\n  \"value\": [\n    {\n      \"id\": 1206,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2019-02-27T05:28:41.217Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:46:43.52Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an admin, I want to set expiration dates for vouchers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1206\"\n    },\n    {\n      \"id\": 1205,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2019-02-27T05:28:03.187Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:46:40.927Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As a user, I want to print coupons\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1205\"\n    },\n    {\n      \"id\": 1204,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2019-02-27T05:27:42.157Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:50:04.443Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an admin, I want to generate coupons for guests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1204\"\n    },\n    {\n      \"id\": 1207,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2019-02-27T05:30:21.28Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:50:08.023Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an admin, I want to log into the coupon management portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1207\"\n    },\n    {\n      \"id\": 1203,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2019-02-27T05:27:20.86Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:50:10.443Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As a user, I want to see all eligible offers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1203\"\n    },\n    {\n      \"id\": 1202,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-02-27T05:26:53.28Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:45:58.893Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an admin, I want to make changes to existing offers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1202\"\n    },\n    {\n      \"id\": 1201,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2019-02-27T05:26:35.39Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:50:49.507Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an admin, I want to add new vouchers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1201\"\n    },\n    {\n      \"id\": 1250,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2019-03-07T05:39:52.317Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:50:15.93Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an Ops admin, I want to setup Azure policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1250\"\n    },\n    {\n      \"id\": 1247,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2019-03-07T05:38:46.643Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:50:58.633Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an admin, I want to be able to add  a new offer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1247\"\n    },\n    {\n      \"id\": 1200,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-02-27T05:25:32.917Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:45:58.893Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an admin, I want to retrieve the list of checked in guests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1200\"\n    },\n    {\n      \"id\": 1248,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-03-07T05:39:02.143Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:51:00.383Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As a user, I want to get notification on upcoming expiry\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1248\"\n    },\n    {\n      \"id\": 1249,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SmartHotel-CouponManagement\",\n        \"System.TeamProject\": \"SmartHotel-CouponManagement\",\n        \"System.IterationPath\": \"SmartHotel-CouponManagement\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-03-07T05:39:20.58Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-03-08T19:46:02.27Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As a user, I want to add vouchers to my digital wallet\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/azuredevops-demos/_apis/wit/workItems/1249\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/BuildDefinitions/LaunchDarkly-CI-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipeline.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/LaunchDarkly\",\n      \"fullName\": \"LaunchDarkly\",\n      \"defaultBranch\": \"refs/heads/launch-darkly\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$LaunchDarkly$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$LaunchDarkly$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"LaunchDarkly\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/LaunchDarkly\",\n    \"defaultBranch\": \"refs/heads/launch-darkly\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"LaunchDarkly-CI-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/BuildDefinitions/LaunchDarkly.json",
    "content": "{\n  \"name\": \"LaunchDarkly-CI\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 4,\n\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"816848\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"Release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [ \"+refs/heads/*\" ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Restore\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.RestoreBuildProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"build\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.RestoreBuildProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"test\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.TestProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"publish\",\n              \"publishWebProjects\": \"True\",\n              \"projects\": \"$(Parameters.RestoreBuildProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"True\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy arm templates\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"Environment\",\n              \"Contents\": \"**\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\\\\Environment\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"windows-2019\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$LaunchDarkly$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"LaunchDarkly\",\n    \"defaultBranch\": \"refs/heads/launch-darkly\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {\n\n        },\n        \"properties\": {\n\n        },\n        \"name\": \"RestoreBuildProjects\",\n        \"label\": \"Project(s) to restore and build\",\n        \"defaultValue\": \"**/*.csproj\",\n        \"type\": \"multiline\",\n        \"helpMarkDown\": \"Relative path of the .csproj file(s) from repo root. Wildcards can be used. For example, **/*.csproj for all .csproj files in all the subfolders.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {\n\n        },\n        \"properties\": {\n\n        },\n        \"name\": \"TestProjects\",\n        \"label\": \"Project(s) to test\",\n        \"defaultValue\": \"**/*[Tt]ests/*.csproj\",\n        \"type\": \"multiline\",\n        \"helpMarkDown\": \"Relative path of the .csproj file(s) from repo root. Wildcards can be used. For example, **/*.csproj for all .csproj files in all the subfolders.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"LaunchDarkly Integration V2\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=launchdarkly.launchdarkly-extension' target='_blank'><b>LaunchDarkly Integration V2</b></a>\",\n      \"publisherId\": \"launchdarkly\",\n      \"extensionId\": \"launchdarkly-extension\",\n      \"publisherName\": \"LaunchDarkly\",\n      \"License\": \"\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/ImportSourceCode/LaunchDarkly.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/vstsdemodata/LaunchDarkly-Updated/_git/LaunchDarkly\"\n    },\n    \"serviceEndpointId\": \"$LaunchDarkly-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/ProjectSettings.json",
    "content": "﻿{\n  \"type\": \"Agile\",\n  \"users\": [],\n  \"userAssignment\": \"Any\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"LaunchDarkly\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"UerStoriesfromTemplate.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/ReleaseDefinitions/LaunchDarkly.json",
    "content": "{\n\t\"source\": \"userInterface\",\n\t\"revision\": 4,\n\t\"description\": null,\n\t\"isDeleted\": false,\n\t\"variables\": {\n\t\t\"hostingPlanName\": {\n\t\t\t\"value\": \"launchdarklyplan\"\n\t\t},\n\t\t\"launchdarkly-account-name\": {\n\t\t\t\"value\": \"$AccountName$\"\n\t\t},\n\t\t\"launchdarkly-pat\": {\n\t\t\t\"value\": \"\"\n\t\t},\n\t\t\"launchdarkly-project-name\": {\n\t\t\t\"value\": \"LaunchDarkly\"\n\t\t},\n\t\t\"location\": {\n\t\t\t\"value\": \"Central US\"\n\t\t},\n\t\t\"ResourceGroupName\": {\n\t\t\t\"value\": \"LaunchDarklyRG\"\n\t\t},\n\t\t\"siteName\": {\n\t\t\t\"value\": \"PartsUnlimitedweb$RandomNumber$\"\n\t\t}\n\t},\n\t\"variableGroups\": [],\n\t\"environments\": [{\n\t\t\n\t\t\"name\": \"Stage 1\",\n\t\t\"rank\": 1,\n\t\t\"owner\": {\n\t\t\t\"id\": \"$OwnerId$\",\n\t\t\t\"displayName\": \"$OwnerDisplayName$\",\n\t\t\t\"uniqueName\": \"$OwnerUniqueName$\"\n\t\t  },\n\t\t\"variables\": {\n\t\t\t\n\t\t},\n\t\t\"variableGroups\": [],\n\t\t\"preDeployApprovals\": {\n\t\t\t\"approvals\": [{\n\t\t\t\t\"rank\": 1,\n\t\t\t\t\"isAutomated\": true,\n\t\t\t\t\"isNotificationOn\": false\n\t\t\t}],\n\t\t\t\"approvalOptions\": {\n\t\t\t\t\"requiredApproverCount\": 0,\n\t\t\t\t\"releaseCreatorCanBeApprover\": false,\n\t\t\t\t\"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n\t\t\t\t\"enforceIdentityRevalidation\": false,\n\t\t\t\t\"timeoutInMinutes\": 0,\n\t\t\t\t\"executionOrder\": \"beforeGates\"\n\t\t\t}\n\t\t},\n\t\t\"deployStep\": {\n\t\t\t\n\t\t},\n\t\t\"postDeployApprovals\": {\n\t\t\t\"approvals\": [{\n\t\t\t\t\"rank\": 1,\n\t\t\t\t\"isAutomated\": true,\n\t\t\t\t\"isNotificationOn\": false\n\t\t\t}],\n\t\t\t\"approvalOptions\": {\n\t\t\t\t\"requiredApproverCount\": 0,\n\t\t\t\t\"releaseCreatorCanBeApprover\": false,\n\t\t\t\t\"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n\t\t\t\t\"enforceIdentityRevalidation\": false,\n\t\t\t\t\"timeoutInMinutes\": 0,\n\t\t\t\t\"executionOrder\": \"afterSuccessfulGates\"\n\t\t\t}\n\t\t},\n\t\t\"deployPhases\": [{\n\t\t\t\"deploymentInput\": {\n\t\t\t\t\"parallelExecution\": {\n\t\t\t\t\t\"parallelExecutionType\": \"none\"\n\t\t\t\t},\n\t\t\t\t\"skipArtifactsDownload\": false,\n\t\t\t\t\"agentSpecification\": {\n\t\t\t\t\t\"identifier\": \"windows-2019\"\n\t\t\t\t},\n\t\t\t\t\"artifactsDownloadInput\": {\n\t\t\t\t\t\"downloadInputs\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"artifactItems\": [],\n\t\t\t\t\t\t\t\"alias\": \"LaunchDarkly-CI\",\n\t\t\t\t\t\t\t\"artifactType\": \"Build\",\n\t\t\t\t\t\t\t\"artifactDownloadMode\": \"All\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t\"queueId\": \"$Azure Pipelines$\",\n\t\t\t\t\"demands\": [],\n\t\t\t\t\"enableAccessToken\": false,\n\t\t\t\t\"timeoutInMinutes\": 0,\n\t\t\t\t\"jobCancelTimeoutInMinutes\": 1,\n\t\t\t\t\"condition\": \"succeeded()\",\n\t\t\t\t\"overrideInputs\": {\n\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"rank\": 1,\n\t\t\t\"phaseType\": \"agentBasedDeployment\",\n\t\t\t\"name\": \"Agent job\",\n\t\t\t\"workflowTasks\": [{\n\t\t\t\t\"environment\": {\n\t\t\t\t\t\n\t\t\t\t},\n\t\t\t\t\"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n\t\t\t\t\"version\": \"2.*\",\n\t\t\t\t\"name\": \"Azure Resource Group Deployment\",\n\t\t\t\t\"refName\": \"\",\n\t\t\t\t\"enabled\": true,\n\t\t\t\t\"alwaysRun\": false,\n\t\t\t\t\"continueOnError\": false,\n\t\t\t\t\"timeoutInMinutes\": 0,\n\t\t\t\t\"definitionType\": \"task\",\n\t\t\t\t\"overrideInputs\": {\n\t\t\t\t\t\n\t\t\t\t},\n\t\t\t\t\"condition\": \"succeeded()\",\n\t\t\t\t\"inputs\": {\n\t\t\t\t\t\"ConnectedServiceName\": \"\",\n\t\t\t\t\t\"action\": \"Create Or Update Resource Group\",\n\t\t\t\t\t\"resourceGroupName\": \"$(ResourceGroupName)\",\n\t\t\t\t\t\"location\": \"$(location)\",\n\t\t\t\t\t\"templateLocation\": \"Linked artifact\",\n\t\t\t\t\t\"csmFileLink\": \"\",\n\t\t\t\t\t\"csmParametersFileLink\": \"\",\n\t\t\t\t\t\"csmFile\": \"$(System.DefaultWorkingDirectory)/LaunchDarkly-CI/drop/Environment/azuredeploy.json\",\n\t\t\t\t\t\"csmParametersFile\": \"$(System.DefaultWorkingDirectory)/LaunchDarkly-CI/drop/Environment/azuredeploy.parameter.json\",\n\t\t\t\t\t\"overrideParameters\": \"-siteName $(siteName) -hostingPlanName $(hostingPlanName)\",\n\t\t\t\t\t\"deploymentMode\": \"Incremental\",\n\t\t\t\t\t\"enableDeploymentPrerequisites\": \"None\",\n\t\t\t\t\t\"deploymentGroupEndpoint\": \"\",\n\t\t\t\t\t\"project\": \"\",\n\t\t\t\t\t\"deploymentGroupName\": \"\",\n\t\t\t\t\t\"copyAzureVMTags\": \"true\",\n\t\t\t\t\t\"runAgentServiceAsUser\": \"false\",\n\t\t\t\t\t\"userName\": \"\",\n\t\t\t\t\t\"password\": \"\",\n\t\t\t\t\t\"outputVariable\": \"\",\n\t\t\t\t\t\"deploymentOutputs\": \"\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"environment\": {\n\t\t\t\t\t\n\t\t\t\t},\n\t\t\t\t\"taskId\": \"cc77dce8-9bc2-4bd0-b8bb-2e252dbdd7d0\",\n\t\t\t\t\"version\": \"3.*\",\n\t\t\t\t\"name\": \"LaunchDarkly Rollout\",\n\t\t\t\t\"refName\": \"\",\n\t\t\t\t\"enabled\": true,\n\t\t\t\t\"alwaysRun\": false,\n\t\t\t\t\"continueOnError\": false,\n\t\t\t\t\"timeoutInMinutes\": 0,\n\t\t\t\t\"definitionType\": \"task\",\n\t\t\t\t\"overrideInputs\": {\n\t\t\t\t\t\n\t\t\t\t},\n\t\t\t\t\"condition\": \"succeeded()\",\n\t\t\t\t\"inputs\": {\n\t\t\t\t\t\"serviceEndpoint\": \"\",\n\t\t\t\t\t\"rollout\": \"100\",\n\t\t\t\t\t\"turnOn\": \"true\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"environment\": {\n\t\t\t\t\t\n\t\t\t\t},\n\t\t\t\t\"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n\t\t\t\t\"version\": \"3.*\",\n\t\t\t\t\"name\": \"Azure App Service Deploy\",\n\t\t\t\t\"refName\": \"\",\n\t\t\t\t\"enabled\": true,\n\t\t\t\t\"alwaysRun\": false,\n\t\t\t\t\"continueOnError\": false,\n\t\t\t\t\"timeoutInMinutes\": 0,\n\t\t\t\t\"definitionType\": \"task\",\n\t\t\t\t\"overrideInputs\": {\n\t\t\t\t\t\n\t\t\t\t},\n\t\t\t\t\"condition\": \"succeeded()\",\n\t\t\t\t\"inputs\": {\n\t\t\t\t\t\"ConnectedServiceName\": \"\",\n\t\t\t\t\t\"WebAppKind\": \"app\",\n\t\t\t\t\t\"WebAppName\": \"$(siteName)\",\n\t\t\t\t\t\"DeployToSlotFlag\": \"false\",\n\t\t\t\t\t\"ResourceGroupName\": \"\",\n\t\t\t\t\t\"SlotName\": \"\",\n\t\t\t\t\t\"ImageSource\": \"Registry\",\n\t\t\t\t\t\"AzureContainerRegistry\": \"\",\n\t\t\t\t\t\"AzureContainerRegistryLoginServer\": \"\",\n\t\t\t\t\t\"AzureContainerRegistryImage\": \"\",\n\t\t\t\t\t\"AzureContainerRegistryTag\": \"\",\n\t\t\t\t\t\"DockerRepositoryAccess\": \"public\",\n\t\t\t\t\t\"RegistryConnectedServiceName\": \"\",\n\t\t\t\t\t\"PrivateRegistryImage\": \"\",\n\t\t\t\t\t\"PrivateRegistryTag\": \"\",\n\t\t\t\t\t\"DockerNamespace\": \"\",\n\t\t\t\t\t\"DockerRepository\": \"\",\n\t\t\t\t\t\"DockerImageTag\": \"\",\n\t\t\t\t\t\"VirtualApplication\": \"\",\n\t\t\t\t\t\"Package\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n\t\t\t\t\t\"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n\t\t\t\t\t\"RuntimeStack\": \"\",\n\t\t\t\t\t\"StartupCommand\": \"\",\n\t\t\t\t\t\"WebAppUri\": \"\",\n\t\t\t\t\t\"ScriptType\": \"\",\n\t\t\t\t\t\"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n\t\t\t\t\t\"ScriptPath\": \"\",\n\t\t\t\t\t\"GenerateWebConfig\": \"false\",\n\t\t\t\t\t\"WebConfigParameters\": \"\",\n\t\t\t\t\t\"AppSettings\": \"\",\n\t\t\t\t\t\"ConfigurationSettings\": \"\",\n\t\t\t\t\t\"TakeAppOfflineFlag\": \"true\",\n\t\t\t\t\t\"UseWebDeploy\": \"false\",\n\t\t\t\t\t\"SetParametersFile\": \"\",\n\t\t\t\t\t\"RemoveAdditionalFilesFlag\": \"false\",\n\t\t\t\t\t\"ExcludeFilesFromAppDataFlag\": \"false\",\n\t\t\t\t\t\"AdditionalArguments\": \"\",\n\t\t\t\t\t\"RenameFilesFlag\": \"false\",\n\t\t\t\t\t\"XmlTransformation\": \"false\",\n\t\t\t\t\t\"XmlVariableSubstitution\": \"false\",\n\t\t\t\t\t\"JSONFiles\": \"\"\n\t\t\t\t}\n\t\t\t}]\n\t\t}],\n\t\t\"environmentOptions\": {\n\t\t\t\"emailNotificationType\": \"OnlyOnFailure\",\n\t\t\t\"emailRecipients\": \"release.environment.owner;release.creator\",\n\t\t\t\"skipArtifactsDownload\": false,\n\t\t\t\"timeoutInMinutes\": 0,\n\t\t\t\"enableAccessToken\": false,\n\t\t\t\"publishDeploymentStatus\": true,\n\t\t\t\"badgeEnabled\": false,\n\t\t\t\"autoLinkWorkItems\": false,\n\t\t\t\"pullRequestDeploymentEnabled\": false\n\t\t},\n\t\t\"demands\": [],\n\t\t\"conditions\": [{\n\t\t\t\"name\": \"ReleaseStarted\",\n\t\t\t\"conditionType\": \"event\",\n\t\t\t\"value\": \"\"\n\t\t}],\n\t\t\"executionPolicy\": {\n\t\t\t\"concurrencyCount\": 1,\n\t\t\t\"queueDepthCount\": 0\n\t\t},\n\t\t\"schedules\": [],\n\t\t\n\t\t\"retentionPolicy\": {\n\t\t\t\"daysToKeep\": 30,\n\t\t\t\"releasesToKeep\": 3,\n\t\t\t\"retainBuild\": true\n\t\t},\n\t\t\"processParameters\": {\n\t\t\t\n\t\t},\n\t\t\"properties\": {\n\t\t\t\n\t\t},\n\t\t\"preDeploymentGates\": {\n\t\t\t\"id\": 0,\n\t\t\t\"gatesOptions\": null,\n\t\t\t\"gates\": []\n\t\t},\n\t\t\"postDeploymentGates\": {\n\t\t\t\"id\": 0,\n\t\t\t\"gatesOptions\": null,\n\t\t\t\"gates\": []\n\t\t},\n\t\t\"environmentTriggers\": []\n\t}],\n\t\"artifacts\": [{\n\t\t\"sourceId\": \"$ProjectId$:$LaunchDarkly-CI-id$\",\n\t\t\"type\": \"Build\",\n\t\t\"alias\": \"LaunchDarkly-CI\",\n\t\t\"definitionReference\": {\n\t\t\t\n\t\t\t\"defaultVersionBranch\": {\n\t\t\t\t\"id\": \"\",\n\t\t\t\t\"name\": \"\"\n\t\t\t},\n\t\t\t\"defaultVersionSpecific\": {\n\t\t\t\t\"id\": \"\",\n\t\t\t\t\"name\": \"\"\n\t\t\t},\n\t\t\t\"defaultVersionTags\": {\n\t\t\t\t\"id\": \"\",\n\t\t\t\t\"name\": \"\"\n\t\t\t},\n\t\t\t\"defaultVersionType\": {\n\t\t\t\t\"id\": \"latestType\",\n\t\t\t\t\"name\": \"Latest\"\n\t\t\t},\n\t\t\t\"definition\": {\n\t\t\t\t\"id\": \"$LaunchDarkly-CI-id$\",\n\t\t\t\t\"name\": \"LaunchDarkly-CI\"\n\t\t\t},\n      \"project\": {\n        \"id\": \"$ProjectId$\",\n        \"name\": \"$ProjectName$\"\n      }\n\t\t},\n\t\t\"isPrimary\": true,\n\t\t\"isRetained\": false\n\t}],\n\t\"triggers\": [{\n\t\t\"artifactAlias\": \"LaunchDarkly-CI\",\n\t\t\"triggerConditions\": [],\n\t\t\"triggerType\": \"artifactSource\"\n\t}],\n\t\"releaseNameFormat\": \"Release-$(rev:r)\",\n\t\"tags\": [],\n\t\"properties\": {\n\t\t\"DefinitionCreationSource\": {\n\t\t\t\"$type\": \"System.String\",\n\t\t\t\"$value\": \"ReleaseClone\"\n\t\t}\n\t},\n\n\t\"name\": \"LaunchDarkly_CD\",\n\t\"path\": \"\\\\\",\n\t\"projectReference\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/ServiceEndpoints/LaunchDarkly-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"LaunchDarkly-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vstsdemodata/LaunchDarkly-Updated/_git/LaunchDarkly\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-LaunchDarkly/UerStoriesfromTemplate.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 2051,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"LaunchDarkly\",\n        \"System.TeamProject\": \"LaunchDarkly\",\n        \"System.IterationPath\": \"LaunchDarkly\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-09-25T12:28:45.99Z\",\n        \"System.CreatedBy\": \"Sriramdas Balaji <sriramdas.balaji@outlook.com>\",\n        \"System.ChangedDate\": \"2018-09-26T07:40:10.017Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@outlook.com>\",\n        \"System.Title\": \"Implement FeatureFlag Management using LaunchDarkly\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sriramdas Balaji <sriramdas.balaji@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/2051\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-MachineLearning/BuildDefinitions/DevOps-for-AI.json",
    "content": "{\n  \"name\": \"DevOps-for-AI-CI\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+refs/heads/master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": 2\n    },\n    {\n      \"schedules\": [\n        {\n          \"branchFilters\": [\n            \"+refs/heads/master\"\n          ],\n          \"timeZoneId\": \"UTC\",\n          \"startHours\": 1,\n          \"startMinutes\": 0,\n          \"daysToBuild\": 31,\n          \"scheduleJobId\": \"97679be0-0e39-485b-b318-aad1f0da48fa\",\n          \"scheduleOnlyWithChanges\": false\n        }\n      ],\n      \"triggerType\": 8\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": 1,\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Use Python 3.6\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"33c63b11-352b-45a2-ba1b-54cb568a29ca\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"versionSpec\": \"3.6\",\n              \"addToPath\": \"true\",\n              \"architecture\": \"x64\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Install Requirements\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"6c731c3c-3c68-459a-a5c9-bde6e6595b5b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"scriptPath\": \"environment_setup/install_requirements.sh\",\n              \"args\": \"\",\n              \"disableAutoCwd\": \"true\",\n              \"cwd\": \"environment_setup\",\n              \"failOnStandardError\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Create or Get Workspace\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"connectedServiceNameARM\": \"\",\n              \"scriptLocation\": \"inlineScript\",\n              \"scriptPath\": \"\",\n              \"inlineScript\": \"python aml_service/00-WorkSpace.py\",\n              \"args\": \"\",\n              \"addSpnToEnvironment\": \"false\",\n              \"useGlobalConfig\": \"false\",\n              \"cwd\": \"\",\n              \"failOnStandardError\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Start Training on Local\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"connectedServiceNameARM\": \"\",\n              \"scriptLocation\": \"inlineScript\",\n              \"scriptPath\": \"\",\n              \"inlineScript\": \"python aml_service/10-TrainOnLocal.py\\n\",\n              \"args\": \"\",\n              \"addSpnToEnvironment\": \"false\",\n              \"useGlobalConfig\": \"false\",\n              \"cwd\": \"\",\n              \"failOnStandardError\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Evaluate Production Model with Newly trained model\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"connectedServiceNameARM\": \"\",\n              \"scriptLocation\": \"inlineScript\",\n              \"scriptPath\": \"\",\n              \"inlineScript\": \"python aml_service/15-EvaluateModel.py\\n\",\n              \"args\": \"\",\n              \"addSpnToEnvironment\": \"false\",\n              \"useGlobalConfig\": \"false\",\n              \"cwd\": \"\",\n              \"failOnStandardError\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Register Model\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"connectedServiceNameARM\": \"\",\n              \"scriptLocation\": \"inlineScript\",\n              \"scriptPath\": \"\",\n              \"inlineScript\": \"python aml_service/20-RegisterModel.py\",\n              \"args\": \"\",\n              \"addSpnToEnvironment\": \"false\",\n              \"useGlobalConfig\": \"false\",\n              \"cwd\": \"\",\n              \"failOnStandardError\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Create Scoring Docker Image\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"connectedServiceNameARM\": \"\",\n              \"scriptLocation\": \"inlineScript\",\n              \"scriptPath\": \"\",\n              \"inlineScript\": \"python aml_service/30-CreateScoringImage.py\",\n              \"args\": \"\",\n              \"addSpnToEnvironment\": \"false\",\n              \"useGlobalConfig\": \"false\",\n              \"cwd\": \"\",\n              \"failOnStandardError\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files to: $(Build.ArtifactStagingDirectory)\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(Build.SourcesDirectory)\",\n              \"Contents\": \"**\",\n              \"TargetFolder\": \"$(Build.ArtifactStagingDirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact: Repo\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.ArtifactStagingDirectory)\",\n              \"ArtifactName\": \"devops-for-ai\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$DevOps-for-AI$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"_devops-for-ai-CI\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": 1,\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-MachineLearning/ImportSourceCode/DevOps-for-AI.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/_git/DevOps-for-AI\"\n    },\n    \"serviceEndpointId\": \"$DevOps-for-AI-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-MachineLearning/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-MachineLearning/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"TeamArea\": \"TeamArea.json\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-MachineLearning/ReleaseDefinitions/DevOps-for-AI.json",
    "content": "{\n  \"name\": \"Deploy Webservice\",\n  \"path\": \"\\\\\",\n  \"isDeleted\": false,\n  \"variables\": {},\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"name\": \"QA - Deploy on ACI\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 4\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": 0,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 5\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 6\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": 0,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": [\n                {\n                  \"artifactItems\": [],\n                  \"alias\": \"_devops-for-ai-CI\",\n                  \"artifactType\": \"Build\",\n                  \"artifactDownloadMode\": \"All\"\n                }\n              ]\n            },\n            \"queueId\": \"$Hosted Ubuntu 1604$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Deploy on New ACI\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"33c63b11-352b-45a2-ba1b-54cb568a29ca\",\n              \"version\": \"0.*\",\n              \"name\": \"Use Python 3.6\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"versionSpec\": \"3.6\",\n                \"addToPath\": \"true\",\n                \"architecture\": \"x64\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"6c731c3c-3c68-459a-a5c9-bde6e6595b5b\",\n              \"version\": \"3.*\",\n              \"name\": \"Install Requirements\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"targetType\": \"filePath\",\n                \"filePath\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai/environment_setup/install_requirements.sh\",\n                \"arguments\": \"\",\n                \"script\": \"# Write your commands here\\n\\n# Use the environment variables input below to pass secret variables to this script\",\n                \"workingDirectory\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai/environment_setup\",\n                \"failOnStderr\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"50. Deploy Webservice on ACI\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai/deployment/deployOnAci.py\",\n                \"inlineScript\": \"python ./aml_service/50-deployOnAci.py\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai\",\n                \"failOnStandardError\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"60. Test ACI Webservice\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai/test/AciWebserviceTest.py\",\n                \"inlineScript\": \"python ./aml_service/60-AciWebserviceTest.py\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai\",\n                \"failOnStandardError\": \"false\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {},\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    },\n    {\n      \"id\": 3,\n      \"name\": \"Prod - Deploy On AKS\",\n      \"rank\": 2,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": false,\n            \"isNotificationOn\": false,\n            \"approver\": {\n              \"id\": \"$OwnerId$\",\n              \"displayName\": \"$OwnerDisplayName$\",\n              \"uniqueName\": \"$OwnerUniqueName$\"\n            }\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": 0,\n          \"releaseCreatorCanBeApprover\": true,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 8\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 9\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": 0,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": [\n                {\n                  \"artifactItems\": [],\n                  \"alias\": \"_devops-for-ai-CI\",\n                  \"artifactType\": \"Build\",\n                  \"artifactDownloadMode\": \"All\"\n                }\n              ]\n            },\n            \"queueId\": \"$Hosted Ubuntu 1604$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent phase\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"33c63b11-352b-45a2-ba1b-54cb568a29ca\",\n              \"version\": \"0.*\",\n              \"name\": \"Use Python 3.6\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"versionSpec\": \"3.6\",\n                \"addToPath\": \"true\",\n                \"architecture\": \"x64\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"6c731c3c-3c68-459a-a5c9-bde6e6595b5b\",\n              \"version\": \"3.*\",\n              \"name\": \"Install Requirements\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"targetType\": \"filePath\",\n                \"filePath\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai/environment_setup/install_requirements.sh\",\n                \"arguments\": \"\",\n                \"script\": \"# Write your commands here\\n\\n# Use the environment variables input below to pass secret variables to this script\",\n                \"workingDirectory\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai/environment_setup\",\n                \"failOnStderr\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"51. Deploy on AKS\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"\",\n                \"inlineScript\": \"python ./aml_service/51-deployOnAks.py\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai\",\n                \"failOnStandardError\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"61. Test AKS Webservice\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"\",\n                \"inlineScript\": \"python ./aml_service/61-AksWebserviceTest.py\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"$(System.DefaultWorkingDirectory)/_devops-for-ai-CI/devops-for-ai\",\n                \"failOnStandardError\": \"false\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"QA - Deploy on ACI\",\n          \"conditionType\": \"environmentState\",\n          \"value\": \"4\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {},\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 11,\n        \"gatesOptions\": {\n          \"isEnabled\": true,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 5,\n          \"minimumSuccessDuration\": 0\n        },\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$DevOps-for-AI-CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_devops-for-ai-CI\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$DevOps-for-AI-CI-id$\",\n          \"name\": \"DevOps-for-AI-CI\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"_devops-for-ai-CI\",\n      \"triggerConditions\": [],\n      \"triggerType\": \"artifactSource\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"comment\": \"\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-MachineLearning/ServiceEndpoints/DevOps-for-AI.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"DevOps-for-AI-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/_git/DevOps-for-AI\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-MachineLearning/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-MachineLearning/Teams.json",
    "content": "[\n    {\n      \"name\": \"DB Team\",\n      \"description\": \"\"\n    },\n    {\n      \"name\": \"Web Team\",\n      \"description\": \"\"\n    }\n  ]\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/BoardColumns.json",
    "content": "[\n  {\n    \"description\": \"\",\n    \"name\": \"New\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"New\",\n      \"Bug\": \"New\"\n    },\n    \"columnType\": \"incoming\",\n    \"isSplit\": null\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Approved\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Approved\",\n      \"Bug\": \"Approved\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Committed\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Committed\",\n      \"Bug\": \"Committed\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Done\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Done\",\n      \"Bug\": \"Done\"\n    },\n    \"columnType\": \"outgoing\",\n    \"isSplit\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/BoardRowsFromTemplate.json",
    "content": "[\n  {\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"name\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/BuildDefinitions/Octopus.json",
    "content": "{\n  \"name\": \"Octopus\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"754052\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+refs/heads/master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Restore\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"src\\\\PartsUnlimited.Models\\\\PartsUnlimited.Models.csproj\\nsrc\\\\PartsUnlimitedWebsite\\\\PartsUnlimitedWebsite.csproj\\ntest\\\\PartsUnlimited.UnitTests\\\\PartsUnlimited.UnitTests.csproj\",\n              \"arguments\": \"\",\n              \"zipAfterPublish\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"build\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"src\\\\PartsUnlimited.Models\\\\PartsUnlimited.Models.csproj\\nsrc\\\\PartsUnlimitedWebsite\\\\PartsUnlimitedWebsite.csproj\\ntest\\\\PartsUnlimited.UnitTests\\\\PartsUnlimited.UnitTests.csproj\",\n              \"arguments\": \"--configuration $(BuildConfiguration) \",\n              \"zipAfterPublish\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"publish\",\n              \"publishWebProjects\": \"false\",\n              \"projects\": \"src\\\\PartsUnlimitedWebsite\\\\PartsUnlimitedWebsite.csproj\",\n              \"arguments\": \"--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)\",\n              \"zipAfterPublish\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Package Asp.netcore\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"OctopusPack1\",\n            \"task\": {\n              \"id\": \"179fac12-2402-486e-80cf-5a6a8571f7c0\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PackageId\": \"Asp.netcore\",\n              \"PackageFormat\": \"Zip\",\n              \"PackageVersion\": \"$(Build.BuildNumber)\",\n              \"SourcePath\": \"$(build.artifactstagingdirectory)\\\\PartsUnlimitedWebsite\",\n              \"OutputPath\": \"$(build.artifactstagingdirectory)\\\\OctopusPackage\",\n              \"NuGetAuthor\": \"\",\n              \"NuGetTitle\": \"\",\n              \"NuGetDescription\": \"\",\n              \"NuGetReleaseNotes\": \"\",\n              \"NuGetReleaseNotesFile\": \"\",\n              \"Include\": \"\",\n              \"Overwrite\": \"false\",\n              \"ListFiles\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Push Packages to Octopus\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"d05ad9a2-5d9e-4a1c-a887-14034334d6f2\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"OctoConnectedServiceName\": \"\",\n              \"Package\": \"$(build.artifactstagingdirectory)\\\\OctopusPackage\\\\Asp.netcore.$(Build.BuildNumber).zip\",\n              \"Replace\": \"False\",\n              \"AdditionalArguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Create Octopus Release\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"4e131b60-5532-4362-95b6-7c67d9841b4f\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"OctoConnectedServiceName\": \"\",\n              \"ProjectName\": \"Projects-1\",\n              \"ReleaseNumber\": \"\",\n              \"Channel\": \"\",\n              \"ChangesetCommentReleaseNotes\": \"false\",\n              \"WorkItemReleaseNotes\": \"false\",\n              \"CustomReleaseNotes\": \"\",\n              \"DeployToEnvironment\": \"\",\n              \"DeployForTenants\": \"\",\n              \"DeployForTenantTags\": \"\",\n              \"DeploymentProgress\": \"false\",\n              \"AdditionalArguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Deploy Octopus Release\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"8ca1d96a-151d-44b7-bc4f-9251e2ea6971\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"OctoConnectedServiceName\": \"\",\n              \"Project\": \"AspDotNetCore Deploy\",\n              \"ReleaseNumber\": \"latest\",\n              \"Environments\": \"Dev\",\n              \"ShowProgress\": \"False\",\n              \"DeployForTenants\": \"\",\n              \"DeployForTenantTags\": \"\",\n              \"AdditionalArguments\": \"\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"vs2017-win2016\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$Octopus$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"Octopus\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/Dashboard/Dashboard.json",
    "content": "﻿{\n   \n   \"name\":\"Overview\",\n   \"refreshInterval\":0,\n   \"position\":1,\n   \n   \"widgets\":[\n      {\n         \"name\":\"All Work Items\",\n         \"position\":{\n            \"row\":3,\n            \"column\":2\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":1\n         },\n         \"settings\":\"{\\\"defaultBackgroundColor\\\":\\\"#292e6b\\\",\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n      },\n      {\n        \n         \"name\":\"Product Backlog Items\",\n         \"position\":{\n            \"row\":3,\n            \"column\":3\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":1\n         },\n         \"settings\":\"{\\\"defaultBackgroundColor\\\":\\\"#007acc\\\",\\\"queryId\\\":\\\"$PBI$\\\",\\\"queryName\\\":\\\"Product Backlog Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Product Backlog Items\\\"}\",\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n         \n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n      },\n      {\n         \n         \"name\":\"Epic\",\n         \"position\":{\n            \"row\":1,\n            \"column\":6\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":1\n         },\n         \"settings\":\"{\\\"defaultBackgroundColor\\\":\\\"#f7a24b\\\",\\\"queryId\\\":\\\"$Epic$\\\",\\\"queryName\\\":\\\"Epic\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Epic\\\"}\",\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n        \n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n      },\n      {\n         \n         \"name\":\"All Work Items by Work Item Type\",\n         \"position\":{\n            \"row\":1,\n            \"column\":4\n         },\n         \"size\":{\n            \"rowSpan\":2,\n            \"columnSpan\":2\n         },\n         \"settings\":\"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllWorkItems$\\\",\\\"title\\\":\\\"All Work Items by Work Item Type\\\",\\\"chartType\\\":\\\"ColumnChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllWorkItems$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[{\\\"value\\\":\\\"Task\\\",\\\"backgroundColor\\\":\\\"#fbfd52\\\"},{\\\"value\\\":\\\"Product Backlog Item\\\",\\\"backgroundColor\\\":\\\"#007acc\\\"},{\\\"value\\\":\\\"Feature\\\",\\\"backgroundColor\\\":\\\"#71338d\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items by Work Item Type\\\"}\",\n         \"settingsVersion\":{\n            \"major\":3,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n         \n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \n         \"lightboxOptions\":{\n            \"width\":900,\n            \"height\":700,\n            \"resizable\":true\n         }\n      },\n      {\n         \n         \"name\":\"All Work Items\",\n         \"position\":{\n            \"row\":1,\n            \"column\":1\n         },\n         \"size\":{\n            \"rowSpan\":2,\n            \"columnSpan\":3\n         },\n         \"settings\":\"{\\\"query\\\":{\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n         \n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\"\n      },\n      {\n         \n         \"name\":\"Feature\",\n         \"position\":{\n            \"row\":2,\n            \"column\":6\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":1\n         },\n         \"settings\":\"{\\\"defaultBackgroundColor\\\":\\\"#5c197b\\\",\\\"queryId\\\":\\\"$Feature$\\\",\\\"queryName\\\":\\\"Feature\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Feature\\\"}\",\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n        \n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n      },\n      {\n         \n         \"name\":\"Task\",\n         \"position\":{\n            \"row\":3,\n            \"column\":1\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":1\n         },\n         \"settings\":\"{\\\"defaultBackgroundColor\\\":\\\"#fbfd52\\\",\\\"queryId\\\":\\\"$Task$\\\",\\\"queryName\\\":\\\"Task\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Task\\\"}\",\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n        \n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n      },\n      {\n         \n         \"name\":\"Octopus\",\n         \"position\":{\n            \"row\":3,\n            \"column\":4\n         },\n         \"size\":{\n            \"rowSpan\":1,\n            \"columnSpan\":2\n         },\n         \"settings\":\"{\\\"name\\\":\\\"Octopus\\\",\\\"id\\\":50,\\\"type\\\":2,\\\"uri\\\":\\\"vstfs:///Build/Definition/$BuildDefId$\\\",\\\"projectId\\\":\\\"$Projectid$\\\",\\\"lastArtifactName\\\":\\\"Octopus\\\"}\",\n         \"settingsVersion\":{\n            \"major\":1,\n            \"minor\":0,\n            \"patch\":0\n         },\n         \"artifactId\":\"\",\n        \n         \"isEnabled\":true,\n         \"contentUri\":null,\n         \"contributionId\":\"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\"\n      }\n   ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/EpicfromTemplate.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 843,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-12-29T08:43:37.23Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T08:43:39.603Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Using Octopus for Release\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/813\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/843\"\n    },\n    {\n      \"id\": 844,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-12-29T08:44:31.167Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T08:44:31.9Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Releasing Application to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/814\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/844\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"Octopus Deploy Integration\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=octopusdeploy.octopus-deploy-build-release-tasks' target='_blank'>Octopus Deploy Integration</a>\",\n      \"publisherId\": \"octopusdeploy\",\n      \"extensionId\": \"octopus-deploy-build-release-tasks\",\n      \"License\": \"\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/FeaturefromTemplate.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 813,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-29T05:35:58.863Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:35:59.753Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Octopus Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/816\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/843\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/815\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/813\"\n    },\n    {\n      \"id\": 814,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-29T05:36:11.333Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:36:12.003Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Configuring CI-CD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/817\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/844\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/818\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/814\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/ImportSourceCode/Octopus.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/_git/Octopus\"\n    },\n    \"serviceEndpointId\": \"$Octopus-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/PBIfromTemplate.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 815,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-29T05:37:56.443Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:37:56.443Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Setup Octopus server in Azure \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/813\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/819\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/820\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/815\"\n    },\n    {\n      \"id\": 816,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-29T05:38:50.537Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:38:50.537Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Integrate VSTS with Octopus\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/821\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/822\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/813\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/816\"\n    },\n    {\n      \"id\": 817,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-29T05:43:12.3Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:43:12.3Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Create Azure App Service as a deployment target\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/814\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/823\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/824\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/817\"\n    },\n    {\n      \"id\": 818,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-29T05:44:01.347Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:44:01.347Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Enable CI-CD pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/826\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/825\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/827\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/814\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/818\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/ProjectSettings.json",
    "content": "﻿{\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\"]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"Octopus\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"Parameters\": [\n    {\n      \"label\": \"Octopus URL\",\n      \"fieldName\": \"OctopusURL\"\n    },\n    {\n      \"label\": \"API Key\",\n      \"fieldName\": \"APIkey\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/ServiceEndpoints/Octopus-code.json",
    "content": "{\n  \"data\": {\n\t\t\t\n\t\t},\t\t\n\t\t\"name\": \"Octopus-code\",\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://vstsdemodata.visualstudio.com/_git/Octopus\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n\t\t\"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/ServiceEndpoints/Octopus.json",
    "content": "﻿{\n  \"name\": \"Octopus\",\n  \"type\": \"OctopusEndpoint\",\n  \"url\": \"$URL$\",\n  \"authorization\": {\n    \"parameters\": {\n      \"apitoken\": \"$Apikey$\"\n    },\n    \"scheme\": \"Token\"\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/TaskfromTemplate.json",
    "content": "{\n  \"count\": 9,\n  \"value\": [\n    {\n      \"id\": 819,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T05:45:30.817Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:45:30.817Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Use ARM template to for automatically provisioning Octopus server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/815\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/819\"\n    },\n    {\n      \"id\": 820,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T05:47:13.05Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:47:13.05Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Access Octopus server with VM DMS name to verify the deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/815\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/820\"\n    },\n    {\n      \"id\": 821,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T05:47:42.283Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:47:42.283Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Create API key in Octopus server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/816\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/821\"\n    },\n    {\n      \"id\": 822,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T05:48:24.643Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:48:24.643Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Create Service endpoint in VSTS with Octopus URL and API key\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/816\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/822\"\n    },\n    {\n      \"id\": 823,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T05:51:26.143Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:51:26.143Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Create Environment in Octopus Server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/817\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/823\"\n    },\n    {\n      \"id\": 824,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T05:56:46.723Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:56:46.723Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Link Azure account to Environment with Management certificate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/817\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/824\"\n    },\n    {\n      \"id\": 825,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T05:57:23.287Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T05:57:23.287Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Create Octopus Project\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/818\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/825\"\n    },\n    {\n      \"id\": 827,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T06:09:23.38Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T06:09:23.38Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Add build task in VSTS to automate CD\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/818\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/827\"\n    },\n    {\n      \"id\": 826,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Octopus\",\n        \"System.TeamProject\": \"Octopus\",\n        \"System.IterationPath\": \"Octopus\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-29T06:08:34.46Z\",\n        \"System.CreatedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-12-29T06:45:17.677Z\",\n        \"System.ChangedBy\": \"Satish Kini <kini.satish@hotmail.com>\",\n        \"System.Title\": \"Add  step \\\"Deploy an Azure Web\\\"\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/818\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/826\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/Teams.json",
    "content": "[\n  {\n    \"name\": \"Team1\",\n    \"Description\": \"Team1 Description\"\n  },\n  {\n    \"name\": \"Team2\",\n    \"Description\": \"Team2 Description\"\n  }\n\n]\n    \n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Octopus/UpdateCardFields.json",
    "content": "{\n  \"cards\": {\n    \"Bug\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      }\n    ],\n    \"Product Backlog Item\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      }\n    ]\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/BuildDefinitions/PHP.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Bug\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+refs/heads/master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Archive files \",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"ArchiveFiles2\",\n            \"task\": {\n              \"id\": \"d8b84976-e99a-4b86-b885-4849694435b0\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"rootFolder\": \"$(Build.sourcesDirectory)\",\n              \"includeRootFolder\": \"false\",\n              \"archiveType\": \"default\",\n              \"tarCompression\": \"gz\",\n              \"archiveFile\": \"$(Build.ArtifactStagingDirectory)/$(Build.DefinitionName).$(Build.BuildId).zip\",\n              \"replaceExistingArchive\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"PublishBuildArtifacts5\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.ArtifactStagingDirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\",\n              \"FileCopyOptions\": \"\",\n              \"StoreAsTar\": \"false\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1,\n          \"queue\": \"{}\"\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"windows-2019\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\",\n      \"connectedServiceId\": \"\"\n    },\n    \"id\": \"$php$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"php\",\n    \"url\": \"\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": \"{}\",\n    \"id\": \"\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"PHP\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 5,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/BuildDefinitions/php-yaml.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"Location\": {\n      \"value\": \"CentralUs\"\n    },\n    \"myResourceGroup\": {\n      \"value\": \"phpyaml\"\n    },\n    \"webappname\": {\n      \"value\": \"php$UUID$\"\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"comment\": \"Update variables\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/php\",\n      \"fullName\": \"php\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$php$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$php$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"php\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/php\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"PHP-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 5,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Dashboard/Dashboard.json",
    "content": "{\n  \"name\": \"Overview\",\n  \"refreshInterval\": 5,\n  \"position\": 1,\n  \"widgets\": [\n    {\n      \"name\": \"PHP\",\n      \"position\": {\n        \"row\": 2,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"name\\\":\\\"PHP\\\",\\\"id\\\":$buildPHP$,\\\"type\\\":2,\\\"uri\\\":\\\"vstfs:///Build/Definition/$buildPHP$\\\",\\\"projectId\\\":\\\"$Projectid$\\\",\\\"lastArtifactName\\\":\\\"PHP\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Epic\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#f7a24b\\\",\\\"queryId\\\":\\\"$Epic$\\\",\\\"queryName\\\":\\\"Epic\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Epic\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"All Work Items\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 8\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#e60017\\\",\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Feature\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#5c197b\\\",\\\"queryId\\\":\\\"$Feature$\\\",\\\"queryName\\\":\\\"Feature\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Feature\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n\n      \"name\": \"Product Backlog Items\",\n      \"position\": {\n        \"row\": 2,\n        \"column\": 8\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#007acc\\\",\\\"queryId\\\":\\\"$PBI$\\\",\\\"queryName\\\":\\\"Product Backlog Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Product Backlog Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n\n      \"name\": \"All Work Items\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 4\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"query\\\":{\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n      \"configurationContributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n\n      \"name\": \"Markdown\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"## Overview\\n\\nPHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages.\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n      \"isNameConfigurable\": false,\n      \"lightboxOptions\": {\n        \"width\": 600,\n        \"height\": 500,\n        \"resizable\": true\n      }\n    },\n    {\n\n      \"name\": \"Deployment status\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"buildDefinitionId\\\":$buildPHP$,\\\"projectId\\\":\\\"$Projectid$\\\",\\\"useDefaultBranch\\\":true,\\\"branchName\\\":\\\"\\\",\\\"buildSourceType\\\":\\\"Build\\\",\\\"environments\\\":[{\\\"definitionEnvironmentId\\\":1,\\\"definitionEnvironmentName\\\":\\\"\\\",\\\"releaseDefinitionId\\\":$releasePHP$,\\\"releaseDefinitionName\\\":\\\"\\\"}],\\\"lastColumnType\\\":0,\\\"viewType\\\":\\\"Deployment Status\\\",\\\"ruleOperators\\\":[\\\"\\\",\\\"\\\",\\\"\\\"],\\\"ruleBoundaries\\\":[\\\"\\\",\\\"\\\",\\\"\\\"],\\\"ruleBoundariesErrors\\\":[false,false,false],\\\"metricsView\\\":\\\"testPassRate\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-releaseManagement-web.rm-deployment-status-widget\",\n      \"typeId\": \"rm-deployment-status-widget\",\n      \"configurationContributionId\": \"ms.vss-releaseManagement-web.rm-deployment-status-widget.configuration\",\n      \"configurationContributionRelativeId\": \"rm-deployment-status-widget.configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n\n      \"name\": \"Task\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 8\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbfd52\\\",\\\"queryId\\\":\\\"$Task$\\\",\\\"queryName\\\":\\\"Task\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Task\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n\n      \"name\": \"All Work Items by State\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllWorkItems$\\\",\\\"title\\\":\\\"All Work Items by State\\\",\\\"chartType\\\":\\\"stackBarChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllWorkItems$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"series\\\":\\\"System.State\\\"},\\\"userColors\\\":[{\\\"value\\\":\\\"Task\\\",\\\"backgroundColor\\\":\\\"#fbfd52\\\"},{\\\"value\\\":\\\"Product Backlog Item\\\",\\\"backgroundColor\\\":\\\"#0d60ab\\\"},{\\\"value\\\":\\\"Feature\\\",\\\"backgroundColor\\\":\\\"#5c197b\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items by State\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n\n      \"name\": \"Release Definition Overview\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"releaseDefinitionId\\\":$releasePHP$}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-releaseManagement-web.release-definition-summary-widget\",\n      \"typeId\": \"release-definition-summary-widget\",\n      \"configurationContributionId\": \"ms.vss-releaseManagement-web.release-definition-summary-widget-configuration\",\n      \"configurationContributionRelativeId\": \"release-definition-summary-widget-configuration\",\n      \"isNameConfigurable\": true,\n      \"loadingImageUrl\": null\n    }\n  ]\n\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/ImportSourceCode/PHP.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/_git/PHP\"\n    },\n    \"serviceEndpointId\": \"$php-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 4\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 5\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 6\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"php\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/ReleaseDefinitions/PHP.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 2,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"lastRelease\": {\n    \"id\": 7,\n    \"name\": \"Release-7\",\n    \"artifacts\": [],\n    \"_links\": {},\n    \"description\": \"Triggered by PHP 210.\",\n    \"releaseDefinition\": {\n      \"id\": 1,\n      \"projectReference\": null,\n      \"_links\": {}\n    },\n    \"createdOn\": \"2021-08-31T15:36:08.56Z\",\n    \"createdBy\": {\n      \"displayName\": \"Akshay Hosur\",\n      \"url\": \"https://spsprodsin1.vssps.visualstudio.com/A5ddcb812-79aa-4fdb-b9d3-ae14ee6520a0/_apis/Identities/ddc8930b-7be3-6d29-ba63-9a7b2edf1b5e\",\n      \"_links\": {\n        \"avatar\": {\n          \"href\": \"https://dev.azure.com/akshayhosur/_apis/GraphProfile/MemberAvatars/aad.ZGRjODkzMGItN2JlMy03ZDI5LWJhNjMtOWE3YjJlZGYxYjVl\"\n        }\n      },\n      \"id\": \"ddc8930b-7be3-6d29-ba63-9a7b2edf1b5e\",\n      \"uniqueName\": \"akshay.hosur@ecanarys.com\",\n      \"imageUrl\": \"https://dev.azure.com/akshayhosur/_apis/GraphProfile/MemberAvatars/aad.ZGRjODkzMGItN2JlMy03ZDI5LWJhNjMtOWE3YjJlZGYxYjVl\",\n      \"descriptor\": \"aad.ZGRjODkzMGItN2JlMy03ZDI5LWJhNjMtOWE3YjJlZGYxYjVl\"\n    }\n  },\n  \"variables\": {\n    \"Location\": {\n      \"value\": \"SouthEastAsia\"\n    },\n    \"myResourceGroup\": {\n      \"value\": \"PHP-RG\"\n    },\n    \"webappname\": {\n      \"value\": \"phpe2ec29e3203\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 1,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 1\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 2\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 3\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"Azure CLI \",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"\",\n                \"inlineScript\": \"call az group create --location $(Location) --name $(myResourceGroup)\\ncall az appservice plan create --name $(webappname) --resource-group $(myResourceGroup) --sku S1\\ncall az webapp create --name $(webappname) --resource-group $(myResourceGroup) --plan $(webappname)\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"\",\n                \"failOnStandardError\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppKind\": \"app\",\n                \"WebAppName\": \"$(webappName)\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"ImageSource\": \"Registry\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/_php-yml/drop/*.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 7,\n        \"url\": \"https://vsrm.dev.azure.com/akshayhosur/cb8c4049-6bf2-4d8a-a211-d0037ef56ae0/_apis/Release/releases/7\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {\n        \"dataSourceBindings\": [\n          {\n            \"dataSourceName\": \"AzureRMWebAppNames\",\n            \"parameters\": {},\n            \"endpointId\": \"\",\n            \"target\": \"WebAppName\"\n          },\n          {\n            \"dataSourceName\": \"AzureAppKind\",\n            \"parameters\": {\n              \"WebAppName\": \"$(WebAppName)\"\n            },\n            \"endpointId\": \"\",\n            \"target\": \"WebAppKind\",\n            \"resultTemplate\": \"{\\\"Value\\\":\\\"{{{ #stringReplace ',' '' kind }}}\\\",\\\"DisplayValue\\\":\\\"{{{ #stringReplace ',' '' kind }}}\\\"}\"\n          }\n        ]\n      },\n      \"properties\": {\n        \"LinkBoardsWorkItems\": {\n          \"$type\": \"System.String\",\n          \"$value\": \"False\"\n        }\n      },\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": {\n          \"isEnabled\": false,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 15,\n          \"minimumSuccessDuration\": 0\n        },\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": {\n          \"isEnabled\": false,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 15,\n          \"minimumSuccessDuration\": 0\n        },\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$PHP-YAML-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_php-yaml\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$PHP-YAML-id$\",\n          \"name\": \"php-yaml\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"artifactSourceDefinitionUrl\": \"{}\"\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"BuildSummary\"\n    },\n    \"IntegrateBoardsWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"False\"\n    },\n    \"IntegrateJiraWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"false\"\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"PHP\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/ServiceEndpoints/ARM-Subscription.json",
    "content": "{\n  \"data\": {\n    \"environment\": \"AzureCloud\",\n    \"subscriptionId\": \"99AA8818-2A8C-4F32-B5B5-70FBAE8CA9C4\",\n    \"subscriptionName\": \"ARM-Subscription\",\n    \"scopeLevel\": \"Subscription\"\n  },\n  \"name\": \"ARM-Subscription\",\n  \"type\": \"azurerm\",\n  \"url\": \"https://management.azure.com/\",\n  \"authorization\": {\n    \"parameters\": {\n      \"tenantId\": \"A78D9CBA-BEAE-498A-86CD-8C20F91A9C89\",\n      \"servicePrincipalId\": \"1eb04965-1462-4ef2-80f0-11cd6ff3f405\",\n      \"authenticationType\": \"spnKey\",\n      \"servicePrincipalKey\": \"spnKey\"\n    },\n    \"scheme\": \"ServicePrincipal\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/ServiceEndpoints/GitHub-018337e3-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_018337e3\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/akshayhosur/php/_git/php\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/ServiceEndpoints/PHP-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"php-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/_git/PHP\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team1/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team1/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team1/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team1/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team2/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team2/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team2/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team2/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"8577f590-73e2-4ff3-98e5-ea9a9e9e0ecb\",\n    \"name\": \"php Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"dfcd5600-2230-4acc-9cfe-2825174dc3d5\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"d6888d90-d149-4429-94eb-3b466bc5b921\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/php Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/php Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/php Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"false\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"true\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/php Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/Teams/php Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 7181,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:50.35Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-07T06:17:44.04Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Azure Deployments for PHP\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Azure Deployments for PHP\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7181\"\n    },\n    {\n      \"id\": 7182,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:50.66Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-07T06:17:44.04Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Setting Up DevOps pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Setting Up DevOps pipeline\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7182\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/WorkItems/Feature.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 7167,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:40.703Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-07T06:17:49.907Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Deployments to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Deployments to Azure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7170\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7167\"\n    },\n    {\n      \"id\": 7168,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:41.78Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-07T06:17:49.907Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Set up CI-CD pipeline for PHP Application\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Set up CI-CD pipeline for PHP Application\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7168\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 7169,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:42.503Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:42.503Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Identify Azure components required\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Identify Azure components required\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7169\"\n    },\n    {\n      \"id\": 7170,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:43.03Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:43.03Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Deploy PHP Application to Azure App Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Deploy PHP Application to Azure App Service\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7176\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7177\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7167\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7170\"\n    },\n    {\n      \"id\": 7171,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:44.177Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:44.177Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Use ARM templates in the CD pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Use ARM templates in the CD pipeline\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"ARM; Azure; VSTS\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7180\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7171\"\n    },\n    {\n      \"id\": 7172,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:45.17Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:45.17Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"User Interface changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 6.0,\n        \"System.Description\": \"User Interface changes\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"VSTS; WebApp\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7175\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7178\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7172\"\n    },\n    {\n      \"id\": 7173,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:45.577Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:45.577Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Develop ARM template\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Develop ARM template\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"ARM; Azure\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7173\"\n    },\n    {\n      \"id\": 7174,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:46.55Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:46.55Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create Endpoint for Azure Resource Manager\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create Endpoint for Azure Resource Manager\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"ARM; VSTS\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7179\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7174\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-PHP/WorkItems/Task.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 7175,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:46.963Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:46.963Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Change the font style\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Change the font style\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7172\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7175\"\n    },\n    {\n      \"id\": 7176,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:47.473Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:47.473Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create a build definition \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create a build definition \",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7170\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7176\"\n    },\n    {\n      \"id\": 7177,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:48.57Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:48.57Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Archive the artifacts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Archive the artifacts\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7170\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7177\"\n    },\n    {\n      \"id\": 7178,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:48.88Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:48.88Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Change the background colour\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Change the background colour\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7172\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7178\"\n    },\n    {\n      \"id\": 7179,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:49.157Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:49.157Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create ARM endpoint\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create ARM endpoint\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7174\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7179\"\n    },\n    {\n      \"id\": 7180,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"php\",\n        \"System.TeamProject\": \"php\",\n        \"System.IterationPath\": \"php\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-08-30T10:03:50.063Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-08-30T10:03:50.063Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Create resources on Azure through ARM templates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create resources on Azure through ARM templates\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7171\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7180\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/BuildDefinitions/Python.json",
    "content": "{\n    \"options\": [\n        {\n            \"enabled\": false,\n            \"definition\": {\n                \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n            },\n            \"inputs\": {\n                \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n                \"additionalFields\": \"{}\"\n            }\n        },\n        {\n            \"enabled\": false,\n            \"definition\": {\n                \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n            },\n            \"inputs\": {\n                \"workItemType\": \"728474\",\n                \"assignToRequestor\": \"true\",\n                \"additionalFields\": \"{}\"\n            }\n        }\n    ],\n    \"variables\": {\n        \"system.debug\": {\n            \"value\": \"false\",\n            \"allowOverride\": true\n        }\n    },\n    \"retentionRules\": [\n        {\n            \"branches\": [\n                \"+refs/heads/*\"\n            ],\n            \"artifacts\": [],\n            \"artifactTypesToDelete\": [\n                \"FilePath\",\n                \"SymbolStore\"\n            ],\n            \"daysToKeep\": 10,\n            \"minimumToKeep\": 1,\n            \"deleteBuildRecord\": true,\n            \"deleteTestResults\": true\n        }\n    ],\n    \"properties\": {},\n    \"tags\": [],\n    \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n    \"jobAuthorizationScope\": \"projectCollection\",\n    \"jobTimeoutInMinutes\": 60,\n    \"jobCancelTimeoutInMinutes\": 5,\n    \"process\": {\n      \"phases\": [\n        {\n          \"steps\": [\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Use Python 2.x\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"33c63b11-352b-45a2-ba1b-54cb568a29ca\",\n                \"versionSpec\": \"0.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"versionSpec\": \"2.x\",\n                \"addToPath\": \"true\",\n                \"architecture\": \"x64\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Install dependencies\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"d9bafed4-0b18-4f58-968d-86655b4d2ce9\",\n                \"versionSpec\": \"2.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"script\": \"pip install -r Application/requirements.txt\",\n                \"workingDirectory\": \"\",\n                \"failOnStderr\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"pytest\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"d9bafed4-0b18-4f58-968d-86655b4d2ce9\",\n                \"versionSpec\": \"2.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"script\": \"pip install pytest && pytest Tests/unit_tests --junitxml=../TestResults/test-results.xml && pip install pycmd && py.cleanup Tests/\",\n                \"workingDirectory\": \"\",\n                \"failOnStderr\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Publish Test Results **/test-results.xml\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"0b0f01ed-7dde-43ff-9cbb-e48954daf9b1\",\n                \"versionSpec\": \"2.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"testRunner\": \"JUnit\",\n                \"testResultsFiles\": \"**/test-results.xml\",\n                \"searchFolder\": \"$(Common.TestResultsDirectory)\",\n                \"mergeTestResults\": \"false\",\n                \"testRunTitle\": \"Python Unit tests\",\n                \"platform\": \"\",\n                \"configuration\": \"\",\n                \"publishRunAttachments\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Archive application\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"d8b84976-e99a-4b86-b885-4849694435b0\",\n                \"versionSpec\": \"2.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"rootFolderOrFile\": \"$(System.DefaultWorkingDirectory)/Application\",\n                \"includeRootFolder\": \"false\",\n                \"archiveType\": \"zip\",\n                \"tarCompression\": \"gz\",\n                \"archiveFile\": \"$(Build.ArtifactStagingDirectory)/Application$(Build.BuildId).zip\",\n                \"replaceExistingArchive\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Archive Tests\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"d8b84976-e99a-4b86-b885-4849694435b0\",\n                \"versionSpec\": \"2.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"rootFolderOrFile\": \"$(System.DefaultWorkingDirectory)/Tests\",\n                \"includeRootFolder\": \"false\",\n                \"archiveType\": \"zip\",\n                \"tarCompression\": \"gz\",\n                \"archiveFile\": \"$(Build.ArtifactStagingDirectory)/Tests$(Build.BuildId).zip\",\n                \"replaceExistingArchive\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Publish Artifact: drop\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"PathtoPublish\": \"$(Build.ArtifactStagingDirectory)\",\n                \"ArtifactName\": \"drop\",\n                \"ArtifactType\": \"Container\",\n                \"TargetPath\": \"\",\n                \"Parallel\": \"false\",\n                \"ParallelCount\": \"8\"\n              }\n            }\n          ],\n          \"name\": \"Build and Test\",\n          \"refName\": \"Phase_1\",\n          \"condition\": \"succeeded()\",\n          \"target\": {\n            \"executionOptions\": {\n              \"type\": 0\n            },\n            \"allowScriptsAuthAccessOption\": false,\n            \"type\": 1\n          },\n          \"jobAuthorizationScope\": \"projectCollection\",\n          \"jobCancelTimeoutInMinutes\": 1\n        }\n      ],\n      \"target\": {\n            \"agentSpecification\": {\n                \"identifier\": \"windows-2019\"\n            }\n        },\n        \"type\": 1\n    },\n    \"repository\": {\n        \"properties\": {\n            \"cleanOptions\": \"0\",\n            \"labelSources\": \"0\",\n            \"labelSourcesFormat\": \"$(build.buildNumber)\",\n            \"reportBuildStatus\": \"true\",\n            \"gitLfsSupport\": \"false\",\n            \"skipSyncSource\": \"false\",\n            \"checkoutNestedSubmodules\": \"false\",\n            \"fetchDepth\": \"0\"\n        },\n        \"id\": \"$PythonDjango$\",\n        \"type\": \"TfsGit\",\n        \"name\": \"PythonDjango\",\n        \"clean\": \"false\",\n        \"checkoutSubmodules\": false\n    },\n    \"processParameters\": {},\n    \"quality\": \"definition\",\n    \"drafts\": [],\n    \"queue\": {\n        \"name\": \"Azure Pipelines\",\n        \"pool\": {\n            \"name\": \"Azure Pipelines\",\n            \"isHosted\": true\n        }\n    },\n    \"name\": \"Python-CI\",\n    \"path\": \"\\\\\",\n    \"type\": \"build\",\n    \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/BuildDefinitions/PythonDjango-yaml.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"appservice-name\": {\n      \"value\": \"python$UUID$\"\n    },\n    \"appservice-plan\": {\n      \"value\": \"pythonplan\"\n    },\n    \"Location\": {\n      \"value\": \"SouthEastAsia\"\n    },\n    \"ResourceGroup\": {\n      \"value\": \"Python\"\n    },\n    \"sku\": {\n      \"value\": \"S1\"\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/PythonDjango\",\n      \"fullName\": \"PythonDjango\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$PythonDjango$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$PythonDjango$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"PythonDjango\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/PythonDjango\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Python-CI-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 4,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/ImportSourceCode/PythonDjango.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\": {\n        \"url\": \"https://vstsdemodata.visualstudio.com/Python/_git/PythonDjango\"\n      },\n      \"serviceEndpointId\": \"$Python-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/ReleaseDefinitions/Python-CD.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 3,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"variables\": {\n    \"appservice-name\": {\n      \"value\": \"python$UUID$\"\n    },\n    \"appservice-plan\": {\n      \"value\": \"pythonplan\"\n    },\n    \"Location\": {\n      \"value\": \"SouthEastAsia\"\n    },\n    \"ReleaseConfiguration\": {\n      \"value\": \"Release\"\n    },\n    \"ReleasePlatform\": {\n      \"value\": \"Any CPU\"\n    },\n    \"ResourceGroup\": {\n      \"value\": \"Python\"\n    },\n    \"sku\": {\n      \"value\": \"S1\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 1,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 1\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 2\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 3\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent phase\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"Azure CLI \",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"\",\n                \"inlineScript\": \"# Azure resources required to deploy Python Web app\\n\\ncall az group create --location $(Location) --name $(ResourceGroup)\\n\\ncall az appservice plan create --name $(appservice-plan) --resource-group $(ResourceGroup) --sku $(sku)\\n\\ncall az webapp create --name $(appservice-name) --resource-group $(ResourceGroup) --plan $(appservice-plan)\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"\",\n                \"failOnStandardError\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"f045e430-8704-11e6-968f-e717e6411619\",\n              \"version\": \"0.*\",\n              \"name\": \"Install Python Extension\",\n              \"refName\": \"AzureAppServiceManage2\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"Action\": \"Install Extensions\",\n                \"WebAppName\": \"auditreport\",\n                \"SpecifySlot\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SourceSlot\": \"\",\n                \"SwapWithProduction\": \"true\",\n                \"TargetSlot\": \"\",\n                \"PreserveVnet\": \"false\",\n                \"Slot\": \"production\",\n                \"ExtensionsList\": \"azureappservice-python2714x64\",\n                \"OutputVariable\": \"PYTHON_EXT\",\n                \"AppInsightsResourceGroupName\": \"\",\n                \"ApplicationInsightsResourceName\": \"\",\n                \"ApplicationInsightsWebTestName\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"webAppUrl\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"webApp\",\n                \"WebAppName\": \"auditreport\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)\\\\**\\\\Application*.zip\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"Inline Script\",\n                \"InlineScript\": \"@echo off\\nif NOT exist requirements.txt (\\n echo No Requirements.txt found.\\n EXIT /b 0\\n)\\nif NOT exist \\\"$(PYTHON_EXT)/python.exe\\\" (\\n echo Python extension not available >&2\\n EXIT /b 1\\n)\\necho Installing dependencies\\ncall \\\"$(PYTHON_EXT)/python.exe\\\" -m pip install -U setuptools\\nif %errorlevel% NEQ 0 (\\n echo Failed to install setuptools >&2\\n EXIT /b 1\\n)\\ncall \\\"$(PYTHON_EXT)/python.exe\\\" -m pip install -r requirements.txt\\nif %errorlevel% NEQ 0 (\\n echo Failed to install dependencies>&2\\n EXIT /b 1\\n)\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"-WSGI_HANDLER \\\"django.core.wsgi.get_wsgi_application()\\\" -DJANGO_SETTINGS_MODULE \\\"python_webapp_django.settings\\\" -PYTHON_PATH \\\"$(PYTHON_EXT)\\\\python.exe\\\"  -PYTHON_WFASTCGI_PATH \\\"$(PYTHON_EXT)\\\\wfastcgi.py\\\"  -appType python_Django\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"5e1e3830-fbfb-11e5-aab1-090c92bc4988\",\n              \"version\": \"1.*\",\n              \"name\": \"Extract Tests\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"archiveFilePatterns\": \"Tests*.zip\",\n                \"destinationFolder\": \"$(System.DefaultWorkingDirectory)/Tests\",\n                \"cleanDestinationFolder\": \"true\",\n                \"overwriteExistingFiles\": \"false\",\n                \"pathToSevenZipTool\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"33c63b11-352b-45a2-ba1b-54cb568a29ca\",\n              \"version\": \"0.*\",\n              \"name\": \"Use Python 2.x\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"versionSpec\": \"2.x\",\n                \"addToPath\": \"true\",\n                \"architecture\": \"x64\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"d9bafed4-0b18-4f58-968d-86655b4d2ce9\",\n              \"version\": \"2.*\",\n              \"name\": \"Run functional tests\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"script\": \"pip install selenium && pip install pytest && pytest Tests/functional_tests/ --webAppUrl=$(webAppUrl.AppServiceApplicationUrl) --junitxml=TestResults/test-results.xml\",\n                \"workingDirectory\": \"\",\n                \"failOnStderr\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"0b0f01ed-7dde-43ff-9cbb-e48954daf9b1\",\n              \"version\": \"2.*\",\n              \"name\": \"Publish Test Results **/TEST-*.xml\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"testRunner\": \"JUnit\",\n                \"testResultsFiles\": \"**/TEST-*.xml\",\n                \"searchFolder\": \"$(System.DefaultWorkingDirectory)\",\n                \"mergeTestResults\": \"false\",\n                \"failTaskOnFailedTests\": \"false\",\n                \"testRunTitle\": \"\",\n                \"platform\": \"\",\n                \"configuration\": \"\",\n                \"publishRunAttachments\": \"true\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 0,\n        \"url\": \"https://vsrm.dev.azure.com/akshayhosur/09d914b0-164b-4b57-a856-9e3ba4a7e8b4/_apis/Release/releases/0\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {\n        \"LinkBoardsWorkItems\": {\n          \"$type\": \"System.String\",\n          \"$value\": \"False\"\n        }\n      },\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": {\n          \"isEnabled\": false,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 15,\n          \"minimumSuccessDuration\": 0\n        },\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": {\n          \"isEnabled\": false,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 15,\n          \"minimumSuccessDuration\": 0\n        },\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Python-CI-YAML-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Python-CI-YAML\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$Python-CI-YAML-id$\",\n          \"name\": \"Python-CI-YAML\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"artifactSourceDefinitionUrl\": \"{}\"\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"Other\"\n    },\n    \"IntegrateBoardsWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"False\"\n    },\n    \"IntegrateJiraWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"false\"\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Python-CD\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/ServiceEndpoints/Python-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"Python-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/Python/_git/PythonDjango\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Python Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Python Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Python Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Python Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Python Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team1/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team1/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team1/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team1/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team2/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team2/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team2/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team2/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Python/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"2451e53b-9ed5-4da6-9f48-86c1c8ebbe1b\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"1a30290c-6644-4848-bb28-0d67af7cf5c8\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"1a15f7ef-533f-49e8-b115-26963f75c2df\",\n    \"name\": \"Python Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/BuildDefinitions/PartsUnlimited-CI-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/PartsUnlimited\",\n      \"fullName\": \"PartsUnlimited\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$PartsUnlimited$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$PartsUnlimited$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"PartsUnlimited\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/PartsUnlimited\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"PartsUnlimited-CI-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/BuildDefinitions/PartsUnlimited-CI.json",
    "content": "{\n    \"options\": [\n        {\n            \"enabled\": true,\n            \"definition\": {\n                \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n            },\n            \"inputs\": {\n                \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n                \"additionalFields\": \"{}\"\n            }\n        },\n        {\n            \"enabled\": false,\n            \"definition\": {\n                \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n            },\n            \"inputs\": {\n                \"workItemType\": \"753326\",\n                \"assignToRequestor\": \"true\",\n                \"additionalFields\": \"{}\"\n            }\n        }\n    ],\n    \"variables\": {\n        \"BuildConfiguration\": {\n            \"value\": \"release\",\n            \"allowOverride\": true\n        },\n        \"BuildPlatform\": {\n            \"value\": \"any cpu\",\n            \"allowOverride\": true\n        },\n        \"system.debug\": {\n            \"value\": \"false\",\n            \"allowOverride\": true\n        }\n    },\n    \"retentionRules\": [\n        {\n            \"branches\": [\n                \"+refs/heads/*\"\n            ],\n            \"artifacts\": [],\n            \"artifactTypesToDelete\": [\n                \"FilePath\",\n                \"SymbolStore\"\n            ],\n            \"daysToKeep\": 10,\n            \"minimumToKeep\": 1,\n            \"deleteBuildRecord\": true,\n            \"deleteTestResults\": true\n        }\n    ],\n    \"properties\": {},\n    \"tags\": [],\n    \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n    \"jobAuthorizationScope\": \"projectCollection\",\n    \"jobTimeoutInMinutes\": 60,\n    \"jobCancelTimeoutInMinutes\": 5,\n    \"process\": {\n      \"phases\": [\n        {\n          \"steps\": [\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Install .net core 2.0.0\",\n              \"timeoutInMinutes\": 0,\n              \"retryCountOnTaskFailure\": 0,\n              \"condition\": \"succeeded()\",\n              \"task\": {\n                \"id\": \"e213ff0f-5d5c-4791-802d-52ea3e7be1f1\",\n                \"versionSpec\": \"2.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"targetType\": \"inline\",\n                \"filePath\": \"\",\n                \"arguments\": \"\",\n                \"script\": \"choco install dotnetcore-sdk --version=2.0.0\",\n                \"errorActionPreference\": \"stop\",\n                \"warningPreference\": \"default\",\n                \"informationPreference\": \"default\",\n                \"verbosePreference\": \"default\",\n                \"debugPreference\": \"default\",\n                \"failOnStderr\": \"false\",\n                \"showWarnings\": \"false\",\n                \"ignoreLASTEXITCODE\": \"false\",\n                \"pwsh\": \"false\",\n                \"workingDirectory\": \"\",\n                \"runScriptInSeparateScope\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Restore\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"command\": \"restore\",\n                \"publishWebProjects\": \"true\",\n                \"projects\": \"src/PartsUnlimited.Models/PartsUnlimited.Models.csproj\\nsrc/PartsUnlimitedWebsite/PartsUnlimitedWebsite.csproj\\ntest/PartsUnlimited.UnitTests/PartsUnlimited.UnitTests.csproj\",\n                \"arguments\": \"\",\n                \"zipAfterPublish\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Build\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"command\": \"build\",\n                \"publishWebProjects\": \"true\",\n                \"projects\": \"src/PartsUnlimited.Models/PartsUnlimited.Models.csproj\\nsrc/PartsUnlimitedWebsite/PartsUnlimitedWebsite.csproj\\ntest/PartsUnlimited.UnitTests/PartsUnlimited.UnitTests.csproj\",\n                \"arguments\": \"--configuration $(BuildConfiguration)\",\n                \"zipAfterPublish\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Test\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"command\": \"test\",\n                \"publishWebProjects\": \"true\",\n                \"projects\": \"$(Parameters.TestProjects)\",\n                \"arguments\": \"--configuration $(BuildConfiguration)\",\n                \"zipAfterPublish\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Publish\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"command\": \"publish\",\n                \"publishWebProjects\": \"True\",\n                \"projects\": \"\",\n                \"arguments\": \"--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)\",\n                \"zipAfterPublish\": \"True\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Publish Artifact\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n                \"ArtifactName\": \"drop\",\n                \"ArtifactType\": \"Container\",\n                \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n                \"Parallel\": \"false\",\n                \"ParallelCount\": \"8\"\n              }\n            }\n          ],\n          \"name\": \"Phase 1\",\n          \"refName\": \"Phase_1\",\n          \"condition\": \"succeeded()\",\n          \"target\": {\n            \"executionOptions\": {\n              \"type\": 0\n            },\n            \"allowScriptsAuthAccessOption\": false,\n            \"type\": 1\n          },\n          \"jobAuthorizationScope\": \"projectCollection\",\n          \"jobCancelTimeoutInMinutes\": 1\n        }\n      ],\n      \"target\": {\n            \"agentSpecification\": {\n                \"identifier\": \"windows-2019\"\n            }\n        },\n        \"type\": 1\n    },\n    \"repository\": {\n      \"properties\": {\n        \"labelSources\": \"0\",\n        \"labelSourcesFormat\": \"$(build.buildNumber)\",\n        \"reportBuildStatus\": \"true\",\n        \"fetchDepth\": \"0\",\n        \"cleanOptions\": \"0\",\n        \"gitLfsSupport\": \"false\",\n        \"skipSyncSource\": \"false\",\n        \"checkoutNestedSubmodules\": \"false\"\n      },\n        \"id\": \"$PartsUnlimited$\",\n        \"type\": \"TfsGit\",\n        \"name\": \"PartsUnlimited\",\n        \"defaultBranch\": \"refs/heads/master\",\n        \"clean\": null,\n        \"checkoutSubmodules\": false\n    },\n    \"processParameters\": {\n        \"inputs\": [\n            {\n                \"aliases\": [],\n                \"options\": {},\n                \"properties\": {},\n                \"name\": \"TestProjects\",\n                \"label\": \"Project(s) to test\",\n                \"defaultValue\": \"**/*Tests/*.csproj\",\n                \"type\": \"multiline\",\n                \"helpMarkDown\": \"Relative path of the .csproj file(s) from repo root. Wildcards can be used. For example, **/*.csproj for all .csproj files in all the subfolders.\",\n                \"visibleRule\": \"\",\n                \"groupName\": \"\"\n            }\n        ]\n    },\n    \"quality\": \"definition\",\n    \"drafts\": [],\n    \"queue\": {\n        \"name\": \"Azure Pipelines\",\n        \"pool\": {\n            \"name\": \"Azure Pipelines\",\n            \"isHosted\": true\n        }\n    },\n    \"name\": \"PartsUnlimited-CI\",\n    \"path\": \"\\\\\",\n    \"type\": \"build\",\n    \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Dashboard/Queries/Bugs.json",
    "content": "{\n  \"name\": \"Bugs\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/ImportSourceCode/PartsUnlimited.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://vstsdemodata.visualstudio.com/Release%20Gates/_git/PartsUnlimited\"\n        },\n      \"serviceEndpointId\": \"$PartsUnlimited-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/ReleaseDefinitions/PartsUnlimited-CD.json",
    "content": "{\n    \"name\": \"PartsUnlimited-CD\",\n    \"path\": \"\\\\\",\n    \"projectReference\": null,\n    \"source\": 2,\n    \"revision\": 2,\n    \"description\": null,\n    \"isDeleted\": false,\n    \"variables\": {},\n    \"variableGroups\": [],\n    \"environments\": [\n        {\n            \"name\": \"Canary Environment\",\n            \"rank\": 1,\n            \"owner\": {\n                \"id\": \"$OwnerId$\",\n                \"displayName\": \"$OwnerDisplayName$\",\n                \"uniqueName\": \"$OwnerUniqueName$\"\n              },\n            \"variables\": {},\n            \"variableGroups\": [],\n            \"preDeployApprovals\": {\n                \"approvals\": [\n                    {\n                        \"rank\": 1,\n                        \"isAutomated\": true,\n                        \"isNotificationOn\": false                        \n                    }\n                ],\n                \"approvalOptions\": {\n                    \"requiredApproverCount\": null,\n                    \"releaseCreatorCanBeApprover\": false,\n                    \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n                    \"enforceIdentityRevalidation\": false,\n                    \"timeoutInMinutes\": 0,\n                    \"executionOrder\": 1\n                }\n            },\n            \"deployStep\": {\n            },\n            \"postDeployApprovals\": {\n                \"approvals\": [\n                    {\n                        \"rank\": 1,\n                        \"isAutomated\": true,\n                        \"isNotificationOn\": false                       \n                    }\n                ],\n                \"approvalOptions\": {\n                    \"requiredApproverCount\": null,\n                    \"releaseCreatorCanBeApprover\": false,\n                    \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n                    \"enforceIdentityRevalidation\": false,\n                    \"timeoutInMinutes\": 0,\n                    \"executionOrder\": 2\n                }\n            },\n            \"deployPhases\": [\n                {\n                  \"deploymentInput\": {\n                    \"parallelExecution\": {\n                      \"parallelExecutionType\": \"none\"\n                    },\n                    \"skipArtifactsDownload\": false,\n                    \"agentSpecification\": {\n                      \"identifier\": \"windows-2019\"\n                    },\n                    \"artifactsDownloadInput\": {\n                      \"downloadInputs\": []\n                    },\n                    \"queueId\": \"$Azure Pipelines$\",\n                    \"demands\": [],\n                    \"enableAccessToken\": false,\n                    \"timeoutInMinutes\": 0,\n                    \"jobCancelTimeoutInMinutes\": 1,\n                    \"condition\": \"succeeded()\",\n                    \"overrideInputs\": {}\n                  },\n                    \"rank\": 1,\n                    \"phaseType\": 1,\n                    \"name\": \"Agent phase\",\n                    \"workflowTasks\": [\n                        {\n                            \"taskId\": \"f045e430-8704-11e6-968f-e717e6411619\",\n                            \"version\": \"0.*\",\n                            \"name\": \"Enable Continuous Monitoring\",\n                            \"refName\": \"\",\n                            \"enabled\": true,\n                            \"alwaysRun\": false,\n                            \"continueOnError\": false,\n                            \"timeoutInMinutes\": 0,\n                            \"definitionType\": null,\n                            \"overrideInputs\": {},\n                            \"condition\": \"succeeded()\",\n                            \"inputs\": {\n                                \"ConnectedServiceName\": \"$(Parameters.ConnectedServiceName)\",\n                                \"Action\": \"Enable Continuous Monitoring\",\n                                \"WebAppName\": \"$(Parameters.WebAppName)\",\n                                \"SpecifySlot\": \"false\",\n                                \"ResourceGroupName\": \"\",\n                                \"SourceSlot\": \"\",\n                                \"SwapWithProduction\": \"true\",\n                                \"TargetSlot\": \"\",\n                                \"PreserveVnet\": \"false\",\n                                \"Slot\": \"production\",\n                                \"ExtensionsList\": \"\",\n                                \"OutputVariable\": \"\",\n                                \"AppInsightsResourceGroupName\": \"$(Parameters.AppInsightsResourceGroupName)\",\n                                \"ApplicationInsightsResourceName\": \"$(Parameters.ApplicationInsightsResourceName)\"\n                            }\n                        },\n                        {\n                            \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n                            \"version\": \"3.*\",\n                            \"name\": \"Azure App Service Deploy\",\n                            \"refName\": \"\",\n                            \"enabled\": true,\n                            \"alwaysRun\": false,\n                            \"continueOnError\": false,\n                            \"timeoutInMinutes\": 0,\n                            \"definitionType\": null,\n                            \"overrideInputs\": {},\n                            \"condition\": \"succeeded()\",\n                            \"inputs\": {\n                                \"ConnectedServiceName\": \"$(Parameters.ConnectedServiceName)\",\n                                \"WebAppKind\": \"$(Parameters.WebAppKind)\",\n                                \"WebAppName\": \"$(Parameters.WebAppName)\",\n                                \"DeployToSlotFlag\": \"false\",\n                                \"ResourceGroupName\": \"\",\n                                \"SlotName\": \"\",\n                                \"ImageSource\": \"$(Parameters.ImageSource)\",\n                                \"AzureContainerRegistry\": \"\",\n                                \"AzureContainerRegistryLoginServer\": \"\",\n                                \"AzureContainerRegistryImage\": \"\",\n                                \"AzureContainerRegistryTag\": \"\",\n                                \"DockerRepositoryAccess\": \"public\",\n                                \"RegistryConnectedServiceName\": \"\",\n                                \"PrivateRegistryImage\": \"\",\n                                \"PrivateRegistryTag\": \"\",\n                                \"DockerNamespace\": \"$(Parameters.DockerNamespace)\",\n                                \"DockerRepository\": \"$(Parameters.DockerRepository)\",\n                                \"DockerImageTag\": \"$(Build.BuildId)\",\n                                \"VirtualApplication\": \"\",\n                                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                                \"RuntimeStack\": \"$(Parameters.RuntimeStack)\",\n                                \"StartupCommand\": \"\",\n                                \"WebAppUri\": \"\",\n                                \"ScriptType\": \"\",\n                                \"InlineScript\": \"\",\n                                \"ScriptPath\": \"\",\n                                \"GenerateWebConfig\": \"false\",\n                                \"WebConfigParameters\": \"\",\n                                \"AppSettings\": \"\",\n                                \"ConfigurationSettings\": \"\",\n                                \"TakeAppOfflineFlag\": \"true\",\n                                \"UseWebDeploy\": \"false\",\n                                \"SetParametersFile\": \"\",\n                                \"RemoveAdditionalFilesFlag\": \"false\",\n                                \"ExcludeFilesFromAppDataFlag\": \"true\",\n                                \"AdditionalArguments\": \"\",\n                                \"RenameFilesFlag\": \"true\",\n                                \"XmlTransformation\": \"false\",\n                                \"XmlVariableSubstitution\": \"false\",\n                                \"JSONFiles\": \"\"\n                            }\n                        }\n                    ]\n                }\n            ],\n            \"environmentOptions\": {\n                \"emailNotificationType\": \"OnlyOnFailure\",\n                \"emailRecipients\": \"release.environment.owner;release.creator\",\n                \"skipArtifactsDownload\": false,\n                \"timeoutInMinutes\": 0,\n                \"enableAccessToken\": false,\n                \"publishDeploymentStatus\": true,\n                \"badgeEnabled\": false,\n                \"autoLinkWorkItems\": false,\n                \"pullRequestDeploymentEnabled\": false\n            },\n            \"demands\": [],\n            \"conditions\": [\n                {\n                    \"name\": \"ReleaseStarted\",\n                    \"conditionType\": 1,\n                    \"value\": \"\"\n                }\n            ],\n            \"executionPolicy\": {\n                \"concurrencyCount\": 1,\n                \"queueDepthCount\": 0\n            },\n            \"schedules\": [],\n            \"currentRelease\": {\n                \"id\": 1,\n                \"_links\": {}\n            },\n            \"retentionPolicy\": {\n                \"daysToKeep\": 30,\n                \"releasesToKeep\": 3,\n                \"retainBuild\": true\n            },\n            \"processParameters\": {\n                \"inputs\": [\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {},\n                        \"name\": \"ConnectedServiceName\",\n                        \"label\": \"Azure subscription\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"connectedService:AzureRM\",\n                        \"helpMarkDown\": \"Select the Azure Resource Manager subscription\",\n                        \"visibleRule\": \"\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {\n                            \"app\": \"Web App\",\n                            \"applinux\": \"Linux App\",\n                            \"functionapp\": \"Function App\",\n                            \"api\": \"API App\",\n                            \"mobileapp\": \"Mobile App\"\n                        },\n                        \"properties\": {\n                            \"EditableOptions\": \"false\"\n                        },\n                        \"name\": \"WebAppKind\",\n                        \"label\": \"App type\",\n                        \"defaultValue\": \"app\",\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {\n                            \"EditableOptions\": \"True\"\n                        },\n                        \"name\": \"WebAppName\",\n                        \"label\": \"App Service name\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"Enter or select the name of an existing Azure App Service\",\n                        \"visibleRule\": \"\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {\n                            \"Registry\": \"Container Registry\",\n                            \"Builtin\": \"Built-in Image\"\n                        },\n                        \"properties\": {},\n                        \"name\": \"ImageSource\",\n                        \"label\": \"Image Source\",\n                        \"defaultValue\": \"Registry\",\n                        \"required\": true,\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"App Service on Linux offers two different options to publish your application <br/> Custom image deployment or App deployment with a built-in platform image. [Learn More](https://go.microsoft.com/fwlink/?linkid=862490)\",\n                        \"visibleRule\": \"WebAppKind = applinux\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {},\n                        \"name\": \"DockerNamespace\",\n                        \"label\": \"Registry or Namespace\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"string\",\n                        \"helpMarkDown\": \"A globally unique top-level domain name for your specific registry or namespace.<br/> Note: Fully qualified image name will be of the format: '<b>`<registry or namespace`></b>/`<repository`>:`<tag`>'. For example, '<b>myregistry.azurecr.io</b>/nginx:latest'.\",\n                        \"visibleRule\": \"WebAppKind = applinux && ImageSource = Registry\",\n                        \"groupName\": \"\"\n                    },\n                  {\n                    \"aliases\": [],\n                    \"options\": {},\n                    \"properties\": {},\n                    \"name\": \"DockerRepository\",\n                    \"label\": \"Repository\",\n                    \"defaultValue\": \"\",\n                    \"required\": true,\n                    \"type\": \"string\",\n                    \"helpMarkDown\": \"Name of the repository where the container images are stored.<br/> Note: Fully qualified image name will be of the format: '`<registry or namespace`>/<b>`<repository`></b>:`<tag`>'. For example, 'myregistry.azurecr.io/<b>nginx</b>:latest'.\",\n                    \"visibleRule\": \"WebAppKind = applinux && ImageSource = Registry\",\n                    \"groupName\": \"\"\n                  },\n                    {\n                        \"aliases\": [],\n                        \"options\": {\n                            \"node|4.4\": \"Node.js 4.4\",\n                            \"node|4.5\": \"Node.js 4.5\",\n                            \"node|6.2\": \"Node.js 6.2\",\n                            \"node|6.6\": \"Node.js 6.6\",\n                            \"node|6.9\": \"Node.js 6.9\",\n                            \"node|6.10\": \"Node.js 6.10\",\n                            \"node|6.11\": \"Node.js 6.11\",\n                            \"node|8.0\": \"Node.js 8.0\",\n                            \"node|8.1\": \"Node.js 8.1\",\n                            \"php|5.6\": \"PHP 5.6\",\n                            \"php|7.0\": \"PHP 7.0\",\n                            \"dotnetcore|1.0\": \".NET Core 1.0\",\n                            \"dotnetcore|1.1\": \".NET Core 1.1\",\n                            \"dotnetcore|2.0\": \".NET Core 2.0\",\n                            \"ruby|2.3\": \"Ruby 2.3\"\n                        },\n                        \"properties\": {},\n                        \"name\": \"RuntimeStack\",\n                        \"label\": \"Runtime Stack\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"Select the framework and version.\",\n                        \"visibleRule\": \"WebAppKind = applinux && ImageSource = Builtin\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {\n                            \"EditableOptions\": \"True\"\n                        },\n                        \"name\": \"AppInsightsResourceGroupName\",\n                        \"label\": \"Resource Group name for Application Insights\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"Enter or Select resource group where your application insights resource is available.\",\n                        \"visibleRule\": \"\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {\n                            \"EditableOptions\": \"False\",\n                            \"EnableManage\": \"True\",\n                            \"ManageLink\": \"https://ms.portal.azure.com/#create/Microsoft.AppInsights\",\n                            \"ManageIcon\": \"Add\",\n                            \"ManageButtonName\": \"New\"\n                        },\n                        \"name\": \"ApplicationInsightsResourceName\",\n                        \"label\": \"Application Insights resource name\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"Select Application Insights resource where continuous monitoring data will be recorded. <br/>If your application insights resource is not listed here and you want to create a new resource, click on [+New] button. Once the resource is created on Azure Portal, come back here and click on refresh button.\",\n                        \"visibleRule\": \"\",\n                        \"groupName\": \"\"\n                    }\n                ],\n                \"dataSourceBindings\": [\n                    {\n                        \"dataSourceName\": \"AzureRMWebAppNamesByType\",\n                        \"parameters\": {\n                            \"WebAppKind\": \"$(WebAppKind)\"\n                        },\n                        \"endpointId\": \"$(ConnectedServiceName)\",\n                        \"target\": \"WebAppName\"\n                    },\n                    {\n                        \"dataSourceName\": \"AzureResourceGroups\",\n                        \"parameters\": {},\n                        \"endpointId\": \"$(ConnectedServiceName)\",\n                        \"target\": \"AppInsightsResourceGroupName\"\n                    },\n                    {\n                        \"dataSourceName\": \"AzureRMApplicationInsightsResources\",\n                        \"parameters\": {\n                            \"AppInsightsResourceGroupName\": \"$(AppInsightsResourceGroupName)\"\n                        },\n                        \"endpointId\": \"$(ConnectedServiceName)\",\n                        \"target\": \"ApplicationInsightsResourceName\"\n                    }\n                ]\n            },\n            \"properties\": {},\n            \"preDeploymentGates\": {\n                \"id\": 0,\n                \"gatesOptions\": null,\n                \"gates\": []\n            },\n            \"postDeploymentGates\": {\n                \"id\": 0,\n                \"gatesOptions\": null,\n                \"gates\": []\n            },\n            \"environmentTriggers\": []\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Production\",\n            \"rank\": 2,\n            \"owner\": {\n                \"id\": \"$OwnerId$\",\n                \"displayName\": \"$OwnerDisplayName$\",\n                \"uniqueName\": \"$OwnerUniqueName$\"\n              },\n            \"variables\": {},\n            \"variableGroups\": [],\n            \"preDeployApprovals\": {\n                \"approvals\": [\n                    {\n                        \"rank\": 1,\n                        \"isAutomated\": true,\n                        \"isNotificationOn\": false\n                    }\n                ],\n                \"approvalOptions\": {\n                    \"requiredApproverCount\": null,\n                    \"releaseCreatorCanBeApprover\": false,\n                    \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n                    \"enforceIdentityRevalidation\": false,\n                    \"timeoutInMinutes\": 0,\n                    \"executionOrder\": 1\n                }\n            },\n            \"deployStep\": {\n                \n            },\n            \"postDeployApprovals\": {\n                \"approvals\": [\n                    {\n                        \"rank\": 1,\n                        \"isAutomated\": true,\n                        \"isNotificationOn\": false                        \n                    }\n                ],\n                \"approvalOptions\": {\n                    \"requiredApproverCount\": null,\n                    \"releaseCreatorCanBeApprover\": false,\n                    \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n                    \"enforceIdentityRevalidation\": false,\n                    \"timeoutInMinutes\": 0,\n                    \"executionOrder\": 2\n                }\n            },\n            \"deployPhases\": [\n                {\n                  \"deploymentInput\": {\n                    \"parallelExecution\": {\n                      \"parallelExecutionType\": \"none\"\n                    },\n                    \"skipArtifactsDownload\": false,\n                    \"agentSpecification\": {\n                      \"identifier\": \"windows-2019\"\n                    },\n                    \"artifactsDownloadInput\": {\n                      \"downloadInputs\": []\n                    },\n                    \"queueId\": \"$Azure Pipelines$\",\n                    \"demands\": [],\n                    \"enableAccessToken\": false,\n                    \"timeoutInMinutes\": 0,\n                    \"jobCancelTimeoutInMinutes\": 1,\n                    \"condition\": \"succeeded()\",\n                    \"overrideInputs\": {}\n                  },\n                    \"rank\": 1,\n                    \"phaseType\": 1,\n                    \"name\": \"Run on agent\",\n                    \"workflowTasks\": [\n                        {\n                            \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n                            \"version\": \"3.*\",\n                            \"name\": \"Deploy Azure App Service\",\n                            \"refName\": \"\",\n                            \"enabled\": true,\n                            \"alwaysRun\": false,\n                            \"continueOnError\": false,\n                            \"timeoutInMinutes\": 0,\n                            \"definitionType\": null,\n                            \"overrideInputs\": {},\n                            \"condition\": \"succeeded()\",\n                            \"inputs\": {\n                                \"ConnectedServiceName\": \"$(Parameters.ConnectedServiceName)\",\n                                \"WebAppKind\": \"$(Parameters.WebAppKind)\",\n                                \"WebAppName\": \"$(Parameters.WebAppName)\",\n                                \"DeployToSlotFlag\": \"false\",\n                                \"ResourceGroupName\": \"\",\n                                \"SlotName\": \"\",\n                                \"ImageSource\": \"$(Parameters.ImageSource)\",\n                                \"AzureContainerRegistry\": \"\",\n                                \"AzureContainerRegistryLoginServer\": \"\",\n                                \"AzureContainerRegistryImage\": \"\",\n                                \"AzureContainerRegistryTag\": \"\",\n                                \"DockerRepositoryAccess\": \"public\",\n                                \"RegistryConnectedServiceName\": \"\",\n                                \"PrivateRegistryImage\": \"\",\n                                \"PrivateRegistryTag\": \"\",\n                                \"DockerNamespace\": \"$(Parameters.DockerNamespace)\",\n                                \"DockerRepository\": \"$(Parameters.DockerRepository)\",\n                                \"DockerImageTag\": \"$(Build.BuildId)\",\n                                \"VirtualApplication\": \"\",\n                                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                                \"RuntimeStack\": \"$(Parameters.RuntimeStack)\",\n                                \"StartupCommand\": \"\",\n                                \"WebAppUri\": \"\",\n                                \"ScriptType\": \"\",\n                                \"InlineScript\": \"\",\n                                \"ScriptPath\": \"\",\n                                \"GenerateWebConfig\": \"false\",\n                                \"WebConfigParameters\": \"\",\n                                \"AppSettings\": \"\",\n                                \"ConfigurationSettings\": \"\",\n                                \"TakeAppOfflineFlag\": \"true\",\n                                \"UseWebDeploy\": \"false\",\n                                \"SetParametersFile\": \"\",\n                                \"RemoveAdditionalFilesFlag\": \"false\",\n                                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                                \"AdditionalArguments\": \"\",\n                                \"RenameFilesFlag\": \"true\",\n                                \"XmlTransformation\": \"false\",\n                                \"XmlVariableSubstitution\": \"false\",\n                                \"JSONFiles\": \"\"\n                            }\n                        }\n                    ]\n                }\n            ],\n            \"environmentOptions\": {\n                \"emailNotificationType\": \"OnlyOnFailure\",\n                \"emailRecipients\": \"release.environment.owner;release.creator\",\n                \"skipArtifactsDownload\": false,\n                \"timeoutInMinutes\": 0,\n                \"enableAccessToken\": false,\n                \"publishDeploymentStatus\": true,\n                \"badgeEnabled\": false,\n                \"autoLinkWorkItems\": false,\n                \"pullRequestDeploymentEnabled\": false\n            },\n            \"demands\": [],\n            \"conditions\": [\n                {\n                    \"name\": \"Canary Environment\",\n                    \"conditionType\": 2,\n                    \"value\": \"4\"\n                }\n            ],\n            \"executionPolicy\": {\n                \"concurrencyCount\": 1,\n                \"queueDepthCount\": 0\n            },\n            \"schedules\": [],\n            \"currentRelease\": {\n                \"id\": 1,\n                \"_links\": {}\n            },\n            \"retentionPolicy\": {\n                \"daysToKeep\": 30,\n                \"releasesToKeep\": 3,\n                \"retainBuild\": true\n            },\n            \"processParameters\": {\n                \"inputs\": [\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {},\n                        \"name\": \"ConnectedServiceName\",\n                        \"label\": \"Azure subscription\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"connectedService:AzureRM\",\n                        \"helpMarkDown\": \"Select the Azure Resource Manager subscription for the deployment.\",\n                        \"visibleRule\": \"\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {\n                            \"app\": \"Web App\",\n                            \"applinux\": \"Linux App\",\n                            \"functionapp\": \"Function App\",\n                            \"api\": \"API App\",\n                            \"mobileapp\": \"Mobile App\"\n                        },\n                        \"properties\": {\n                            \"EditableOptions\": \"false\"\n                        },\n                        \"name\": \"WebAppKind\",\n                        \"label\": \"App type\",\n                        \"defaultValue\": \"app\",\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {\n                            \"EditableOptions\": \"True\"\n                        },\n                        \"name\": \"WebAppName\",\n                        \"label\": \"App service name\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"Enter or select the name of an existing Azure App Service.\",\n                        \"visibleRule\": \"\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {\n                            \"Registry\": \"Container Registry\",\n                            \"Builtin\": \"Built-in Image\"\n                        },\n                        \"properties\": {},\n                        \"name\": \"ImageSource\",\n                        \"label\": \"Image Source\",\n                        \"defaultValue\": \"Registry\",\n                        \"required\": true,\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"App Service on Linux offers two different options to publish your application <br/> Custom image deployment or App deployment with a built-in platform image. [Learn More](https://go.microsoft.com/fwlink/?linkid=862490)\",\n                        \"visibleRule\": \"WebAppKind = applinux\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {},\n                        \"name\": \"DockerNamespace\",\n                        \"label\": \"Registry or Namespace\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"string\",\n                        \"helpMarkDown\": \"A globally unique top-level domain name for your specific registry or namespace.<br/> Note: Fully qualified image name will be of the format: '<b>`<registry or namespace`></b>/`<repository`>:`<tag`>'. For example, '<b>myregistry.azurecr.io</b>/nginx:latest'.\",\n                        \"visibleRule\": \"WebAppKind = applinux && ImageSource = Registry\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {},\n                        \"properties\": {},\n                        \"name\": \"DockerRepository\",\n                        \"label\": \"Repository\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"string\",\n                        \"helpMarkDown\": \"Name of the repository where the container images are stored.<br/> Note: Fully qualified image name will be of the format: '`<registry or namespace`>/<b>`<repository`></b>:`<tag`>'. For example, 'myregistry.azurecr.io/<b>nginx</b>:latest'.\",\n                        \"visibleRule\": \"WebAppKind = applinux && ImageSource = Registry\",\n                        \"groupName\": \"\"\n                    },\n                    {\n                        \"aliases\": [],\n                        \"options\": {\n                            \"node|4.4\": \"Node.js 4.4\",\n                            \"node|4.5\": \"Node.js 4.5\",\n                            \"node|6.2\": \"Node.js 6.2\",\n                            \"node|6.6\": \"Node.js 6.6\",\n                            \"node|6.9\": \"Node.js 6.9\",\n                            \"node|6.10\": \"Node.js 6.10\",\n                            \"node|6.11\": \"Node.js 6.11\",\n                            \"node|8.0\": \"Node.js 8.0\",\n                            \"node|8.1\": \"Node.js 8.1\",\n                            \"php|5.6\": \"PHP 5.6\",\n                            \"php|7.0\": \"PHP 7.0\",\n                            \"dotnetcore|1.0\": \".NET Core 1.0\",\n                            \"dotnetcore|1.1\": \".NET Core 1.1\",\n                            \"dotnetcore|2.0\": \".NET Core 2.0\",\n                            \"ruby|2.3\": \"Ruby 2.3\"\n                        },\n                        \"properties\": {},\n                        \"name\": \"RuntimeStack\",\n                        \"label\": \"Runtime Stack\",\n                        \"defaultValue\": \"\",\n                        \"required\": true,\n                        \"type\": \"pickList\",\n                        \"helpMarkDown\": \"Select the framework and version.\",\n                        \"visibleRule\": \"WebAppKind = applinux && ImageSource = Builtin\"\n                    }\n                ],\n                \"dataSourceBindings\": [\n                    {\n                        \"dataSourceName\": \"AzureRMWebAppNamesByType\",\n                        \"parameters\": {\n                            \"WebAppKind\": \"$(WebAppKind)\"\n                        },\n                        \"endpointId\": \"$(ConnectedServiceName)\",\n                        \"target\": \"WebAppName\"\n                    }\n                ]\n            },\n            \"properties\": {},\n            \"preDeploymentGates\": {\n                \"id\": 0,\n                \"gatesOptions\": null,\n                \"gates\": []\n            },\n            \"postDeploymentGates\": {\n                \"id\": 0,\n                \"gatesOptions\": null,\n                \"gates\": []\n            },\n            \"environmentTriggers\": []\n        }\n    ],\n    \"artifacts\": [\n        {\n            \"sourceId\": \"$ProjectId$:$PartsUnlimited-CI-id$\",\n            \"type\": \"Build\",\n            \"alias\": \"PartsUnlimited-CI\",\n            \"definitionReference\": {\n                \"defaultVersionBranch\": {\n                    \"id\": \"\",\n                    \"name\": \"\"\n                },\n                \"defaultVersionSpecific\": {\n                    \"id\": \"\",\n                    \"name\": \"\"\n                },\n                \"defaultVersionTags\": {\n                    \"id\": \"\",\n                    \"name\": \"\"\n                },\n                \"defaultVersionType\": {\n                    \"id\": \"latestType\",\n                    \"name\": \"Latest\"\n                },\n                \"definition\": {\n                    \"id\": \"$PartsUnlimited-CI-id$\",\n                    \"name\": \"PartsUnlimited-CI\"\n                  },\n                  \"project\": {\n                    \"id\": \"$ProjectId$\",\n                    \"name\": \"$ProjectName$\"\n                  }\n            },\n            \"isPrimary\": true\n        }\n    ],\n    \"triggers\": [\n        {\n            \"artifactAlias\": \"PartsUnlimited-CI\",\n            \"triggerConditions\": [],\n            \"triggerType\": 1\n        }\n    ],\n    \"releaseNameFormat\": \"Release-$(rev:r)\",\n    \"tags\": [],\n    \"properties\": {\n        \"DefinitionCreationSource\": {\n            \"$type\": \"System.String\",\n            \"$value\": \"ReleaseNew\"\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/ServiceEndpoints/PartsUnlimited-code.json",
    "content": "﻿{\n  \"data\": {\n\t\t\t\n\t\t},\t\t\n\t\t\"name\": \"PartsUnlimited-code\",\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://vstsdemodata.visualstudio.com/Release%20Gates/_git/PartsUnlimited\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n\t\t\"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/ReleaseGates Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/ReleaseGates Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/ReleaseGates Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/ReleaseGates Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/ReleaseGates Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team1/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team1/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team1/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team1/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team2/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team2/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team2/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team2/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"b1b39a21-8d80-4cdd-a1a3-c47abb45e967\",\n    \"name\": \"ReleaseGates Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"f1535bb6-00b2-48a6-acd0-3671718bb3f6\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"7278c43a-7393-42ce-a8de-907a51db37b2\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-ReleaseGates/WorkItems/Bug.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 7405,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"ReleaseGates\",\n        \"System.TeamProject\": \"ReleaseGates\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Not fixed\",\n        \"System.CreatedDate\": \"2021-09-29T14:44:45.737Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-29T14:44:45.737Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Disk out of space in Canary Environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Disk out of space in Canary Environment\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7405\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/BuildDefinitions/Selenium-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/Selenium\",\n      \"fullName\": \"Selenium\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$Selenium$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$Selenium$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"Selenium\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/Selenium\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Selenium-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/BuildDefinitions/Selenium.json",
    "content": "{\n  \"name\": \"Selenium\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"725558\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Use NuGet 4.3.0\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"NuGetToolInstaller1\",\n            \"task\": {\n              \"id\": \"2c65196a-54fd-4a02-9be8-d9d1837b7c5d\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"versionSpec\": \"4.3.0\",\n              \"checkLatest\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"NuGet restore\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"NuGetCommand2\",\n            \"task\": {\n              \"id\": \"333b11bd-d341-40d9-afcf-b32d5ce6f23b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"solution\": \"$(Parameters.solution)\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"allowPackageConflicts\": \"false\",\n              \"externalEndpoint\": \"\",\n              \"verbosityPush\": \"Detailed\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"versioningScheme\": \"off\",\n              \"includeReferencedProjects\": \"false\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"packTimezone\": \"utc\",\n              \"includeSymbols\": \"false\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"arguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build solution\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"VSBuild3\",\n            \"task\": {\n              \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"solution\": \"$(Parameters.solution)\",\n              \"vsVersion\": \"latest\",\n              \"msbuildArgs\": \"/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation=\\\"$(build.artifactstagingdirectory)\\\\\\\\\\\"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"clean\": \"false\",\n              \"maximumCpuCount\": \"false\",\n              \"restoreNugetPackages\": \"false\",\n              \"msbuildArchitecture\": \"x86\",\n              \"logProjectEvents\": \"true\",\n              \"createLogFile\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test Assemblies\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"VSTest4\",\n            \"task\": {\n              \"id\": \"ef087383-ee5e-42c7-9a53-ab56c98420f9\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"testSelector\": \"testAssemblies\",\n              \"testAssemblyVer2\": \"**\\\\$(BuildConfiguration)\\\\*test*.dll\\n!**\\\\obj\\\\**\",\n              \"testPlan\": \"\",\n              \"testSuite\": \"\",\n              \"testConfiguration\": \"\",\n              \"tcmTestRun\": \"$(test.RunId)\",\n              \"searchFolder\": \"$(System.DefaultWorkingDirectory)\\\\test\\\\PartsUnlimited.UnitTests\",\n              \"testFiltercriteria\": \"\",\n              \"runOnlyImpactedTests\": \"False\",\n              \"runAllTestsAfterXBuilds\": \"50\",\n              \"uiTests\": \"false\",\n              \"vstestLocationMethod\": \"version\",\n              \"vsTestVersion\": \"latest\",\n              \"vstestLocation\": \"\",\n              \"runSettingsFile\": \"\",\n              \"overrideTestrunParameters\": \"\",\n              \"pathtoCustomTestAdapters\": \"\",\n              \"runInParallel\": \"False\",\n              \"runTestsInIsolation\": \"False\",\n              \"codeCoverageEnabled\": \"False\",\n              \"otherConsoleOptions\": \"\",\n              \"distributionBatchType\": \"basedOnTestCases\",\n              \"batchingBasedOnAgentsOption\": \"autoBatchSize\",\n              \"customBatchSizeValue\": \"10\",\n              \"batchingBasedOnExecutionTimeOption\": \"autoBatchSize\",\n              \"customRunTimePerBatchValue\": \"60\",\n              \"dontDistribute\": \"False\",\n              \"testRunTitle\": \"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"publishRunAttachments\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files to: $(build.artifactstagingdirectory)/TestAssemblies\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"CopyFiles1\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(Build.SourcesDirectory)/test/PartsUnlimited.SeleniumTests/bin/$(BuildConfiguration)\",\n              \"Contents\": \"**\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)/TestAssemblies\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files to: $(build.artifactstagingdirectory)/Database\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"CopyFiles2\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"Database/Database\",\n              \"Contents\": \"**\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)/Database\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"PublishBuildArtifacts6\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"$(Parameters.ArtifactName)\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"windows-2019\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$Selenium$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"Selenium\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"solution\",\n        \"label\": \"Path to solution or packages.config\",\n        \"defaultValue\": \"**\\\\*.sln\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"The path to the Visual Studio solution file or NuGet packages.config\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"ArtifactName\",\n        \"label\": \"Artifact Name\",\n        \"defaultValue\": \"drop\",\n        \"required\": true,\n        \"type\": \"string\",\n        \"helpMarkDown\": \"The name of the artifact to create.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n   \n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/ImportSourceCode/Selenium.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://vstsdemodata.visualstudio.com/_git/Selenium\"\n        },\n      \"serviceEndpointId\": \"$Selenium-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/ProjectSettings.json",
    "content": "﻿{\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\"]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/ReleaseDefinitions/Selenium.json",
    "content": "{\n  \"name\": \"Selenium\",\n  \"path\": \"\\\\\",\n  \"variables\": {\n    \"DefaultConnectionString\": {\n      \"value\": \"Server=localhost;Database=PartsUnlimited-Prod;User ID=vmadmin;Password=P2ssw0rd@123;\",\n      \"isSecret\": true\n    },\n    \"username\": {\n      \"value\": \"vmadmin\",\n      \"isSecret\": true\n    },\n    \"password\": {\n      \"value\": \"P2ssw0rd@123\",\n      \"isSecret\": true\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 3,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": 1\n        }\n      },\n      \"deployStep\": {},\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": 2\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": 0\n            },\n            \"agentSpecification\": null,\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Default$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": 1,\n          \"name\": \"IIS Deployment\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"1b2aec60-dc49-11e6-9b76-63056e018cac\",\n              \"version\": \"0.*\",\n              \"name\": \"IIS Web App Manage\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"EnableIIS\": \"false\",\n                \"IISDeploymentType\": \"IISWebsite\",\n                \"ActionIISWebsite\": \"CreateOrUpdateWebsite\",\n                \"ActionIISApplicationPool\": \"CreateOrUpdateAppPool\",\n                \"StartStopWebsiteName\": \"PartsUnlimited\",\n                \"WebsiteName\": \"PartsUnlimited\",\n                \"WebsitePhysicalPath\": \"%SystemDrive%\\\\inetpub\\\\PartsUnlimited\",\n                \"WebsitePhysicalPathAuth\": \"WebsiteWindowsAuth\",\n                \"WebsiteAuthUserName\": \"$(username)\",\n                \"WebsiteAuthUserPassword\": \"$(password)\",\n                \"AddBinding\": \"true\",\n                \"Protocol\": \"http\",\n                \"IPAddress\": \"All Unassigned\",\n                \"Port\": \"\",\n                \"ServerNameIndication\": \"false\",\n                \"HostNameWithOutSNI\": \"\",\n                \"HostNameWithHttp\": \"\",\n                \"HostNameWithSNI\": \"\",\n                \"SSLCertThumbPrint\": \"\",\n                \"Bindings\": \"{\\\"bindings\\\":[{\\\"protocol\\\":\\\"http\\\",\\\"ipAddress\\\":\\\"All Unassigned\\\",\\\"port\\\":\\\"82\\\",\\\"hostname\\\":\\\"\\\",\\\"sslThumbprint\\\":\\\"\\\",\\\"sniFlag\\\":false}]}\",\n                \"CreateOrUpdateAppPoolForWebsite\": \"true\",\n                \"ConfigureAuthenticationForWebsite\": \"true\",\n                \"AppPoolNameForWebsite\": \"PartsUnlimited\",\n                \"DotNetVersionForWebsite\": \"v4.0\",\n                \"PipeLineModeForWebsite\": \"Integrated\",\n                \"AppPoolIdentityForWebsite\": \"ApplicationPoolIdentity\",\n                \"AppPoolUsernameForWebsite\": \"\",\n                \"AppPoolPasswordForWebsite\": \"\",\n                \"AnonymousAuthenticationForWebsite\": \"true\",\n                \"BasicAuthenticationForWebsite\": \"false\",\n                \"WindowsAuthenticationForWebsite\": \"true\",\n                \"ParentWebsiteNameForVD\": \"PartsUnlimited\",\n                \"VirtualPathForVD\": \"\",\n                \"PhysicalPathForVD\": \"%SystemDrive%\\\\inetpub\\\\wwwroot\",\n                \"VDPhysicalPathAuth\": \"VDUserPassThrough\",\n                \"VDAuthUserName\": \"\",\n                \"VDAuthUserPassword\": \"\",\n                \"ParentWebsiteNameForApplication\": \"PartsUnlimited\",\n                \"VirtualPathForApplication\": \"\",\n                \"PhysicalPathForApplication\": \"%SystemDrive%\\\\inetpub\\\\wwwroot\",\n                \"ApplicationPhysicalPathAuth\": \"ApplicationUserPassThrough\",\n                \"ApplicationAuthUserName\": \"\",\n                \"ApplicationAuthUserPassword\": \"\",\n                \"CreateOrUpdateAppPoolForApplication\": \"false\",\n                \"AppPoolNameForApplication\": \"\",\n                \"DotNetVersionForApplication\": \"v4.0\",\n                \"PipeLineModeForApplication\": \"Integrated\",\n                \"AppPoolIdentityForApplication\": \"ApplicationPoolIdentity\",\n                \"AppPoolUsernameForApplication\": \"\",\n                \"AppPoolPasswordForApplication\": \"\",\n                \"AppPoolName\": \"\",\n                \"DotNetVersion\": \"v4.0\",\n                \"PipeLineMode\": \"Integrated\",\n                \"AppPoolIdentity\": \"ApplicationPoolIdentity\",\n                \"AppPoolUsername\": \"\",\n                \"AppPoolPassword\": \"\",\n                \"StartStopRecycleAppPoolName\": \"\",\n                \"AppCmdCommands\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"1b467810-6725-4b6d-accd-886174c09bba\",\n              \"version\": \"0.*\",\n              \"name\": \"Deploy IIS Website/App: \",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"WebSiteName\": \"PartsUnlimited\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)\\\\**\\\\*.zip\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"XmlTransformation\": \"true\",\n                \"XmlVariableSubstitution\": \"True\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        },\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": 0\n            },\n            \"agentSpecification\": null,\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Default$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 2,\n          \"phaseType\": 1,\n          \"name\": \"SQL Deployment\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"4b506f7f-720f-47bb-bf21-029bac6a690d\",\n              \"version\": \"0.*\",\n              \"name\": \"Deploy using : dacpac\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"TaskType\": \"dacpac\",\n                \"DacpacFile\": \"$(System.DefaultWorkingDirectory)\\\\**\\\\*.dacpac\",\n                \"SqlFile\": \"\",\n                \"ExecuteInTransaction\": \"false\",\n                \"ExclusiveLock\": \"false\",\n                \"AppLockName\": \"\",\n                \"InlineSql\": \"\",\n                \"TargetMethod\": \"server\",\n                \"ServerName\": \"localhost\",\n                \"DatabaseName\": \"PartsUnlimited-Prod\",\n                \"AuthScheme\": \"sqlServerAuthentication\",\n                \"SqlUsername\": \"$(username)\",\n                \"SqlPassword\": \"$(password)\",\n                \"ConnectionString\": \"\",\n                \"PublishProfile\": \"\",\n                \"AdditionalArguments\": \"\",\n                \"AdditionalArgumentsSql\": \"\"\n              }\n            }\n          ]\n        },\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": 0\n            },\n            \"agentSpecification\": null,\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Default$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 3,\n          \"phaseType\": 1,\n          \"name\": \"Selenium tests execution\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"2c65196a-54fd-4a02-9be8-d9d1837b7111\",\n              \"version\": \"1.*\",\n              \"name\": \"Visual Studio Test Platform Installer\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"packageFeedSelector\": \"nugetOrg\",\n                \"versionSelector\": \"latestStable\",\n                \"testPlatformVersion\": \"\",\n                \"customFeed\": \"\",\n                \"username\": \"\",\n                \"password\": \"\",\n                \"netShare\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"ef087383-ee5e-42c7-9a53-ab56c98420f9\",\n              \"version\": \"2.*\",\n              \"name\": \"Run Selenium UI tests\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"testSelector\": \"testAssemblies\",\n                \"testAssemblyVer2\": \"**\\\\*test*.dll\\n!**\\\\*TestAdapter.dll\\n!**\\\\obj\\\\**\",\n                \"testPlan\": \"\",\n                \"testSuite\": \"\",\n                \"testConfiguration\": \"\",\n                \"tcmTestRun\": \"$(test.RunId)\",\n                \"searchFolder\": \"$(System.DefaultWorkingDirectory)/_Selenium/drop/TestAssemblies\",\n                \"resultsFolder\": \"$(Agent.TempDirectory)\\\\TestResults\",\n                \"testFiltercriteria\": \"\",\n                \"runOnlyImpactedTests\": \"False\",\n                \"runAllTestsAfterXBuilds\": \"50\",\n                \"uiTests\": \"true\",\n                \"vstestLocationMethod\": \"version\",\n                \"vsTestVersion\": \"toolsInstaller\",\n                \"vstestLocation\": \"\",\n                \"runSettingsFile\": \"\",\n                \"overrideTestrunParameters\": \"\",\n                \"pathtoCustomTestAdapters\": \"\",\n                \"runInParallel\": \"False\",\n                \"runTestsInIsolation\": \"False\",\n                \"codeCoverageEnabled\": \"False\",\n                \"otherConsoleOptions\": \"\",\n                \"distributionBatchType\": \"basedOnTestCases\",\n                \"batchingBasedOnAgentsOption\": \"autoBatchSize\",\n                \"customBatchSizeValue\": \"10\",\n                \"batchingBasedOnExecutionTimeOption\": \"autoBatchSize\",\n                \"customRunTimePerBatchValue\": \"60\",\n                \"dontDistribute\": \"False\",\n                \"testRunTitle\": \"\",\n                \"platform\": \"\",\n                \"configuration\": \"\",\n                \"publishRunAttachments\": \"true\",\n                \"failOnMinTestsNotRun\": \"False\",\n                \"minimumExpectedTests\": \"1\",\n                \"diagnosticsEnabled\": \"True\",\n                \"collectDumpOn\": \"onAbortOnly\",\n                \"rerunFailedTests\": \"False\",\n                \"rerunType\": \"basedOnTestFailurePercentage\",\n                \"rerunFailedThreshold\": \"30\",\n                \"rerunFailedTestCasesMaxLimit\": \"5\",\n                \"rerunMaxAttempts\": \"3\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": 1,\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {\n        \"LinkBoardsWorkItems\": {\n          \"$type\": \"System.String\",\n          \"$value\": \"False\"\n        }\n      },\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Selenium-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Selenium\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"258\",\n          \"name\": \"Selenium\"\n        },\n        \"definition\": {\n          \"id\": \"$Selenium-id$\",\n          \"name\": \"$Selenium$\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"_Selenium\",\n      \"triggerConditions\": [],\n      \"triggerType\": 1\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseClone\"\n    },\n    \"IntegrateBoardsWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"False\"\n    },\n    \"IntegrateJiraWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"false\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/ServiceEndpoints/Selenium-code.json",
    "content": "﻿{\n  \"data\": {\n\t\t\t\n\t\t},\t\t\n\t\t\"name\": \"Selenium-code\",\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://vstsdemodata.visualstudio.com/_git/Selenium\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n\t\t\"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Selenium/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"4e9e69f1-791f-48ee-b521-398a3389d6e4\",\n    \"name\": \"Selenium Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"3cbd5fc9-bcda-4678-81db-a6189daf4196\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"504773da-cddb-4a15-84b1-f2669b79d482\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/BuildDefinitions/SonarQube-CI.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/MyShuttle\",\n      \"fullName\": \"MyShuttle\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$MyShuttle$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$MyShuttle$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"MyShuttle\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/MyShuttle\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"SonarQube-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/BuildDefinitions/SonarQube.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"722171\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+refs/heads/master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Prepare analysis on SonarQube\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"15b84ca1-b62f-4a2a-a403-89b77a063157\",\n              \"versionSpec\": \"4.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SonarQube\": \"\",\n              \"scannerMode\": \"Other\",\n              \"configMode\": \"file\",\n              \"configFile\": \"\",\n              \"cliProjectKey\": \"\",\n              \"projectKey\": \"MyShuttle\",\n              \"cliProjectName\": \"\",\n              \"projectName\": \"MyShuttle\",\n              \"cliProjectVersion\": \"1.0\",\n              \"projectVersion\": \"1.0\",\n              \"cliSources\": \".\",\n              \"extraProperties\": \"# Additional properties that will be passed to the scanner, \\n# Put one key=value per line, example:\\n# sonar.exclusions=**/*.bin\\nsonar.projectName=MyShuttle\\nsonar.projectKey=MyShuttle\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Maven\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"Maven1\",\n            \"task\": {\n              \"id\": \"ac4ee482-65da-4485-a532-7b085873e532\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"mavenPOMFile\": \"pom.xml\",\n              \"goals\": \"package\",\n              \"options\": \"\",\n              \"publishJUnitResults\": \"true\",\n              \"testResultsFiles\": \"**/TEST-*.xml\",\n              \"testRunTitle\": \"MyShuttle\",\n              \"codeCoverageTool\": \"JaCoCo\",\n              \"classFilter\": \"\",\n              \"classFilesDirectories\": \"src/main\",\n              \"srcDirectories\": \"\",\n              \"failIfCoverageEmpty\": \"false\",\n              \"javaHomeSelection\": \"JDKVersion\",\n              \"jdkVersion\": \"default\",\n              \"jdkUserInputPath\": \"\",\n              \"jdkArchitecture\": \"x86\",\n              \"mavenVersionSelection\": \"Default\",\n              \"mavenPath\": \"\",\n              \"mavenSetM2Home\": \"false\",\n              \"mavenOpts\": \"-Xmx1024m\",\n              \"mavenFeedAuthenticate\": \"true\",\n              \"sqAnalysisEnabled\": \"true\",\n              \"sqMavenPluginVersionChoice\": \"latest\",\n              \"checkstyleAnalysisEnabled\": \"false\",\n              \"pmdAnalysisEnabled\": \"false\",\n              \"findbugsAnalysisEnabled\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Quality Gate Result\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"291ed61f-1ee4-45d3-b1b0-bf822d9095ef\",\n              \"versionSpec\": \"4.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"pollingTimeoutSec\": \"300\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"CopyFiles2\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(build.sourcesdirectory)\",\n              \"Contents\": \"**/*.jar\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"PublishBuildArtifacts3\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1,\n          \"queue\": \"{}\"\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\",\n      \"connectedServiceId\": \"\"\n    },\n    \"id\": \"$MyShuttle$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"MyShuttle\",\n    \"url\": \"\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"mavenPOMFile\",\n        \"label\": \"Maven POM file\",\n        \"defaultValue\": \"\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"SonarQube\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 4,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Dashboard/Dashboard.json",
    "content": "{\n    \"name\": \"Overview\",\n    \"refreshInterval\": 5,\n    \"position\": 1,\n    \"widgets\": [\n        {\n            \"name\": \"Markdown\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"SonarQube is an open source platform for continuous inspection of code quality to perform automatic reviews with static analysis of code to\\n- Detect bugs\\n- Code smells\\n- Security vulnerabilities\\n- Centralize Quality\\n\\nSonarQube integrates with the entire DevOps toolchain including build systems, CI engines, promotion pipelines, using webhooks and its comprehensive RestAPI.\\n\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n            \"isNameConfigurable\": false,\n            \"lightboxOptions\": {\n                \"width\": 600,\n                \"height\": 500,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"Tasks\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 5\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbfd52\\\",\\\"queryId\\\":\\\"$Task$\\\",\\\"queryName\\\":\\\"Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Tasks\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Epics\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 2\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbbc3d\\\",\\\"queryId\\\":\\\"$Epic$\\\",\\\"queryName\\\":\\\"Epics\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Epics\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Product Backlog Items\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#007acc\\\",\\\"queryId\\\":\\\"$PBI$\\\",\\\"queryName\\\":\\\"Product Backlog Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Product Backlog Items\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"All Work Items by Work Item Type\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllWorkItems$\\\",\\\"title\\\":\\\"All Work Items by Work Item Type\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllWorkItems$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[{\\\"value\\\":\\\"Product Backlog Item\\\",\\\"backgroundColor\\\":\\\"#0d60ab\\\"},{\\\"value\\\":\\\"Feature\\\",\\\"backgroundColor\\\":\\\"#5c197b\\\"},{\\\"value\\\":\\\"Task\\\",\\\"backgroundColor\\\":\\\"#fbfd52\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items by Work Item Type\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 3,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"isNameConfigurable\": true,\n            \"lightboxOptions\": {\n                \"width\": 900,\n                \"height\": 700,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"All Work Items\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": \"{\\\"query\\\":{\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n            \"configurationContributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Features\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#5c197b\\\",\\\"queryId\\\":\\\"$Feature$\\\",\\\"queryName\\\":\\\"Features\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Features\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"SonarQube\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"{\\\"name\\\":\\\"SonarQube\\\",\\\"id\\\":$BuildSonarQube$,\\\"type\\\":2,\\\"uri\\\":\\\"vstfs:///Build/Definition/$BuildSonarQube$\\\",\\\"projectId\\\":\\\"$Projectid$\\\",\\\"lastArtifactName\\\":\\\"SonarQube\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"All Work Items\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#339947\\\",\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        }\n    ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"SonarQube\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarqube' target='_blank'><b>SonarQube</b></a>\",\n      \"publisherId\": \"SonarSource\",\n      \"extensionId\": \"sonarqube\",\n      \"publisherName\": \"SonarSource\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarqube' target='_blank'>License Terms</a>\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/ImportSourceCode/MyShuttle.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://vstsdemodata.visualstudio.com/SonarQube/_git/MyShuttle\"\n        },\n      \"serviceEndpointId\": \"$SonarQube-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/ProjectSettings.json",
    "content": "﻿{\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\"]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/ServiceEndPoints/SonarQube-code.json",
    "content": "{\n    \"data\": {},\n    \"name\": \"SonarQube-code\",\n    \"type\": \"git\",\n    \"url\": \"https://vstsdemodata.visualstudio.com/SonarQube/_git/MyShuttle\",\n    \"authorization\": {\n      \"scheme\": \"UsernamePassword\",\n      \"parameters\": {\n        \"username\": \"$username$\",\n        \"password\": \"$password$\"\n      }\n    },\n    \"isReady\": true\n  }"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Teams/SonarQube Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Teams/SonarQube Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Teams/SonarQube Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"false\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"true\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Teams/SonarQube Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Teams/SonarQube Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"996c7f47-21e0-4142-b2b8-fab8ec0579de\",\n    \"name\": \"SonarQube Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"0417c63e-cba9-40d5-8426-666929f77f74\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"530894e0-7dab-4e27-890e-484d7298804e\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 785,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Centralize Quality using Technical Debt Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/786\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/788\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/787\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/785\"\n    },\n    {\n      \"id\": 784,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Integrate SonarQube with VSTS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/789\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/790\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/784\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/WorkItems/Feature.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 790,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Branch Analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/784\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/790\"\n    },\n    {\n      \"id\": 789,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Analyze pull requests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/784\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/789\"\n    },\n    {\n      \"id\": 788,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Enforce Quality Gate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/785\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/791\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/792\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/788\"\n    },\n    {\n      \"id\": 787,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Centralize Quality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/785\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/787\"\n    },\n    {\n      \"id\": 786,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Detect Tricky Issues\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/794\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/785\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/786\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 791,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:31:20.91Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Dig into issues from the \\\"Issues page\\\"\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Insecurities; Quality Checks; Security Vulnerability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/788\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/791\"\n    },\n    {\n      \"id\": 800,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:31:20.91Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Track the insecurities in the code like SQL injection, hard-coded passwords and badly managed errors.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Insecurities\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/800\"\n    },\n    {\n      \"id\": 793,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:31:20.91Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Visualise the history of a project\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Quality Checks\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/795\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/796\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/793\"\n    },\n    {\n      \"id\": 792,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:31:20.91Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Highlight hot spots from the \\\"Measures page\\\"\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Code smells; Security Vulnerability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/788\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/792\"\n    },\n    {\n      \"id\": 797,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:31:20.91Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Focus on the Leak\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Code smells; Security Vulnerability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/798\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/797\"\n    },\n    {\n      \"id\": 794,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:31:27.487Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Find trickiest bugs navigating easily through the code paths\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Security Vulnerability\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/786\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/799\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/794\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-SonarQube/WorkItems/Task.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 799,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Detect tricky issues such as null-pointers dereferences, logic errors, resource leaks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/794\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/799\"\n    },\n    {\n      \"id\": 798,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Fix the leak before you mop the floor!\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/797\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/798\"\n    },\n    {\n      \"id\": 796,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Zoom in on specific time periods for more granular analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/793\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/796\"\n    },\n    {\n      \"id\": 795,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"SonarQube\",\n        \"System.TeamProject\": \"SonarQube\",\n        \"System.IterationPath\": \"SonarQube\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T06:54:59.047Z\",\n        \"System.ChangedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.Title\": \"Use graphs and visualisations to track project quality over time\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/793\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/795\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Terraform/BuildDefinitions/Terraform-CI-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/Terraform\",\n      \"fullName\": \"Terraform\",\n      \"defaultBranch\": \"refs/heads/terraform\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$Terraform$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$Terraform$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"Terraform\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/Terraform\",\n    \"defaultBranch\": \"refs/heads/terraform\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Terraform-CI-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 4,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Terraform/BuildDefinitions/Terraform.json",
    "content": "{\n  \"name\": \"Terraform-CI\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"824699\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"Release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Install .net core 2.0.0\",\n            \"timeoutInMinutes\": 0,\n            \"retryCountOnTaskFailure\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"e213ff0f-5d5c-4791-802d-52ea3e7be1f1\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"targetType\": \"inline\",\n              \"filePath\": \"\",\n              \"arguments\": \"\",\n              \"script\": \"choco install dotnetcore-sdk --version=2.0.0\",\n              \"errorActionPreference\": \"stop\",\n              \"warningPreference\": \"default\",\n              \"informationPreference\": \"default\",\n              \"verbosePreference\": \"default\",\n              \"debugPreference\": \"default\",\n              \"failOnStderr\": \"false\",\n              \"showWarnings\": \"false\",\n              \"ignoreLASTEXITCODE\": \"false\",\n              \"pwsh\": \"false\",\n              \"workingDirectory\": \"\",\n              \"runScriptInSeparateScope\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Restore\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.RestoreBuildProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"build\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.RestoreBuildProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"test\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"$(Parameters.TestProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"publish\",\n              \"publishWebProjects\": \"True\",\n              \"projects\": \"$(Parameters.RestoreBuildProjects)\",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)\",\n              \"publishTestResults\": \"true\",\n              \"zipAfterPublish\": \"True\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Terraform files to artifacts\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"Terraform\",\n              \"Contents\": \"**\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)/Terraform\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"windows-2019\"\n      }\n    },\n    \"type\": 1\n  },\n  \n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$Terraform$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"Terraform\",\n    \"defaultBranch\": \"refs/heads/terraform\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"RestoreBuildProjects\",\n        \"label\": \"Project(s) to restore and build\",\n        \"defaultValue\": \"**/*.csproj\",\n        \"type\": \"multiline\",\n        \"helpMarkDown\": \"Relative path of the .csproj file(s) from repo root. Wildcards can be used. For example, **/*.csproj for all .csproj files in all the subfolders.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"TestProjects\",\n        \"label\": \"Project(s) to test\",\n        \"defaultValue\": \"**/*[Tt]ests/*.csproj\",\n        \"type\": \"multiline\",\n        \"helpMarkDown\": \"Relative path of the .csproj file(s) from repo root. Wildcards can be used. For example, **/*.csproj for all .csproj files in all the subfolders.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Terraform/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"Terraform\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.custom-terraform-tasks ' target='_blank'><b>Terraform</b></a>\",\n      \"publisherId\": \"ms-devlabs\",\n      \"extensionId\": \"custom-terraform-tasks\",\n      \"publisherName\": \"Microsoft DevLabs\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.custom-terraform-tasks' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Replace Tokens\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=qetza.replacetokens' target='_blank'><b>Replace Tokens</b></a>\",\n      \"publisherId\": \"qetza\",\n      \"extensionId\": \"replacetokens\",\n      \"publisherName\": \"Guillaume Rouchon\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/qetza.replacetokens/license' target='_blank'>License Terms</a>\"\n\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Terraform/ImportSourceCode/Terraform.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\": {\n        \"url\": \"https://dev.azure.com/vstsdemodata/_git/Terraform\"\n      },\n      \"serviceEndpointId\": \"$Terraform-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Terraform/ProjectSettings.json",
    "content": "﻿{\n  \"type\": \"Agile\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Terraform/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"Terraform\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"UerStoriesfromTemplate.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Terraform/ReleaseDefinitions/Terraform.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 5,\n  \"description\": null,\n  \"isDeleted\": false,\n  \"variables\": {\n    \"appservicename\": {\n      \"value\": \"pulterraformweb$UUID$\"\n    },\n    \"appserviceplan\": {\n      \"value\": \"PULTerraformplan\"\n    },\n    \"storagekey\": {\n      \"value\": \"PipelineWillGetThisValueRuntime\"\n    },\n    \"terraformstorageaccount\": {\n      \"value\": \"terraformstorage$UUID$\"\n    },\n    \"terraformstoragerg\": {\n      \"value\": \"terraformrg\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"name\": \"Dev\",\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": 1\n        }\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": 2\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": { \"parallelExecutionType\": 0 },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": [\n                {\n                  \"artifactItems\": [],\n                  \"alias\": \"_Terraform-CI\",\n                  \"artifactType\": \"Build\",\n                  \"artifactDownloadMode\": \"All\"\n                }\n              ]\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": 1,\n          \"name\": \"Agent job\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"Azure CLI to deploy required Azure resources\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"\",\n                \"inlineScript\": \"# this will create Azure resource group\\ncall az group create --location westus --name $(terraformstoragerg)\\n\\ncall az storage account create --name $(terraformstorageaccount) --resource-group $(terraformstoragerg) --location westus --sku Standard_LRS\\n\\ncall az storage container create --name terraform --account-name $(terraformstorageaccount)\\n\\ncall az storage account keys list -g $(terraformstoragerg) -n $(terraformstorageaccount)\\n\\n\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"\",\n                \"failOnStandardError\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"72a1931b-effb-4d2e-8fd8-f8472a07cb62\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure PowerShell script to get the storage key\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceNameSelector\": \"\",\n                \"ConnectedServiceName\": \"\",\n                \"ConnectedServiceNameARM\": \"\",\n                \"ScriptType\": \"InlineScript\",\n                \"ScriptPath\": \"\",\n                \"Inline\": \"# Using this script we will fetch storage key which is required in terraform file to authenticate backend storage account\\n\\n$key=(Get-AzureRmStorageAccountKey -ResourceGroupName $(terraformstoragerg) -AccountName $(terraformstorageaccount)).Value[0]\\n\\nWrite-Host \\\"##vso[task.setvariable variable=storagekey]$key\\\"\",\n                \"ScriptArguments\": \"\",\n                \"errorActionPreference\": \"stop\",\n                \"FailOnStandardError\": \"false\",\n                \"TargetAzurePs\": \"LatestVersion\",\n                \"CustomTargetAzurePs\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"a8515ec8-7254-4ffd-912c-86772e2b5962\",\n              \"version\": \"5.*\",\n              \"name\": \"Replace tokens in terraform file\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"rootDirectory\": \"\",\n                \"targetFiles\": \"**/*.tf\",\n                \"encoding\": \"auto\",\n                \"writeBOM\": \"true\",\n                \"tokenPattern\": \"custom\",\n                \"tokenPrefix\": \"__\",\n                \"tokenSuffix\": \"__\",\n                \"escapeType\": \"none\",\n                \"escapeChar\": \"\",\n                \"charsToEscape\": \"\",\n                \"verbosity\": \"normal\",\n                \"actionOnMissing\": \"warn\",\n                \"keepToken\": \"false\",\n                \"actionOnNoFiles\": \"continue\",\n                \"enableTransforms\": \"false\",\n                \"transformPrefix\": \"(\",\n                \"transformSuffix\": \")\",\n                \"variableFiles\": \"\",\n                \"inlineVariables\": \"\",\n                \"variableSeparator\": \".\",\n                \"enableRecursion\": \"false\",\n                \"useLegacyPattern\": \"false\",\n                \"useLegacyEmptyFeature\": \"true\",\n                \"useDefaultValue\": \"false\",\n                \"emptyValue\": \"(empty)\",\n                \"defaultValue\": \"\",\n                \"enableTelemetry\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"a4789e5d-f6e8-431f-add9-379d640a883c\",\n              \"version\": \"0.*\",\n              \"name\": \"Install Terraform 0.12.3\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": { \"terraformVersion\": \"0.12.3\" }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"fe504acc-6115-40cb-89ff-191386b5e7bf\",\n              \"version\": \"2.*\",\n              \"name\": \"Terraform : init\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"provider\": \"azurerm\",\n                \"command\": \"init\",\n                \"workingDirectory\": \"$(System.DefaultWorkingDirectory)/_Terraform-CI/drop/Terraform\",\n                \"commandOptions\": \"\",\n                \"environmentServiceNameAzureRM\": \"\",\n                \"environmentServiceNameAWS\": \"\",\n                \"environmentServiceNameGCP\": \"\",\n                \"backendServiceArm\": \"\",\n                \"backendAzureRmResourceGroupName\": \"$(terraformstoragerg)\",\n                \"backendAzureRmStorageAccountName\": \"$(terraformstorageaccount) \",\n                \"backendAzureRmContainerName\": \"terraform\",\n                \"backendAzureRmKey\": \"terraform.tfstate\",\n                \"backendServiceAWS\": \"\",\n                \"backendAWSBucketName\": \"\",\n                \"backendAWSKey\": \"\",\n                \"backendServiceGCP\": \"\",\n                \"backendGCPBucketName\": \"\",\n                \"backendGCPPrefix\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"fe504acc-6115-40cb-89ff-191386b5e7bf\",\n              \"version\": \"2.*\",\n              \"name\": \"Terraform : plan\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"provider\": \"azurerm\",\n                \"command\": \"plan\",\n                \"workingDirectory\": \"$(System.DefaultWorkingDirectory)/_Terraform-CI/drop/Terraform\",\n                \"commandOptions\": \"\",\n                \"environmentServiceNameAzureRM\": \"\",\n                \"environmentServiceNameAWS\": \"\",\n                \"environmentServiceNameGCP\": \"\",\n                \"backendServiceArm\": \"\",\n                \"backendAzureRmResourceGroupName\": \"$(terraformstoragerg)\",\n                \"backendAzureRmStorageAccountName\": \"$(terraformstorageaccount) \",\n                \"backendAzureRmContainerName\": \"terraform\",\n                \"backendAzureRmKey\": \"$(storagekey)\",\n                \"backendServiceAWS\": \"\",\n                \"backendAWSBucketName\": \"\",\n                \"backendAWSKey\": \"\",\n                \"backendServiceGCP\": \"\",\n                \"backendGCPBucketName\": \"\",\n                \"backendGCPPrefix\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"fe504acc-6115-40cb-89ff-191386b5e7bf\",\n              \"version\": \"2.*\",\n              \"name\": \"Terraform : apply -auto-approve\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"provider\": \"azurerm\",\n                \"command\": \"apply\",\n                \"workingDirectory\": \"$(System.DefaultWorkingDirectory)/_Terraform-CI/drop/Terraform\",\n                \"commandOptions\": \"-auto-approve\",\n                \"environmentServiceNameAzureRM\": \"\",\n                \"environmentServiceNameAWS\": \"\",\n                \"environmentServiceNameGCP\": \"\",\n                \"backendServiceArm\": \"\",\n                \"backendAzureRmResourceGroupName\": \"$(terraformstoragerg)\",\n                \"backendAzureRmStorageAccountName\": \"$(terraformstorageaccount) \",\n                \"backendAzureRmContainerName\": \"terraform\",\n                \"backendAzureRmKey\": \"$(storagekey)\",\n                \"backendServiceAWS\": \"\",\n                \"backendAWSBucketName\": \"\",\n                \"backendAWSKey\": \"\",\n                \"backendServiceGCP\": \"\",\n                \"backendGCPBucketName\": \"\",\n                \"backendGCPPrefix\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy: $(appservicename)\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppKind\": \"app\",\n                \"WebAppName\": \"$(appservicename)\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"ImageSource\": \"Registry\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": 1,\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 1,\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Terraform-CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Terraform-CI\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"selectDuringReleaseCreationType\",\n          \"name\": \"Specify at the time of release creation\"\n        },\n        \"definition\": {\n          \"id\": \"$Terraform-CI-id$\",\n          \"name\": \"Terraform-CI\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseClone\"\n    },\n    \"IntegrateJiraWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"false\"\n    }\n  },\n  \"name\": \"Terraform-CD\",\n  \"path\": \"\\\\\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-Terraform/ServiceEndpoints/Terraform-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"Terraform-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vstsdemodata/_git/Terraform\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/BuildDefinitions/WhiteSourceBolt-YAML.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/WebGoat\",\n      \"fullName\": \"WebGoat\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$WebGoat$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$WebGoat$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"WebGoat\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/WebGoat\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"WhiteSourceBolt-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/BuildDefinitions/WhiteSourceBolt.json",
    "content": "{\n  \"name\": \"WhiteSourceBolt\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"722186\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+refs/heads/master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"npm install\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"Npm1\",\n            \"task\": {\n              \"id\": \"fe47e961-9fa8-4106-8639-368c022d43ad\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"install\",\n              \"workingDir\": \"\",\n              \"verbose\": \"false\",\n              \"customCommand\": \"\",\n              \"customRegistry\": \"useNpmrc\",\n              \"customFeed\": \"\",\n              \"customEndpoint\": \"\",\n              \"publishRegistry\": \"useExternalRegistry\",\n              \"publishFeed\": \"\",\n              \"publishEndpoint\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Maven\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"Maven2\",\n            \"task\": {\n              \"id\": \"ac4ee482-65da-4485-a532-7b085873e532\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"mavenPOMFile\": \"pom.xml\",\n              \"goals\": \"package\",\n              \"options\": \"\",\n              \"publishJUnitResults\": \"true\",\n              \"testResultsFiles\": \"**/TEST-*.xml\",\n              \"testRunTitle\": \"\",\n              \"codeCoverageTool\": \"None\",\n              \"classFilter\": \"\",\n              \"classFilesDirectories\": \"\",\n              \"srcDirectories\": \"\",\n              \"failIfCoverageEmpty\": \"false\",\n              \"javaHomeSelection\": \"JDKVersion\",\n              \"jdkVersion\": \"default\",\n              \"jdkUserInputPath\": \"\",\n              \"jdkArchitecture\": \"x86\",\n              \"mavenVersionSelection\": \"Default\",\n              \"mavenPath\": \"\",\n              \"mavenSetM2Home\": \"false\",\n              \"mavenOpts\": \"-Xmx1024m\",\n              \"mavenFeedAuthenticate\": \"true\",\n              \"sqAnalysisEnabled\": \"false\",\n              \"sqConnectedServiceName\": \"\",\n              \"sqProjectName\": \"\",\n              \"sqProjectKey\": \"\",\n              \"sqProjectVersion\": \"\",\n              \"sqDbDetailsRequired\": \"false\",\n              \"sqDbUrl\": \"\",\n              \"sqDbUsername\": \"\",\n              \"sqDbPassword\": \"\",\n              \"sqAnalysisIncludeFullReport\": \"true\",\n              \"sqAnalysisBreakBuildIfQualityGateFailed\": \"false\",\n              \"checkstyleAnalysisEnabled\": \"false\",\n              \"pmdAnalysisEnabled\": \"false\",\n              \"findbugsAnalysisEnabled\": \"false\"\n            }\n          },\n          {\n\t\t\t\t\"environment\": {},\n\t\t\t\t\"enabled\": true,\n\t\t\t\t\"continueOnError\": false,\n\t\t\t\t\"alwaysRun\": false,\n\t\t\t\t\"displayName\": \"WhiteSource\",\n\t\t\t\t\"timeoutInMinutes\": 0,\n\t\t\t\t\"retryCountOnTaskFailure\": 0,\n\t\t\t\t\"condition\": \"succeeded()\",\n\t\t\t\t\"task\": {\n\t\t\t\t\t\"id\": \"58dccf9e-3eaf-4533-a9b6-1e5a1845d036\",\n\t\t\t\t\t\"versionSpec\": \"21.*\",\n\t\t\t\t\t\"definitionType\": \"task\"\n\t\t\t\t},\n\t\t\t\t\"inputs\": {\n\t\t\t\t\t\"cwd\": \"$(System.DefaultWorkingDirectory)\",\n\t\t\t\t\t\"projectName\": \"WebGoat\",\n\t\t\t\t\t\"scanReportTimeout\": \"10\"\n\t\t\t\t}\n\t\t\t},\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"CopyFiles4\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(build.sourcesdirectory)\",\n              \"Contents\": \"**/*.jar\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"PublishBuildArtifacts5\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"windows-2019\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$WebGoat$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"WSBolt\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Dashboard/Dashboard.json",
    "content": "﻿{\n  \"name\": \"Overview\",\n  \"refreshInterval\": 5,\n  \"widgets\": [\n    {\n      \"name\": \"All Work Items by Work Item Type\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllWorkItems$\\\",\\\"title\\\":\\\"All Work Items by Work Item Type\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllWorkItems$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"All Work Items by Work Item Type\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Markdown\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"**Mend Bolt (WhiteSource Bolt)** is an open source security and management solution.\\nTeam Services integration with Mend Bolt (WhiteSource Bolt) will enable you to\\n\\n- Detect vulnerable open source components\\n- Get open source inventory reports per project or build\\n- Enforce open source license compliance\\n- Findout out-of-date open source libraries and recommendations to update\\n\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n      \"isNameConfigurable\": false,\n      \"lightboxOptions\": {\n        \"width\": 600,\n        \"height\": 500,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"All Work Items\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#292e6b\\\",\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Product Backlog Items\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 4\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#007acc\\\",\\\"queryId\\\":\\\"$PBI$\\\",\\\"queryName\\\":\\\"Product Backlog Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Product Backlog Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Features\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#5c197b\\\",\\\"queryId\\\":\\\"$Feature$\\\",\\\"queryName\\\":\\\"Features\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Features\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Tasks\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbfd52\\\",\\\"queryId\\\":\\\"$Task$\\\",\\\"queryName\\\":\\\"Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Tasks\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"WhisteSourceBolt\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"name\\\":\\\"WhisteSourceBolt\\\",\\\"id\\\":$buildWhiteSource$,\\\"type\\\":2,\\\"uri\\\":\\\"vstfs:///Build/Definition/$buildWhiteSource$\\\",\\\"projectId\\\":\\\"$Projectid$\\\",\\\"lastArtifactName\\\":\\\"WhisteSourceBolt\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Epics\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 2\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbbc3d\\\",\\\"queryId\\\":\\\"$Epic$\\\",\\\"queryName\\\":\\\"Epics\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Epics\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"All Work Items\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"query\\\":{\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n      \"configurationContributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n      \"isNameConfigurable\": true\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/Epic.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"Mend Bolt (formerly WhiteSource)\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=whitesource.whiteSource-bolt-v2' target='_blank'><b>Mend Bolt</b></a>\",\n      \"publisherId\": \"whitesource\",\n      \"extensionId\": \"whiteSource-bolt-v2\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/whitesource.whiteSource-bolt-v2/license' target='_blank'>License Terms</a>\"\n\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/ImportSourceCode/WebGoat.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/vstsdemodata/_git/WhiteSource%20Bolt\"\n    },\n\t\"serviceEndpointId\": \"$WebGoat-code$\",\n  \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Iterations.json",
    "content": "{\n  \"id\": 85,\n  \"name\": \"WhiteSource Bolt\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true,\n  \"children\": [\n    {\n      \"id\": 87,\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n      \"url\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations/Iteration%201\",\n      \"children\": null\n    },\n    {\n      \"id\": 88,\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n      \"url\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations/Iteration%202\",\n      \"children\": null\n    },\n    {\n      \"id\": 89,\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n      \"url\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations/Iteration%203\",\n      \"children\": null\n    }\n  ],\n  \"_links\": {\n    \"self\": {\n      \"href\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations\"\n    }\n  },\n  \"url\": \"https://vstsdemodata.visualstudio.com/851b582e-a87d-46e1-ba2c-023e9daedda7/_apis/wit/classificationNodes/Iterations\",\n  \"HttpStatusCode\": 200,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"users\": [\n    \"josau@microsoft.com\",\n    \"dahat@microsoft.com\",\n    \"erehrlic@microsoft.com\"\n  ]\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/ServiceEndpoints/WebGoat-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"WebGoat-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vstsdemodata/_git/WhiteSource%20Bolt\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team1/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team1/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team1/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team1/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team2/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team2/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team2/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team2/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"08408fbf-2899-4314-8563-c7f1477534d4\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"c97add56-4429-4d8a-8fab-e74d1f2d6d5b\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"1ee58219-d40c-4ac8-a9eb-ed6c02da508c\",\n    \"name\": \"WhiteSource Bolt Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/WhiteSource Bolt Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/WhiteSource Bolt Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/WhiteSource Bolt Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/WhiteSource Bolt Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/Teams/WhiteSource Bolt Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/WorkItems/Epic.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 806,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Code Validation at Build\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/807\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/806\"\n    },\n    {\n      \"id\": 805,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Secure source code\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/801\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/805\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/WorkItems/Feature.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 807,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Make sure each checkin is validated\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/808\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/811\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/806\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/807\"\n    },\n    {\n      \"id\": 801,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Make sure the code is secure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/805\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/802\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/801\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 811,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:44:39.81Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Report the vulnerabilities details to development team to fix\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/807\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/810\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/812\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/811\"\n    },\n    {\n      \"id\": 808,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:44:39.81Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Set up a CI Build definition to validate the checkin\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/809\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/804\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/807\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/808\"\n    },\n    {\n      \"id\": 802,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:44:39.81Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Detect the vulnerable code components\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/801\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/803\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/802\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DL-WhiteSource-Bolt/WorkItems/Task.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 812,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create bug if there are any vulnerable code or libraries\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/811\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/812\"\n    },\n    {\n      \"id\": 810,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Trigger the first build manually and evaluate the reports generated by WhiteSource Bolt\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/811\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/810\"\n    },\n    {\n      \"id\": 809,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Add white source bolt task to validate the security vulnerabilities in the code\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/808\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/809\"\n    },\n    {\n      \"id\": 804,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create a build definition with trigger type as Continuous Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/808\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/804\"\n    },\n    {\n      \"id\": 803,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"WhiteSource Bolt\",\n        \"System.TeamProject\": \"WhiteSource Bolt\",\n        \"System.IterationPath\": \"WhiteSource Bolt\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.CreatedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2017-12-05T07:30:44.597Z\",\n        \"System.ChangedBy\": \"eCanarys Automations <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Install and activate  White Source Bolt extension\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/802\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/803\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/BuildDefinitions/Bookings-CI.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"2193090\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Use NuGet 4.4.1\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2c65196a-54fd-4a02-9be8-d9d1837b7c5d\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"versionSpec\": \"4.4.1\",\n              \"checkLatest\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"NuGet restore\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"333b11bd-d341-40d9-afcf-b32d5ce6f23b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"solution\": \"$(Parameters.solution)\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"disableParallelProcessing\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"allowPackageConflicts\": \"false\",\n              \"externalEndpoint\": \"\",\n              \"verbosityPush\": \"Detailed\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"versioningScheme\": \"off\",\n              \"includeReferencedProjects\": \"false\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"packTimezone\": \"utc\",\n              \"includeSymbols\": \"false\",\n              \"toolPackage\": \"false\",\n              \"buildProperties\": \"\",\n              \"basePath\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"arguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build solution\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"solution\": \"$(Parameters.solution)\",\n              \"vsVersion\": \"latest\",\n              \"msbuildArgs\": \"/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation=\\\"$(build.artifactstagingdirectory)\\\\\\\\\\\"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"clean\": \"false\",\n              \"maximumCpuCount\": \"false\",\n              \"restoreNugetPackages\": \"false\",\n              \"msbuildArchitecture\": \"x86\",\n              \"logProjectEvents\": \"true\",\n              \"createLogFile\": \"false\",\n              \"logFileVerbosity\": \"normal\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test Assemblies\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"ef087383-ee5e-42c7-9a53-ab56c98420f9\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"testSelector\": \"testAssemblies\",\n              \"testAssemblyVer2\": \"**\\\\$(BuildConfiguration)\\\\*test*.dll\\n!**\\\\obj\\\\**\",\n              \"testPlan\": \"\",\n              \"testSuite\": \"\",\n              \"testConfiguration\": \"\",\n              \"tcmTestRun\": \"$(test.RunId)\",\n              \"searchFolder\": \"$(System.DefaultWorkingDirectory)\",\n              \"testFiltercriteria\": \"\",\n              \"runOnlyImpactedTests\": \"False\",\n              \"runAllTestsAfterXBuilds\": \"50\",\n              \"uiTests\": \"false\",\n              \"vstestLocationMethod\": \"version\",\n              \"vsTestVersion\": \"latest\",\n              \"vstestLocation\": \"\",\n              \"runSettingsFile\": \"\",\n              \"overrideTestrunParameters\": \"\",\n              \"pathtoCustomTestAdapters\": \"\",\n              \"runInParallel\": \"False\",\n              \"runTestsInIsolation\": \"False\",\n              \"codeCoverageEnabled\": \"False\",\n              \"otherConsoleOptions\": \"\",\n              \"distributionBatchType\": \"basedOnTestCases\",\n              \"batchingBasedOnAgentsOption\": \"autoBatchSize\",\n              \"customBatchSizeValue\": \"10\",\n              \"batchingBasedOnExecutionTimeOption\": \"autoBatchSize\",\n              \"customRunTimePerBatchValue\": \"60\",\n              \"dontDistribute\": \"False\",\n              \"testRunTitle\": \"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"publishRunAttachments\": \"true\",\n              \"diagnosticsEnabled\": \"True\",\n              \"collectDumpOn\": \"onAbortOnly\",\n              \"rerunFailedTests\": \"False\",\n              \"rerunType\": \"basedOnTestFailurePercentage\",\n              \"rerunFailedThreshold\": \"30\",\n              \"rerunFailedTestCasesMaxLimit\": \"5\",\n              \"rerunMaxAttempts\": \"3\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": true,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish symbols path\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"0675668a-7bba-4ccb-901d-5ad6554ca653\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SymbolsFolder\": \"$(Build.SourcesDirectory)\",\n              \"SearchPattern\": \"**\\\\bin\\\\**\\\\*.pdb\",\n              \"IndexSources\": \"true\",\n              \"PublishSymbols\": \"false\",\n              \"SymbolServerType\": \"TeamServices\",\n              \"SymbolsPath\": \"\",\n              \"CompressSymbols\": \"false\",\n              \"DetailedLog\": \"true\",\n              \"TreatNotIndexedAsWarning\": \"false\",\n              \"SymbolsMaximumWaitTime\": \"\",\n              \"SymbolsProduct\": \"\",\n              \"SymbolsVersion\": \"\",\n              \"SymbolsArtifactName\": \"Symbols_$(BuildConfiguration)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files to: $(build.artifactstagingdirectory)\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(system.defaultworkingdirectory)\",\n              \"Contents\": \"**/*.json\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": true,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeededOrFailed()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"$(Parameters.ArtifactName)\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Job_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1,\n          \"queue\": \"{}\"\n        },\n        \"jobAuthorizationScope\": \"projectCollection\"\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"vs2017-win2016\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\",\n      \"connectedServiceId\": \"\"\n    },\n    \"id\": \"$DevOps-Dojo-Booking$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"DevOps-Dojo-Booking\",\n    \"url\": \"\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"solution\",\n        \"label\": \"Path to solution or packages.config\",\n        \"defaultValue\": \"ModernizationWithAppServiceDotNET/SmartHotel360.Registration.sln\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"The path to the Visual Studio solution file or NuGet packages.config\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"ArtifactName\",\n        \"label\": \"Artifact Name\",\n        \"defaultValue\": \"drop\",\n        \"required\": true,\n        \"type\": \"string\",\n        \"helpMarkDown\": \"The name of the artifact to create.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Bookings-CI\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 3,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/BuildDefinitions/Bookings-Nightly.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"2193090\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"schedules\": [\n        {\n          \"branchFilters\": [\n            \"+refs/heads/master\"\n          ],\n          \"timeZoneId\": \"UTC\",\n          \"startHours\": 6,\n          \"startMinutes\": 0,\n          \"daysToBuild\": 31,\n          \"scheduleJobId\": \"585ca2c3-2d9c-4651-a3d4-bb84c28cfe80\",\n          \"scheduleOnlyWithChanges\": true\n        }\n      ],\n      \"triggerType\": \"schedule\"\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Use NuGet 4.4.1\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2c65196a-54fd-4a02-9be8-d9d1837b7c5d\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"versionSpec\": \"4.4.1\",\n              \"checkLatest\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"NuGet restore\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"333b11bd-d341-40d9-afcf-b32d5ce6f23b\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"solution\": \"$(Parameters.solution)\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"disableParallelProcessing\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"allowPackageConflicts\": \"false\",\n              \"externalEndpoint\": \"\",\n              \"verbosityPush\": \"Detailed\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"versioningScheme\": \"off\",\n              \"includeReferencedProjects\": \"false\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"packTimezone\": \"utc\",\n              \"includeSymbols\": \"false\",\n              \"toolPackage\": \"false\",\n              \"buildProperties\": \"\",\n              \"basePath\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"arguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build solution\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"solution\": \"$(Parameters.solution)\",\n              \"vsVersion\": \"latest\",\n              \"msbuildArgs\": \"/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation=\\\"$(build.artifactstagingdirectory)\\\\\\\\\\\"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"clean\": \"false\",\n              \"maximumCpuCount\": \"false\",\n              \"restoreNugetPackages\": \"false\",\n              \"msbuildArchitecture\": \"x86\",\n              \"logProjectEvents\": \"true\",\n              \"createLogFile\": \"false\",\n              \"logFileVerbosity\": \"normal\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test Assemblies\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"ef087383-ee5e-42c7-9a53-ab56c98420f9\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"testSelector\": \"testAssemblies\",\n              \"testAssemblyVer2\": \"**\\\\$(BuildConfiguration)\\\\*test*.dll\\n!**\\\\obj\\\\**\",\n              \"testPlan\": \"\",\n              \"testSuite\": \"\",\n              \"testConfiguration\": \"\",\n              \"tcmTestRun\": \"$(test.RunId)\",\n              \"searchFolder\": \"$(System.DefaultWorkingDirectory)\",\n              \"testFiltercriteria\": \"\",\n              \"runOnlyImpactedTests\": \"False\",\n              \"runAllTestsAfterXBuilds\": \"50\",\n              \"uiTests\": \"false\",\n              \"vstestLocationMethod\": \"version\",\n              \"vsTestVersion\": \"latest\",\n              \"vstestLocation\": \"\",\n              \"runSettingsFile\": \"\",\n              \"overrideTestrunParameters\": \"\",\n              \"pathtoCustomTestAdapters\": \"\",\n              \"runInParallel\": \"False\",\n              \"runTestsInIsolation\": \"False\",\n              \"codeCoverageEnabled\": \"False\",\n              \"otherConsoleOptions\": \"\",\n              \"distributionBatchType\": \"basedOnTestCases\",\n              \"batchingBasedOnAgentsOption\": \"autoBatchSize\",\n              \"customBatchSizeValue\": \"10\",\n              \"batchingBasedOnExecutionTimeOption\": \"autoBatchSize\",\n              \"customRunTimePerBatchValue\": \"60\",\n              \"dontDistribute\": \"False\",\n              \"testRunTitle\": \"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"publishRunAttachments\": \"true\",\n              \"diagnosticsEnabled\": \"True\",\n              \"collectDumpOn\": \"onAbortOnly\",\n              \"rerunFailedTests\": \"False\",\n              \"rerunType\": \"basedOnTestFailurePercentage\",\n              \"rerunFailedThreshold\": \"30\",\n              \"rerunFailedTestCasesMaxLimit\": \"5\",\n              \"rerunMaxAttempts\": \"3\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": true,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish symbols path\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"0675668a-7bba-4ccb-901d-5ad6554ca653\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SymbolsFolder\": \"$(Build.SourcesDirectory)\",\n              \"SearchPattern\": \"**\\\\bin\\\\**\\\\*.pdb\",\n              \"IndexSources\": \"true\",\n              \"PublishSymbols\": \"false\",\n              \"SymbolServerType\": \"TeamServices\",\n              \"SymbolsPath\": \"\",\n              \"CompressSymbols\": \"false\",\n              \"DetailedLog\": \"true\",\n              \"TreatNotIndexedAsWarning\": \"false\",\n              \"SymbolsMaximumWaitTime\": \"\",\n              \"SymbolsProduct\": \"\",\n              \"SymbolsVersion\": \"\",\n              \"SymbolsArtifactName\": \"Symbols_$(BuildConfiguration)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files to: $(build.artifactstagingdirectory)\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(system.defaultworkingdirectory)\",\n              \"Contents\": \"**/*.json\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": true,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeededOrFailed()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"$(Parameters.ArtifactName)\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Job_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1,\n          \"queue\": \"{}\"\n        },\n        \"jobAuthorizationScope\": \"projectCollection\"\n      }\n    ],\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\",\n      \"connectedServiceId\": \"\"\n    },\n    \"id\": \"$DevOps-Dojo-Booking$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"DevOps-Dojo-Booking\",\n    \"url\": \"\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"solution\",\n        \"label\": \"Path to solution or packages.config\",\n        \"defaultValue\": \"ModernizationWithAppServiceDotNET/SmartHotel360.Registration.sln\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"The path to the Visual Studio solution file or NuGet packages.config\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      },\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"ArtifactName\",\n        \"label\": \"Artifact Name\",\n        \"defaultValue\": \"drop\",\n        \"required\": true,\n        \"type\": \"string\",\n        \"helpMarkDown\": \"The name of the artifact to create.\",\n        \"visibleRule\": \"\",\n        \"groupName\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": \"{}\",\n    \"id\": \"\",\n    \"name\": \"Hosted VS2017\",\n    \"url\": \"\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted VS2017\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Bookings-Nightly\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 3,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/BuildDefinitions/Coupons-CI.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"2193090\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Maven pom.xml\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"ac4ee482-65da-4485-a532-7b085873e532\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"mavenPOMFile\": \"$(Parameters.mavenPOMFile)\",\n              \"goals\": \"package\",\n              \"options\": \"\",\n              \"publishJUnitResults\": \"true\",\n              \"testResultsFiles\": \"**/surefire-reports/TEST-*.xml\",\n              \"testRunTitle\": \"\",\n              \"codeCoverageTool\": \"None\",\n              \"classFilter\": \"\",\n              \"classFilesDirectories\": \"\",\n              \"srcDirectories\": \"\",\n              \"failIfCoverageEmpty\": \"false\",\n              \"javaHomeSelection\": \"JDKVersion\",\n              \"jdkVersion\": \"default\",\n              \"jdkUserInputPath\": \"\",\n              \"jdkArchitecture\": \"x64\",\n              \"mavenVersionSelection\": \"Default\",\n              \"mavenPath\": \"\",\n              \"mavenSetM2Home\": \"false\",\n              \"mavenOpts\": \"-Xmx1024m\",\n              \"mavenFeedAuthenticate\": \"false\",\n              \"sqAnalysisEnabled\": \"false\",\n              \"sqMavenPluginVersionChoice\": \"latest\",\n              \"checkstyleAnalysisEnabled\": \"false\",\n              \"pmdAnalysisEnabled\": \"false\",\n              \"findbugsAnalysisEnabled\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": true,\n            \"displayName\": \"Copy Files to: $(build.artifactstagingdirectory)\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeededOrFailed()\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(system.defaultworkingdirectory)\",\n              \"Contents\": \"**/*.war\\n**/*.json\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": true,\n            \"displayName\": \"Publish Artifact: drop\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeededOrFailed()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Job_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1,\n          \"queue\": \"{}\"\n        },\n        \"jobAuthorizationScope\": \"projectCollection\"\n      }\n    ],\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\",\n      \"connectedServiceId\": \"\"\n    },\n    \"id\": \"$DevOps-Dojo-Coupons$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"DevOps-Dojo-Coupons\",\n    \"url\": \"\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"mavenPOMFile\",\n        \"label\": \"Maven POM file\",\n        \"defaultValue\": \"pom.xml\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": \"{}\",\n    \"id\": \"\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Coupons-CI\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/BuildDefinitions/Coupons-Nightly.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"2193090\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"schedules\": [\n        {\n          \"branchFilters\": [\n            \"+refs/heads/master\"\n          ],\n          \"timeZoneId\": \"UTC\",\n          \"startHours\": 6,\n          \"startMinutes\": 0,\n          \"daysToBuild\": 31,\n          \"scheduleJobId\": \"a894019e-1452-4382-a660-1daeb1306e70\",\n          \"scheduleOnlyWithChanges\": true\n        }\n      ],\n      \"triggerType\": \"schedule\"\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Maven pom.xml\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"ac4ee482-65da-4485-a532-7b085873e532\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"mavenPOMFile\": \"$(Parameters.mavenPOMFile)\",\n              \"goals\": \"package\",\n              \"options\": \"\",\n              \"publishJUnitResults\": \"true\",\n              \"testResultsFiles\": \"**/surefire-reports/TEST-*.xml\",\n              \"testRunTitle\": \"\",\n              \"codeCoverageTool\": \"None\",\n              \"classFilter\": \"\",\n              \"classFilesDirectories\": \"\",\n              \"srcDirectories\": \"\",\n              \"failIfCoverageEmpty\": \"false\",\n              \"javaHomeSelection\": \"JDKVersion\",\n              \"jdkVersion\": \"default\",\n              \"jdkUserInputPath\": \"\",\n              \"jdkArchitecture\": \"x64\",\n              \"mavenVersionSelection\": \"Default\",\n              \"mavenPath\": \"\",\n              \"mavenSetM2Home\": \"false\",\n              \"mavenOpts\": \"-Xmx1024m\",\n              \"mavenFeedAuthenticate\": \"false\",\n              \"sqAnalysisEnabled\": \"false\",\n              \"sqMavenPluginVersionChoice\": \"latest\",\n              \"checkstyleAnalysisEnabled\": \"false\",\n              \"pmdAnalysisEnabled\": \"false\",\n              \"findbugsAnalysisEnabled\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": true,\n            \"displayName\": \"Copy Files to: $(build.artifactstagingdirectory)\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeededOrFailed()\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(system.defaultworkingdirectory)\",\n              \"Contents\": \"**/*.war\\n**/*.json\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": true,\n            \"displayName\": \"Publish Artifact: drop\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeededOrFailed()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Job_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1,\n          \"queue\": \"{}\"\n        },\n        \"jobAuthorizationScope\": \"projectCollection\"\n      }\n    ],\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\",\n      \"connectedServiceId\": \"\"\n    },\n    \"id\": \"$DevOps-Dojo-Coupons$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"DevOps-Dojo-Coupons\",\n    \"url\": \"\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n    \"inputs\": [\n      {\n        \"aliases\": [],\n        \"options\": {},\n        \"properties\": {},\n        \"name\": \"mavenPOMFile\",\n        \"label\": \"Maven POM file\",\n        \"defaultValue\": \"pom.xml\",\n        \"required\": true,\n        \"type\": \"filePath\",\n        \"helpMarkDown\": \"\"\n      }\n    ]\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": \"{}\",\n    \"id\": \"\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Coupons-Nightly\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/Extensions.json",
    "content": "{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"ARM Outputs\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'><b>ARM Outputs</b></a>\",\n      \"publisherId\": \"keesschollaart\",\n      \"extensionId\": \"arm-outputs\",\n      \"publisherName\": \"Kees Schollaart\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Component Governance Build Task\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms.vss-governance-buildtask' target='_blank'><b>Component Governance Build Task</b></a>\",\n      \"publisherId\": \"ms\",\n      \"extensionId\": \"vss-governance-buildtask\",\n      \"publisherName\": \"Microsoft\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms.vss-governance-buildtask' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Microsoft Component Policies\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-compliance.microsoft-component-policies' target='_blank'><b>Microsoft Component Policies</b></a>\",\n      \"publisherId\": \"ms-compliance\",\n      \"extensionId\": \"microsoft-component-policies\",\n      \"publisherName\": \"Compliance Partners\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-compliance.microsoft-component-policies' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Component Governance\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms.vss-governance-web' target='_blank'><b>Component Governance</b></a>\",\n      \"publisherId\": \"ms\",\n      \"extensionId\": \"vss-governance-web\",\n      \"publisherName\": \"Microsoft\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms.vss-governance-web' target='_blank'>License Terms</a>\"\n    },\n\t{\n      \"extensionName\": \"Secure DevOps Kit (AzSK) CICD Extensions for Azure\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=azsdktm.AzSDK-task' target='_blank'><b>Secure DevOps Kit (AzSK) CICD Extensions for Azure</b></a>\",\n      \"publisherId\": \"azsdktm\",\n      \"extensionId\": \"AzSDK-task\",\n      \"publisherName\": \"Microsoft DevLabs\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=azsdktm.AzSDK-task' target='_blank'>License Terms</a>\"\n    },\n{\n      \"extensionName\": \"Replace Tokens\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=qetza.replacetokens' target='_blank'><b>Replace Tokens</b></a>\",\n      \"publisherId\": \"qetza\",\n      \"extensionId\": \"replacetokens\",\n      \"publisherName\": \"Guillaume Rouchon\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=qetza.replacetokens' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Secure Development Tools\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=securedevelopmentteam.vss-secure-development-tools' target='_blank'><b>Secure Development Tools</b></a>\",\n      \"publisherId\": \"securedevelopmentteam\",\n      \"extensionId\": \"vss-secure-development-tools\",\n      \"publisherName\": \"Microsoft\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=securedevelopmentteam.vss-secure-development-tools' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"SonarCloud\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarcloud' target='_blank'><b>SonarCloud</b></a>\",\n      \"publisherId\": \"SonarSource\",\n      \"extensionId\": \"sonarcloud\",\n      \"publisherName\": \"SonarSource\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarcloud' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Mend Bolt\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=whitesource.whiteSource-bolt-v2' target='_blank'><b>WhiteSource Bolt</b></a>\",\n      \"publisherId\": \"whitesource\",\n      \"extensionId\": \"whiteSource-bolt-v2\",\n      \"publisherName\": \"WhiteSource\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=whitesource.whiteSource-bolt-v2' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Analytics\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms.vss-analytics' target='_blank'><b>Analytics</b></a>\",\n      \"publisherId\": \"ms\",\n      \"extensionId\": \"vss-analytics\",\n      \"publisherName\": \"Microsoft\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms.vss-analytics' target='_blank'>License Terms</a>\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ImportSourceCode/DevOps-Dojo-Booking.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/servicescode/DevOps-Dojo-WhiteBelt/_git/DevOps-Dojo-Booking\"\n    },\n    \"serviceEndpointId\": \"$DevOps-Dojo-Booking-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ImportSourceCode/DevOps-Dojo-Coupons.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/servicescode/DevOps-Dojo-WhiteBelt/_git/DevOps-Dojo-Coupons\"\n    },\n    \"serviceEndpointId\": \"$DevOps-Dojo-Coupons-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ImportSourceCode/DevOps-Dojo-Setup.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/servicescode/DevOps-Dojo-WhiteBelt/_git/DevOps-Dojo-Setup\"\n    },\n    \"serviceEndpointId\": \"$DevOps-Dojo-Setup-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ImportSourceCode/DevOps-Dojo.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/servicescode/DevOps-Dojo-WhiteBelt/_git/DevOps-Dojo\"\n    },\n    \"serviceEndpointId\": \"$DevOps-Dojo-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 4\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 5\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 6\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"DevOps-Dojo\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ReleaseDefinitions/Bookings-CD manual.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 4,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"variables\": {\n    \"resourcegroup\": {\n      \"value\": \"Dojo-Booking-Dev-WUS2\",\n      \"isSecret\": false\n    },\n    \"webapp\": {\n      \"value\": \"dojo-bookings-app-dev-manual\",\n      \"isSecret\": false\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 5,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 14\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 15\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 16\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": null,\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": [\n                {\n                  \"alias\": \"_Bookings-Nightly\",\n                  \"artifactType\": \"Build\",\n                  \"artifactDownloadMode\": \"All\",\n                  \"artifactItems\": []\n                }\n              ]\n            },\n            \"queueId\": \"$Hosted VS2017$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent job\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Deployment:Create Or Update Resource Group action on $(resourcegroup)\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(resourcegroup)\",\n                \"location\": \"West US 2\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/_Bookings-Nightly/drop/ModernizationWithAppServiceDotNET/SmartHotel360.Registration.ARM/azuredeploy.json\",\n                \"csmParametersFile\": \"\",\n                \"overrideParameters\": \"-webSiteName $(webapp) -administratorLoginPassword \\\"Password@2019\\\"\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"runAgentServiceAsUser\": \"false\",\n                \"userName\": \"\",\n                \"password\": \"\",\n                \"outputVariable\": \"\",\n                \"deploymentName\": \"\",\n                \"deploymentOutputs\": \"\",\n                \"addSpnToEnvironment\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Azure App Service Deploy: $(webapp)\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"webApp\",\n                \"WebAppName\": \"$(webapp)\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"true\",\n                \"AdditionalArguments\": \"-retryAttempts:6 -retryInterval:10000\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 19,\n        \"url\": \"https://vsrm.dev.azure.com/servicescode/5f64706a-c618-4444-8fec-a037e2197618/_apis/Release/releases/19\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": {\n          \"isEnabled\": false,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 5,\n          \"minimumSuccessDuration\": 0\n        },\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Bookings-Nightly-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Bookings-Nightly\",\n      \"definitionReference\": {\n        \"artifactSourceDefinitionUrl\": \"{}\",\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$Bookings-Nightly-id$\",\n          \"name\": \"Bookings-Nightly\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseClone\"\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Bookings-CD manual\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ReleaseDefinitions/Bookings-CD.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 9,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"variables\": {\n    \"resourcegroup\": {\n      \"value\": \"Dojo-Booking-Dev-WUS2\",\n      \"isSecret\": true\n    },\n    \"webapp\": {\n      \"value\": \"dojo-bookings-app-dev\",\n      \"isSecret\": true\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 4,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 10\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 11\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 12\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": null,\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Hosted VS2017$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent job\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Deployment:Create Or Update Resource Group action on $(resourcegroup)\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(resourcegroup)\",\n                \"location\": \"West US 2\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/_Bookings-CI/drop/ModernizationWithAppServiceDotNET/SmartHotel360.Registration.ARM/azuredeploy.json\",\n                \"csmParametersFile\": \"\",\n                \"overrideParameters\": \"-webSiteName $(webapp) -administratorLoginPassword \\\"Password@2019\\\"\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"runAgentServiceAsUser\": \"false\",\n                \"userName\": \"\",\n                \"password\": \"\",\n                \"outputVariable\": \"\",\n                \"deploymentName\": \"\",\n                \"deploymentOutputs\": \"\",\n                \"addSpnToEnvironment\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Azure App Service Deploy: $(webapp)\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"webApp\",\n                \"WebAppName\": \"$(webapp)\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"true\",\n                \"AdditionalArguments\": \"-retryAttempts:6 -retryInterval:10000\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": true\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 17,\n        \"url\": \"https://vsrm.dev.azure.com/servicescode/5f64706a-c618-4444-8fec-a037e2197618/_apis/Release/releases/17\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": {\n          \"isEnabled\": false,\n          \"timeout\": 1440,\n          \"samplingInterval\": 15,\n          \"stabilizationTime\": 5,\n          \"minimumSuccessDuration\": 0\n        },\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Bookings-CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Bookings-CI\",\n      \"definitionReference\": {\n        \"artifactSourceDefinitionUrl\": \"{}\",\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$Bookings-CI-id$\",\n          \"name\": \"Bookings-CI\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"_Bookings-CI\",\n      \"triggerConditions\": [\n        {\n          \"targetBranch\": \"master\",\n          \"tags\": []\n        }\n      ],\n      \"pullRequestConfiguration\": {\n        \"useArtifactReference\": false,\n        \"codeRepositoryReference\": {\n          \"systemType\": \"tfsGit\",\n          \"repositoryReference\": {\n            \"pullRequestRepositoryId\": {\n              \"value\": \"bc1a9c85-e3b4-42d9-ba07-4d9eb8bd24fe\",\n              \"displayValue\": \"DevOps-Dojo-Booking\"\n            },\n            \"pullRequestProjectId\": {\n              \"value\": \"5f64706a-c618-4444-8fec-a037e2197618\",\n              \"displayValue\": \"DevOps-Dojo\"\n            }\n          }\n        }\n      },\n      \"statusPolicyName\": \"\",\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Bookings-CD\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ReleaseDefinitions/Coupon-CD.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 5,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"variables\": {\n    \"resourcegroup\": {\n      \"value\": \"Dojo-Coupon-Dev-WUS2\",\n      \"isSecret\": true\n    },\n    \"webapp\": {\n      \"value\": \"dojo-coupons-app-dev\",\n      \"isSecret\": true\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 2,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 4\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 5\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 6\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": null,\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": [\n                {\n                  \"alias\": \"_Coupons-CI\",\n                  \"artifactType\": \"Build\",\n                  \"artifactDownloadMode\": \"All\",\n                  \"artifactItems\": []\n                }\n              ]\n            },\n            \"queueId\": \"$Hosted VS2017$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Deployment:Create Or Update Resource Group action on $(resourcegroup)\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(resourcegroup)\",\n                \"location\": \"West US 2\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/_Coupons-CI/drop/azuredeploy.json\",\n                \"csmParametersFile\": \"\",\n                \"overrideParameters\": \"-webAppName $(webapp) -mySQLAdminLoginName \\\"dojoadmin\\\" -mySQLAdminLoginPassword \\\"Password@2019\\\" -sourceCodeRepositoryURL \\\"https://github.com/<YourAccount>/SmartHotel360-CouponManagement\\\" -sourceCodeBranch \\\"master\\\" -sourceCodeManualIntegration false\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"runAgentServiceAsUser\": \"false\",\n                \"userName\": \"\",\n                \"password\": \"\",\n                \"outputVariable\": \"\",\n                \"deploymentName\": \"\",\n                \"deploymentOutputs\": \"\",\n                \"addSpnToEnvironment\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Deploy War to Azure App Service\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"webApp\",\n                \"WebAppName\": \"$(webapp)\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"$(Build.BuildId)\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/_Coupons-CI/drop/target/ROOT.war\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \"\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Deploy Jar to Azure App Service\",\n              \"refName\": \"\",\n              \"enabled\": false,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"webApp\",\n                \"WebAppName\": \"$(webapp)\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"$(Build.BuildId)\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.jar\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \"\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"-JAR_PATH D:\\\\home\\\\site\\\\wwwroot\\\\*.jar -ADDITIONAL_DEPLOYMENT_OPTIONS '-Dserver.port=%HTTP_PLATFORM_PORT%' -appType Java_SpringBoot\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": true\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 15,\n        \"url\": \"https://vsrm.dev.azure.com/servicescode/5f64706a-c618-4444-8fec-a037e2197618/_apis/Release/releases/15\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Coupons-CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Coupons-CI\",\n      \"definitionReference\": {\n        \"artifactSourceDefinitionUrl\": \"{}\",\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$Coupons-CI-id$\",\n          \"name\": \"Coupons-CI\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"_Coupons-CI\",\n      \"triggerConditions\": [\n        {\n          \"targetBranch\": \"master\",\n          \"tags\": []\n        }\n      ],\n      \"pullRequestConfiguration\": {\n        \"useArtifactReference\": false,\n        \"codeRepositoryReference\": {\n          \"systemType\": \"tfsGit\",\n          \"repositoryReference\": {\n            \"pullRequestRepositoryId\": {\n              \"value\": \"d80cd82e-784d-49e9-aa2f-b0601d0b116a\",\n              \"displayValue\": \"DevOps-Dojo-Coupons\"\n            },\n            \"pullRequestProjectId\": {\n              \"value\": \"5f64706a-c618-4444-8fec-a037e2197618\",\n              \"displayValue\": \"DevOps-Dojo\"\n            }\n          }\n        }\n      },\n      \"statusPolicyName\": \"\",\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseImport\"\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Coupon-CD\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ServiceEndpoints/DevOps-Dojo-Booking-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"DevOps-Dojo-Booking-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/servicescode/DevOps-Dojo/_git/DevOps-Dojo-Booking\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ServiceEndpoints/DevOps-Dojo-Coupons-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"DevOps-Dojo-Coupons-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/servicescode/DevOps-Dojo/_git/DevOps-Dojo-Coupons\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ServiceEndpoints/DevOps-Dojo-Setup-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"DevOps-Dojo-Setup-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/servicescode/DevOps-Dojo/_git/DevOps-Dojo-Setup\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ServiceEndpoints/DevOps-Dojo-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"DevOps-Dojo-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/servicescode/DevOps-Dojo/_git/DevOps-Dojo\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/ServiceEndpoints/ES-INT-DOJO-DEV-DOJOWB-Conn.json",
    "content": "{\n  \"data\": {\n    \"environment\": \"AzureCloud\",\n    \"subscriptionId\": \"f2e68202-1605-4760-aa3d-b9859a54acb2\",\n    \"subscriptionName\": \"ES-INT-DOJO-DEV-DOJOWB\",\n    \"scopeLevel\": \"Subscription\"\n  },\n  \"name\": \"ES-INT-DOJO-DEV-DOJOWB-Conn\",\n  \"type\": \"azurerm\",\n  \"url\": \"https://management.azure.com/\",\n  \"authorization\": {\n    \"parameters\": {\n      \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\n      \"servicePrincipalId\": \"ccaed2ec-06c7-4b45-aa8a-88a14d12438d\",\n      \"authenticationType\": \"spnKey\",\n      \"servicePrincipalKey\": \"spnKey\"\n    },\n    \"scheme\": \"ServicePrincipal\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/Teams/DevOps-Dojo Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/Teams/DevOps-Dojo Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/Teams/DevOps-Dojo Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/Teams/DevOps-Dojo Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/Teams/DevOps-Dojo Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"992a641a-9d90-47f1-bcaf-017c3602776e\",\n    \"name\": \"DevOps-Dojo Team\",\n    \"description\": \"1Microsoft DevOps Dojo Team\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/WorkItems/Epic.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 26309,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-14T17:30:12.977Z\",\n        \"System.CreatedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:30:12.977Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"Classroom Challenges\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>This is the epic which lists all potential challenges students would do in the dojo room.</span></div>\",\n        \"System.AssignedTo\": \"Kan Tang <kantan@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26309\"\n    },\n    {\n      \"id\": 26308,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-14T17:09:48.65Z\",\n        \"System.CreatedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:30:50.23Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"SH360 Booking App\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>This is the epic for Smart Hotel Booking App</span></div>\",\n        \"System.AssignedTo\": \"Aakanksha . <aak@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26300\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26308\"\n    },\n    {\n      \"id\": 26307,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-14T17:08:43.63Z\",\n        \"System.CreatedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:31:15.827Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"SH360 Coupon App\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>This is the epic used for Smart Hotel 360 Coupon Java App</span></div>\",\n        \"System.AssignedTo\": \"Swathi G <swathg@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26299\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26307\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 26300,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2019-05-14T14:55:17.14Z\",\n        \"System.CreatedBy\": \"Aakanksha . <aak@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:24:08.797Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"Checkin in Booking Management \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">As a user,&nbsp;</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">I can check in so I can complete my registration in booking management system</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><br style=\\\"box-sizing:border-box;\\\"></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">The existing app does not do anything when Check In button is clicked as the feature is not yet implemented. The newly implemented feature should be able to update the customer details that are editable and also update the Room type which comes as dropdown back into the database. Once the update of associated booking is complet, success message saying &quot;Customer details are updated successfully!&quot; should pop-up and redirect to default home page.</span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\"><br></span></div><div style=\\\"box-sizing:border-box;\\\"><span style=\\\"box-sizing:border-box;\\\">If there is any error, during customer details update on registration screen, user should be redirected to Error Screen describing proper error message with details should appear saying &quot;Oops... Some error occurred! Please try again later.&quot;</span></div><br></span></div>\",\n        \"System.AssignedTo\": \"Aakanksha . <aak@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div><span><br><a href=\\\"#\\\" data-vss-mention=\\\"version:2.0,cb9715f6-e4a0-6958-99d4-f54dba591bb5\\\">@Aakanksha .</a> this is the Application Business User Story, not the student user story, so I made changes in description.&nbsp; I should move it under Booking App Epic.</span></div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26301\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26308\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26300\"\n    },\n    {\n      \"id\": 26299,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2019-05-14T14:18:51.92Z\",\n        \"System.CreatedBy\": \"Swathi G <swathg@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:28:08.417Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"Printing Coupon for Discount\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgba(255, 255, 255, 1);\\\">As a student, I should be able to implement Print Coupon feature<br></span></span></div><div><span><span style=\\\"display:inline !important;background-color:rgba(255, 255, 255, 1);\\\"><br></span></span></div><div><span><span style=\\\"display:inline !important;background-color:rgba(255, 255, 255, 1);\\\">This use story will include a feature to print coupons post QR Code generation on the Generate Coupons screen.</span><br></span></div>\",\n        \"System.AssignedTo\": \"Swathi G <swathg@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div><span>sorry should be <a href=\\\"#\\\" data-vss-mention=\\\"version:2.0,d3e8ce72-5a35-689e-b035-29cd59698d84\\\">@Swathi G</a>&nbsp;</span></div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26307\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26299\"\n    },\n    {\n      \"id\": 22788,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Removed\",\n        \"System.Reason\": \"Removed from the backlog\",\n        \"System.CreatedDate\": \"2019-05-01T17:25:24.533Z\",\n        \"System.CreatedBy\": \"Ron Vincent <rovin@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:14:02.76Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"Cultural Documentation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 7.0,\n        \"System.Description\": \"<div>Write overview document that describes the many different ways to can change behavior.&nbsp;</div>\",\n        \"System.AssignedTo\": \"Ron Vincent <rovin@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/24273\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/22789\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/5f64706a-c618-4444-8fec-a037e2197618%2Fefafe663-30fa-4087-9895-1f48198f8437%2Ff9362717135f8c9c8002b95634f86baa0157a103\",\n          \"attributes\": {\n            \"authorizedDate\": \"2019-05-02T15:46:47.137Z\",\n            \"id\": \"4498760\",\n            \"resourceCreatedDate\": \"2019-05-02T15:46:47.137Z\",\n            \"resourceModifiedDate\": \"2019-05-02T15:46:47.137Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/22788\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/DoJoWhiteBeltGold/WorkItems/Task.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 26301,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-14T15:34:33.83Z\",\n        \"System.CreatedBy\": \"Aakanksha . <aak@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:18:57.543Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"Update Code Behind for Checkin.aspx.cs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Aakanksha . <aak@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": \"<div><span>This backlog should be the epic/features/user stories that students should do in the classroom, nothing else.&nbsp; <a href=\\\"#\\\" data-vss-mention=\\\"version:2.0,cb9715f6-e4a0-6958-99d4-f54dba591bb5\\\">@Aakanksha .</a>&nbsp;</span></div>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26300\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/26301\"\n    },\n    {\n      \"id\": 24273,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Removed\",\n        \"System.Reason\": \"Removed from the backlog\",\n        \"System.CreatedDate\": \"2019-05-06T15:26:45.083Z\",\n        \"System.CreatedBy\": \"Ron Vincent <rovin@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:14:22.657Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"Write marchdown document on Mindset\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/22788\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/24273\"\n    },\n    {\n      \"id\": 22789,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"DevOps-Dojo\",\n        \"System.TeamProject\": \"DevOps-Dojo\",\n        \"System.IterationPath\": \"DevOps-Dojo\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Removed\",\n        \"System.Reason\": \"Removed from the backlog\",\n        \"System.CreatedDate\": \"2019-05-01T17:28:14.757Z\",\n        \"System.CreatedBy\": \"Ron Vincent <rovin@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-05-14T17:14:58.813Z\",\n        \"System.ChangedBy\": \"Kan Tang <kantan@microsoft.com>\",\n        \"System.Title\": \"Write Markdown document for Culture\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Ron Vincent <rovin@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/22788\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/5f64706a-c618-4444-8fec-a037e2197618%2Fefafe663-30fa-4087-9895-1f48198f8437%2F6004190f3f7fc122235f66dbd3609b55269b1d6d\",\n          \"attributes\": {\n            \"authorizedDate\": \"2019-05-02T15:30:10.673Z\",\n            \"id\": \"4498707\",\n            \"resourceCreatedDate\": \"2019-05-02T15:30:10.673Z\",\n            \"resourceModifiedDate\": \"2019-05-02T15:30:10.673Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/5f64706a-c618-4444-8fec-a037e2197618%2Fefafe663-30fa-4087-9895-1f48198f8437%2F1a1a86af4a46684f3a7e8d804c2b2b594c1919c6\",\n          \"attributes\": {\n            \"authorizedDate\": \"2019-05-02T15:53:00.753Z\",\n            \"id\": \"4498783\",\n            \"resourceCreatedDate\": \"2019-05-02T15:53:00.753Z\",\n            \"resourceModifiedDate\": \"2019-05-02T15:53:00.753Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/servicescode/_apis/wit/workItems/22789\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/EndpointKeyConfig.json",
    "content": "{\n  \"keys\": [ \"ConnectedServiceName\", \"kubernetesServiceEndpoint\", \"dockerRegistryEndpoint\", \"azureSubscriptionEndpoint\", \"OctoConnectedServiceName\", \"ConnectedServiceNameARM\", \"deploymentGroupEndpoint\", \"defaultValue\", \"azureContainerRegistry\", \"connectionOverSsh\", \"connectedServiceNameARM\" ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Events.json",
    "content": "{\n  \"vse2017training\": \"Please use this link if you are following the demo scripts for the Mobile DevOps demo created for the <b>Visual Studio Enterprise 2017 World Wide Sales Training</b>. We recommend that you use the <b>devops-mobile.visualstudio.com</b> account as the account is pre-configured with agents necessary for building iOS and Android applications. Please see the link provided above on how you can create a Personal Access Token (PAT).<br/><br/> If you are not following the VSE 2017 training or want to try other templates, <a href='/' target='_blank'>please use this link</a>\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/BuildDefinitions/Bicep-Migration-Pipeline.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"src/bicep/azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/IaC%20Migration\",\n      \"fullName\": \"IaC Migration\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$IaC Migration$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$IaC Migration$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"IaC Migration\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/IaC%20Migration\",\n    \"defaultBranch\": \"refs/heads/main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Bicep-Migration-Pipeline\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/BuildDefinitions/Prod-Migration-Wave-Pipeline.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"src/prod-migration/migration-pipeline.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/IaC%20Migration\",\n      \"fullName\": \"IaC Migration\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$IaC Migration$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$IaC Migration$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"IaC Migration\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/IaC%20Migration\",\n    \"defaultBranch\": \"refs/heads/main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Prod-Migration-Wave-Pipeline\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/BuildDefinitions/Test-Migration-Pipeline.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"src/test-migration/testing-pipeline.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/IaC%20Migration\",\n      \"fullName\": \"IaC Migration\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$IaC Migration$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$IaC Migration$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"IaC Migration\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/IaC%20Migration\",\n    \"defaultBranch\": \"refs/heads/main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"Test-Migration-Pipeline\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"amillerb/fta-live-devops-iac-migration-src\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/ImportSourceCode/IaC Migration.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://github.com/amillerb/fta-live-devops-iac-migration-src\"\n    },\n    \"serviceEndpointId\": \"$GitHub_fafc3091$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Redeployment and Rehosting of Migration Waves\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Migration\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Testing\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"TestTemplate\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",  \n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/ServiceEndpoints/GitHub-fafc3095-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_fafc3095\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/amillerb/fta-live-devops-iac-migration-src\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/ServiceEndpoints/IaC-Migration-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_fafc3091\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/amillerb/fta-live-devops-iac-migration-src\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"b35fbdee-8699-489c-ac8e-6aa5e10be6f8\",\n    \"name\": \"TestTemplate Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/Teams/TestTemplate Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/Teams/TestTemplate Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/Teams/TestTemplate Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/Teams/TestTemplate Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/Teams/TestTemplate Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": false,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/VariableGroups/VariableGroup.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"variables\": {\n        \"defaultSubnetCIDR\": {\n          \"value\": \"<address_range>\"\n        },\n        \"defaultSubnetName\": {\n          \"value\": \"<subnet_name>\"\n        },\n        \"location\": {\n          \"value\": \"<region>\"\n        },\n        \"resourceGroupName\": {\n          \"value\": \"<rg_name>\"\n        },\n        \"serviceConnectionName\": {\n          \"value\": \"<service_principal_name>\"\n        },\n        \"subnetName\": {\n          \"value\": \"<additional_subnet_name>\"\n        },\n        \"subscription\": {\n          \"value\": \"<subscriptionId>\"\n        },\n        \"virtualNetworkName\": {\n          \"value\": \"<migration_vnet_name>\"\n        },\n        \"vnetCIDR\": {\n          \"value\": \"<vnet_address_range>\"\n        }\n      },\n      \"id\": \"5\",\n      \"type\": \"Vsts\",\n      \"name\": \"bicepPipelineVariables - Template\",\n      \"isShared\": false\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/WorkItems/Epic.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 30,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:30.903Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:30.903Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1 - Redeployment/Rehosting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"1 - Redeployment/Rehosting\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/51\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/50\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/30\"\n    },\n    {\n      \"id\": 31,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:31.197Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:31.197Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2 - Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"2 - Testing\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/54\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/31\"\n    },\n    {\n      \"id\": 32,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:31.483Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:31.483Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3 - Migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"3 - Migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/58\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/57\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/56\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/32\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/WorkItems/Task.json",
    "content": "{\n  \"count\": 22,\n  \"value\": [\n    {\n      \"id\": 33,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:31.74Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:44:37.397Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.1.1 - Complete Discovery for Migration Environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<ul><li><span style=\\\"\\\">The&nbsp;</span><a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/main/content/migration/server-migration/scan.md\\\" style=\\\"\\\">discovery&nbsp;</a><span style=\\\"\\\">is completed for the scoped VMs</span><br> </li><li style=\\\"box-sizing:border-box;\\\">The&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/main/content/migration/server-migration/assess.md\\\" style=\\\"box-sizing:border-box;text-decoration:underline;cursor:pointer;\\\">assessment&nbsp;</a>for the environment is created within Azure Migrate.&nbsp;<span style=\\\"display:inline !important;\\\">Waves of migration are also defined for execution.</span> </li><li style=\\\"box-sizing:border-box;\\\">The assessment was exported as an Excel file to your local machine. </li> </ul>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/50\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/33\"\n    },\n    {\n      \"id\": 34,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:31.9Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:44:57.543Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.1.3 - Convert the XSLX Assessment into a CSV\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>On your local machine, transfer the Azure Migrate Assessment excel file to the local&nbsp;src&nbsp;folder and navigate to the folder. </div><div>Using the&nbsp;provided PowerShell script </div><div>Open a PowerShell session in terminal, navigate to the folder and run with the command: </div><pre><code><div>.\\\\convert-xlsx-to-csv.ps1 -fullFilePath &quot;&lt;file-path&gt;&quot;\\n</div></code></pre><div><span>The expected output is 2 CSV sheets from the assessments:&nbsp;All_Assessed_Machines.csv&nbsp;and&nbsp;All_Assessed_Disks.csv.</span><br> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/50\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/34\"\n    },\n    {\n      \"id\": 35,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:32.063Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:45:10.18Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.1.2 - Set up DevOps Organization and PowerShell Assets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul><li>An&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/organization-management?view=azure-devops\\\">Azure DevOps Organization</a>&nbsp;is created and linked to your subscriptions in Azure. </li><li>The&nbsp;src folder&nbsp;is cloned on your local machine. </li><li><a href=\\\"https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell?view=powershell-7.2\\\">PowerShell</a>&nbsp;and Excel are installed on your local machine. </li> </ul> </div><font face=\\\"Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\\\"><span style=\\\"font-size:14.6667px;\\\"><br></span></font><br>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/50\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/35\"\n    },\n    {\n      \"id\": 36,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:32.433Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:45:25.563Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.2.1 - Create a project in Azure DevOps\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div style=\\\"margin:0px;font-family:&quot;Segoe UI&quot;, &quot;Segoe UI Web&quot;, Arial, Verdana, sans-serif;font-size:12px;\\\"><div style=\\\"margin:0px;cursor:text;clear:both;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span lang=EN-US style=\\\"margin:0px;font-size:11pt;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"><span style=\\\"margin:0px;\\\"></span></span> </p> </div> </div> </div><div><ul><li>Create an&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/devops/repos/get-started/?view=azure-devops\\\">Azure Repos</a>&nbsp;repository within the project to use for hosting the files from the&nbsp;src folder&nbsp; </li><ul><li>Here is where you will also add the two CSVs that were the output of the provided script,&nbsp;All_Assessed_Machines.csv&nbsp;and&nbsp;All_Assessed_Disks.csv&nbsp;into the repository within Azure Repos. </li> </ul><li>Create an&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/devops/pipelines/get-started/pipelines-get-started?view=azure-devops\\\">Azure Pipeline</a>&nbsp;where it is sourced from the Azure Repo that hosts the templates. </li> </ul> </div><div><div style=\\\"margin:0px;font-family:&quot;Segoe UI&quot;, &quot;Segoe UI Web&quot;, Arial, Verdana, sans-serif;font-size:12px;\\\"><div style=\\\"margin:0px;cursor:text;clear:both;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span style=\\\"margin:0px;font-size:11pt;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"></span> </p> </div> </div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/51\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/36\"\n    },\n    {\n      \"id\": 37,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:32.597Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:33:00.393Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.2.2 - Azure DevOps Project Settings Configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul><li>Create&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/devops/pipelines/library/connect-to-azure?view=azure-devops#:~:text=In%20TFS%2c%20open%20the%20Services%20page%20from%20the%2cto%20use%20when%20referring%20to%20this%20service%20connection.\\\">a service connection</a>&nbsp;to use within your Azure DevOps environment for resource deployment purposes. </li><li>In the Azure portal, create a resource group (named based on the migration wave/app that is being deployed) within your Azure environment for your resources to be hosted in </li><ul><li>Ensure that the Service principal that is created with this service connection (with the naming convention&nbsp;&lt;organization&gt;-&lt;project-name&gt;-&lt;subscription-id&gt;) has the appropriate permissions (listed below) in order to create resources within Azure. </li><ul><li>Roles:&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/role-based-access-control/built-in-roles#virtual-machine-contributor\\\">Virtual Machine Contributor</a>,&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/role-based-access-control/built-in-roles#network-contributor\\\">Network Contributor</a> </li> </ul> </ul> </ul> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/51\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/37\"\n    },\n    {\n      \"id\": 38,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:32.917Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:45:49.483Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.2.3 - Azure DevOps Repo Setup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>This file structure will be auto created for you within the repo (can also be found under the src folder) </div><div> </div><div>Note: With the virtual machines that are created in the script, the default for Linux machines are Ubuntu OS. </div><p dir=auto style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;color:rgb(36, 41, 47);font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;font-size:16px;text-align:start;\\\"> </p><p dir=auto style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\"> </p><p> </p><p dir=auto style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:16px;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\">Details: </p><ul dir=auto style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px !important;font-family:-apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Helvetica, Arial, sans-serif, &quot;Apple Color Emoji&quot;, &quot;Segoe UI Emoji&quot;;\\\"><li style=\\\"box-sizing:border-box;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">All_Assessed_Machines.csv</code><span>&nbsp;</span>and<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">All_Assessed_Disks.csv</code>: CSV files extracted from Azure Migrate Assessment excel file </li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">scripts</code>: folder to store powershell files for executing different test and validation scripts<blockquote style=\\\"box-sizing:border-box;margin:0px 0px 16px;padding:0px 1em;\\\"><p dir=auto style=\\\"box-sizing:border-box;margin-top:0px;margin-bottom:0px;\\\">Note: Test scripts are to be developed based on needs for your migration environment. (Recommendation is to develop them in PowerShell) </p></blockquote> </li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">pipeline-script.ps1</code>: script that deploys compute resources </li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">testing</code><span>&nbsp;</span>folder: used for test migration purposes<ul dir=auto style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">testing-pipeline.yml</code>: file for testing in an isolated or migration VNet </li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">testing-variables.yml</code>: variables used in powershell and pipeline yaml </li> </ul> </li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">rehost</code><span>&nbsp;</span>folder: used for rehosting migration resources<ul dir=auto style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">azure-pipeline.yml</code>: file for rehosting VMs in a specified migration VNet </li><li style=\\\"box-sizing:border-box;margin-top:0.25em;\\\"><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">variables.yml</code>: variables used in powershell and pipeline yaml<ul dir=auto style=\\\"box-sizing:border-box;padding-left:2em;margin-top:0px;margin-bottom:0px;\\\"><li style=\\\"box-sizing:border-box;\\\">Manually populate the<span>&nbsp;</span><code style=\\\"box-sizing:border-box;font-family:ui-monospace, SFMono-Regular, &quot;SF Mono&quot;, Menlo, Consolas, &quot;Liberation Mono&quot;, monospace;font-size:13.6px;padding:0.2em 0.4em;margin:0px;border-radius:6px;\\\">variables.yml</code><span>&nbsp;</span>using CSV recommended values and what is expected in Azure. </li> </ul> </li> </ul> </li> </ul><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/51\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/38\"\n    },\n    {\n      \"id\": 40,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:33.573Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:33.573Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.3.1 - Set up variables needed for the CI/CD pipeline in a variables.yml file based on the environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"1.3.1 - Set up variables needed for the CI/CD pipeline in a variables.yml file based on the environment\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/40\"\n    },\n    {\n      \"id\": 41,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:33.86Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:33.86Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.3.2 - Example Pipeline Stages for Redeployment/Rehosting of Migration Waves\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul><ul><li style=\\\"cursor:text;clear:both;font-size:11pt;font-family:Calibri, Calibri_MSFontService, sans-serif;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span lang=EN-US style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"><span style=\\\"margin:0px;\\\">Initialize Redeployment of Servers</span></span><span style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\">&nbsp;</span></p></li><ul><li style=\\\"cursor:text;clear:both;font-size:11pt;font-family:Calibri, Calibri_MSFontService, sans-serif;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span lang=EN-US style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"><span style=\\\"margin:0px;\\\">Validate the Migration Pre-requisites</span></span><span style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\">&nbsp;</span></p></li><li style=\\\"cursor:text;clear:both;font-size:11pt;font-family:Calibri, Calibri_MSFontService, sans-serif;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span lang=EN-US style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"><span style=\\\"margin:0px;\\\">Initialize the Redeployment utilizing input parameters (CSV,<span>&nbsp;</span></span><span style=\\\"margin:0px;\\\">variables.yml</span><span style=\\\"margin:0px;\\\">)</span></span><span style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\">&nbsp;</span></p></li></ul><li style=\\\"cursor:text;clear:both;font-size:11pt;font-family:Calibri, Calibri_MSFontService, sans-serif;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span lang=EN-US style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"><span style=\\\"margin:0px;\\\">Dry Run</span></span><span style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\">&nbsp;</span></p></li><ul><li style=\\\"cursor:text;clear:both;font-size:11pt;font-family:Calibri, Calibri_MSFontService, sans-serif;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span lang=EN-US style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"><span style=\\\"margin:0px;\\\">Ensure that all the appropriate constructs are<span>&nbsp;</span></span><span style=\\\"margin:0px;\\\">in the environment</span></span><span style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\">&nbsp;</span></p></li></ul><li style=\\\"cursor:text;clear:both;font-size:11pt;font-family:Calibri, Calibri_MSFontService, sans-serif;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span lang=EN-US style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"><span style=\\\"margin:0px;\\\">Start<span>&nbsp;</span></span><span style=\\\"margin:0px;\\\">D</span><span style=\\\"margin:0px;\\\">eployment of Servers</span></span><span style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\">&nbsp;</span></p></li><li style=\\\"cursor:text;clear:both;font-size:11pt;font-family:Calibri, Calibri_MSFontService, sans-serif;\\\"><p style=\\\"margin:0px;font-weight:normal;color:windowtext;text-align:left;\\\"><span lang=EN-US style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\"><span style=\\\"margin:0px;\\\">Validation of Environment&nbsp;</span></span><span style=\\\"margin:0px;font-family:Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif;\\\">&nbsp;</span></p></li></ul></ul><br></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/41\"\n    },\n    {\n      \"id\": 42,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:34.043Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:43:46.223Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.1.1 - Testing Pre-Requisites - From Redeployment/Rehosting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>To get started, the assumption is the following: </div><div><ul><li>The&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/main/content/migration/server-migration/scan.md\\\">discovery&nbsp;</a>is completed for the scoped VMs </li><li>The&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/main/content/migration/server-migration/assess.md\\\">assessment&nbsp;</a>for the environment is created within Azure Migrate. </li><li>The assessment is the source for where the VMs in the pipeline are created. Please ensure that only the VMs that are scoped for the test environment are in the assessment. Please manually omit VMs not needed in the deployment. </li><li>The assessment was exported as an Excel file to your local machine. </li><li>An&nbsp;<a href=\\\"https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/organization-management?view=azure-devops\\\">Azure DevOps Organization</a>&nbsp;is created and linked to your subscription in Azure. </li><li>The&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/alexandram-migration-devops-iac/content/compute-infra/src\\\">src folder</a>&nbsp;is cloned on your local machine. </li><li><a href=\\\"https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell?view=powershell-7.2\\\">PowerShell</a>&nbsp;and Excel are installed on your local machine. </li> </ul> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/42\"\n    },\n    {\n      \"id\": 43,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:34.24Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:42:57.857Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.1.2 - Isolated VNet Pre-Migration Tasks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Please refer to the</span><span>&nbsp;</span><a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/main/content/migration/server-migration/testing.md#1-pre--post--migration-activities-defined\\\">Pre-Migration and Post-Migration Activities</a><span>&nbsp;</span><span>page that should be defined before executing the test pipeline. General best practices when preparing for test migration:</span><br> </div><div><ul><li><b>Isolated VNet</b> </li><ul><li>Define parameters needed for an isolated VNet implementation (i.e. CIDR block, NSG Ports that will open on the test subnet, etc.). </li><li>Test the connectivity in the isolated (<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/main/content/migration/server-migration/testing.md#23-identify-target-vnets-tests-and-migration-workflow\\\">Guidance for identifying target VNet</a>) </li><li>Ensure that appropriate stakeholders are given the least privilege permissions to execute the pipelines. </li><li>Define Test Migration approach through waves of execution </li><ul><li>Understand dependencies to create migration waves/groups. </li><li>Define test cases. </li><li>Ensure Rollback plan is in place for the re-hosted VMs. </li><li>Make sure that test data is consistent with the data used in production. </li> </ul><li>Clean up test resources that were deployed in an isolated VNet. </li> </ul> </ul> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/43\"\n    },\n    {\n      \"id\": 44,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:34.41Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:06:05.93Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.1.3 - Production VNet Pre-Migration Tasks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><b>Production VNet</b> </div><div><ul><li>Define parameters needed for the production VNet </li><li>Plan a maintenance window to shut down on-prem workload for test migration, set up a VNet with the parameters needed for production workloads to move to Azure </li><li>Define test cases for the environment </li><li>Choose non-prod VM Migration group to start the test functionality with. </li><li>Perform tests on a smaller VM waves of the workloads first. </li><li>Ensure Rollback plan is in place for the re-hosted VMs. </li> </ul> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/44\"\n    },\n    {\n      \"id\": 45,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:34.573Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:05:44.28Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.2.1 - Input Parameters for Test VNet Variables\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Input parameters your environment using the&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/alexandram-migration-devops-iac/content/compute-infra/src/testing/testing-variables.yml\\\">testing-variables.yml</a>&nbsp;as a template.<br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/54\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/45\"\n    },\n    {\n      \"id\": 46,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:34.733Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:34.733Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.3.1 - Block a maintenance window when executing the CI/CD Pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"2.3.1 - Block a maintenance window when executing the CI/CD Pipeline\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/46\"\n    },\n    {\n      \"id\": 47,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:34.997Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:11:09.483Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3.1.1 - Pipeline Stages to Consider for Migration Waves\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><div>Please refer to the&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/alexandram-migration-devops-iac/content/compute-infra/server-migration/devops-iac-redeployment.md\\\">Milestone: Redeployment/Rehosting of Migration Waves</a>&nbsp;page in order to have the correct setup for this deployment. </div><div><ul><li>Reference Migration Tasks:&nbsp;<a href=\\\"https://github.com/Azure/fta-liftandshift-dcmigration/blob/main/doc/migration.md\\\">Milestone: Wave Migration and Post Go-Live</a> </li><li>Note: The assessment CSV acts as the source of deployment information for the migration wave execution via the Azure Pipeline. Please ensure that once the CSVs are created that the unscoped VMs from the<span style=\\\"\\\">&nbsp;</span><span style=\\\"\\\">All_Assessed_Machines.csv</span><span style=\\\"\\\">&nbsp;</span><span style=\\\"\\\">and</span><span style=\\\"\\\">&nbsp;</span><span style=\\\"\\\">All_Assessed_Disks.csv</span><span style=\\\"\\\">&nbsp;</span><span style=\\\"\\\">files are manually omitted.</span> </li> </ul> </div><div>Pipeline Stages for Migration utilizing the provided&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/alexandram-migration-devops-iac/content/compute-infra/src/rehost/migration-pipeline.yml\\\">template</a>. </div><div><ul><li>Setup Cutover Window within the pipeline </li><ul><li>Ensure that there is a backup of the servers before cutover </li> </ul><li>Initialize Migration </li><ul><li>Declare input parameters and modify Target Subscription </li> </ul><li>Start Migration </li><ul><li>Migrate via pipeline specifications in migration waves </li> </ul><li>Have rollback plan ready for execution if needed (send traffic to previous server) </li> </ul> </div> </div><div><font face=\\\"Calibri, Calibri_EmbeddedFont, Calibri_MSFontService, sans-serif\\\"><span style=\\\"font-size:14.6667px;\\\"><br></span></font> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/56\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/47\"\n    },\n    {\n      \"id\": 48,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:35.263Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:15:11.723Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3.2.1 - Setting variables for Migration Waves\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Based on the migration wave, manually fill in variables needed for the CI/CD pipeline, using the&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/alexandram-migration-devops-iac/content/compute-infra/src/rehost/variables.yml\\\">variables.yml</a>&nbsp;file as a template. </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/57\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/48\"\n    },\n    {\n      \"id\": 49,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:35.573Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:17:34.297Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3.3.1 - Post Migration Activities (optional)\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul><li>Validate connections to the VMs that were done in the Testing Phase now that the cutover is complete </li><li>BCDR Considerations </li><ul><li>Backup of Servers </li><ul><li>Can be executed via Azure Policy with Azure Backup: </li><ul><li><a href=\\\"https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/deploy/azure-policy?view=azure-devops\\\">DevOps Task</a> </li><li><a href=\\\"https://docs.microsoft.com/en-us/azure/backup/backup-azure-auto-enable-backup#policy-4---preview-configure-backup-on-vms-with-a-given-tag-to-a-new-recovery-services-vault-with-a-default-policy\\\">Policy</a> </li> </ul> </ul><li>Enable Azure Site Recovery for Disaster Recovery </li><ul><li><a href=\\\"https://docs.microsoft.com/en-us/azure/site-recovery/azure-to-azure-tutorial-enable-replication\\\">Tutorial to set up Azure VM disaster recovery with Azure Site Recovery</a> </li> </ul> </ul><li>Deploy Azure Disk Encryption to help secure disks and keep data safe from theft and unauthorized access </li><li>Maintenance of Shared Image Gallery with Azure DevOps for the releases of New Images/Image Versions </li><li>Monitoring of Cloud Assets Through Azure Monitor </li><ul><li><a href=\\\"https://docs.microsoft.com/en-us/azure/azure-monitor/visualize/workbooks-data-sources\\\">Workbooks</a> </li><ul><li><a href=\\\"https://github.com/microsoft/Application-Insights-Workbooks/tree/master/Workbooks\\\">Library of Application Insights Workbooks</a> </li> </ul> </ul> </ul> </div><div> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/58\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/49\"\n    },\n    {\n      \"id\": 181,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2022-04-04T18:01:13.59Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-22T14:38:56.87Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.1.4 - Testing PowerShell Scripts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create the appropriate scripts that correlate to the&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/main/content/compute-infra/server-migration/testing.md#2-migration-plan-definition\\\">types of tests</a>&nbsp;needed for your deployment: </div><div><ul><li>Smoke Test </li><li>UAT </li><li>Failover </li> </ul> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/53\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/181\"\n    },\n    {\n      \"id\": 182,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2022-04-04T18:03:06.473Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:05:38.86Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.2.2 - Create a Testing Pipeline Yaml Workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create a&nbsp;testing-pipeline.yml&nbsp;for resource execution using the provided&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/alexandram-migration-devops-iac/content/compute-infra/src/testing/testing-pipeline.yml\\\">template</a>&nbsp;as a baseline. Below are a description of the tasks: </div><div>Pipeline Tasks: </div><div><ul><li>Start Test Migration </li><ul><li>Create isolated VNet (optional) </li><li>Within Powershell script: </li><ul><li>Create the Migration Group Compute needed </li> </ul> </ul><li>Validate Test Environment (manually or using test scripts) </li><ul><li>Run Testing Scripts (if applicable) </li><ul><li>Smoke Test </li><li>UAT </li><li>Failover </li> </ul> </ul><li>Clean up Test Resources </li> </ul> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/54\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/182\"\n    },\n    {\n      \"id\": 183,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2022-04-04T18:04:03.2Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:05:14.013Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.2.3 - Validate Target VNet Tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul><li>If execute the isolated VNet Testing Pipeline, validate the pipeline has ran through the necessary tasks above. </li><li>If utilizing the final Migration VNet, set the maintenance window and prepare migration waves for execution using the sample pipeline&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/alexandram-migration-devops-iac/content/compute-infra/src/testing/testing-pipeline.yml\\\">template</a>&nbsp;for migration. </li><li>If any of the tests fail within a pipeline stage, execute the Rollback plan for the migration wave. </li> </ul> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/54\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/183\"\n    },\n    {\n      \"id\": 184,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2022-04-04T18:04:29.937Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:05:06.377Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.2.4 - Post Test Migration Tasks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul><li>Validate VM migration was successful and that applications are functioning as expected </li><ul><li>Perform capacity testing to ensure that functioning properly in production </li> </ul> </ul> </div><div><br> </div><div>Expected Results </div><div><ul><li>VNet created with specified parameters for testing its functionality before full migration of servers to Azure </li><li>Standardized pipeline to utilize for deploying compute resources in Azure </li><li>Pipeline provides option for executing tests within Azure on the testing resources that are deployed </li><li>Pipeline performs clean up of test resources after validation of functionality </li> </ul> </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/54\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/184\"\n    },\n    {\n      \"id\": 185,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2022-04-04T18:15:56.913Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:15:56.913Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3.2.2 - Migration Pipeline Creation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Create a&nbsp;<a href=\\\"https://github.com/Azure/FTALive-Sessions/blob/alexandram-migration-devops-iac/content/compute-infra/src/rehost/migration-pipeline.yml\\\">migration-pipeline.yml</a>&nbsp;for resource execution using the templates as a starter pipeline. </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/57\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/185\"\n    },\n    {\n      \"id\": 186,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2022-04-04T18:16:26.607Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:16:26.607Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3.2.3 - Migration Pipeline Execution\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>Execute the pipeline for the appropriate migration wave and environment. </div><div><br> </div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/57\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/186\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/FA-IAC-migration/WorkItems/User Story.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 50,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:35.74Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:35.74Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.1 - Redeployment/Rehosting Pre-Requisites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"1.1 - Redeployment/Rehosting Pre-Requisites\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/35\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/30\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/34\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/33\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/50\"\n    },\n    {\n      \"id\": 51,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Redeployment and Rehosting of Migration Waves\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:35.893Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T17:48:20.953Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"1.2 - Redeployment/Rehosting Tools\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/36\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/38\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/37\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/30\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/51\"\n    },\n    {\n      \"id\": 53,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:36.36Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:36.36Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.1 - Pre-Requisites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"2.1 - Pre-Requisites\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/42\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/43\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/181\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/31\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/44\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/53\"\n    },\n    {\n      \"id\": 54,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Testing\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:36.54Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:36.54Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"2.2 - Pipeline Execution for Testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"2.2 - Pipeline Execution for Testing\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/183\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/45\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/182\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/184\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/31\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/54\"\n    },\n    {\n      \"id\": 56,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:36.857Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:36.857Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3.1 - Pre-Migration Activities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"3.1 - Pre-Migration Activities\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/32\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/47\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/56\"\n    },\n    {\n      \"id\": 57,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:37.06Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2021-09-27T14:58:37.06Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3.2 - Pipeline Execution for Migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"3.2 - Pipeline Execution for Migration\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/186\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/48\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/185\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/32\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/57\"\n    },\n    {\n      \"id\": 58,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Migration\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-27T14:58:37.313Z\",\n        \"System.CreatedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.ChangedDate\": \"2022-04-04T18:16:46.567Z\",\n        \"System.ChangedBy\": \"Alexandra Miller-Browne <alexandram@microsoft.com>\",\n        \"System.Title\": \"3.3 - Post Go-Live\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"3.3 - Recommendations for Migration Phase\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/49\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/32\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/alexandram/_apis/wit/workItems/58\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/BoardColumns.json",
    "content": "[\n  {\n    \"name\": \"New\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"User Story\": \"New\",\n      \"Bug\": \"New\"\n    },\n    \"columnType\": \"incoming\"\n  },\n  {\n    \"name\": \"Active\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"User Story\": \"Active\",\n      \"Bug\": \"Active\"\n    },\n    \"isSplit\": true,\n    \"description\": \"\",\n    \"columnType\": \"inProgress\"\n  },\n  {\n    \"name\": \"Resolved\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"User Story\": \"Resolved\",\n      \"Bug\": \"Resolved\"\n    },\n    \"isSplit\": false,\n    \"description\": \"\",\n    \"columnType\": \"inProgress\"\n  },\n  {\n    \"name\": \"Closed\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"User Story\": \"Closed\",\n      \"Bug\": \"Closed\"\n    },\n    \"columnType\": \"outgoing\"\n  }\n]\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/BugfromTemplate.json",
    "content": "{\n  \"count\": 0,\n  \"value\": null,\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/BuildDefinitions/ContosoAirBuild.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Bug\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files to:  $(build.artifactstagingdirectory)/Templates\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"deployment\",\n              \"Contents\": \"*.json\",\n              \"TargetFolder\": \" $(build.artifactstagingdirectory)/Templates\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"npm custom\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"fe47e961-9fa8-4106-8639-368c022d43ad\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"custom\",\n              \"workingDir\": \"\",\n              \"verbose\": \"false\",\n              \"customCommand\": \"install --production\",\n              \"customRegistry\": \"useNpmrc\",\n              \"customFeed\": \"\",\n              \"customEndpoint\": \"\",\n              \"publishRegistry\": \"useExternalRegistry\",\n              \"publishFeed\": \"\",\n              \"publishEndpoint\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Archive $(Build.SourcesDirectory)\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"d8b84976-e99a-4b86-b885-4849694435b0\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"rootFolderOrFile\": \"$(Build.SourcesDirectory)\",\n              \"includeRootFolder\": \"false\",\n              \"archiveType\": \"zip\",\n              \"tarCompression\": \"gz\",\n              \"archiveFile\": \"$(Build.ArtifactStagingDirectory)/ContosoAir-$(Build.BuildId).zip\",\n              \"replaceExistingArchive\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact: drop\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.ArtifactStagingDirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"windows-2019\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://github.com/Microsoft/ContosoAir.git\",\n      \"fullName\": \"Microsoft/ContosoAir\",\n      \"defaultBranch\": \"master\",\n      \"connectedServiceId\": \"$ContosoAir$\",\n      \"isPrivate\": \"True\",\n      \"isFork\": \"False\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkxNTQxODc1NjI=\",\n      \"hasAdminPermissions\": \"True\",\n      \"safeOwnerId\": \"6154722\",\n      \"safeOwnerName\": \"Microsoft\",\n      \"safeRepository\": \"Microsoft/ContosoAir\",\n      \"ownerIsAUser\": \"False\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"cleanOptions\": \"0\",\n      \"fetchDepth\": \"0\",\n      \"gitLfsSupport\": \"false\",\n      \"reportBuildStatus\": \"true\",\n      \"skipSyncSource\": \"false\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"labelSources\": \"0\",\n      \"definitionId\": \"1\",\n      \"branch\": \"master\"\n    },\n    \"id\": \"https://github.com/Microsoft/ContosoAir.git\",\n    \"type\": \"git\",\n    \"name\": \"Microsoft/ContosoAir\",\n    \"url\": \"https://github.com/Microsoft/ContosoAir.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"ContosoAirWebCI\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/EnableEpic.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/EpicfromTemplate.json",
    "content": "{\n  \"count\": 0,\n  \"value\": null,\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"ARM Outputs\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'><b>ARM Outputs</b></a>\",\n      \"publisherId\": \"keesschollaart\",\n      \"extensionId\": \"arm-outputs\",\n      \"publisherName\": \"Kees Schollaart\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/keesschollaart.arm-outputs/license' target='_blank'>License Terms</a>\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/FeaturefromTemplate.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 5,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:48:56.777Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T22:48:57.12Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Customer Profile\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/13\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:48:45.887Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T22:48:46.213Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Flight listing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/11\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 19,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T23:04:04.823Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:04:09.027Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Security Policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/18\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/17\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/16\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/19\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:47:50.883Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T22:47:51.323Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Package Recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/12\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:47:37.323Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T22:47:37.557Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Itinerary listing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/10\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/9\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/15\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 1,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:46:55.29Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T22:46:55.773Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Online ticket booking\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/7\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/14\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/6\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/8\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/1\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"ContosoAir\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/PBIfromTemplate.json",
    "content": "{\n  \"count\": 0,\n  \"value\": null,\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/ProjectTemplate.json",
    "content": "{\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"UserStoriesfromTemplate.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"BoardRowsFromTemplate.json\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/ReleaseDefinitions/ContosoAirRelease.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 5,\n  \"description\": null,\n  \"isDeleted\": false,\n  \"variables\": {\n    \"location\": {\n      \"value\": \"westus2\"\n    },\n    \"resourcegroup\": {\n      \"value\": \"contosoair\",\n      \"isSecret\": false\n    },\n    \"web\": {\n      \"value\": \"contosoair$UUID$\",\n      \"isSecret\": false\n    }\n  },\n  \"variableGroups\": [\n\n  ],\n  \"environments\": [\n    {\n      \"name\": \"Stage 1\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {\n\n      },\n      \"variableGroups\": [\n\n      ],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 4\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 5\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 6\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": [\n\n              ]\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [\n\n            ],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {\n\n            }\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {\n\n              },\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Deployment:Create Or Update Resource Group action on $(resourcegroup)\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {\n\n              },\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(resourcegroup)\",\n                \"location\": \"West US\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/ContosoAir-CI/drop/Templates/azuredeploy.json\",\n                \"csmParametersFile\": \"$(System.DefaultWorkingDirectory)/ContosoAir-CI/drop/Templates/azuredeploy.parameters.json\",\n                \"overrideParameters\": \"-p_site_web_name $(web) -p_environment dev77\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"runAgentServiceAsUser\": \"false\",\n                \"userName\": \"\",\n                \"password\": \"\",\n                \"outputVariable\": \"\",\n                \"deploymentOutputs\": \"web\"\n              }\n            },\n            {\n              \"environment\": {\n\n              },\n              \"taskId\": \"584bcff2-3353-4f11-872b-6ba01267a972\",\n              \"version\": \"4.*\",\n              \"name\": \"ARM Outputs\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {\n\n              },\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceNameSelector\": \"\",\n                \"ConnectedServiceNameARM\": \"\",\n                \"resourceGroupName\": \"$(resourcegroup)\",\n                \"prefix\": \"\",\n                \"outputNames\": \"\",\n                \"whenLastDeploymentIsFailed\": \"fail\",\n                \"deploymentNameFilter\": \"\"\n              }\n            },\n            {\n              \"environment\": {\n\n              },\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Deploy Azure App Service\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {\n\n              },\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppKind\": \"$(Parameters.WebAppKind)\",\n                \"WebAppName\": \"$(Parameters.WebAppName)\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"ImageSource\": \"$(Parameters.ImageSource)\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"$(Parameters.DockerNamespace)\",\n                \"DockerRepository\": \"$(Parameters.DockerRepository)\",\n                \"DockerImageTag\": \"$(Build.BuildId)\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/ContosoAir-CI/drop/ContosoAir*.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"$(Parameters.RuntimeStack)\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \"\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [\n\n      ],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [\n\n      ],\n      \"currentRelease\": {\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {\n        \"inputs\": [\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n\n            },\n            \"properties\": {\n\n            },\n            \"name\": \"\",\n            \"label\": \"Azure subscription\",\n            \"defaultValue\": \"\",\n            \"required\": true,\n            \"type\": \"connectedService:AzureRM\",\n            \"helpMarkDown\": \"Select the Azure Resource Manager subscription for the deployment.\",\n            \"visibleRule\": \"\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n              \"app\": \"Web App\",\n              \"applinux\": \"Linux App\",\n              \"functionapp\": \"Function App\",\n              \"api\": \"API App\",\n              \"mobileapp\": \"Mobile App\"\n            },\n            \"properties\": {\n              \"EditableOptions\": \"false\"\n            },\n            \"name\": \"WebAppKind\",\n            \"label\": \"App type\",\n            \"defaultValue\": \"app\",\n            \"type\": \"pickList\",\n            \"helpMarkDown\": \"\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n\n            },\n            \"properties\": {\n              \"EditableOptions\": \"True\"\n            },\n            \"name\": \"WebAppName\",\n            \"label\": \"App service name\",\n            \"defaultValue\": \"$(web)\",\n            \"required\": true,\n            \"type\": \"pickList\",\n            \"helpMarkDown\": \"Enter or select the name of an existing Azure App Service.\",\n            \"visibleRule\": \"\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n              \"Registry\": \"Container Registry\",\n              \"Builtin\": \"Built-in Image\"\n            },\n            \"properties\": {\n\n            },\n            \"name\": \"ImageSource\",\n            \"label\": \"Image Source\",\n            \"defaultValue\": \"Registry\",\n            \"required\": true,\n            \"type\": \"pickList\",\n            \"helpMarkDown\": \"App Service on Linux offers two different options to publish your application <br/> Custom image deployment or App deployment with a built-in platform image. [Learn More](https://go.microsoft.com/fwlink/?linkid=862490)\",\n            \"visibleRule\": \"WebAppKind = applinux\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n\n            },\n            \"properties\": {\n\n            },\n            \"name\": \"DockerNamespace\",\n            \"label\": \"Registry or Namespace\",\n            \"defaultValue\": \"\",\n            \"required\": true,\n            \"type\": \"string\",\n            \"helpMarkDown\": \"A globally unique top-level domain name for your specific registry or namespace.<br/> Note: Fully qualified image name will be of the format: '<b>`<registry or namespace`></b>/`<repository`>:`<tag`>'. For example, '<b>myregistry.azurecr.io</b>/nginx:latest'.\",\n            \"visibleRule\": \"WebAppKind = applinux && ImageSource = Registry\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n\n            },\n            \"properties\": {\n\n            },\n            \"name\": \"DockerRepository\",\n            \"label\": \"Repository\",\n            \"defaultValue\": \"\",\n            \"required\": true,\n            \"type\": \"string\",\n            \"helpMarkDown\": \"Name of the repository where the container images are stored.<br/> Note: Fully qualified image name will be of the format: '`<registry or namespace`>/<b>`<repository`></b>:`<tag`>'. For example, 'myregistry.azurecr.io/<b>nginx</b>:latest'.\",\n            \"visibleRule\": \"WebAppKind = applinux && ImageSource = Registry\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n              \"node|4.4\": \"Node.js 4.4\",\n              \"node|4.5\": \"Node.js 4.5\",\n              \"node|6.2\": \"Node.js 6.2\",\n              \"node|6.6\": \"Node.js 6.6\",\n              \"node|6.9\": \"Node.js 6.9\",\n              \"node|6.10\": \"Node.js 6.10\",\n              \"node|6.11\": \"Node.js 6.11\",\n              \"node|8.0\": \"Node.js 8.0\",\n              \"node|8.1\": \"Node.js 8.1\",\n              \"php|5.6\": \"PHP 5.6\",\n              \"php|7.0\": \"PHP 7.0\",\n              \"dotnetcore|1.0\": \".NET Core 1.0\",\n              \"dotnetcore|1.1\": \".NET Core 1.1\",\n              \"dotnetcore|2.0\": \".NET Core 2.0\",\n              \"ruby|2.3\": \"Ruby 2.3\"\n            },\n            \"properties\": {\n\n            },\n            \"name\": \"RuntimeStack\",\n            \"label\": \"Runtime Stack\",\n            \"defaultValue\": \"\",\n            \"required\": true,\n            \"type\": \"pickList\",\n            \"helpMarkDown\": \"Select the framework and version.\",\n            \"visibleRule\": \"WebAppKind = applinux && ImageSource = Builtin\"\n          }\n        ],\n        \"dataSourceBindings\": [\n          {\n            \"dataSourceName\": \"AzureRMWebAppNamesByType\",\n            \"parameters\": {\n              \"WebAppKind\": \"$(WebAppKind)\"\n            },\n            \"endpointId\": \"$(ConnectedServiceName)\",\n            \"target\": \"WebAppName\"\n          }\n        ]\n      },\n      \"properties\": {\n\n      },\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": [\n\n        ]\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": [\n\n        ]\n      },\n      \"environmentTriggers\": [\n\n      ]\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$ContosoAirWebCI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"ContosoAirWebCI\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$ContosoAirWebCI-id$\",\n          \"name\": \"ContosoAirWebCI\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"ContosoAirWebCI\",\n      \"triggerConditions\": [\n\n      ],\n      \"triggerType\": \"artifactSource\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [\n\n  ],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"Other\"\n    }\n  },\n  \"name\": \"ContosoAir-Web-CD\",\n  \"path\": \"\\\\\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/ServiceEndpoints/ContosoAir.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"ContosoAir\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/Microsoft/ContosoAir.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/TaskfromTemplate.json",
    "content": "{\n  \"count\": 0,\n  \"value\": null,\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/Teams.json",
    "content": "[\n    {\n      \"name\": \"DB Team\",\n      \"description\": \"\"\n    },\n    {\n      \"name\": \"Web Team\",\n      \"description\": \"\"\n    }\n  ]\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/UpdateCardFields.json",
    "content": "{\n  \"cards\": {\n    \"User Story\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.IterationPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AreaPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Id\",\n        \"displayType\": \"CORE\",\n        \"displayFormat\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\",\n        \"displayType\": \"CORE\",\n        \"displayFormat\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayType\": \"CORE\",\n        \"displayFormat\": \"\",\n        \"showEmptyFields\": \"\"\n      }\n    ],\n    \"Bug\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      }\n    ]\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-ContosoAir/UserStoriesfromTemplate.json",
    "content": "{\n  \"count\": 13,\n  \"value\": [\n    {\n      \"id\": 18,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T23:00:27.933Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:05:00.28Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a sysadmin, I want to setup security rules\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/19\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/18\"\n    },\n    {\n      \"id\": 17,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2018-11-03T22:59:42.68Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:06:44.34Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a sysadmin, I should be able to create resource groups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/19\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/17\"\n    },\n    {\n      \"id\": 16,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2018-11-03T22:59:24.727Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:06:37.573Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a sysadmin, I should be able to setup Azure policies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/19\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/16\"\n    },\n    {\n      \"id\": 14,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2018-11-03T22:56:51.273Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:06:55.76Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a customer, I want to cancel my reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/1\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/14\"\n    },\n    {\n      \"id\": 8,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2018-11-03T22:50:41.447Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:07:27.09Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a customer, I want to change my reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/1\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/8\"\n    },\n    {\n      \"id\": 15,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:57:08.96Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:05:00.28Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a customer, I want to print my itinerary\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/2\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/15\"\n    },\n    {\n      \"id\": 12,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:52:16.29Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:07:03.607Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As an admin, I want to add travel packages\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/3\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/12\"\n    },\n    {\n      \"id\": 13,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:52:27.4Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:05:00.28Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As an admin, I want to view customer profile\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/5\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/13\"\n    },\n    {\n      \"id\": 11,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:51:55.65Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:05:00.28Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As an admin, I want to update flight fares\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/4\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/11\"\n    },\n    {\n      \"id\": 10,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:51:48.227Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:07:07.34Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As an admin, I want to update flight schedule\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/2\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/10\"\n    },\n    {\n      \"id\": 9,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:51:23.853Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:07:05.463Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a customer, I want to view my flight itinerary\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/2\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/9\"\n    },\n    {\n      \"id\": 7,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-11-03T22:50:24.98Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:07:11.027Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a customer, I want to view my past purchases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/1\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/7\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"ContosoAir\",\n        \"System.TeamProject\": \"ContosoAir\",\n        \"System.IterationPath\": \"ContosoAir\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2018-11-03T22:50:10.527Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-03T23:07:16.59Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a customer, I want to book tickets online\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/1\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/Contoso-Air/_apis/wit/workItems/6\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/BoardColumns.json",
    "content": "﻿[\n  {\n    \"description\": \"\",\n    \"name\": \"New\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"New\",\n      \"Bug\": \"New\"\n    },\n    \"columnType\": \"incoming\",\n    \"isSplit\": null\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Develop\",\n    \"itemLimit\": 7,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Approved\",\n      \"Bug\": \"Approved\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": true\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Build and test\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Committed\",\n      \"Bug\": \"Committed\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": true\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Done\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Done\",\n      \"Bug\": \"Done\"\n    },\n    \"columnType\": \"outgoing\",\n    \"isSplit\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/BoardRowsFromTemplate.json",
    "content": "[\n  {\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"name\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/BugfromTemplate.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 590,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"MyHealthClinic\",\n        \"System.TeamProject\": \"MyHealthClinic\",\n        \"System.IterationPath\": \"MyHealthClinic\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2017-04-26T20:53:27.273Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-04-26T21:27:15.473Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Unable to select the page layout for invoice printing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/590\"\n    },\n    {\n      \"id\": 573,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"MyHealthClinic\",\n        \"System.TeamProject\": \"MyHealthClinic\",\n        \"System.IterationPath\": \"MyHealthClinic\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2017-04-25T23:46:05.057Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-04-26T21:27:20.693Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Unable to filter by dates on the calendar\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/573\"\n    },\n    \n    {\n      \"id\": 601,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"MyHealthClinic\",\n        \"System.TeamProject\": \"MyHealthClinic\",\n        \"System.IterationPath\": \"MyHealthClinic\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2017-05-03T12:41:43.727Z\",\n        \"System.CreatedBy\": \"Srivatsa Marichi <ecanarys1@outlook.com>\",\n        \"System.ChangedDate\": \"2017-05-04T09:16:03.427Z\",\n        \"System.ChangedBy\": \"Christina Kelly <ckelly109@outlook.com>\",\n        \"System.Title\": \"Copyrights information on the home Page is not latest\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/$projectId$%2F$RepositoryId$%2F$Copyright Information is updated to latest$\",\n          \"attributes\": {\n            \"authorizedDate\": \"2017-05-03T12:43:37.88Z\",\n            \"id\": \"224766\",\n            \"resourceCreatedDate\": \"2017-05-03T12:43:37.88Z\",\n            \"resourceModifiedDate\": \"2017-05-03T12:43:37.88Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/$projectId$%2f$RepositoryId$%2f188fa9bce50fb83dcca5cff6f97eb30ffb19301e\",\n          \"attributes\": {\n            \"authorizedDate\": \"2017-05-04T09:13:33.277Z\",\n            \"id\": \"225119\",\n            \"resourceCreatedDate\": \"2017-05-04T09:13:33.277Z\",\n            \"resourceModifiedDate\": \"2017-05-04T09:13:33.277Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/601\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/BuildDefinitions/MyHealthClinic.Web.json",
    "content": "﻿{\n  \"name\": \"MyHealthClinicE2E\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Task\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+refs/heads/master\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"pollingInterval\": 0,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Install .net core 1.0.0\",\n            \"timeoutInMinutes\": 0,\n            \"retryCountOnTaskFailure\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"e213ff0f-5d5c-4791-802d-52ea3e7be1f1\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"targetType\": \"inline\",\n              \"filePath\": \"\",\n              \"arguments\": \"\",\n              \"script\": \"choco install dotnetcore --version=1.0.0\",\n              \"errorActionPreference\": \"stop\",\n              \"warningPreference\": \"default\",\n              \"informationPreference\": \"default\",\n              \"verbosePreference\": \"default\",\n              \"debugPreference\": \"default\",\n              \"failOnStderr\": \"false\",\n              \"showWarnings\": \"false\",\n              \"ignoreLASTEXITCODE\": \"false\",\n              \"pwsh\": \"false\",\n              \"workingDirectory\": \"\",\n              \"runScriptInSeparateScope\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Restore\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"DotNetCoreCLI_1\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"**/*.csproj\",\n              \"arguments\": \"\",\n              \"zipAfterPublish\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"npm install bower\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"fe47e961-9fa8-4106-8639-368c022d43ad\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"custom\",\n              \"workingDir\": \"src/MyHealth.Web\",\n              \"verbose\": \"false\",\n              \"customCommand\": \"install -g bower\",\n              \"customRegistry\": \"useNpmrc\",\n              \"customFeed\": \"\",\n              \"customEndpoint\": \"\",\n              \"publishRegistry\": \"useExternalRegistry\",\n              \"publishFeed\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"publishEndpoint\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"npm install\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"Npm_2\",\n            \"task\": {\n              \"id\": \"fe47e961-9fa8-4106-8639-368c022d43ad\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"install\",\n              \"workingDir\": \"src/MyHealth.Web\",\n              \"verbose\": \"false\",\n              \"customCommand\": \"\",\n              \"customRegistry\": \"useNpmrc\",\n              \"customFeed\": \"\",\n              \"customEndpoint\": \"\",\n              \"publishRegistry\": \"useExternalRegistry\",\n              \"publishFeed\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"publishEndpoint\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"bower install\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"Bower_3\",\n            \"task\": {\n              \"id\": \"4fa3aac0-0020-4832-9089-9979c9dd3e69\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"install\",\n              \"bowerjson\": \"src/MyHealth.Web/bower.json\",\n              \"arguments\": \"\",\n              \"bowerRuntime\": \"node_modules/bower/bin/bower\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"DotNetCoreCLI_5\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"build\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"**/*.csproj\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"zipAfterPublish\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Test\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"DotNetCoreCLI_6\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"test\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"**/*Tests/*.csproj\",\n              \"arguments\": \"--logger:trx;logfilename=TEST.xml\",\n              \"zipAfterPublish\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"refName\": \"DotNetCoreCLI_7\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"publish\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)\",\n              \"zipAfterPublish\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Test Results\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"PublishTestResults2\",\n            \"task\": {\n              \"id\": \"0b0f01ed-7dde-43ff-9cbb-e48954daf9b1\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"testRunner\": \"VSTest\",\n              \"testResultsFiles\": \"**/TEST.xml\",\n              \"searchFolder\": \"$(System.DefaultWorkingDirectory)\",\n              \"mergeTestResults\": \"true\",\n              \"testRunTitle\": \"MyHealthClinic\",\n              \"platform\": \"\",\n              \"configuration\": \"\",\n              \"publishRunAttachments\": \"true\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"CopyFiles1\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(build.sourcesdirectory)\",\n              \"Contents\": \"**/*.json\\n**/custom/**\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"PublishBuildArtifacts_8\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"windows-2022\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"labelSources\": \"0\",\n      \"reportBuildStatus\": \"true\",\n      \"fetchDepth\": \"0\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"cleanOptions\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"checkoutNestedSubmodules\": \"false\"\n    },\n    \"id\": \"$MyHealthClinic$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"MyHealthClinic\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Dashboard/Dashboard.json",
    "content": "﻿{\n    \"name\": \"Overview\",\n    \"refreshInterval\": 0,\n    \"position\": 1,\n    \"widgets\": [\n        {\n            \"name\": \"Active Bugs\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 7\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$ActiveBugs$\\\",\\\"queryName\\\":\\\"Active Bugs\\\",\\\"colorRules\\\":[{\\\"isEnabled\\\":true,\\\"backgroundColor\\\":\\\"#e60017\\\",\\\"thresholdCount\\\":1,\\\"operator\\\":\\\">=\\\"}],\\\"lastArtifactName\\\":\\\"Active Bugs\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Assigned to Me\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget.Configuration\",\n            \"isNameConfigurable\": false,\n            \"lightboxOptions\": {\n                \"width\": 900,\n                \"height\": 700,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"Work Links\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 8\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n           \n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WorkLinksWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WorkLinksWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n      {\n        \"name\": \"MyHealthClinicE2E\",\n        \"position\": {\n          \"row\": 3,\n          \"column\": 6\n        },\n        \"size\": {\n          \"rowSpan\": 1,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"name\\\":\\\"MyHealthClinicE2E\\\",\\\"id\\\":$MyHealthClinicE2E$,\\\"type\\\":2,\\\"uri\\\":\\\"vstfs:///Build/Definition/$MyHealthClinicE2E$\\\",\\\"projectId\\\":\\\"$projectId$\\\",\\\"lastArtifactName\\\":\\\"MHC.Web.CI\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 1,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n        \"isNameConfigurable\": true\n      },\n        {\n            \"name\": \"Release Definition Overview\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": \"{\\\"releaseDefinitionId\\\":1}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-releaseManagement-web.release-definition-summary-widget\",\n            \"typeId\": \"release-definition-summary-widget\",\n            \"configurationContributionId\": \"ms.vss-releaseManagement-web.release-definition-summary-widget-configuration\",\n            \"configurationContributionRelativeId\": \"release-definition-summary-widget-configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"User Stories by State\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$UserStories$\\\",\\\"title\\\":\\\"User Stories by State\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$UserStories$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"User Stories by State\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 3,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"isNameConfigurable\": true,\n            \"lightboxOptions\": {\n                \"width\": 900,\n                \"height\": 700,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"Other Links\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 8\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.OtherLinksWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.OtherLinksWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Unfinished Work\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 7\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$Unfinished Work$\\\",\\\"queryName\\\":\\\"Unfinished Work\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Unfinished Work\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"New Work Item\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 8\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget.Configuration\",\n            \"isNameConfigurable\": false\n        },\n      {\n        \"name\": \"User Stories by Assigned To\",\n        \"position\": {\n          \"row\": 4,\n          \"column\": 6\n        },\n        \"size\": {\n          \"rowSpan\": 2,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$UserStories$\\\",\\\"title\\\":\\\"User Stories by Assigned To\\\",\\\"chartType\\\":\\\"BarChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$UserStories$\\\",\\\"groupBy\\\":\\\"System.AssignedTo\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"User Stories by Assigned To\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 3,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"isNameConfigurable\": true,\n        \"lightboxOptions\": {\n          \"width\": 900,\n          \"height\": 700,\n          \"resizable\": true\n        }\n      },\n        {\n            \"name\": \"Sprint Burndown\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Welcome\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 8\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.HowToLinksWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.HowToLinksWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Markdown\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 3,\n                \"columnSpan\": 3\n            },\n            \"settings\": \"{\\\"repositoryId\\\":\\\"$RepositoryId$\\\",\\\"version\\\":\\\"GBmaster\\\",\\\"path\\\":\\\"/readme.md\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n            \"isNameConfigurable\": false,\n            \"lightboxOptions\": {\n                \"width\": 600,\n                \"height\": 500,\n                \"resizable\": true\n            }\n        }\n    ]\n   \n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Dashboard/Queries/Active Bugs.json",
    "content": "{\n  \"name\": \"Active Bugs_WI\",\n  \"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'\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Dashboard/Queries/All Items.json",
    "content": "﻿{\n  \"name\": \"All Items_WI\",\n  \"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]<>''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Dashboard/Queries/Test Case-Readiness.json",
    "content": "﻿{\n  \"name\": \"Test Case-Readiness\",\n  \"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]'\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Dashboard/Queries/UnfinishedWork.json",
    "content": "﻿{\n  \"name\": \"Unfinished Work_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.Title],[Microsoft.VSTS.Common.BacklogPriority],[System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork],[Microsoft.VSTS.CMMI.Blocked],[System.WorkItemType] FROM workitemLinks WHERE ([Source].[System.TeamProject] = @project AND [Source].[System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND ([Source].[System.WorkItemType] IN GROUP 'Microsoft.RequirementCategory' OR [Source].[System.WorkItemType] IN GROUP 'Microsoft.TaskCategory' ) AND [Source].[System.State] <> 'Removed' AND [Source].[System.State] <> 'Done') AND ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward')  AND ([Target].[System.WorkItemType] IN GROUP 'Microsoft.TaskCategory' AND [Target].[System.State] <> 'Done' AND [Target].[System.State] <> 'Removed') ORDER BY [Microsoft.VSTS.Common.BacklogPriority],[Microsoft.VSTS.Scheduling.Effort], [Microsoft.VSTS.Scheduling.RemainingWork],[System.Id] MODE (Recursive)\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Dashboard/Queries/User Stories.json",
    "content": "{\n \"name\": \"User Stories\",\n  \"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]<>''\"\n  \n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Dashboard/Queries/Work in Progress.json",
    "content": "﻿{\n  \"name\": \"Work in Progress_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.WorkItemType],[System.Title], [System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork] FROM workitems WHERE [System.TeamProject] = @project     AND [System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND [System.WorkItemType] IN GROUP 'Microsoft.TaskCategory'     AND [System.State] = 'In Progress' ORDER BY [System.AssignedTo],[Microsoft.VSTS.Common.BacklogPriority],[System.Id]\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Dashboard/WidgetQuery.json",
    "content": "{\n  \"name\": \"$name$\",\n  \"position\": {\n    \"row\":\"\" ,\n    \"column\": \"\"\n  },\n  \"size\": {\n    \"rowSpan\": 1,\n    \"columnSpan\": 1\n  },\n \"settings\":\"{\\\"defaultBackgroundColor\\\":\\\"#e60017\\\",\\\"queryId\\\":\\\"$QueryId$\\\",\\\"queryName\\\":\\\"$QueryName$\\\",\\\"colorRules\\\":[]}\",\n  \"settingsVersion\": {\n    \"major\": 1,\n    \"minor\": 0,\n    \"patch\": 0\n  },\n \n  \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/EpicfromTemplate.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 38436,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:42.517Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:42.517Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Patient Information\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Patient Information\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38352\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38357\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38436\"\n    },\n    {\n      \"id\": 38437,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:42.597Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:42.597Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Fianance Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Fianance Management\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38359\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38437\"\n    },\n    {\n      \"id\": 38438,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:42.673Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:42.673Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Patient Mobile App\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Patient Mobile App\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38353\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38354\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38438\"\n    },\n    {\n      \"id\": 38439,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:42.737Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:42.737Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Web Portal for Doctors\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Web Portal for Doctors\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38355\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38356\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38439\"\n    },\n    {\n      \"id\": 38440,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:42.8Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:42.8Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"HIPAA Compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"HIPAA Compliance\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38358\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38440\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"Release Management Utility tasks\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.utilitytasks' target='_blank'><b>Release Management Utility tasks</b></a>\",\n      \"publisherId\": \"ms-devlabs\",\n      \"extensionId\": \"utilitytasks\",\n      \"publisherName\": \"microsoft\",\n      \"License\": \"\"\n    },\n    {\n      \"extensionName\": \"Bower\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=touchify.vsts-bower' target='_blank'><b>Bower</b></a>\",\n      \"publisherId\": \"touchify\",\n      \"extensionId\": \"vsts-bower\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/touchify.vsts-bower/license' target='_blank'>License Terms</a>\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/FeaturefromTemplate.json",
    "content": "{\n  \"count\": 8,\n  \"value\": [\n    {\n      \"id\": 38352,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:12.797Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:12.797Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Visit Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Visit Management\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38378\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38436\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38352\"\n    },\n    {\n      \"id\": 38353,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:14.923Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:14.923Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Alerts and Reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Alerts and Reminders\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38361\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38366\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38373\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38438\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38353\"\n    },\n    {\n      \"id\": 38354,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:16.237Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:16.237Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Appointments Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38438\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38360\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38367\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38372\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38376\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38354\"\n    },\n    {\n      \"id\": 38355,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:16.297Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:16.297Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Consultation Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Consultation Management\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38370\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38439\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38355\"\n    },\n    {\n      \"id\": 38357,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:29.69Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:29.69Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Patient Register\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38436\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38364\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38374\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38377\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38357\"\n    },\n    {\n      \"id\": 38358,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:29.75Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:29.75Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Security\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38365\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38440\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38358\"\n    },\n    {\n      \"id\": 38359,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:29.813Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T13:18:49.45Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Backoffice\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38368\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38437\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38359\"\n    },\n    {\n      \"id\": 38356,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:18.767Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-18T10:20:11.327Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Schedule Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Schedule Management\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 15.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38439\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38375\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38356\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/ImportSourceCode/MyHealthClinic.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://vstsdemodata.visualstudio.com/MyHealthClinic/_git/MyHealthClinic2\"\n        },\n      \"serviceEndpointId\": \"$myHealthClinic-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint A\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint B\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint C\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"web\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/PBIfromTemplate.json",
    "content": "{\n  \"count\": 19,\n  \"value\": [\n    {\n      \"id\": 43678,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:36.98Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:36.98Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Settings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43672\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43717\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43678\"\n    },\n    {\n      \"id\": 43679,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:37.137Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:37.137Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Print Patient Invoice\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Print Patient Invoice\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Compliance; Finance\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43981\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43982\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43983\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43679\"\n    },\n    {\n      \"id\": 43680,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:37.683Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:37.683Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Print Prescription\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Print Prescription\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43705\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43985\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43986\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43680\"\n    },\n    {\n      \"id\": 43681,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:38.167Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:38.167Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Show patient visit history over time periods - month & year\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 15.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43674\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43708\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43709\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43710\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43711\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43990\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43991\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43992\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43681\"\n    },\n    {\n      \"id\": 43682,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:38.277Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:38.277Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Sign-in with O365\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 35.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43675\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43712\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43713\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43682\"\n    },\n    {\n      \"id\": 43683,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:38.433Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:38.433Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Map with the position of the next patient\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Mobile; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43672\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43716\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43683\"\n    },\n    {\n      \"id\": 43684,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:38.54Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:38.54Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Payment Reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Payment Reminders\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Finance\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43701\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43702\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43703\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43994\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43995\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43996\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43684\"\n    },\n    {\n      \"id\": 43686,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:38.73Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:38.73Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Send e-prescription to patients\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 4.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 17.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43673\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43721\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43722\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43988\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43686\"\n    },\n    {\n      \"id\": 43687,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:38.823Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:38.823Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Backend Services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Backend Services\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43676\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43687\"\n    },\n    {\n      \"id\": 43688,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:38.917Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:38.917Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Appointment Reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Appointment Integration with Native Calendar\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Doctor; Mobile; Notification; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43671\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43723\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43728\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43998\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43999\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44000\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43688\"\n    },\n    {\n      \"id\": 43689,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:39.01Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:39.01Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Countdown to the next pill\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Mobile; Notification\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43671\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43704\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43714\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43715\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43729\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43689\"\n    },\n    {\n      \"id\": 43685,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:38.637Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:51.433Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Add Contact Us to the WebApp\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add Contact Us to the WebApp\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/$projectId$%2f$RepositoryId$%2f180f79b29eea8a90998c7a75acdb806cc31cbbad\",\n          \"attributes\": {\n            \"authorizedDate\": \"2017-06-16T07:14:51.34Z\",\n            \"id\": \"529119\",\n            \"resourceCreatedDate\": \"2017-06-16T07:14:51.34Z\",\n            \"resourceModifiedDate\": \"2017-06-16T07:14:51.34Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n         \"url\": \"vstfs:///Git/PullRequestId/$projectId$%2F$RepositoryId$%2F$Added Contact Us Tab to homepage$\",\n          \"attributes\": {\n            \"authorizedDate\": \"2017-06-16T07:14:51.433Z\",\n            \"id\": \"529120\",\n            \"resourceCreatedDate\": \"2017-06-16T07:14:51.433Z\",\n            \"resourceModifiedDate\": \"2017-06-16T07:14:51.433Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43685\"\n    },\n    {\n      \"id\": 43690,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:39.12Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:39.12Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Create recurring appointment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 25.0,\n        \"System.Description\": \"We need to be able to crate new appointments for the clinic\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43672\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43736\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43737\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43690\"\n    },\n    {\n      \"id\": 43691,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:39.807Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:39.807Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"My Medical Appointments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 30.0,\n        \"System.Description\": \"My Medical Appointments\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Calendar; Mobile; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43671\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43706\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43707\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43731\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43732\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43733\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43691\"\n    },\n    {\n      \"id\": 43692,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:39.933Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:39.933Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Patient Information Summary\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 35.0,\n        \"System.Description\": \"Personal Patient Information\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Compliance; Doctor; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43674\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43734\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43735\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43692\"\n    },\n    {\n      \"id\": 43693,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:40.12Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:40.12Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Appointment detail info\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor; Mobile; Patient\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43672\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43699\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43700\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43745\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43746\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43759\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43760\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43761\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43762\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43693\"\n    },\n    {\n      \"id\": 43694,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:40.213Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:40.213Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Update visit status\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update visit status\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43670\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43698\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44002\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44003\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43694\"\n    },\n    {\n      \"id\": 43695,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:40.307Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:40.307Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Patient Medical History\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 1.0,\n        \"System.Description\": \"Need description.\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Compliance; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43674\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43697\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43725\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43695\"\n    },\n    {\n      \"id\": 43696,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:40.4Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:40.4Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Manage Doctors Schedule\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Manage Doctors\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 15.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Doctor\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43677\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43724\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43726\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43727\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44005\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44006\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44007\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43696\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/ProjectSettings.json",
    "content": "﻿{\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\"],\n  \"tags\": [ \"Login Module\", \"DashBoard\", \"User Grrelease\", \"LogOut\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"Template Name\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\"\n\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/PullRequests/Comments/PullRequest1.json",
    "content": "﻿{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"The “CONTACT US” tab doesn’t re-direct to the contact us section. Please check.\",\n          \"commentType\": 1\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": \"System.Int32\",\n          \"value\": 1\n\n        }\n      },\n      \"status\": 1,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null,\n      \"Replies\": [\n         {\n          \"content\": \"Ohh. Let me fix it.\",\n          \"parentCommentId\": 1,\n          \"commentType\": 1\n        },\n        {\n          \"content\": \"Please check. I have fixed.\",\n          \"parentCommentId\": 1,\n          \"commentType\": 1\n        },\n         {\n          \"content\": \"Thanks. Looks great now 😃\",\n          \"parentCommentId\": 1,\n          \"commentType\": 1\n        }\n      ]\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/PullRequests/Comments/PullRequest2.json",
    "content": "﻿{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"Looks good 😃\",\n          \"commentType\": 1\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": \"System.Int32\",\n          \"value\": 1\n        }\n      },\n      \"status\": 1,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null,\n      \"Replies\": [\n        {\n          \"content\": \"Thanks for the review 👍\",\n          \"parentCommentId\": 1,\n          \"commentType\": 1\n        }\n\n      ]\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/PullRequests/PullRequest1.json",
    "content": "﻿{\n  \"title\": \"Added Contact Us Tab to homepage\",\n  \"description\": \"Added Contact Us Tab. Please review.\",\n  \"sourceRefName\": \"refs/heads/AddingContactUs\",\n  \"targetRefName\": \"refs/heads/master\",\n  \"reviewers\": [\n    {\n      \"id\": \"$reviewer$\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/PullRequests/PullRequest2.json",
    "content": "﻿{\n  \"title\": \"Copyright Information is updated to latest\",\n  \"description\": \"I have changed the Index.cshtml file Copyright Information\",\n  \"sourceRefName\": \"refs/heads/CopyrightUpdate\",\n  \"targetRefName\": \"refs/heads/master\",\n  \n  \"reviewers\": [\n    {\n      \"id\": \"$reviewer$\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/ReleaseDefinitions/HealthClinic.json",
    "content": "﻿{\n  \"source\": \"userInterface\",\n  \"revision\": 4,\n  \"name\": \"MyHealthClinicE2E\",\n  \"description\": null,\n  \"isDeleted\": false,\n  \"path\": \"\\\\\",\n  \"variables\": {\n    \"HostingPlan\": {\n      \"value\": \"mhce2e\"\n    },\n    \"ResourceGroupName\": {\n      \"value\": \"dotnetcore\"\n    },\n    \"ServerName\": {\n      \"value\": \"mhce2e$UUID$\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"mhce2e$UUID$\"\n        }\n      },\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployStep\": {\n\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Deployment\",\n              \"refName\": \"AzureResourceGroupDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(ResourceGroupName)\",\n                \"location\": \"Central US\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/MyHealthClinicE2E/drop/ARM templates/azuredeploy.json\",\n                \"csmParametersFile\": \"$(System.DefaultWorkingDirectory)/MyHealthClinicE2E/drop/ARM templates/azuredeploy.parameters.json\",\n                \"overrideParameters\": \"-WebsiteName $(WebsiteName) -MHC_ServerName $(ServerName)  -MHC_HostingPlanName $(HostingPlan)\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"outputVariable\": \"\"\n              }\n            },\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Deploy Azure App Service\",\n              \"refName\": \"AzureRmWebAppDeployment_1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"true\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"$(ResourceGroupName)\",\n                \"SlotName\": \"Dev\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/MyHealthClinicE2E/drop/MyHealth.Web.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"appsettings.json\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"gatesOptions\": null,\n        \"gates\": []\n      }\n    },\n    {\n      \"name\": \"QA\",\n      \"rank\": 2,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"mhce2e$UUID$\"\n        }\n      },\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployStep\": {\n\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Hosted$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Deploy Azure App Service\",\n              \"refName\": \"AzureRmWebAppDeployment_1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"true\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"$(ResourceGroupName)\",\n                \"SlotName\": \"Staging\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/MyHealthClinicE2E/drop/MyHealth.Web.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"appsettings.json\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"Dev\",\n          \"conditionType\": \"environmentState\",\n          \"value\": \"4\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"gatesOptions\": null,\n        \"gates\": []\n      }\n    },\n    {\n      \"name\": \"Production\",\n      \"rank\": 3,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"mhce2e$UUID$\"\n        }\n      },\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployStep\": {\n\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Hosted$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Deploy Azure App Service\",\n              \"refName\": \"AzureRmWebAppDeployment_1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/MyHealthClinicE2E/drop/MyHealth.Web.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"appsettings.json\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"QA\",\n          \"conditionType\": \"environmentState\",\n          \"value\": \"4\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"gatesOptions\": null,\n        \"gates\": []\n      }\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$MyHealthClinicE2E-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"MyHealthClinicE2E\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$MyHealthClinicE2E-id$\",\n          \"name\": \"MyHealthClinicE2E\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"MyHealthClinic\"\n        }\n      },\n      \"isPrimary\": true\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"MyHealthClinicE2E\",\n      \"triggerConditions\": [\n        {\n          \"sourceBranch\": \"master\"\n        }\n      ],\n      \"triggerType\": \"artifactSource\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseClone\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/ServiceEndpoints/myHealthClinic-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"myHealthClinic-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/MyHealthClinic/_git/MyHealthClinic2\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/TaskfromTemplate.json",
    "content": "{\n  \"count\": 41,\n  \"value\": [\n    {\n      \"id\": 38382,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:38.673Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:38.673Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Update patient information page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update patient information page\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38377\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38382\"\n    },\n    {\n      \"id\": 38384,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:38.83Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:38.83Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Auto update of visit status with doctors analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Auto update of visit status with doctors analysis\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38378\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38384\"\n    },\n    {\n      \"id\": 38385,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:38.907Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:38.907Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Send terms by email\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Send terms by email\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38376\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38385\"\n    },\n    {\n      \"id\": 38386,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:38.97Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:38.97Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Position change query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Position change query\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38376\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38386\"\n    },\n    {\n      \"id\": 38387,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.033Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.033Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Add send payment reminder option to the navigation menu\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add send payment reminder option to the navigation menu\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38369\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38387\"\n    },\n    {\n      \"id\": 38388,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.11Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.11Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Show outstanding payments by date range\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show outstanding payments by date range\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38369\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38388\"\n    },\n    {\n      \"id\": 38389,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.267Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.267Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Show outstanding payments by patient ID\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show outstanding payments by patient ID\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38369\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38389\"\n    },\n    {\n      \"id\": 38390,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.33Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.33Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Update settings for reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update settings for reminders\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38361\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38390\"\n    },\n    {\n      \"id\": 38395,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.673Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.673Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"email prescription as an attachment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"email prescription as an attachment\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38363\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38395\"\n    },\n    {\n      \"id\": 38396,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.737Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.737Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Show past appointments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show past appointments\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 16.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38373\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38396\"\n    },\n    {\n      \"id\": 38397,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.813Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.813Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Test appointment views\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Test appointment views\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38373\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38397\"\n    },\n    {\n      \"id\": 38398,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.877Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.877Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Allow filtering of dates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Visited patients\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 12.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38364\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38398\"\n    },\n    {\n      \"id\": 38399,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.94Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:39.94Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Print patient visit history\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Print patient visit history\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 24.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38364\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38399\"\n    },\n    {\n      \"id\": 38400,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Add New \\\"Visit History\\\" page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add New &quot;Visit History&quot; page\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 16.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38364\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38400\"\n    },\n    {\n      \"id\": 38401,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.05Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.05Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Redesign the calendar page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Redesign the calendar page\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38364\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38401\"\n    },\n    {\n      \"id\": 38402,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.127Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.127Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"AD Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"AD Integration\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 20.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38365\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38402\"\n    },\n    {\n      \"id\": 38403,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.203Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.203Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"SIgn-in with O365\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 15.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38365\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38403\"\n    },\n    {\n      \"id\": 38404,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.267Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.267Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Next pill -reminder\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Next pill -reminder\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38361\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38404\"\n    },\n    {\n      \"id\": 38405,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.33Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.33Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Allow reminder options in the settings page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Allow reminder options in the settings page\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38361\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38405\"\n    },\n    {\n      \"id\": 38406,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.393Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.393Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Position change query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Position change query\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38367\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38406\"\n    },\n    {\n      \"id\": 38408,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.517Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.517Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Settings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38360\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38408\"\n    },\n    {\n      \"id\": 38409,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.597Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.597Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Form - New Appointment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Form - New Appointment\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38409\"\n    },\n    {\n      \"id\": 38410,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.657Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.657Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Visited patients\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Need description\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38410\"\n    },\n    {\n      \"id\": 38411,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.72Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.72Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Next pill -reminder\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Next pill -reminder\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 13.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38411\"\n    },\n    {\n      \"id\": 38407,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.453Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T13:06:19.413Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Navigation menu update\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Navigation menu update\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38370\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38407\"\n    },\n    {\n      \"id\": 38391,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.407Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T13:06:25.727Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Backed Query\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Backed Query\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 12.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38370\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38391\"\n    },\n    {\n      \"id\": 38379,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:38.05Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T14:00:42.89Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Add Reminders to settings page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add Reminders to settings page\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 45.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38366\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38379\"\n    },\n    {\n      \"id\": 38394,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.61Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-17T13:54:33.137Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Disable dates of doctors non-availaibilty\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Disable dates of doctors non-availaibilty\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38375\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38394\"\n    },\n    {\n      \"id\": 38383,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:38.75Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-18T06:39:47.437Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Filter medical history by date range\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Filter medical history by date range upcaxdxrdxxx drx\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38377\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38383\"\n    },\n    {\n      \"id\": 38392,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.47Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-18T08:42:02.96Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Show Doctor list \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Show Doctor list \",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38375\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38392\"\n    },\n    {\n      \"id\": 38393,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:39.55Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-18T08:42:15.35Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Filter by speciality and clinic\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Filter by speciality and clinic\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 4.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38375\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38393\"\n    },\n    {\n      \"id\": 38380,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:38.5Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-18T10:38:06.577Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Design new settings page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design new settings page\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38366\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38380\"\n    },\n    {\n      \"id\": 38381,\n      \"rev\": 15,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:38.58Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-18T13:31:23.443Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Display name of the pill and countdown timer on the main page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Display name of the pill and countdown timer on the main page\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38361\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38381\"\n    },\n    {\n      \"id\": 38412,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.783Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.783Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Update settings for reminders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update settings for reminders\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38412\"\n    },\n    {\n      \"id\": 38413,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.847Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.847Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Display upcoming appointments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Display upcoming appointments\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38373\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38413\"\n    },\n    {\n      \"id\": 38414,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.923Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.923Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Design screen layout\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design screen layout\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38373\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38414\"\n    },\n    {\n      \"id\": 38415,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:40.97Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:40.97Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Cancel Appointment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cancel Appointment\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38373\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38415\"\n    },\n    {\n      \"id\": 38416,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:41.05Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:41.05Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Update insurance provider details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update insurance provider details\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38374\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38416\"\n    },\n    {\n      \"id\": 38417,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:41.14Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:41.14Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Update patient details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update patient details\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38374\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38417\"\n    },\n    {\n      \"id\": 38418,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:41.22Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:41.22Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Add recurring option in new appointment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Form - New Appointment\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38372\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38418\"\n    },\n    {\n      \"id\": 38419,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"May16_MHC01\",\n        \"System.TeamProject\": \"May16_MHC01\",\n        \"System.IterationPath\": \"May16_MHC01\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-05-16T04:45:41.3Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-05-16T04:45:41.3Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Navigation menu update\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Navigation menu update\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38372\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/38419\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/TeamIterationMap.json",
    "content": "{\n  \"TeamIterationMap\": [\n    {\n      \"TeamName\": \"Team1\",\n      \"Iterations\": [ \"Sprint 1\", \"Sprint 2\", \"Sprint 3\" ]\n    },\n    {\n      \"TeamName\": \"Team2\",\n      \"Iterations\": [ \"Sprint 4\", \"Sprint 5\", \"Sprint 6\" ]\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Teams.json",
    "content": "[\n  {\n    \"name\": \"Team1\",\n    \"Description\": \"Team1 Description\"\n  },\n  {\n    \"name\": \"Team2\",\n    \"Description\": \"Team2 Description\"\n  }\n\n]\n    \n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/TestCasefromTemplate.json",
    "content": "{\n  \"count\": 45,\n  \"value\": [\n    {\n      \"id\": 43738,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:44.573Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:44.573Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"View doctor info\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43738\"\n    },\n    {\n      \"id\": 43739,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:44.683Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:44.683Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"View patient info\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43739\"\n    },\n    {\n      \"id\": 43740,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:44.777Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:44.777Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"List existing patients\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Go to the private area&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on Patients&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;The patient list must be shown&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43740\"\n    },\n    {\n      \"id\": 43741,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:44.87Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:44.87Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify Branding\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Go to Home Page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Check the brand at the top left corner&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Brand is represented correctly&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43741\"\n    },\n    {\n      \"id\": 43742,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:44.963Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:44.963Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify Branding\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43742\"\n    },\n    {\n      \"id\": 43743,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:45.183Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:45.183Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Login in the backoffice\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Go to the Home Page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on login&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Fill the username and password&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; @Credentials&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on login&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;You can access the private area&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": \"<parameters><param name=\\\"Credentials\\\" bind=\\\"default\\\" /></parameters>\",\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType>\\n              <xs:sequence>\\n                <xs:element name=\\\"Credentials\\\" type=\\\"xs:string\\\" minOccurs=\\\"0\\\" />\\n              </xs:sequence>\\n            </xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43743\"\n    },\n    {\n      \"id\": 43744,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:45.29Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:45.29Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"List existing doctors\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Login in the private area&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on doctors&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;The doctor list must be shown&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43744\"\n    },\n    {\n      \"id\": 43745,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:45.417Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:45.417Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Check Appointment Notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43693\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43745\"\n    },\n    {\n      \"id\": 43746,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:45.497Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:45.497Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Use case oublié encore\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43693\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43746\"\n    },\n    {\n      \"id\": 43747,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:45.573Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:45.573Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"May18-TestPlans\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43747\"\n    },\n    {\n      \"id\": 43748,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:45.667Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:45.667Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify user is able to login into the application\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the browser</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login into the browser and should be able to navigate to the respective Dashboard screen of the logged in user.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the url</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on \\\"Private Area\\\" link on the home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter valid user name and password in the respective username and password fields</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43748\"\n    },\n    {\n      \"id\": 43749,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:45.98Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:45.98Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify user is able to login into the application\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the browser</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login into the browser and should be able to navigate to the respective Dashboard screen of the logged in user.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the url</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on \\\"Private Area\\\" link on the home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter valid user name and password in the respective username and password fields</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43749\"\n    },\n    {\n      \"id\": 43750,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:46.09Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:46.09Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify user should not be allowed login into the application with invalid credentials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the browser</parameterizedString><parameterizedString isformatted=\\\"true\\\">An alert should be displayed with a message \\\"Incorrect username or password \\nPlease try again.\\\" \\nUser should not be allowed to navigate to the dashboard screen.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the url</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on \\\"Private Area\\\" link on the home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">. Enter invalid user name and password in the respective username and password fields</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43750\"\n    },\n    {\n      \"id\": 43751,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:46.15Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:46.15Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify user should not be allowed login into the application with invalid credentials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the browser</parameterizedString><parameterizedString isformatted=\\\"true\\\">An alert should be displayed with a message \\\"Incorrect username or password \\nPlease try again.\\\" \\nUser should not be allowed to navigate to the dashboard screen.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the url</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on \\\"Private Area\\\" link on the home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">. Enter invalid user name and password in the respective username and password fields</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43751\"\n    },\n    {\n      \"id\": 43752,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:46.23Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:46.23Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify user should not be allowed login into the application with invalid credentials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the browser</parameterizedString><parameterizedString isformatted=\\\"true\\\">An alert should be displayed with a message \\\"Incorrect username or password \\nPlease try again.\\\" \\nUser should not be allowed to navigate to the dashboard screen.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the url</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on \\\"Private Area\\\" link on the home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">. Enter invalid user name and password in the respective username and password fields</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43752\"\n    },\n    {\n      \"id\": 43753,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:46.307Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:46.307Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify that user is navigated to the doctors screen\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the browser </parameterizedString><parameterizedString isformatted=\\\"true\\\">Drawer menu should be opened and Doctors link should be present on the menu.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Enter the url</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Click on \\\"Private Area\\\" link on the home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Enter valid user name and password in the respective username and password fields</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">. On navigating to the dashboard screen, click on \\\"Menu\\\"</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should get navigated to the DOCTORS screen.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Doctor Link on the menu</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43753\"\n    },\n    {\n      \"id\": 43754,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:46.387Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:46.387Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify user is able to add a doctor\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">1.Launch the browser and enter the URL\\n2. Click on the \\\"Private Area\\\" link on the home page\\n3. Enter valid username and password and click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\">On saving, user should get navigated to the \\\"Doctors\\\" screen and user should be see the updated doctors details.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">1. Tap on the menu icon\\n2. Click on the \\\"Doctors\\\" link\\n3. Tap on the \\\"Edit\\\" icon against the doctor who details needs to be edited.\\n4.Modify/Edit the doctor details and click on the Save button</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43754\"\n    },\n    {\n      \"id\": 43755,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:46.463Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:46.463Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify user is able to delete the doctors from the list\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">1. Launch the browser and enter the URL\\n2. Click on the \\\"Private Area\\\" link on the home page\\n3. Enter valid username and password and click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\">An confirmation pop up should be displayed which should users confirmation for deletion.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">1. Tap on the menu icon\\n2. Click on the \\\"Doctors\\\" link\\n3. Click on the delete icon against the doctor whose record has to be deleted.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">1. Click on the yes, Remove button on the confirmation pop up</parameterizedString><parameterizedString isformatted=\\\"true\\\">On confirmation, doctor record should be remvoed from the list.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43755\"\n    },\n    {\n      \"id\": 43756,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:46.87Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:46.87Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify navigation to the Patients screen.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">1. Launch the browser\\n2. Enter the url\\n3. Click on \\\"Private Area\\\" link on the home page.\\n3. Enter valid user name and password in the respective username and password fields\\n4. Click on Login button\\n&lt;DIV&gt;&lt;BR/&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Drawer menu should be opened and Patient link should be present on the menu.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">1. On navigating to the dashboard screen, click on \\\"Menu\\\"\\n2. Click on Patient Link on the menu</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should get navigated to the Patients screen.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43756\"\n    },\n    {\n      \"id\": 43757,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:46.963Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:46.963Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verify user is able to delete the patient from the list\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the browser and enter the URL\\n2. Click on the \\\"Private Area\\\" link on the home page\\n3. Enter valid username and password and click on Login button</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should able login into the application succeessfull</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">1. Tap on the menu icon\\n2. Click on the \\\"Patient\\\" link\\n3. Click on the delete icon against the patinet whose record has to be deleted.</parameterizedString><parameterizedString isformatted=\\\"true\\\">An confirmation pop up should be displayed which should users confirmation for deletion.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">1. Click on the yes, Remove button on the confirmation pop up</parameterizedString><parameterizedString isformatted=\\\"true\\\">On confirmation, patient record should be remvoed from the list.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43757\"\n    },\n    {\n      \"id\": 43758,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:47.073Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:47.073Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Verirfy graphs are displayed for \\\"IncomeandExpense\\\" and \\\"Patients Visits\\\" graphs are displayed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"1\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">1. Launch the browser and enter the URL\\n2. Click on the \\\"Private Area\\\" link on the home page\\n3. Enter valid username and password and click on Login button\\n4. Tap on the \\\"Previous Year\\\"/\\\"back icon\\\"/\\\"&amp;lt;\\\" icon in the \\\"INCOMES AND EXPENSES\\\" grid\\n5. Tap on the \\\"Previous Year\\\"/\\\"back icon\\\"/\\\"&amp;lt;\\\" icon in the \\\"Patient Visits\\\" grid</parameterizedString><parameterizedString isformatted=\\\"true\\\">Repsective graphs should be displayed.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43758\"\n    },\n    {\n      \"id\": 43983,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:06:43.223Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:06:43.223Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send Invoice fax number.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"8\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Invoices page from  Financial section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Invoice page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the Invoice number to send as fax.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the invoice/s.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on fax icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Fax icon should be enabled to perform the click action.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the valid fax number and click on send button</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to send selected invoice to fax number.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43679\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43983\"\n    },\n    {\n      \"id\": 43982,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:06:43.223Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:06:43.223Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send Invoice as an Email attachment.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"8\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Invoices page from  Financial section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Invoice page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the Invoice number to send as email.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the invoice/s.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Email icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Email icon should be enabled to perform the click action.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Input Email id to send and click on send button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to send selected invoice as email attachment.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43679\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43982\"\n    },\n    {\n      \"id\": 43981,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:06:43.223Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:06:43.223Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to print the invoice.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Invoices page from  Financial section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Invoice page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the Invoice number to print.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the invoice/s.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on print icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to print the selected invoice.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43679\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43981\"\n    },\n    {\n      \"id\": 43986,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:07:58.467Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:07:58.467Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send prescription via fax number.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"8\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Clinical page from patient management section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to patients Clinical page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the current diagnosis for patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the diagnosis for the patient.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto prescription section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to access the prescription section.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on fax icon</parameterizedString><parameterizedString isformatted=\\\"true\\\">Fax icon should be enabled to perform the click action.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43680\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43986\"\n    },\n    {\n      \"id\": 43985,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:07:58.467Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:07:58.467Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to print the prescription.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"8\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Clinical page from patient management section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to patients Clinical page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the current diagnosis for patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the diagnosis for the patient.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto prescription section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to access the prescription section.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on print icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to print the prescription.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43680\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43985\"\n    },\n    {\n      \"id\": 43988,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:08:36.86Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:08:36.86Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send prescription as an Email attachment.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Clinical page from patient management section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to patients Clinical page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the current diagnosis for patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the diagnosis for the patient.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto prescription section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to access the prescription section.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on email icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Email icon should be enabled to perform the click action.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Input email id and Click on send button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to send the prescription via email by entering the email id.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43686\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43988\"\n    },\n    {\n      \"id\": 43992,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:11:42.113Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:11:42.113Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether able to view patient visit history for random period.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on History section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient history screen.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the dates: From Date, To Date </parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select/type in the dates.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on view history button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to view the patient visit history for the selected dates.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43681\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43992\"\n    },\n    {\n      \"id\": 43991,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:11:42.113Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:11:42.113Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether able to view patient visit history for previous year.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on History section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient history screen.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the dates: From Date, To Date &lt;BR/&gt;(Input previous year date)</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select/type in the dates.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on view history button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to view the patient visit history for the selected dates.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43681\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43991\"\n    },\n    {\n      \"id\": 43990,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:11:42.113Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:11:42.113Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether able to view patient visit history for current year.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on History section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient history screen.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the dates: From Date, To Date &lt;BR/&gt;(Input current year date)</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select/type in the dates.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on view history button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to view the patient visit history for the selected dates.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43681\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43990\"\n    },\n    {\n      \"id\": 43996,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:12:49.27Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:12:49.27Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send payment reminder via Fax.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Payments section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Payments section.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the Payment date for outstanding payment.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to outstanding payment details page.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on mail icon respective to the payment date.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Mail icon should be enabled to perform the click action.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select Fax as mode of reminder.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Fax should get highlighted/selected as mode of reminder.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the valid fax number.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to input the Fax number</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Should be able to send payment reminder to fax number.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43684\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43996\"\n    },\n    {\n      \"id\": 43995,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:12:49.27Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:12:49.27Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send payment reminder via Email.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Payments section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Payments section.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the Payment date for outstanding payment.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to outstanding payment details page.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on mail icon respective to the payment date.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Mail icon should be enabled to perform the click action.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select Email as mode of reminder.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Email should get highlighted/selected as mode of reminder.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter valid email id</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to input the email id.</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Should be able to send payment reminder to Email id provided.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43684\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43995\"\n    },\n    {\n      \"id\": 43994,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:12:49.27Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:12:49.27Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send payment reminder via mobile phone.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Payments section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Payments section.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the Payment date for outstanding payment.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to outstanding payment details page.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on mail icon respective to the payment date.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Mail icon should be enabled to perform the click action.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the mobile phone as mode of reminder.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Mobile phone should get highlighted/selected as mode of reminder.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Sould be able to send payment reminder to mobile phone number.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43684\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43994\"\n    },\n    {\n      \"id\": 44000,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:13:58.033Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:13:58.033Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send appointment reminder via fax number.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Calendar page from appointment section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Calendar page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select upcoming appointment date from the calendar.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the selected appointment date.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on appointment to redirect to appointment screen.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to appointment screen.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button appointment details.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Send button should be enabled to perform click action.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select Fax as reminder mode to send appointment details.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Fax should get highlighted/selected as mode to send appointment details..</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Should be able to send appointment reminder to patient&amp;#39;s fax number.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43688\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44000\"\n    },\n    {\n      \"id\": 43999,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:13:58.033Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:13:58.033Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to send e-appointment reminder.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Calendar page from appointment section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Calendar page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select upcoming appointment date from the calendar.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the selected appointment date.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on appointment redirects to appointment screen.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to appointment screen.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button appointment details.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Send button should be enabled to perform click action.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select Email as reminder mode to send appointment details.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Email should get highlighted/selected as mode to send appointment details..</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Should be able to send appointment reminder to patient&amp;#39;s Email id.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43688\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43999\"\n    },\n    {\n      \"id\": 43998,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:13:58.033Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:13:58.033Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to Send appointment reminder via mobile phone number.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Calendar page from appointment section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Calendar page.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select upcoming appointment date from the calendar.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to select the selected appointment date.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on appointment redirects to appointment screen.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to appointment screen.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button appointment details.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Send button should be enabled to perform click action.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select mobile phone number as reminder mode to send appointment details.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Mobile phone number should get highlighted/selected as mode to send appointment details..</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on send button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Should be able to send appointment reminder to patient&amp;#39;s mobile phone number.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43688\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43998\"\n    },\n    {\n      \"id\": 44003,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:15:19.643Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:15:19.643Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to update visit status to Completed.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"8\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Visits section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Visits screen.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select any of the visit date and click on visit.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to visit details page when clicked on selected visit.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">From the visit page change visit status to Completed.</parameterizedString><parameterizedString isformatted=\\\"true\\\">The selected visit status should get highlighted.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Save button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Visit status should change to Completed status. </parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43694\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44003\"\n    },\n    {\n      \"id\": 44002,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:15:19.643Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:15:19.643Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to update visit status to Pending.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"8\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select patient link.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Patient search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the patient.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Patient(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired patient name from search results and goto patient&amp;#39;s profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected patient profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Visits section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Visits screen.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Select any of the visit date and click on visit.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to visit details page when clicked on selected visit.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">From the visit page change visit status to Pending.</parameterizedString><parameterizedString isformatted=\\\"true\\\">The selected visit status should get highlighted.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Save button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Visit status should change to Pending status. </parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43694\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44002\"\n    },\n    {\n      \"id\": 44007,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:16:22.52Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:16:22.52Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to Delete schedules.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select doctors.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Doctors search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the Doctor.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Doctor(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired doctors name from search results and goto doctors profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected doctors profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Calendar section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to calendar section.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">View calendar for the month to which schedule to be deleted.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be navigated to selected calendar month.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Hover on the schedule found in calendar cell.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to view the options/actions associated to schedule.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">From the list of options, click on Delete schedule</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to click on delete schedule and see the confirmation popup screen to delete the schedule.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Confirm the delete option by clicking on OK button found in confirmation popup.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Selected schedule should be deleted from doctors calendar.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43696\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44007\"\n    },\n    {\n      \"id\": 44006,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:16:22.52Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-21T07:16:22.52Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to update/edit schedule\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login to application.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on menu and select doctors.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to Doctors search screen.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Search for the Doctor.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Doctor(s) should be displayed based on the search criteria.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on desired doctors name from search results and goto doctors profile.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to selected doctors profile screen.</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Goto Calendar section.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to calendar section.</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">View calendar for the month to which schedule to be update/edit.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be navigated to selected calendar month.</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on the schedule found in calendar cell.</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should navigate to schedule details page.</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Edit schedule options (time / date / patient details).</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to update/edit the changes in schedule page.</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on save button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Selected schedule should be updated as per the modifications.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43696\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44006\"\n    },\n    {\n      \"id\": 44005,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-06-21T07:16:22.52Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-12T05:41:13.543Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify whether user is able to add schedule in doctor screen\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to login to application.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on menu and select doctors.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should navigate to Doctors search screen.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the Doctor.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Doctor(s) name should be displayed based on the search criteria.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Click on desired doctor's name from search results and go to doctor's profile.&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should navigate to selected doctors profile screen.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Goto Calendar section.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should navigate to calendar section.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;View calendar for the month to which schedule to be created.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be navigated to selected calander month.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the date.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to see the option on Hover of date.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;From the option, select Schedule&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should navigate to schedule creation page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Input schedule details (time, patient details) in schedule screen.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to input all the details to create schedule.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on save button.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Schedule for the selected should be created for the doctor.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43696\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/44005\"\n    },\n    {\n      \"id\": 43759,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Obsolete\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:47.15Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:47.15Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Use case oublié\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43693\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43759\"\n    },\n    {\n      \"id\": 43760,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Obsolete\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:47.23Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:47.23Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Cas de test à ajouter\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43693\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43760\"\n    },\n    {\n      \"id\": 43761,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Obsolete\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:47.293Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:47.293Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Nouveau cas de test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43693\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43761\"\n    },\n    {\n      \"id\": 43762,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MHC_TM\",\n        \"System.TeamProject\": \"MHC_TM\",\n        \"System.IterationPath\": \"MHC_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Obsolete\",\n        \"System.CreatedDate\": \"2017-06-16T07:14:47.497Z\",\n        \"System.CreatedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-06-16T07:14:47.497Z\",\n        \"System.ChangedBy\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"System.Title\": \"Check appointment details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43693\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/43762\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/UpdateCardFields.json",
    "content": "﻿{\n  \"cards\": {\n    \"Bug\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Common.Severity\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AreaPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"true\"\n      }\n    ],\n    \"Product Backlog Item\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AreaPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Id\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"true\"\n      }\n    ]\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyHealthClinic/Wiki/CodeWiki/CreateWiki.json",
    "content": "﻿{\n  \"version\": {\n    \"version\": \"master\"\n  },\n  \"type\": \"codeWiki\",\n  \"name\": \"MHCCodeWiki\",\n  \"projectId\": \"$ProjectID$\",\n  \"repositoryId\": \"$RepoID$\",\n  \"mappedPath\": \"/Wiki\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/BuildDefinitions/MyShuttle-Docker-yaml.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines-docker.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/MyShuttle\",\n      \"fullName\": \"MyShuttle\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$MyShuttle$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$MyShuttle$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"MyShuttle\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/MyShuttle\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"MyShuttle-Docker-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 3,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/BuildDefinitions/MyShuttle-yaml.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/MyShuttle\",\n      \"fullName\": \"MyShuttle\",\n      \"defaultBranch\": \"refs/heads/master\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$MyShuttle$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$MyShuttle$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"MyShuttle\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/MyShuttle\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"MyShuttle-YAML\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/BuildDefinitions/MyShuttleBuild.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"726005\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Maven pom.xml\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"ac4ee482-65da-4485-a532-7b085873e532\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"mavenPOMFile\": \"pom.xml\",\n              \"goals\": \"package\",\n              \"options\": \"-DskipITs --settings ./maven/settings.xml\",\n              \"publishJUnitResults\": \"true\",\n              \"testResultsFiles\": \"**/surefire-reports/TEST-*.xml\",\n              \"testRunTitle\": \"\",\n              \"codeCoverageTool\": \"None\",\n              \"classFilter\": \"\",\n              \"classFilesDirectories\": \"\",\n              \"srcDirectories\": \"\",\n              \"failIfCoverageEmpty\": \"false\",\n              \"javaHomeSelection\": \"JDKVersion\",\n              \"jdkVersion\": \"default\",\n              \"jdkUserInputPath\": \"\",\n              \"jdkArchitecture\": \"x64\",\n              \"mavenVersionSelection\": \"Default\",\n              \"mavenPath\": \"\",\n              \"mavenSetM2Home\": \"false\",\n              \"mavenOpts\": \"-Xmx1024m\",\n              \"mavenFeedAuthenticate\": \"false\",\n              \"sqAnalysisEnabled\": \"false\",\n              \"sqMavenPluginVersionChoice\": \"latest\",\n              \"checkstyleAnalysisEnabled\": \"false\",\n              \"pmdAnalysisEnabled\": \"false\",\n              \"findbugsAnalysisEnabled\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy Files\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"CopyFiles2\",\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(build.sourcesdirectory)\",\n              \"Contents\": \"**/target/*.war\\n*.sql\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact\",\n            \"timeoutInMinutes\": 0,\n            \"refName\": \"PublishBuildArtifacts3\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Phase 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$MyShuttle$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"MyShuttle\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"MyShuttleBuild\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/BuildDefinitions/MyShuttleDockerBuild.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"726005\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Maven pom.xml\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"ac4ee482-65da-4485-a532-7b085873e532\",\n              \"versionSpec\": \"3.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"mavenPOMFile\": \"pom.xml\",\n              \"goals\": \"package\",\n              \"options\": \"-DskipITs --settings ./maven/settings.xml\",\n              \"publishJUnitResults\": \"false\",\n              \"testResultsFiles\": \"**/surefire-reports/TEST-*.xml\",\n              \"testRunTitle\": \"\",\n              \"codeCoverageTool\": \"None\",\n              \"classFilter\": \"\",\n              \"classFilesDirectories\": \"\",\n              \"srcDirectories\": \"\",\n              \"failIfCoverageEmpty\": \"false\",\n              \"javaHomeSelection\": \"JDKVersion\",\n              \"jdkVersion\": \"default\",\n              \"jdkUserInputPath\": \"\",\n              \"jdkArchitecture\": \"x64\",\n              \"mavenVersionSelection\": \"Default\",\n              \"mavenPath\": \"\",\n              \"mavenSetM2Home\": \"false\",\n              \"mavenOpts\": \"-Xmx1024m\",\n              \"mavenFeedAuthenticate\": \"false\",\n              \"sqAnalysisEnabled\": \"false\",\n              \"sqMavenPluginVersionChoice\": \"latest\",\n              \"checkstyleAnalysisEnabled\": \"false\",\n              \"pmdAnalysisEnabled\": \"false\",\n              \"findbugsAnalysisEnabled\": \"false\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Copy WAR file\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"SourceFolder\": \"$(build.sourcesdirectory)\",\n              \"Contents\": \"target/myshuttledev*.war\\n*.sql\",\n              \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n              \"CleanTargetFolder\": \"false\",\n              \"OverWrite\": \"false\",\n              \"flattenFolders\": \"false\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact: drop\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"drop\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build an image\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"e28912f1-0114-4464-802a-a3a35437fd16\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"command\": \"Build an image\",\n              \"dockerFile\": \"src/Dockerfile\",\n              \"arguments\": \"\",\n              \"useDefaultContext\": \"false\",\n              \"buildContext\": \".\",\n              \"pushMultipleImages\": \"false\",\n              \"tagMultipleImages\": \"false\",\n              \"imageName\": \"Web:$(Build.BuildNumber)\",\n              \"imageNamesPath\": \"\",\n              \"qualifyImageName\": \"true\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"true\",\n              \"addDefaultLabels\": \"true\",\n              \"imageDigestFile\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"volumes\": \"\",\n              \"envVars\": \"\",\n              \"workingDirectory\": \"\",\n              \"entrypointOverride\": \"\",\n              \"containerCommand\": \"\",\n              \"runInBackground\": \"true\",\n              \"restartPolicy\": \"no\",\n              \"maxRestartRetries\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"enforceDockerNamingConvention\": \"true\",\n              \"memoryLimit\": \"\"\n            }\n          },\n          {\n            \"environment\": {\n\n            },\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Push an image\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"e28912f1-0114-4464-802a-a3a35437fd16\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"\",\n              \"command\": \"Push an image\",\n              \"dockerFile\": \"**/Dockerfile\",\n              \"arguments\": \"\",\n              \"useDefaultContext\": \"true\",\n              \"buildContext\": \"\",\n              \"pushMultipleImages\": \"false\",\n              \"tagMultipleImages\": \"false\",\n              \"imageName\": \"Web:$(Build.BuildNumber)\",\n              \"imageNamesPath\": \"\",\n              \"qualifyImageName\": \"true\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"addDefaultLabels\": \"true\",\n              \"imageDigestFile\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"volumes\": \"\",\n              \"envVars\": \"\",\n              \"workingDirectory\": \"\",\n              \"entrypointOverride\": \"\",\n              \"containerCommand\": \"\",\n              \"runInBackground\": \"true\",\n              \"restartPolicy\": \"no\",\n              \"maxRestartRetries\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"enforceDockerNamingConvention\": \"true\",\n              \"memoryLimit\": \"\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$MyShuttle$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"MyShuttle\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {\n\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [\n\n  ],\n  \"queue\": {\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"pool\": {\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"MyShuttleDockerBuild\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Dashboard.json",
    "content": "﻿{\n  \"name\": \"Overview\",\n  \"refreshInterval\": 5,\n  \"position\": 1,\n  \"widgets\": [\n    {\n      \"name\": \"Test Plan\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#00643a\\\",\\\"queryId\\\":\\\"$TestPlan$\\\",\\\"queryName\\\":\\\"Test Plan\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Test Plan\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Features\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#5c197b\\\",\\\"queryId\\\":\\\"$Features$\\\",\\\"queryName\\\":\\\"Features\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Features\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Product Backlog Items\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#007acc\\\",\\\"queryId\\\":\\\"$PBI$\\\",\\\"queryName\\\":\\\"Product Backlog Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Product Backlog Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"All Work Items\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#292e6b\\\",\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Test Suites\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 2\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#7caf9a\\\",\\\"queryId\\\":\\\"$TestSuite$\\\",\\\"queryName\\\":\\\"Test Suites\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Test Suites\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Test Cases\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#339947\\\",\\\"queryId\\\":\\\"$Test Cases$\\\",\\\"queryName\\\":\\\"Test Cases\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Test Cases\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Team Members\",\n      \"position\": {\n        \"row\": 2,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.TeamMembersWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.TeamMembersWidget\",\n      \"configurationContributionId\": null,\n      \"configurationContributionRelativeId\": null,\n      \"isNameConfigurable\": false\n    },\n    {\n      \"name\": \"All Work Items\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"query\\\":{\\\"queryId\\\":\\\"$AllWorkItems$\\\",\\\"queryName\\\":\\\"All Work Items\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"},{\\\"name\\\":\\\"State\\\",\\\"referenceName\\\":\\\"System.State\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n      \"configurationContributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"All Work Items by Work Item Type\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllWorkItems$\\\",\\\"title\\\":\\\"All Work Items by Work Item Type\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllWorkItems$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[{\\\"value\\\":\\\"Task\\\",\\\"backgroundColor\\\":\\\"#fbfd52\\\"},{\\\"value\\\":\\\"Product Backlog Item\\\",\\\"backgroundColor\\\":\\\"#0d60ab\\\"},{\\\"value\\\":\\\"Test Suite\\\",\\\"backgroundColor\\\":\\\"#56987d\\\"},{\\\"value\\\":\\\"Feature\\\",\\\"backgroundColor\\\":\\\"#5c197b\\\"},{\\\"value\\\":\\\"Bug\\\",\\\"backgroundColor\\\":\\\"#e60017\\\"},{\\\"value\\\":\\\"Test Case\\\",\\\"backgroundColor\\\":\\\"#339947\\\"},{\\\"value\\\":\\\"Test Plan\\\",\\\"backgroundColor\\\":\\\"#00643a\\\"}],\\\"lastArtifactName\\\":\\\"All Work Items by Work Item Type\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Sprint Burndown\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n      \"configurationContributionId\": null,\n      \"configurationContributionRelativeId\": null,\n      \"isNameConfigurable\": false\n    },\n    {\n      \"name\": \"Bugs\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 2\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#e60017\\\",\\\"queryId\\\":\\\"$Bugs$\\\",\\\"queryName\\\":\\\"Bugs\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Bugs\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Tasks\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbfd52\\\",\\\"queryId\\\":\\\"$Tasks$\\\",\\\"queryName\\\":\\\"Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Tasks\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Bugs\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 4\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"query\\\":{\\\"queryId\\\":\\\"$Bugs$\\\",\\\"queryName\\\":\\\"Bugs\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"},{\\\"name\\\":\\\"State\\\",\\\"referenceName\\\":\\\"System.State\\\"}],\\\"lastArtifactName\\\":\\\"Bugs\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n      \"configurationContributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n      \"isNameConfigurable\": true\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Queries/All Work Items.json",
    "content": "{\n  \"name\": \"All Work Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Queries/Bugs.json",
    "content": "{\n  \"name\": \"Bugs\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Queries/Feature.json",
    "content": "{\n  \"name\": \"Feature\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Queries/Product Backlog Items.json",
    "content": "{\n  \"name\": \"Product Backlog Items\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Queries/Test Cases.json",
    "content": "{\n  \"name\": \"Test Cases\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Queries/Test Plans.json",
    "content": "{\n  \"name\": \"Test Plans\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Dashboard/Queries/Test Suites.json",
    "content": "﻿{\n  \"name\": \"Test Suites\",\n  \"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] <> ''\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Extensions.json",
    "content": "{\n  \"Extensions\": [\n\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/ImportSourceCode/MyShuttle.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://vstsdemodata.visualstudio.com/_git/MyShuttle\"\n        },\n      \"serviceEndpointId\": \"$MyShuttle-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"id\": \"6b724908-ef14-45cf-84f8-768b5384da45\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/ReleaseDefinitions/MyShuttleDockerRelease.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 3,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"variables\": {\n    \"DBPASSWORD\": {\n      \"value\": null,\n      \"isSecret\": false\n    },\n    \"DBUSER\": {\n      \"value\": \"dbadmin@myshuttle-db\",\n      \"isSecret\": false\n    }\n  },\n  \"variableGroups\": [\n\n  ],\n  \"environments\": [\n    {\n      \"id\": 2,\n      \"name\": \"Azure-Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 4\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 5\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 6\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"bd1bed02-f04e-11e7-8c3f-9a214cf093ae\",\n              \"version\": \"1.*\",\n              \"name\": \"Execute Azure MySQL : SqlTaskFile\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"ServerName\": \"myshuttle-db.mysql.database.azure.com\",\n                \"DatabaseName\": \"alm\",\n                \"SqlUsername\": \"$(DBUSER)\",\n                \"SqlPassword\": \"$(DBPASSWORD)\",\n                \"TaskNameSelector\": \"SqlTaskFile\",\n                \"SqlFile\": \"$(System.DefaultWorkingDirectory)/**/drop/CreateMYSQLDB.sql\",\n                \"SqlInline\": \"\",\n                \"SqlAdditionalArguments\": \"\",\n                \"IpDetectionMethod\": \"AutoDetect\",\n                \"StartIpAddress\": \"\",\n                \"EndIpAddress\": \"\",\n                \"DeleteFirewallRule\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Deploy Azure App Service\",\n              \"refName\": \"AzureRmWebAppDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {\n\n              },\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"$(Parameters.ConnectedServiceName)\",\n                \"WebAppKind\": \"applinux\",\n                \"WebAppName\": \"$(Parameters.WebAppName)\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"ImageSource\": \"Registry\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"web\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/MyShuttle Build/drop/target/myshuttledev.war\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [\n\n      ],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [\n\n      ],      \n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {\n        \"inputs\": [\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n\n            },\n            \"properties\": {\n\n            },\n            \"name\": \"ConnectedServiceName\",\n            \"label\": \"Azure subscription\",\n            \"defaultValue\": \"\",\n            \"required\": true,\n            \"type\": \"connectedService:AzureRM\",\n            \"helpMarkDown\": \"Select the Azure Resource Manager subscription for the deployment.\",\n            \"visibleRule\": \"\",\n            \"groupName\": \"\"\n          },\n          {\n            \"aliases\": [\n\n            ],\n            \"options\": {\n\n            },\n            \"properties\": {\n              \"EditableOptions\": \"True\"\n            },\n            \"name\": \"WebAppName\",\n            \"label\": \"App service name\",\n            \"defaultValue\": \"\",\n            \"required\": true,\n            \"type\": \"pickList\",\n            \"helpMarkDown\": \"Enter or select the name of an existing Azure App Service.\",\n            \"visibleRule\": \"\",\n            \"groupName\": \"\"\n          }\n        ],\n        \"dataSourceBindings\": [\n          {\n            \"dataSourceName\": \"AzureRMWebAppNamesByType\",\n            \"parameters\": {\n              \"WebAppKind\": \"$(WebAppKind)\"\n            },\n            \"endpointId\": \"$(ConnectedServiceName)\",\n            \"target\": \"WebAppName\"\n          }\n        ]\n      },\n      \"properties\": {\n        \"LinkBoardsWorkItems\": {\n          \"$type\": \"System.String\",\n          \"$value\": \"False\"\n        }\n      },\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$MyShuttle-Docker-YAML-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_MyShuttle-Docker-yaml\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$MyShuttle-Docker-YAML-id$\",\n          \"name\": \"MyShuttle-Docker-yaml\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"artifactSourceDefinitionUrl\": \"{}\"\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    },\n    \"IntegrateBoardsWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"False\"\n    },\n    \"IntegrateJiraWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"false\"\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"MyShuttleDockerRelease\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/ReleaseDefinitions/MyShuttleRelease.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 3,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"variables\": {},\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 1,\n      \"name\": \"Azure-Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 1\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 2\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 3\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Run on agent\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"bd1bed02-f04e-11e7-8c3f-9a214cf093ae\",\n              \"version\": \"1.*\",\n              \"name\": \"Execute Azure MySQL : SqlTaskFile\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"ServerName\": \"myshuttle0891.mysql.database.azure.com\",\n                \"DatabaseName\": \"myshuttle0891\",\n                \"SqlUsername\": \"mysqldbuser@myshuttle0891\",\n                \"SqlPassword\": \"P2ssw0rd@123\",\n                \"TaskNameSelector\": \"SqlTaskFile\",\n                \"SqlFile\": \"$(System.DefaultWorkingDirectory)/**/drop/CreateMYSQLDB.sql\",\n                \"SqlInline\": \"\",\n                \"SqlAdditionalArguments\": \"\",\n                \"IpDetectionMethod\": \"AutoDetect\",\n                \"StartIpAddress\": \"\",\n                \"EndIpAddress\": \"\",\n                \"DeleteFirewallRule\": \"true\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Deploy Azure App Service\",\n              \"refName\": \"AzureRmWebAppDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"Web App on Windows\",\n                \"WebAppName\": \"myshuttle83a\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"$(Build.BuildId)\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.war\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \"\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 1,\n        \"url\": \"https://vsrm.dev.azure.com/akshayhosur/99ed66b8-b7be-468b-a12e-8e558bd717f6/_apis/Release/releases/1\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {\n        \"dataSourceBindings\": [\n          {\n            \"dataSourceName\": \"AzureRMWebAppNamesByType\",\n            \"parameters\": {\n              \"WebAppKind\": \"$(WebAppKind)\"\n            },\n            \"endpointId\": \"\",\n            \"target\": \"WebAppName\"\n          }\n        ]\n      },\n      \"properties\": {\n        \"LinkBoardsWorkItems\": {\n          \"$type\": \"System.String\",\n          \"$value\": \"False\"\n        }\n      },\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$MyShuttle-YAML-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_MyShuttle-yaml\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$MyShuttle-YAML-id$\",\n          \"name\": \"MyShuttle-yaml\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"artifactSourceDefinitionUrl\": \"{}\"\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"ReleaseNew\"\n    },\n    \"IntegrateBoardsWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"False\"\n    },\n    \"IntegrateJiraWorkItems\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"false\"\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"MyShuttleRelease\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/ServiceEndpoints/MyShuttle-code.json",
    "content": "﻿{\n  \"data\": {\n\t\t\t\n\t\t},\t\t\n\t\t\"name\": \"MyShuttle-code\",\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://vstsdemodata.visualstudio.com/_git/MyShuttle\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n\t\t\"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/MyShuttle Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/MyShuttle Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/MyShuttle Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/MyShuttle Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/MyShuttle Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team1/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team1/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team1/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team1/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team1/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team2/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team2/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team2/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team2/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Team2/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"9dd1ef55-eb9a-41d2-bc89-27493fd3b614\",\n    \"name\": \"MyShuttle Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"2dd3af32-fd5f-4e0a-8cc3-a616b98f7ec5\",\n    \"name\": \"Team2\",\n    \"description\": \"Team2 Description\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"8aeed92a-c937-48ca-bd6f-fd652708aaeb\",\n    \"name\": \"Team1\",\n    \"description\": \"Team1 Description\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/WorkItems/Bug.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 7277,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:37.127Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:37.127Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"FireFox crashes when Admin profile screen is opened\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"FireFox crashes when Admin profile screen is opened\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7277\"\n    },\n    {\n      \"id\": 7278,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:37.42Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:37.42Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Fare History Filter Date option needs to be fixed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Fare History Filter Date option needs to be fixed\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Fares\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7278\"\n    },\n    {\n      \"id\": 7279,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:37.743Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:37.743Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"mail notification must include links to view on web portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"mail notification must include links to view on web portal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7279\"\n    },\n    {\n      \"id\": 7280,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:38.047Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:38.047Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"There is a lag in the refresh of the map on the driver client application\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"There is a lag in the refresh of the map on the driver client application\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Driver; shuttle\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7280\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/WorkItems/Feature.json",
    "content": "{\n  \"count\": 9,\n  \"value\": [\n    {\n      \"id\": 7216,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:12.997Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Notification controller\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Notification controller\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7216\"\n    },\n    {\n      \"id\": 7217,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:14.493Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Admin portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Admin portal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7217\"\n    },\n    {\n      \"id\": 7218,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:15.53Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Credit Card payment system\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Credit Card payment system\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7218\"\n    },\n    {\n      \"id\": 7219,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:16.42Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"DevTest environment on Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"DevTest environment on Azure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7219\"\n    },\n    {\n      \"id\": 7220,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:17.517Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Social marketing campaigns\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Social marketing campaigns\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7220\"\n    },\n    {\n      \"id\": 7221,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:17.98Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Shuttle advanced booking manager\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Shuttle advanced booking manager\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7221\"\n    },\n    {\n      \"id\": 7222,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:18.52Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Shuttle booking\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Shuttle booking\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7222\"\n    },\n    {\n      \"id\": 7223,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:18.963Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Frequent Rider program\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Frequent Rider program\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7223\"\n    },\n    {\n      \"id\": 7224,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:19.253Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-21T08:24:27.563Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Fare history page for drivers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Fare history page for drivers\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7224\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 22,\n  \"value\": [\n    {\n      \"id\": 7225,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:19.593Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:19.593Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As an admin, I want to be able to contact the passenger\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As an admin, I want to be able to contact the passenger\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Compliance; Customer\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7225\"\n    },\n    {\n      \"id\": 7226,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:19.99Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:19.99Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a driver, I want to know the shortest route to the pickup/dropoff point\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a driver, I want to know the shortest route to the pickup/dropoff point\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Driver; Geolocation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7226\"\n    },\n    {\n      \"id\": 7227,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:20.31Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:20.31Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer I want to know the estimated arrival time of the shuttle\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer I want to know the estimated arrival time of the shuttle\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7227\"\n    },\n    {\n      \"id\": 7228,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:20.633Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:20.633Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I want to know the estimated fare to the destination\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I want to know the estimated fare to the destination\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Customer; Fares; Shuttle Booking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7228\"\n    },\n    {\n      \"id\": 7229,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:20.963Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:20.963Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a driver, I want to have access to my travel history with summary of charges\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a driver, I want to have access to my travel history with summary of charges\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7229\"\n    },\n    {\n      \"id\": 7230,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:21.4Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:21.4Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I should be able to store my credit card with my user profile\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I should be able to store my credit card with my user profile\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Compliance; Customer\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7230\"\n    },\n    {\n      \"id\": 7231,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:21.75Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:21.75Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I want to be able to make advanced bookings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I want to be able to make advanced bookings\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"booking; Customer; shuttle\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7231\"\n    },\n    {\n      \"id\": 7232,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:22.083Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:22.083Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a driver, I want to be able to notify the admin on booking cancellation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a driver, I want to be able to notify the admin on booking cancellation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Driver; Notification\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7232\"\n    },\n    {\n      \"id\": 7233,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:22.37Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:22.37Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Customer should be notified on profile updates\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Customer should be notified on profile updates\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Compliance; Customer; Notification\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7233\"\n    },\n    {\n      \"id\": 7234,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:22.727Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:22.727Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I want to know the estimated fare to the destination\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I want to know the estimated fare to the destination\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Customer; Fares; Shuttle Booking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7234\"\n    },\n    {\n      \"id\": 7235,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:23.04Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:23.04Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a driver, I want a summary of charges\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a driver, I want a summary of charges\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Driver; Fares\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7235\"\n    },\n    {\n      \"id\": 7236,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:23.323Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:23.323Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As an adminsitrator, I should be able to see customer travel history\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As an adminsitrator, I should be able to see customer travel history\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Compliance; Customer; Shuttle Booking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7236\"\n    },\n    {\n      \"id\": 7237,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:23.613Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:23.613Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I should be able to sign out of the portal\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I should be able to sign out of the portal\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Compliance; Customer\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7237\"\n    },\n    {\n      \"id\": 7238,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:24.057Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:24.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Load test for 300K peak users scenarios for the upcoming campaign\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Load test for 300K peak users scenarios for the upcoming campaign\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7238\"\n    },\n    {\n      \"id\": 7239,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:24.393Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:24.393Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Set new Azure subscription for DB teams\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Set new Azure subscription for DB teams\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure; Ops\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7239\"\n    },\n    {\n      \"id\": 7240,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:24.7Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:24.7Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I want to cancel my bookings 30 minutes before pickup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I want to cancel my bookings 30 minutes before pickup\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Customer; Notification; Shuttle Booking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7240\"\n    },\n    {\n      \"id\": 7241,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:24.987Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:24.987Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Customers should be notified on distruption of services\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Customers should be notified on distruption of services\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7241\"\n    },\n    {\n      \"id\": 7242,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:25.283Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:25.283Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I want to create a profile and store my personal information so I can quickly book a shuttle\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I want to create a profile and store my personal information so I can quickly book a shuttle\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Blocked; Compliance; Customer; Driver\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7242\"\n    },\n    {\n      \"id\": 7243,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:25.59Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:25.59Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I want to be able to print receipts of my past travel\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I want to be able to print receipts of my past travel\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Customer; Fares; Shuttle Booking\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7243\"\n    },\n    {\n      \"id\": 7244,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:25.877Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:25.877Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer I want to be able to identify the location of the shuttle\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer I want to be able to identify the location of the shuttle\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Customer; Geolocation; Notification\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7244\"\n    },\n    {\n      \"id\": 7245,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:26.173Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:26.173Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Move INTPPE environment to Azure\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Move INTPPE environment to Azure\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure; Ops\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7245\"\n    },\n    {\n      \"id\": 7246,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:26.46Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:26.46Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Upgrade data storage capacity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Upgrade data storage capacity\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Azure; Ops\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7246\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/WorkItems/Task.json",
    "content": "{\n  \"count\": 27,\n  \"value\": [\n    {\n      \"id\": 7247,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:26.757Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:26.757Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Change on the data capacity to 512TB on MSVRAID\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Change on the data capacity to 512TB on MSVRAID\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7247\"\n    },\n    {\n      \"id\": 7248,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:27.09Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:27.09Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Custom Notification to Customer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Custom Notification to Customer\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7248\"\n    },\n    {\n      \"id\": 7249,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:27.37Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:27.37Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Passenger info retrieval option to be added\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Passenger info retrieval option to be added\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7249\"\n    },\n    {\n      \"id\": 7250,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:27.667Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:27.667Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Test route calculation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Test route calculation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7250\"\n    },\n    {\n      \"id\": 7251,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:28.127Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:28.127Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Aggregate the summary data in the model\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Aggregate the summary data in the model\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7251\"\n    },\n    {\n      \"id\": 7252,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:28.403Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:28.403Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add the view UI for the total\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add the view UI for the total\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7252\"\n    },\n    {\n      \"id\": 7253,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:28.683Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:28.683Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update Notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update Notification\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7253\"\n    },\n    {\n      \"id\": 7254,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:28.97Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:28.97Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Review Legal Terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Review Legal Terms\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7254\"\n    },\n    {\n      \"id\": 7255,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:29.253Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:29.253Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Estimated Time Calculator\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Estimated Time Calculator\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7255\"\n    },\n    {\n      \"id\": 7256,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:29.62Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:29.62Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Distance Calculator - GeoLocate Current Point\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Distance Calculator - GeoLocate Current Point\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7256\"\n    },\n    {\n      \"id\": 7257,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:29.9Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:29.9Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Profile Details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Profile Details\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7257\"\n    },\n    {\n      \"id\": 7258,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:30.18Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:30.18Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Test Cancellation Scenarios\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Test Cancellation Scenarios\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7258\"\n    },\n    {\n      \"id\": 7259,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:30.473Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:30.473Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Cancellation Notification to Driver\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cancellation Notification to Driver\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7259\"\n    },\n    {\n      \"id\": 7260,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:30.753Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:30.753Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Cancellation Conditions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Cancellation Conditions\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7260\"\n    },\n    {\n      \"id\": 7261,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:31.033Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:31.033Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add Billing Address\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add Billing Address\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7261\"\n    },\n    {\n      \"id\": 7262,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:31.333Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:31.333Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add Another Card Option\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add Another Card Option\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7262\"\n    },\n    {\n      \"id\": 7263,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:31.607Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:31.607Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add a update profile option\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add a update profile option\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7263\"\n    },\n    {\n      \"id\": 7264,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:32.66Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:32.66Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Document terms and conditions of the disclaimer\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Document terms and conditions of the disclaimer\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7264\"\n    },\n    {\n      \"id\": 7265,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:32.953Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:32.953Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Update doc on the calculation method\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update doc on the calculation method\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7265\"\n    },\n    {\n      \"id\": 7266,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:33.24Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:33.24Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Calculate the total for the total fare\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Calculate the total for the total fare\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7266\"\n    },\n    {\n      \"id\": 7267,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:33.527Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:33.527Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Calculate total for the trips\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Calculate total for the trips\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7267\"\n    },\n    {\n      \"id\": 7268,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:34.42Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:34.42Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add a row to the table in the fares home page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add a row to the table in the fares home page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7268\"\n    },\n    {\n      \"id\": 7269,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:34.763Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:34.763Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Call Passenger Option\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Call Passenger Option\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7269\"\n    },\n    {\n      \"id\": 7270,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:35.043Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:35.043Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Push Notification to include arrival time\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Push Notification to include arrival time\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7270\"\n    },\n    {\n      \"id\": 7271,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:35.367Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:35.367Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Invalidate session on log out\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Invalidate session on log out\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7271\"\n    },\n    {\n      \"id\": 7272,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:35.643Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:35.643Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add a signout link to the home page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add a signout link to the home page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7272\"\n    },\n    {\n      \"id\": 7273,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:35.927Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:35.927Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add a link to the dashboard page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add a link to the dashboard page\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7273\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/WorkItems/Test Case.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 7274,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:36.2Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:36.2Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Test - the total field must also show the sum\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7274\"\n    },\n    {\n      \"id\": 7275,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:36.57Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:36.57Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Test - the sum of the fares must on the trips selected\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7275\"\n    },\n    {\n      \"id\": 7276,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:36.847Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:36.847Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Shuttle Booking - Current\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7276\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/WorkItems/Test Plan.json",
    "content": "{\n  \"count\": 3,\n  \"value\": [\n    {\n      \"id\": 7281,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Plan\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"New test plan\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:38.357Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:38.357Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"MyShuttle2 Team_Stories_Sprint 3\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"MyShuttle2 Team_Stories_Sprint 3\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7281\"\n    },\n    {\n      \"id\": 7282,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Plan\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"New test plan\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:38.643Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:38.643Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Release 1.0\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Release 1.0\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7282\"\n    },\n    {\n      \"id\": 7312,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Plan\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"New test plan\",\n        \"System.CreatedDate\": \"2021-09-20T10:58:03.943Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-20T10:58:03.943Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7312\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-MyShuttle/WorkItems/Test Suite.json",
    "content": "{\n  \"count\": 12,\n  \"value\": [\n    {\n      \"id\": 7283,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:38.93Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:38.93Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"MyShuttle2 Team_Stories_Sprint 3\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"MyShuttle2 Team_Stories_Sprint 3\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7283\"\n    },\n    {\n      \"id\": 7284,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:39.247Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:39.247Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"765 : As a driver, I want to have access to my travel history with summary of charges\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"765 : As a driver, I want to have access to my travel history with summary of charges\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7284\"\n    },\n    {\n      \"id\": 7285,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:39.583Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:39.583Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"MyShuttle2 Team_Stories_Sprint 3\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"MyShuttle2 Team_Stories_Sprint 3\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7285\"\n    },\n    {\n      \"id\": 7286,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:39.867Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:39.867Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Manual Tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Manual Tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7286\"\n    },\n    {\n      \"id\": 7287,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:40.14Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:40.14Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"New suite\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"New suite\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7287\"\n    },\n    {\n      \"id\": 7288,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:40.437Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:40.437Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Load Tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Load Tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7288\"\n    },\n    {\n      \"id\": 7289,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:40.72Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:40.72Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"UI Automation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"UI Automation\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7289\"\n    },\n    {\n      \"id\": 7290,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:41.013Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:41.013Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Performance Tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Performance Tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7290\"\n    },\n    {\n      \"id\": 7291,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:41.31Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:41.31Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Smoke Tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Smoke Tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7291\"\n    },\n    {\n      \"id\": 7292,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:41.587Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:41.587Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Regression Suites\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Regression Suites\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7292\"\n    },\n    {\n      \"id\": 7293,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-01T10:07:41.887Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-01T10:07:41.887Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Release 1.0\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Release 1.0\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7293\"\n    },\n    {\n      \"id\": 7313,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"MyShuttle\",\n        \"System.TeamProject\": \"MyShuttle\",\n        \"System.IterationPath\": \"MyShuttle\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2021-09-20T10:58:04.577Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2021-09-20T10:58:04.577Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/akshayhosur/_apis/wit/workItems/7313\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/BoardColumns.json",
    "content": "[\n  {\n    \"description\": \"\",\n    \"name\": \"New\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"New\",\n      \"Bug\": \"New\"\n    },\n    \"columnType\": \"incoming\",\n    \"isSplit\": null\n  },\n  {\n    \"description\": \"Defintion of Done for the In Progress column:\\n\\nFor App Dev Team\\n-------------------\\n      1. Prototype approved by stakeholders\\n      2. User stories submitted\\n      3. Time and effort estimation completed\\n\\nPlease be sure that all of these are **complete** before moving something into the *Done* section of the In Progress column. Please refer to the [Team Wiki](http://devopsconferences.visualstudio.com/wiki) site for more details\",\n    \"name\": \"Design\",\n    \"itemLimit\": 10,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Approved\",\n      \"Bug\": \"Approved\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": true\n  },\n  {\n    \"description\": \"Defintion of Done for the In Progress column:\\n             1. All unit test written\\n             2. Tested by someone other than yourself\\n             3. Upgrade scripts written and tested\\nPlease be sure that all of these are **complete** before moving something into the *Done* section of the In Progress column. Please refer to the [Team Wiki](http://devopsconferences.visualstudio.com/wiki) site for more details\",\n    \"name\": \"Develop & Test\",\n    \"itemLimit\": 15,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Committed\",\n      \"Bug\": \"Committed\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": true\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Done\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Done\",\n      \"Bug\": \"Done\"\n    },\n    \"columnType\": \"outgoing\",\n    \"isSplit\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/BoardRowsFromTemplate.json",
    "content": "[\n  {\n    \"id\": \"fd08f0e8-2ddb-4981-841e-7afe43c40841\",\n    \"name\": \"Expedite\"\n  },\n  {\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"name\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/BugfromTemplate.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 408,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:30.11Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:26:06.677Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Sel_IE_Navigate Failed in 2488\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Sel_IE_Navigate Failed in 2488\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/542\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/408\"\n    },\n    {\n      \"id\": 409,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:30.343Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-05-04T14:34:59.33Z\",\n        \"System.ChangedBy\": \"Christina Kelly <ckelly109@outlook.com>\",\n        \"System.Title\": \"Decline in orders noticed - Please Investigate immediately\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Decline in orders noticed - Please Investigate immediately\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": \"Expedite\",\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/attachments/d531649b-1dfa-4644-bf04-3b8fd965eda9\",\n          \"attributes\": {\n            \"authorizedDate\": \"2017-04-11T04:43:07.393Z\",\n            \"id\": \"217227\",\n            \"resourceCreatedDate\": \"2017-04-11T04:44:26.377Z\",\n            \"resourceModifiedDate\": \"2017-03-07T03:39:05.317Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"resourceSize\": \"347958\",\n            \"name\": \"appInsights.png\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/$projectId$%2F$RepositoryId$%2F$Fixed Product Search Functionality$\",\n          \"attributes\": {\n            \"authorizedDate\": \"2017-05-04T14:34:59.33Z\",\n            \"id\": \"225243\",\n            \"resourceCreatedDate\": \"2017-05-04T14:34:59.33Z\",\n            \"resourceModifiedDate\": \"2017-05-04T14:34:59.33Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/409\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/BuildDefinitions/PartsUnlimitedE2E.json",
    "content": "{\n    \"options\": [\n        {\n            \"enabled\": false,\n            \"definition\": {\n                \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n            },\n            \"inputs\": {\n                \"workItemType\": \"181387\",\n                \"assignToRequestor\": \"true\",\n                \"additionalFields\": \"{}\"\n            }\n        },\n        {\n            \"enabled\": false,\n            \"definition\": {\n                \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n            },\n            \"inputs\": {\n                \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n                \"additionalFields\": \"{}\"\n            }\n        }\n    ],\n    \"triggers\": [\n        {\n            \"branchFilters\": [\n                \"+refs/heads/master\"\n            ],\n            \"pathFilters\": [],\n            \"batchChanges\": false,\n            \"maxConcurrentBuildsPerBranch\": 1,\n            \"pollingInterval\": 0,\n            \"triggerType\": \"continuousIntegration\"\n        }\n    ],\n    \"variables\": {\n        \"system.debug\": {\n            \"value\": \"false\",\n            \"allowOverride\": true\n        },\n        \"BuildConfiguration\": {\n            \"value\": \"release\",\n            \"allowOverride\": true\n        },\n        \"BuildPlatform\": {\n            \"value\": \"any cpu\",\n            \"allowOverride\": true\n        }\n    },\n    \"retentionRules\": [\n        {\n            \"branches\": [\n                \"+refs/heads/*\"\n            ],\n            \"artifacts\": [],\n            \"artifactTypesToDelete\": [\n                \"FilePath\",\n                \"SymbolStore\"\n            ],\n            \"daysToKeep\": 10,\n            \"minimumToKeep\": 1,\n            \"deleteBuildRecord\": true,\n            \"deleteTestResults\": true\n        }\n    ],\n    \"properties\": {},\n    \"tags\": [],\n    \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n    \"jobAuthorizationScope\": \"projectCollection\",\n    \"jobTimeoutInMinutes\": 60,\n    \"jobCancelTimeoutInMinutes\": 5,\n    \"process\": {\n      \"phases\": [\n        {\n          \"steps\": [\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"NuGet restore\",\n              \"timeoutInMinutes\": 0,\n              \"refName\": \"NuGetInstaller_1\",\n              \"task\": {\n                \"id\": \"333b11bd-d341-40d9-afcf-b32d5ce6f23b\",\n                \"versionSpec\": \"0.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"solution\": \"**\\\\*.sln\",\n                \"nugetConfigPath\": \"\",\n                \"restoreMode\": \"restore\",\n                \"noCache\": \"false\",\n                \"nuGetRestoreArgs\": \"\",\n                \"verbosity\": \"-\",\n                \"nuGetVersion\": \"3.3.0\",\n                \"nuGetPath\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Build solution\",\n              \"timeoutInMinutes\": 0,\n              \"refName\": \"VSBuild_2\",\n              \"task\": {\n                \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"solution\": \"**\\\\*.sln\",\n                \"vsVersion\": \"15.0\",\n                \"msbuildArgs\": \"/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation=\\\"$(build.stagingDirectory)\\\" /p:IncludeServerNameInBuildInfo=True /p:GenerateBuildInfoConfigFile=true /p:BuildSymbolStorePath=\\\"$(SymbolPath)\\\" /p:ReferencePath=\\\"C:\\\\Program Files (x86)\\\\Microsoft Visual Studio\\\\2017\\\\Enterprise\\\\Common7\\\\IDE\\\\Extensions\\\\Microsoft\\\\Pex\\\"\",\n                \"platform\": \"$(BuildPlatform)\",\n                \"configuration\": \"$(BuildConfiguration)\",\n                \"clean\": \"false\",\n                \"maximumCpuCount\": \"false\",\n                \"restoreNugetPackages\": \"false\",\n                \"msbuildArchitecture\": \"x86\",\n                \"logProjectEvents\": \"true\",\n                \"createLogFile\": \"false\"\n              }\n            },\n            \n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Copy Files\",\n              \"timeoutInMinutes\": 0,\n              \"condition\": \"succeeded()\",\n              \"refName\": \"CopyFiles1\",\n              \"task\": {\n                \"id\": \"5bfb729a-a7c8-4a78-a7c3-8d717bb7c13c\",\n                \"versionSpec\": \"2.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"SourceFolder\": \"$(build.sourcesdirectory)\",\n                \"Contents\": \"**/*.json\",\n                \"TargetFolder\": \"$(build.artifactstagingdirectory)\",\n                \"CleanTargetFolder\": \"false\",\n                \"OverWrite\": \"false\",\n                \"flattenFolders\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Publish Artifact\",\n              \"timeoutInMinutes\": 0,\n              \"refName\": \"PublishBuildArtifacts_5\",\n              \"task\": {\n                \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n                \"ArtifactName\": \"drop\",\n                \"ArtifactType\": \"Container\",\n                \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n                \"Parallel\": \"false\",\n                \"ParallelCount\": \"8\"\n              }\n            }\n          ],\n          \"name\": \"Phase 1\",\n          \"refName\": \"Phase_1\",\n          \"condition\": \"succeeded()\",\n          \"target\": {\n            \"executionOptions\": {\n              \"type\": 0\n            },\n            \"allowScriptsAuthAccessOption\": false,\n            \"type\": 1\n          },\n          \"jobAuthorizationScope\": \"projectCollection\",\n          \"jobCancelTimeoutInMinutes\": 1\n        }\n      ],\n      \"target\": {\n            \"agentSpecification\": {\n                \"identifier\": \"windows-2019\"\n            }\n        },\n        \"type\": 1\n    },\n    \"repository\": {\n        \"properties\": {\n            \"labelSources\": \"0\",\n            \"reportBuildStatus\": \"true\",\n            \"fetchDepth\": \"0\",\n            \"gitLfsSupport\": \"false\",\n            \"skipSyncSource\": \"false\",\n            \"cleanOptions\": \"0\",\n            \"checkoutNestedSubmodules\": \"false\",\n            \"labelSourcesFormat\": \"$(build.buildNumber)\"\n        },\n        \"id\": \"$PartsUnlimited$\",\n        \"type\": \"TfsGit\",\n        \"name\": \"PartsUnlimited\",\n        \"defaultBranch\": \"refs/heads/master\",\n        \"clean\": \"false\",\n        \"checkoutSubmodules\": false\n    },\n    \"processParameters\": {},\n    \"quality\": \"definition\",\n    \"drafts\": [],\n    \"queue\": {\n        \"name\": \"Azure Pipelines\",\n        \"pool\": {\n            \"name\": \"Azure Pipelines\",\n            \"isHosted\": true\n        }\n    },\n    \"name\": \"PartsUnlimitedE2E\",\n    \"path\": \"\\\\\",\n    \"type\": \"build\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/Dashboard.json",
    "content": "﻿{\n    \"name\": \"Overview\",\n    \"refreshInterval\": 0,\n    \"position\": 1,\n    \"widgets\": [\n        {\n            \"name\": \"Work in Progress\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"queryId\\\":\\\"$WorkinProgress$\\\", \\\"queryName\\\": \\\"Work in Progress\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Welcome\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.HowToLinksWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.HowToLinksWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Work Links\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 8\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WorkLinksWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WorkLinksWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Feedback\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 7\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$Feedback$\\\",\\\"queryName\\\":\\\"Feedback\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Feedback\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Sprint Burndown\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 8\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"Unfinished Work\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 7\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$Unfinished Work$\\\",\\\"queryName\\\":\\\"Unfinished Work\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Unfinished Work\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Assigned to Me\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget.Configuration\",\n            \"isNameConfigurable\": false,\n            \"lightboxOptions\": {\n                \"width\": 900,\n                \"height\": 700,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"User Stories\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 3\n            },\n            \"settings\": \"{\\\"query\\\":{\\\"queryId\\\":\\\"$UserStories$\\\",\\\"queryName\\\":\\\"User Stories\\\"},\\\"selectedColumns\\\":[{\\\"name\\\":\\\"ID\\\",\\\"referenceName\\\":\\\"System.Id\\\"},{\\\"name\\\":\\\"Work Item Type\\\",\\\"referenceName\\\":\\\"System.WorkItemType\\\"},{\\\"name\\\":\\\"Title\\\",\\\"referenceName\\\":\\\"System.Title\\\"},{\\\"name\\\":\\\"Assigned To\\\",\\\"referenceName\\\":\\\"System.AssignedTo\\\"},{\\\"name\\\":\\\"State\\\",\\\"referenceName\\\":\\\"System.State\\\"}],\\\"lastArtifactName\\\":\\\"User Stories\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget\",\n            \"configurationContributionId\": \"ms.vss-mywork-web.Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.MyWork.WitViewWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"Critical Bugs\",\n        \"position\": {\n          \"row\": 1,\n          \"column\": 6\n        },\n        \"size\": {\n          \"rowSpan\": 1,\n          \"columnSpan\": 1\n        },\n        \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$ActiveBugs$\\\",\\\"queryName\\\":\\\"Critical Bugs\\\",\\\"colorRules\\\":[{\\\"isEnabled\\\":true,\\\"backgroundColor\\\":\\\"#e60017\\\",\\\"thresholdCount\\\":1,\\\"operator\\\":\\\"<=\\\"}],\\\"lastArtifactName\\\":\\\"Critical Bugs\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 1,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n        \"isNameConfigurable\": true\n      },\n        {\n            \"name\": \"User Stories by State\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 6\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$UserStories$\\\",\\\"title\\\":\\\"User Stories by State\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$UserStories$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"User Stories by State\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 3,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n           \n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"isNameConfigurable\": true,\n            \"lightboxOptions\": {\n                \"width\": 900,\n                \"height\": 700,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"User Stories by Assigned To\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 2,\n                \"columnSpan\": 2\n            },\n            \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$UserStories$\\\",\\\"title\\\":\\\"User Stories by Assigned To\\\",\\\"chartType\\\":\\\"StackAreaChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$UserStories$\\\",\\\"groupBy\\\":\\\"System.AssignedTo\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":\\\"last7Days\\\"},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"User Stories by Assigned To\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 3,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n            \"isNameConfigurable\": true,\n            \"lightboxOptions\": {\n                \"width\": 900,\n                \"height\": 700,\n                \"resizable\": true\n            }\n        },\n        {\n            \"name\": \"Team Members\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 8\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.TeamMembersWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.TeamMembersWidget\",\n            \"configurationContributionId\": null,\n            \"configurationContributionRelativeId\": null,\n            \"isNameConfigurable\": false\n        },\n        {\n            \"name\": \"New Work Item\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 8\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 2\n            },\n            \"settings\": null,\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.NewWorkItemWidget.Configuration\",\n            \"isNameConfigurable\": false\n        }\n    ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/Queries/All Items.json",
    "content": "﻿{\n  \"name\": \"All Items_WI\",\n  \"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]<>''\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/Queries/Critical Bugs.json",
    "content": "{\n   \"name\": \"Critical Bugs\",\n   \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/Queries/Feedback.json",
    "content": "{\n  \"name\": \"Feedback_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.Title], [System.State],[System.CreatedBy],[Microsoft.VSTS.Common.Rating] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] IN GROUP 'Microsoft.FeedbackResponseCategory' AND [System.State] = 'Active' ORDER BY [System.Id]\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/Queries/Test Case-Readiness.json",
    "content": "﻿{\n  \"name\": \"Test Case-Readiness\",\n  \"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]'\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/Queries/UnfinishedWork.json",
    "content": "﻿{\n  \"name\": \"Unfinished Work_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.Title],[Microsoft.VSTS.Common.BacklogPriority],[System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork],[Microsoft.VSTS.CMMI.Blocked],[System.WorkItemType] FROM workitemLinks WHERE ([Source].[System.TeamProject] = @project AND [Source].[System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND ([Source].[System.WorkItemType] IN GROUP 'Microsoft.RequirementCategory' OR [Source].[System.WorkItemType] IN GROUP 'Microsoft.TaskCategory' ) AND [Source].[System.State] <> 'Removed' AND [Source].[System.State] <> 'Done') AND ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward')  AND ([Target].[System.WorkItemType] IN GROUP 'Microsoft.TaskCategory' AND [Target].[System.State] <> 'Done' AND [Target].[System.State] <> 'Removed') ORDER BY [Microsoft.VSTS.Common.BacklogPriority],[Microsoft.VSTS.Scheduling.Effort], [Microsoft.VSTS.Scheduling.RemainingWork],[System.Id] MODE (Recursive)\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/Queries/User Stories.json",
    "content": "{\n  \"name\": \"User Stories\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/Queries/Work in Progress.json",
    "content": "﻿{\n  \"name\": \"Work in Progress_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.WorkItemType],[System.Title], [System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork] FROM workitems WHERE [System.TeamProject] = @project     AND [System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND [System.WorkItemType] IN GROUP 'Microsoft.TaskCategory'     AND [System.State] = 'In Progress' ORDER BY [System.AssignedTo],[Microsoft.VSTS.Common.BacklogPriority],[System.Id]\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Dashboard/WidgetQuery.json",
    "content": "{\n  \"name\": \"$name$\",\n  \"position\": {\n    \"row\":\"\" ,\n    \"column\": \"\"\n  },\n  \"size\": {\n    \"rowSpan\": 1,\n    \"columnSpan\": 1\n  },\n \"settings\":\"{\\\"defaultBackgroundColor\\\":\\\"#e60017\\\",\\\"queryId\\\":\\\"$QueryId$\\\",\\\"queryName\\\":\\\"$QueryName$\\\",\\\"colorRules\\\":[]}\",\n  \"settingsVersion\": {\n    \"major\": 1,\n    \"minor\": 0,\n    \"patch\": 0\n  },\n \n  \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/EnableEpic.json",
    "content": "﻿{\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n\t\"Microsoft.FeatureCategory\": true,\n\t\"Microsoft.RequirementCategory\": true\n\t}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/EpicfromTemplate.json",
    "content": "{\n  \"count\": 16,\n  \"value\": [\n    {\n      \"id\": 415,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:31.91Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:31.91Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/286\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/415\"\n    },\n    {\n      \"id\": 533,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:18:00.283Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:18:00.627Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Shopping Cart Facility\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/545\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/547\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/548\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/552\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/533\"\n    },\n    {\n      \"id\": 534,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:19:26.017Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:19:26.69Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Online tracking of shipments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/546\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/549\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/534\"\n    },\n    {\n      \"id\": 535,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:19:38.767Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:19:38.97Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Product reviews and ratings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/542\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/543\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/535\"\n    },\n    {\n      \"id\": 536,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:19:57.847Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:19:58.143Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Promotion and Rewards\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/550\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/554\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/536\"\n    },\n    {\n      \"id\": 537,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:20:08.86Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:20:09.127Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/551\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/537\"\n    },\n    {\n      \"id\": 538,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:20:21.423Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:20:21.847Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Membership and Rewards Program\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/539\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/540\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/538\"\n    },\n    {\n      \"id\": 555,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:31:06.43Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:31:07.087Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Customer Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/541\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/544\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/555\"\n    },\n    {\n      \"id\": 556,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:31:46.663Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:31:47.087Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Product Catalog\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/553\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/556\"\n    },\n    {\n      \"id\": 557,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2017-03-07T21:34:26.703Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:34:27.157Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Payment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/558\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/557\"\n    },\n    {\n      \"id\": 422,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:33.41Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:33.41Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As ops guy, I'd like to make sure I am notified anytime public availability is impacted for key user scenarios\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As ops guy, I'd like to make sure I am notified anytime public availability is impacted for key user scenarios\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/422\"\n    },\n    {\n      \"id\": 423,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:33.66Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:33.66Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As a user i want to be able to search the PartsUnlimited Website so that i can find the products i want to purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a user i want to be able to search the PartsUnlimited Website so that i can find the products i want to purchase\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/423\"\n    },\n    {\n      \"id\": 424,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:33.86Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:33.86Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/424\"\n    },\n    {\n      \"id\": 425,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:34.08Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:34.08Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"We want to make frequent enhancements to the MRP application and need to modernize the application from its current legacy state.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"We want to make frequent enhancements to the MRP application and need to modernize the application from its current legacy state.\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/425\"\n    },\n    {\n      \"id\": 426,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:34.3Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:34.3Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As ops guy, I'd like to keep the business owners happy ensuring there is no wasted spend in cloud resources.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As ops guy, I'd like to keep the business owners happy ensuring there is no wasted spend in cloud resources.\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/426\"\n    },\n    {\n      \"id\": 427,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:34.5Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:34.5Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/427\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n  \n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/FeaturefromTemplate.json",
    "content": "{\n  \"count\": 22,\n  \"value\": [\n    {\n      \"id\": 539,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:21:48.143Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:21:48.347Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Points Accural on Purchases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/538\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/539\"\n    },\n    {\n      \"id\": 540,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:21:57.807Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:22:07.18Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Rewards Redemption\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/538\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/540\"\n    },\n    {\n      \"id\": 542,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:22:38.42Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:22:38.777Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Ratings for purchased items\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/303\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/408\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/535\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/542\"\n    },\n    {\n      \"id\": 543,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:22:52.777Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:22:52.997Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Supplier Feedback\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/535\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/543\"\n    },\n    {\n      \"id\": 545,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:23:26.87Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:23:27.17Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Shipping charges calculation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/533\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/545\"\n    },\n    {\n      \"id\": 546,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:23:34.81Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:23:35.513Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Delivery Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/317\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/320\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/534\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/546\"\n    },\n    {\n      \"id\": 547,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:23:52.747Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:23:53.013Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Order cancellation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/533\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/547\"\n    },\n    {\n      \"id\": 548,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:24:00.733Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:24:01.013Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Order confirmation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/533\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/309\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/310\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/548\"\n    },\n    {\n      \"id\": 549,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:24:07.03Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:24:07.34Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Delivery confirmation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/534\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/327\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/329\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/549\"\n    },\n    {\n      \"id\": 551,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:25:27.207Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:25:27.583Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Customer notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/318\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/537\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/551\"\n    },\n    {\n      \"id\": 286,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:02.967Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:26:22.05Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As marketeer, I want us to reuse the web assets for apps on Android and iOS with corporate branding, and I will want to be able to update the device apps with every marketing promotion. That will mean using Cordova.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As marketeer, I want us to reuse the web assets for apps on Android and iOS with corporate branding, and I will want to be able to update the device apps with every marketing promotion. That will mean using Cordova.\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/315\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/316\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/415\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/286\"\n    },\n    {\n      \"id\": 552,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:26:21.723Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:26:22.05Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Gift Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/533\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/321\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/325\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/552\"\n    },\n    {\n      \"id\": 554,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:30:01.443Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:30:01.803Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Ad-hoc promotions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/536\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/554\"\n    },\n    {\n      \"id\": 544,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:22:59.06Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:31:15.18Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Customer issues\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/555\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/544\"\n    },\n    {\n      \"id\": 541,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:22:29.76Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:31:17.507Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Ask for customer feedback\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/326\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/555\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/541\"\n    },\n    {\n      \"id\": 550,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:24:25.687Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:31:26.867Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Product Recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/302\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/304\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/323\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/536\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/550\"\n    },\n    {\n      \"id\": 553,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:27:15.1Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:31:59.54Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Product catalog changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/328\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/556\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/553\"\n    },\n    {\n      \"id\": 558,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2017-03-07T21:34:51.173Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:34:51.173Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Credit Card Purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/319\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/557\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/558\"\n    },\n    {\n      \"id\": 298,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:05.733Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:05.733Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Ops needs the ability to quickly roll back to a known good state in the event of a critical problem in production.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ops needs the ability to quickly roll back to a known good state in the event of a critical problem in production.\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/298\"\n    },\n    {\n      \"id\": 299,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:05.95Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:05.95Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As an Ops guy, I want to ensure that the legacy MRP system configuration is consistent.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As an Ops guy, I want to ensure that the legacy MRP system configuration is consistent.\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/299\"\n    },\n    {\n      \"id\": 300,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:06.157Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:06.157Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As a business owner, I would like to know how much our historical spend is to help project future spend for budgeting + financials.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a business owner, I would like to know how much our historical spend is to help project future spend for budgeting + financials.\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/300\"\n    },\n    {\n      \"id\": 301,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:06.407Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:06.407Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/301\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/ImportSourceCode/PartsUnlimited.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/_git/PartsUnlimited\"\n    },\n\t\"serviceEndpointId\": \"$partsUnlimited-code$\",\n  \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/ImportSourceCode.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/DefaultCollection/PartsUnlimited/_git/PartsUnlimited\"\n    },\n\t\"serviceEndpointId\": \"$partsUnlimited-code$\",\n  \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/PBIfromTemplate.json",
    "content": "{\n  \"count\": 18,\n  \"value\": [\n    {\n      \"id\": 45758,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:05.023Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:05.023Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Provide related items or frequently bought together section when people browse or search\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Provide related items or frequently bought together section when people browse or search\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45898\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45758\"\n    },\n    {\n      \"id\": 45759,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:07.04Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:07.04Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As tester, I need to test the website on all the relevant broswers and devices and be sure that it can handle our load.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"As tester, I need to test the website on all the relevant broswers and devices and be sure that it can handle our load.\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45759\"\n    },\n    {\n      \"id\": 45760,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:09.103Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:09.103Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I should be able to put items to shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"As a customer, I should be able to put items to shopping cart\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45861\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45905\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45906\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45760\"\n    },\n    {\n      \"id\": 45761,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:10.807Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:10.807Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I should be able to print my purchase order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ops needs the ability to quickly roll back to a known good state in the event of a critical problem in production.\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45902\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45761\"\n    },\n    {\n      \"id\": 45762,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:12.823Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:12.823Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I would like to have a sort capabaility by price and customer ratings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 13.0,\n        \"System.Description\": \"As developer, I want a clone of the Phoenix feedback and events database\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45901\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45762\"\n    },\n    {\n      \"id\": 45763,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:14.853Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:14.853Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Recommended products must be based on customer purchase pattern history\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Recommended products must be based on customer purchase pattern history\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45763\"\n    },\n    {\n      \"id\": 45764,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:16.87Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:16.87Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I would like to save my addresses so that I can easily select the address for delivery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"As a customer, I would like to save my addresses so that I can easily select the address for delivery\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45864\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45764\"\n    },\n    {\n      \"id\": 45765,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:18.823Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:18.823Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45765\"\n    },\n    {\n      \"id\": 45766,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:20.76Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:20.76Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Provide customers the ability to track status of the package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Provide customers the ability to track status of the package\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45766\"\n    },\n    {\n      \"id\": 45767,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:22.917Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:22.917Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I would like to have the ability to send my items as gift\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"As a customer, I would like to have the ability to send my items as gift\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45767\"\n    },\n    {\n      \"id\": 45768,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:24.98Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:24.98Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I would like to store my credit card details securely\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"More information here\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45900\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45903\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45904\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45768\"\n    },\n    {\n      \"id\": 45769,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:26.697Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:26.697Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I should be able to select different shipping option\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"As a customer, I should be able to view all the shipping options available and be able to select a different shipping option other than the default option\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45769\"\n    },\n    {\n      \"id\": 45770,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:28.84Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:28.84Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45770\"\n    },\n    {\n      \"id\": 45771,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:30.777Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:30.777Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Provide tentative duration for shipping.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 13.0,\n        \"System.Description\": \"Customers when they make the order and select the shipping method, the system should provide the tentative duration for shipping the items\",\n        \"System.AssignedTo\": \"Bharath YM <Bharath.YM@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45897\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45771\"\n    },\n    {\n      \"id\": 45772,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Work stopped\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:32.777Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:32.777Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Notify the user about any changes made to the order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"Users should be notified when there is a change to the order including shipping, delivery, price changes\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45899\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45772\"\n    },\n    {\n      \"id\": 45773,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:34.777Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:34.777Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a admin, I should be able to update prices on ad-hoc condition\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 6.0,\n        \"System.Description\": \"As a admin, I should be able to update prices on ad-hoc condition. The prices should be immediately reflected on the product page. Any unconfirmed order should include the updated price&nbsp;\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45862\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45773\"\n    },\n    {\n      \"id\": 45774,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:36.713Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:36.713Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I would like to provide my feedback on items that I have purchased\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"As a customer, I would like to provide my feedback on items that I have purchased\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45865\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45774\"\n    },\n    {\n      \"id\": 45775,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2017-07-04T05:13:38.65Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:13:38.65Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I would like to have a wishlist where I can add items for future purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"As a customer, I would like to have a wishlist where I can add items for future purchase\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45863\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45775\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/ProjectSettings.json",
    "content": "﻿{\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\"],\n  \"tags\": [ \"Azure\", \"Blocked\", \"Ops\", \"Marketing\", \"Production\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"Template Name\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"UerStoriesfromTemplate.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"BoardRowsFromTemplate.json\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/PullRequests/Comments/PullRequest1.json",
    "content": "﻿{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"The fix looks good 👍 👍\",\n          \"commentType\": 1\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": \"System.Int32\",\n          \"value\": 1\n\n        }\n      },\n      \"status\": 1,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null,\n      \"Replies\": [\n         {\n          \"content\": \"Thanks for the review 😃\",\n          \"parentCommentId\": 1,\n          \"commentType\": 1\n        }\n      ]\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/PullRequests/Comments/PullRequest2.json",
    "content": "﻿{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"The Terms and conditions for Sales looks perfect. You will have to include support clause as well.\",\n          \"commentType\": 1\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": \"System.Int32\",\n          \"value\": 1\n\n        }\n      },\n      \"status\": 1,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null,\n      \"Replies\": [\n       \n      ]\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"Updated Terms and Conditions with support clause. Please review.\",\n          \"commentType\": 1\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": \"System.Int32\",\n          \"value\": 1\n\n        }\n      },\n      \"status\": 1,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null,\n      \"Replies\": [\n        {\n          \"content\": \"Awesome! Good to go 👍 👍\",\n          \"parentCommentId\": 1,\n          \"commentType\": 1\n        }\n\n      ]\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/PullRequests/PullRequest1.json",
    "content": "﻿{\n   \"title\": \"Fixed Product Search Functionality\",\n  \"description\": \"Please review\",\n  \"sourceRefName\": \"refs/heads/FixSearchFunctionality\",\n  \"targetRefName\": \"refs/heads/master\",\n  \"reviewers\": [\n    {\n      \"id\": \"$reviewer$\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/PullRequests/PullRequest2.json",
    "content": "﻿{\n    \"title\": \"Added Terms and Conditions for Sale in Layout.cshtml Page\",\n  \"description\": \"Updated _Layout.cshtml\\nTerms and Conditions for Sale added\",\n  \"sourceRefName\": \"refs/heads/AddTerms&Conditions\",\n  \"targetRefName\": \"refs/heads/master\",\n  \"reviewers\": [\n    {\n      \"id\": \"$reviewer$\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Query.json",
    "content": "{\n  \"name\": \"$name$\",\n  \"wiql\": \"$query$\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/ReleaseDefinitions/PartsUnlimitedE2E.json",
    "content": "{\n  \"source\": \"restApi\",\n  \"revision\": 7,\n  \"name\": \"PartsUnlimitedE2E\",\n  \"description\": null,\n\n  \"isDeleted\": false,\n  \"path\": \"\\\\\",\n  \"variables\": {\n   \"HostingPlan\": {\n            \"value\": \"pule2e\"\n        },\n        \"ResourceGroupName\": {\n            \"value\": \"ASPDOTNET\"\n        },\n        \"ServerName\": {\n            \"value\": \"pule2e$UUID$\"\n        }\n  },\n  \"variableGroups\": [], \n  \"environments\": [\n    {\n\n      \"name\": \"QA\",\n      \"rank\": 2,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"pule2e$UUID$\"\n        }\n      },\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployStep\": {\n       \n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"QA\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"true\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"$(ResourceGroupName)\",\n                \"SlotName\": \"Staging\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimitedWebsite.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"queueId\": \"$Azure Pipelines$\",\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"Dev\",\n          \"conditionType\": \"environmentState\",\n          \"value\": \"4\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {}\n    },\n    {\n\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"pule2e$UUID$\"\n        }\n      },\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 2\n          }\n        ]\n      },\n      \"deployStep\": {\n\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Dev\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Deployment\",\n              \"refName\": \"AzureResourceGroupDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(ResourceGroupName)\",\n                \"location\": \"Central US\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimited-aspnet45/env/PartsUnlimitedEnv/Templates/FullEnvironmentSetupMerged.json\",\n                \"csmParametersFile\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimited-aspnet45/env/PartsUnlimitedEnv/Templates/FullEnvironmentSetupMerged.param.json\",\n                \"overrideParameters\": \"-WebsiteName $(WebsiteName) -PUL_ServerName $(ServerName)  -PUL_HostingPlanName $(HostingPlan)\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"outputVariable\": \"\"\n              }\n            },\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment2\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"true\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"$(ResourceGroupName)\",\n                \"SlotName\": \"Dev\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimitedWebsite.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"queueId\": \"$Azure Pipelines$\",\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {}\n    },\n    {\n\n      \"name\": \"Production\",\n      \"rank\": 3,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"pule2e$UUID$\"\n        }\n      },\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 7\n          }\n        ]\n      },\n      \"deployStep\": {\n\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Production\",\n          \"workflowTasks\": [\n            {\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimitedWebsite.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"queueId\": \"$Azure Pipelines$\",\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"QA\",\n          \"conditionType\": \"environmentState\",\n          \"value\": \"4\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {}\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$PartsUnlimitedE2E-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"PartsUnlimitedE2E\",\n      \"definitionReference\": {\n        \"definition\": {\n          \"id\": \"$PartsUnlimitedE2E-id$\",\n          \"name\": \"PartsUnlimitedE2E\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"PartsUnlimitedE2E\",\n      \"triggerConditions\": [],\n      \"triggerType\": \"artifactSource\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"retentionPolicy\": {\n    \"daysToKeep\": 30\n  },\n  \"tags\": [],\n  \"properties\": {}\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/ServiceEndpoints/partsUnlimited-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"partsUnlimited-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/_git/PartsUnlimited\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/TaskfromTemplate.json",
    "content": "{\n  \"count\": 29,\n  \"value\": [\n    {\n      \"id\": 330,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:12.763Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:12.763Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Update navigation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update navigation\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/330\"\n    },\n    {\n      \"id\": 331,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:12.983Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:12.983Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Add categories\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add categories\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/331\"\n    },\n    {\n      \"id\": 332,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:13.203Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:13.203Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"New bug\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"New bug\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/332\"\n    },\n    {\n      \"id\": 333,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:13.5Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:13.5Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Be sure and include a dark theme\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Be sure and include a dark theme\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/333\"\n    },\n    {\n      \"id\": 334,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:13.733Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:13.733Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"testzzz\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"testzzz\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/334\"\n    },\n    {\n      \"id\": 335,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:13.937Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:13.937Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Update the prices on web pages\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update the prices on web pages\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/335\"\n    },\n    {\n      \"id\": 336,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:14.14Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:14.14Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Develop the logic to display geo dependent prices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Develop the logic to display geo dependent prices\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/336\"\n    },\n    {\n      \"id\": 337,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:14.343Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:14.343Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Check new pricing for lights, brakes and wheels\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Check new pricing for lights, brakes and wheels\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/337\"\n    },\n    {\n      \"id\": 341,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:15.187Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:07:19.62Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Update product selection section to move items to wishlist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automation to include creation of the SQL DB on Azure\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 12.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/321\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/341\"\n    },\n    {\n      \"id\": 602,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2017-05-04T13:37:43.803Z\",\n        \"System.CreatedBy\": \"Craig Cambell <craig109@outlook.com>\",\n        \"System.ChangedDate\": \"2017-05-04T13:46:51.05Z\",\n        \"System.ChangedBy\": \"Christina Kelly <ckelly109@outlook.com>\",\n        \"System.Title\": \"Add Terms and Conditions for Sale & Support in Layout.cshtml Page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/$projectId$%2F$RepositoryId$%2F$Added Terms and Conditions for Sale in Layout.cshtml Page$\",\n          \"attributes\": {\n            \"authorizedDate\": \"2017-05-04T13:46:51.05Z\",\n            \"id\": \"225235\",\n            \"resourceCreatedDate\": \"2017-05-04T13:46:51.05Z\",\n            \"resourceModifiedDate\": \"2017-05-04T13:46:51.05Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/602\"\n    },\n    {\n      \"id\": 344,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:15.81Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:15.81Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Trial CD in staging\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Trial CD in staging\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/344\"\n    },\n    {\n      \"id\": 358,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:19.047Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T21:55:03.743Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Approval for price change\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/328\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/358\"\n    },\n    {\n      \"id\": 345,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:16.25Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:07:52.807Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Add wishlist page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/321\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/345\"\n    },\n    {\n      \"id\": 359,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:19.263Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:11:19.023Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Display price change in the product section\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"The price change for a product should be displayed with a proper graphic depending on whether the price increase or decrease\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/328\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/359\"\n    },\n    {\n      \"id\": 360,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:19.467Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:11:30.337Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Update price changes to unfinished orders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/328\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/360\"\n    },\n    {\n      \"id\": 356,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:18.623Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:12:04.533Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Design Feedback page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design the UI for a feedback section/page\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/326\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/356\"\n    },\n    {\n      \"id\": 357,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:18.843Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:13:00.877Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Create Storyboard\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create Storyboard that shows the customer experience of providing feedback&nbsp;\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/326\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/357\"\n    },\n    {\n      \"id\": 352,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:17.703Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:17.703Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Storyboard the Dashboard\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Storyboard the Dashboard\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/352\"\n    },\n    {\n      \"id\": 353,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:17.953Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:17.953Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Develop the logic to display geo dependent prices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Develop the logic to display geo dependent prices\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/353\"\n    },\n    {\n      \"id\": 354,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:18.203Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:18.203Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Prototype Azure WS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Prototype Azure WS\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/354\"\n    },\n    {\n      \"id\": 355,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:18.42Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:18.42Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Storyboard the Azure WS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Storyboard the Azure WS\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/355\"\n    },\n    {\n      \"id\": 363,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:20.093Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-02T12:14:20.093Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Create Storyboard\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create Storyboard\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/329\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/363\"\n    },\n    {\n      \"id\": 362,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:19.89Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:15:45.243Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Update Orders page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update Orders page\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/329\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/362\"\n    },\n    {\n      \"id\": 348,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:16.843Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:15:47.37Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Add shipment tracking page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/329\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/348\"\n    },\n    {\n      \"id\": 347,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:16.64Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:15:50.34Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Generate gift return slip\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/325\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/347\"\n    },\n    {\n      \"id\": 349,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:17.03Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:15:53.073Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Update Gift selection page to include a message\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/325\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/349\"\n    },\n    {\n      \"id\": 343,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:15.61Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-07T22:17:26.92Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Update order confirmation page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"craig109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/320\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/343\"\n    },\n    {\n      \"id\": 338,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:14.547Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-08T23:25:21.43Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Calculate delivery date based on shipping method\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/320\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/338\"\n    },\n    {\n      \"id\": 340,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited\",\n        \"System.TeamProject\": \"PartsUnlimited\",\n        \"System.IterationPath\": \"PartsUnlimited\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2017-03-02T12:14:14.953Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.ChangedDate\": \"2017-03-08T23:25:28.897Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sachin77@outlook.com>\",\n        \"System.Title\": \"Update add product section with Gift options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"\",\n        \"System.AssignedTo\": \"nmunger109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/325\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/340\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Teams.json",
    "content": "[\n  {\n    \"name\": \"PUL-DB\",\n    \"description\": \"PUL DB Team\"\n  },\n  {\n    \"name\": \"PUL\",\n    \"description\": \"Parts Unlimited Web Team\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/TestCasefromTemplate.json",
    "content": "{\n  \"count\": 71,\n  \"value\": [\n    {\n      \"id\": 45805,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:36.437Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:36.437Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Enable reviews \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step type=\\\"ActionStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Start application&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"3\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Go to reviews&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"4\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;add a review&amp;nbsp;@review&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"5\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;add a question&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"6\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Add a kudo&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"7\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Close&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": \"<parameters><param name=\\\"review\\\" bind=\\\"default\\\" /></parameters>\",\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"{\\\"parameterMap\\\":[{\\\"localParamName\\\":\\\"review\\\",\\\"sharedParameterName\\\":\\\"review\\\",\\\"sharedParameterDataSetId\\\":3223}],\\\"sharedParameterDataSetIds\\\":[3223],\\\"rowMappingType\\\":0}\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45805\"\n    },\n    {\n      \"id\": 45806,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:38.513Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:38.513Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify Branding\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step type=\\\"ActionStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Go to Page1&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ValidateStep\\\" id=\\\"3\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Check the brand at the top left corner&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;Brand is represented correctly&lt;/P&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45806\"\n    },\n    {\n      \"id\": 45807,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:41.17Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:41.17Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I should be able to browse the web site\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Goto http://partsunlimiteddev.azurewebsites.net/&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click Brakes&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Brakes will be shown&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click Lighting&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Lighting will be shown&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click &lt;SPAN STYLE=\\\"font-weight:bold;\\\"&gt;Batteries&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Batteries will be shown&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45807\"\n    },\n    {\n      \"id\": 45808,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:43.14Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:43.14Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"A new test case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45808\"\n    },\n    {\n      \"id\": 45809,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:45.093Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:45.093Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Underwater device Versions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45809\"\n    },\n    {\n      \"id\": 45810,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:46.767Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:46.767Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Test CD Runs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45810\"\n    },\n    {\n      \"id\": 45811,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:49.047Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:49.047Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Corbin Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;one&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;two&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;sdafkj&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;af&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;asdf&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;sdafasdfasdf&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"9\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"></parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45811\"\n    },\n    {\n      \"id\": 45812,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:50.767Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:50.767Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify new category navigation and IA is working as expected\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45812\"\n    },\n    {\n      \"id\": 45813,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:52.703Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:52.703Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"please make sure Oil is branding\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Lighting&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Wheels &amp; Tires&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45813\"\n    },\n    {\n      \"id\": 45814,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:54.64Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:54.64Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"IOT Telemetry of products\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45814\"\n    },\n    {\n      \"id\": 45815,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:56.58Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:56.58Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Navigation Test Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45815\"\n    },\n    {\n      \"id\": 45816,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:14:58.58Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:14:58.58Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Test Azure Creation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45816\"\n    },\n    {\n      \"id\": 45817,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:00.517Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:00.517Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Test CD Runs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45817\"\n    },\n    {\n      \"id\": 45818,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:02.547Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:02.547Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Reviews\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 4.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step type=\\\"ActionStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Start App&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"3\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Go to tires&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"4\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Add a Review&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45818\"\n    },\n    {\n      \"id\": 45819,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:04.767Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:04.767Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Test CI Runs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45819\"\n    },\n    {\n      \"id\": 45820,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:06.733Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:06.733Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Native App versions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45820\"\n    },\n    {\n      \"id\": 45821,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:08.69Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:08.69Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Performance of purchasing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45821\"\n    },\n    {\n      \"id\": 45822,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:10.627Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:10.627Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Internationalization Test Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45822\"\n    },\n    {\n      \"id\": 45823,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:12.313Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:12.313Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Response SLA verifcatino\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45823\"\n    },\n    {\n      \"id\": 45824,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:14.283Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:14.283Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Performance of Categories\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45824\"\n    },\n    {\n      \"id\": 45825,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:16.283Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:16.283Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Test CI Runs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45825\"\n    },\n    {\n      \"id\": 45826,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:18.343Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:18.343Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Test Azure Website Creation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 4.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45826\"\n    },\n    {\n      \"id\": 45827,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:20.283Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:20.283Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Test End to End Automation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 4.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45827\"\n    },\n    {\n      \"id\": 45828,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:22.25Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:22.25Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"please tgest new tire category ...in green\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Lighting&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Wheels &amp; Tires&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45828\"\n    },\n    {\n      \"id\": 45829,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:24.203Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:24.203Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Capacity verification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45829\"\n    },\n    {\n      \"id\": 45830,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:26.157Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:26.157Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"VS Bug\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45830\"\n    },\n    {\n      \"id\": 45831,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:28.08Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:28.08Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify clone baseline functionality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45831\"\n    },\n    {\n      \"id\": 45832,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:30.033Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:30.033Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Shopping using categories Test Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Go to browser&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Home page is displyed&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45832\"\n    },\n    {\n      \"id\": 45833,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:32Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:32Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer I would be able to browse the site\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step type=\\\"ActionStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">Open &lt;A href=\\\"http://www.surface.com\\\"&gt;www.surface.com&lt;/A&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\" /><description /></step><step type=\\\"ValidateStep\\\" id=\\\"3\\\"><parameterizedString isformatted=\\\"true\\\">press down scroll</parameterizedString><parameterizedString isformatted=\\\"true\\\">Scroll should work</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45833\"\n    },\n    {\n      \"id\": 45834,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:33.987Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:33.987Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"The customer should be able to place an item to the cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45834\"\n    },\n    {\n      \"id\": 45835,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:35.94Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:35.94Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I should be able to login\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45835\"\n    },\n    {\n      \"id\": 45836,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:37.877Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:37.877Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a customer, I should be able to login  \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">start app</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">go to here</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45836\"\n    },\n    {\n      \"id\": 45837,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:39.83Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:39.83Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"As a consumer, I want to be able to add a coupon code to my purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><compref id=\\\"4\\\" ref=\\\"13022\\\"><step type=\\\"ActionStep\\\" id=\\\"1\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Add a coupon code to the coupon code text box&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ValidateStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click to apply button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;A discount should be applied&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></compref></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45837\"\n    },\n    {\n      \"id\": 45838,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:41.77Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:41.77Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"New test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Launch browser&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Go to www.partsunlimited.com &amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\" /><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45838\"\n    },\n    {\n      \"id\": 45839,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:43.72Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:43.72Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that only managers c an have hierarchical backlog.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45839\"\n    },\n    {\n      \"id\": 45840,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:45.66Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:45.66Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Product Load Verification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45840\"\n    },\n    {\n      \"id\": 45841,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:47.363Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:47.363Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Mobile verification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45841\"\n    },\n    {\n      \"id\": 45842,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:49.27Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:49.27Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Battery Test CAse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Batteries&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on  &#39;Batteries\\n\\n\\n12-Volt Calcium Battery\\n$129.99\\n\\n&amp;nbsp;Shop Now\\n\\nSpiral Coil Battery\\n$154.99\\n\\n&amp;nbsp;Shop Now\\n\\nJumper Leads\\n$16.99\\n\\n&amp;nbsp;Shop Now\\n&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45842\"\n    },\n    {\n      \"id\": 45843,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:51.19Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:51.19Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Sachin please test the new categories\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;open aap&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;adsfkj&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45843\"\n    },\n    {\n      \"id\": 45844,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:53.13Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:53.13Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify the performance impact of loarge file loads are wiythin the specified limits\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45844\"\n    },\n    {\n      \"id\": 45845,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:55.097Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:55.097Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify the large file loads\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45845\"\n    },\n    {\n      \"id\": 45846,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:57.067Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:57.067Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify CDNsetup works\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45846\"\n    },\n    {\n      \"id\": 45847,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:15:59.033Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:15:59.033Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that cloning works decoupled form Phoenix legacy team. New Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Goto main&amp;nbsp;page &amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Login &amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;Successful Login&lt;/P&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45847\"\n    },\n    {\n      \"id\": 45848,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:00.99Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:00.99Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify by clicking on Login redirecting the user to login page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the Application.&lt;BR/&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Clicking on login should redirect the user to login page</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45848\"\n    },\n    {\n      \"id\": 45849,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:02.927Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:02.927Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"\\\"Verify succesfull login.  Pre-requisite: Valid email and password\\\"\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"1\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:60.0pt\\\"&gt;\\n  &lt;TD height=\\\"80\\\" class=\\\"xl65\\\" dir=\\\"LTR\\\" width=\\\"225\\\" style=\\\"height:60.0pt;width:169pt\\\"&gt;Login to the application.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"262\\\" style=\\\"width: 197pt\\\"&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:60.0pt\\\"&gt;\\n  &lt;TD height=\\\"80\\\" class=\\\"xl65\\\" width=\\\"262\\\" style=\\\"height:60.0pt;width:197pt\\\"&gt;Succesfull\\n  login and user should land in home page from his/her logged-in account.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45849\"\n    },\n    {\n      \"id\": 45850,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:05.52Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:05.52Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"\\\"Verify succesfull login.  Pre-requisite: Valid email and password\\\"\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Succesfull login and user should land in home page from his/her logged-in account.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Type in Email and Password.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on LOGIN button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45850\"\n    },\n    {\n      \"id\": 45851,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:07.503Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:07.503Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify by clicking on Register as new user? redirecting the user to registration page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the Application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Clicking on Register as new user? should redirect the user to Registration page</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Register as new user? link.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45851\"\n    },\n    {\n      \"id\": 45852,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:09.457Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:09.457Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify succesfull Registration.  Pre-requisite: Valid email\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Login to the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Register Confirmation message should display.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Register as new user? link.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Type in email, password and confirm password.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Click on REGISTER button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45852\"\n    },\n    {\n      \"id\": 45853,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:11.66Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:11.66Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify user email confirmation by clicking the link Click here to confirm your email  Pre-requisite: Valid email\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Confirm email message should display.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;\\n &lt;COLGROUP&gt;&lt;COL width=\\\"225\\\" style=\\\"width:169pt\\\"/&gt;\\n &lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl66\\\" width=\\\"225\\\" style=\\\"height:30.0pt;width:169pt\\\"&gt;Click\\n  on Register as new user? link.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl66\\\" width=\\\"225\\\" style=\\\"height:30.0pt;border-top:none;width:169pt\\\"&gt; &lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:15.0pt\\\"&gt;\\n  &lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:15.0pt;border-top:none;width:169pt\\\"&gt;&lt;BR/&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Type in email, password and confirm password.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;&lt;TBODY&gt;&lt;TR style=\\\"height: 15pt\\\"&gt;&lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height: 15pt;border-top: none;width: 169pt\\\"&gt; Click on REGISTER button.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style=\\\"height: 30pt\\\"&gt;&lt;TD height=\\\"40\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height: 30pt;border-top: none;width: 169pt\\\"&gt; Click on link =&amp;gt; &lt;FONT class=\\\"font5\\\"&gt;Click here to confirm\\n  your email&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45853\"\n    },\n    {\n      \"id\": 45854,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:13.647Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:13.647Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify any input data entered returns proper results.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"1\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;\\n &lt;COLGROUP&gt;&lt;COL width=\\\"225\\\" style=\\\"width:169pt\\\"/&gt;\\n &lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:30.0pt;width:169pt\\\"&gt; Launch the application.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:15.0pt\\\"&gt;\\n  &lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:15.0pt;border-top:none;width:169pt\\\"&gt;&lt;BR/&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Any input data entered should return proper results.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45854\"\n    },\n    {\n      \"id\": 45855,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:15.6Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:15.6Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify any input data entered returns proper results/error message guiding to enter the correct input.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Search icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Type in any data in search field.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45855\"\n    },\n    {\n      \"id\": 45856,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:17.77Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:17.77Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify search results change according to the input\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;\\n &lt;COLGROUP&gt;&lt;COL width=\\\"225\\\" style=\\\"width:169pt\\\"/&gt;\\n &lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:30.0pt;width:169pt\\\"&gt;\\nLaunch the application.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:15.0pt\\\"&gt;\\n  &lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:15.0pt;border-top:none;width:169pt\\\"&gt; Type in any data in search field.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:15.0pt\\\"&gt;\\n  &lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:15.0pt;border-top:none;width:169pt\\\"&gt; Click on Search icon.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:30.0pt;border-top:none;width:169pt\\\"&gt; Again, alter the search input and click on search icon.&lt;/TD&gt;\\n &lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Any input data entered should return proper results.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"/><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45856\"\n    },\n    {\n      \"id\": 45857,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:19.473Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:19.473Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify any input data entered returns proper message when no results found.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">. Launch the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Any input data entered should return proper message.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Type in any data in search field for which no results exist</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Search icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45857\"\n    },\n    {\n      \"id\": 45858,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:21.413Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:21.413Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify clicking on logo redirects user to home page.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Clicking on logo should redirect the user to home page</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Navigate to any page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on application logo.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45858\"\n    },\n    {\n      \"id\": 45859,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:23.333Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:23.333Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify by adding product to cart page.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Selected product should add to user cart.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to any page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Nvigate to any product details page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on ADD TO CART button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45859\"\n    },\n    {\n      \"id\": 45860,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:25.38Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-04T05:16:25.38Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify by removing product from cart page.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Selected product should remove from user cart</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to any page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Nvigate to any product details page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on ADD TO CART button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">From cart page, click on REMOVE button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45860\"\n    },\n    {\n      \"id\": 45898,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:28:39.517Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-10T11:22:37.473Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that the items are displayed in the Frequently Bought section.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer  should be able to login into the application as an Customer.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the product by entering the product name on the search bar&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Product based on the search results should be displayed.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Select the product which user wishes to purchase&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On selecting the product, user should get navigated to \\\"Product details\\\" screen. &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Perform a scroll on the product details screen&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to view the list of frequently purchased items under Frequently Bought section&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45758\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45898\"\n    },\n    {\n      \"id\": 45899,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:29:27.833Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-10T11:24:52.37Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that a notification is sent out to the user when there are changes to the order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer  should be able to login into the application as an Customer.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the product by entering the product name on the search bar&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Product based on the search results should be displayed.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Select the product and add the product to Cart, From the cart screen, click on Proceed to Checkout button and make the payment&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Order should be successfully placed and order number should be generated.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Logout from the application and login as an admin&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to login as admin&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the product for which user had generated an order&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Results should be displayed based on the product search criteria.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on Edit description tab and change the product price and click on Save button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;a. Updated product price should be saved&lt;BR/&gt;b. An email and an SMS notification on the price change should be sent out to the User who has ordered the product.&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45772\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45899\"\n    },\n    {\n      \"id\": 45900,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:30:05.303Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-10T11:25:56.707Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that user is allowed to save his credit card detail\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to login into the application as an Customer.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile and select Saved Cards&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be navigated to Saved cards page.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on ADD button to add new card details&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Enter the Credit Card number, Expiry date, CVV number and Card holders name and click on Save button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customers card details should be saved successfully.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45768\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45900\"\n    },\n    {\n      \"id\": 45903,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:34:35.333Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-10T11:27:13.437Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that user is not allowed to save invalid credit card details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Customer should be able to login into the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile and select Saved Cards&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer should get navigated to Saved cards page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on ADD button to add new card details and enter invalid card details, Click on Save button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer should not be allowed to save the invalid card details&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45768\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45903\"\n    },\n    {\n      \"id\": 45904,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:34:35.333Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-10T11:35:56.917Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that user is allowed to edit and save his valid credit card details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Customer should be able to login into the application as an Customer.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile and select Saved Cards&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer should get navigated to Saved cards page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the already added card number and Edit the card details&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45768\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45904\"\n    },\n    {\n      \"id\": 45901,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:30:32.163Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-10T11:36:53.887Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that user should be able to sort the products based on Price and Customer ratings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to login into the application with his credentials.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the product by entering the product name on the search bar&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Results should be displayed based on the search criteria&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Price dropdown and select \\\"Low to High\\\" option&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search results should be displayed based on lowest price to highest price.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Customer Ratings dropdown and select 3 star ratings&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Search results should display product with 3 star customer ratings.&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45762\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45901\"\n    },\n    {\n      \"id\": 45902,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:30:54.15Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-10T11:37:41.573Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that as a customer, user should be able to print the purchase order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to login into the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile icon and select \\\"Order\\\"&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be navigated to Orders screen with list of orders from the logged in Customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Order number which customer wants to print&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be navigated to Orders details screen.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Print button on the order details screen&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Print preview page should be displayed and Customer should be able print the order page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45761\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45902\"\n    },\n    {\n      \"id\": 45864,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:33.29Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-11T06:41:06.897Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that customer is allowed to add address for shipping.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;User should be able to login with his credentials&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile icon and select \\\"Shipping Address \\\"&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be navigated to Shipping Address screen.&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on Add button to add the Shipping information, Enter the Shipping information&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to view and should be able to select  the saved address.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on Save button to save the details.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Details should be validated and saved&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45764\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45864\"\n    },\n    {\n      \"id\": 45863,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:31.35Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-11T06:43:26.07Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Validate that customer is able to add an item to the wishlist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a Customer&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to login to the application with his credentials&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Categories which user is interested in&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to see the category list&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the item and click on the \\\"Add to Wishlist\\\" button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Selected item should be displayed in the Wishlist page.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile icon and select \\\"Wish list\\\" option&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;User should be able to see the added item in the  \\\"Wishlist\\\" section&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45775\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45863\"\n    },\n    {\n      \"id\": 45865,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:35.46Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-11T07:39:10.807Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Validate that customer is allowed to add an feedback to the item purchases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login as an customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;User should be able to login to the site with his credentials&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Click on the Categories which user is interested in and hover on the image and click on Shop Now button&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to hover, see the \\\"Shop Now\\\" image and click on it&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Click on Add to Cart button  on the item page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Item should be added to cart&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Click on Checkout button and enter Shipping information&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to enter details</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Click on \\\"Submit Order\\\" button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to submit his order successfully&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Once order is placed, click on the Profile icon and select View order option&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;View Order option should be visible in the User Profile&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Specify the search criteria, either by order number or by order dates&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;User should be able to see the orders or by dates or order&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Order number displayed in the search result&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Order number should be able to get selected&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Feedback link and enter the review comments in the feedback form and click on Save button&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Added feedback should get posted against the respective item&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45774\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45865\"\n    },\n    {\n      \"id\": 45862,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:29.38Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-11T07:44:33.927Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that Admin is able to change the price of the item\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login as Admin&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Admin should be able to login to the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On navigating to Home screen, click on the Admin icon and select Manage items&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Admin should be able to see the Manage Items icon in the Home screen&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On the Store manager page,  Click on the \\\"Edit\\\" link against the item which admin wants to update.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Admin should be able to edit the item link&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On item edit page, update the Price and Sale price and click on the Save button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;On successful update, updated price should reflect on the Store manager screen against the respective item&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45773\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45862\"\n    },\n    {\n      \"id\": 45861,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:16:27.32Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-11T07:50:56.86Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that Customer is able to add an item into the shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login as a Customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to login with his credentials&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Categories which user is interested in&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Products available under the category should be displayed&amp;nbsp;&lt;BR/&gt;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the images of items under the selected category and click on Shop Now button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to navigate to Product Details screen&lt;BR/&gt;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the \\\"ADD TO CART\\\" button on the prodcut description page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;On adding item to cart, User should be able to see the added item in the Cart Page&amp;nbsp;&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45760\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45861\"\n    },\n    {\n      \"id\": 45905,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:36:59.14Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-11T07:52:15.35Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that user is able to add multiple items into the shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a Customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;Customer  should be able to login into the application with his credentials.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Categories which user is interested in&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Products available under the category should be displayed&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the images of items under the selected category and click on Shop Now button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to navigate to Product Details screen&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the \\\"ADD TO CART\\\" button on the Product description page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On adding item to cart, User should be able to see the added item in the Cart Page&lt;BR/&gt;Count on the cart icon should be displayed based on the number of items added to the cart.&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Go back to the home screen click on the categories, Hover on the images and click on the Shop now button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to navigate to Product Details screen&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on \\\"ADD TO CART\\\" button to add the item&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On adding an item to cart, Count on the Cart icon should be increased and the added item should be displayed in Cart Page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45760\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45905\"\n    },\n    {\n      \"id\": 45906,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:36:59.14Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-11T07:52:46.203Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that user is able to remove the item from cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a Customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;Customer  should be able to login into the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Categories which user is interested in&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Products available under the category should be displayed&amp;nbsp;&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the images of items under the selected category and click on Shop Now button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to navigate to Product Details screen&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the \\\"ADD TO CART\\\" button on the Product description page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On adding item to cart, User should be able to see the added item in the Cart Page&lt;BR/&gt;Count on the cart icon should be displayed based on the number of items added to the cart.&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Cart icon on the home page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should get navigated to \\\"Cart Page\\\"&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Remove button on the cart page against the item which user wants to remove.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On removing the item, count on the cart icon should be decreased and the item should be removed from Cart page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45760\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45906\"\n    },\n    {\n      \"id\": 45897,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_TM\",\n        \"System.TeamProject\": \"PartsUnlimited_TM\",\n        \"System.IterationPath\": \"PartsUnlimited_TM\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2017-07-04T05:26:59.34Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2017-07-11T07:52:57.6Z\",\n        \"System.ChangedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.Title\": \"Verify that the tentative date is displayed for shipping the product\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Customer  should be able to login into the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Click on the Categories which user is interested in &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Products available under the category should be displayed&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the images of items under the selected category and click on Shop Now link&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to navigate to Product Details screen&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the \\\"ADD TO CART\\\" button on the Product description page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should get navigated to Shopping Cart screen&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Enter the Valid pin code in the pin code field&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Based on the pincode entered, tentative dates for shipping the product should be displayed.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": \"<parameters/>\",\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45771\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://bharathym.visualstudio.com/_apis/wit/workItems/45897\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/TestPlans/TestPlan1.json",
    "content": "{\n  \"name\": \"$project$_TestPlan1\",\n  \"iteration\": \"$project$\\\\Sprint 2\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/TestPlans/TestSuites/TestPlan1.json",
    "content": "{\n  \"value\": [\n    {\n      \"name\": \"$45771$ : Provide tentative duration for shipping.\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45771$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45897\" ]\n    },\n    {\n      \"name\": \"$45758$ : Provide related items or frequently bought together section when people browse or search\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45758$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45898\" ]\n    },\n    {\n      \"name\": \"$45772$ : Notify the user about any changes made to the order\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45772$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45899\" ]\n    },\n    {\n      \"name\": \"$45768$ : As a customer, I would like to store my credit card details securely\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45768$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45900\",\"45903\",\"45904\" ]\n    },\n\t{\n      \"name\": \"$45762$ : As a customer, I would like to have a sort capabaility by price and customer ratings\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45762$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45901\" ]\n    },\n\t{\n      \"name\": \"$45761$ : As a customer, I should be able to print my purchase order\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45761$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45902\" ]\n    },\n\t{\n      \"name\": \"$45764$ : As a customer, I would like to save my addresses so that I can easily select the address for delivery\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45764$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45864\" ]\n    },\n\t{\n      \"name\": \"$45775$ : As a customer, I would like to have a wishlist where I can add items for future purchase\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45775$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45863\" ]\n    },\n\t{\n      \"name\": \"$45774$ : As a customer, I would like to provide my feedback on items that I have purchased\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45774$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45865\" ]\n    },\n\t{\n      \"name\": \"$45773$ : As a admin, I should be able to update prices on ad-hoc condition\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45773$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45862\" ]\n    },\n\t{\n      \"name\": \"$45760$ : As a customer, I should be able to put items to shopping cart\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\"$45760$\"],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"45861\",\"45905\",\"45906\" ]\n    }\n  ],\n  \"count\": 11\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/UpdateCardFields.json",
    "content": "{\n  \"cards\": {\n    \"Bug\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Common.Severity\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AreaPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Id\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"true\"\n      }\n    ],\n    \"Product Backlog Item\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AreaPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Id\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"true\"\n      }\n    ]\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Wiki/ProjectWiki/AboutPartsUnlimited.json",
    "content": "﻿{\n\t\"content\": \"Parts Unlimited MRP is a fictional outsourced Manufacturing Resource Planning (MRP) application for training purposes based on the description in chapters 31-35 of The Phoenix Projectby Gene Kim, Kevin Behr and George Spafford. � 2013 IT Revolution Press LLC, Portland, OR. Resemblance to �Project Unicorn� in the novel is intentional; resemblance to any real company is purely coincidental.\\r\\n\\r\\n The application uses entirely open source software including Linux, Java, Apache, and MongoDB which creates a web front end, an order service, and an integration service. Click here for the related [PartsUnlimited Website application](https://github.com/microsoft/partsunlimited).\\r\\n\\r\\n To read and learn more about this project, please visit the [documentation website](https://microsoft.github.io/PartsUnlimitedMRP/).\\r\\n\\r\\n You may watch a demo in [Channel 9](https://channel9.msdn.com/Blogs/TalkDevOps/TalkDevOps--Deploying-a-Java-application-with-VSTS) that walks through many of the steps in the document.\\r\\n\\r\\n **Key Features** \\r\\n - Front end service - runs Apache Tomcat and talks to order service \\r\\n - Order and Integration service - runs Java and calls MongoDB \\r\\n - Integration service - present to integrate with Parts Unlimited Website \\r\\n - Includes a Dockerfile and sample publishing profile to publish to a Docker container \\r\\n - Includes Azure RM JSON templates and PowerShell automation scripts to easily build and provision your environment \\r\\n - This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Wiki/ProjectWiki/CreateWiki.json",
    "content": "﻿{\n  \"type\": \"projectWiki\",\n  \"name\": \"PartsUnlimitedWiki\",\n  \"projectId\": \"$ProjectID$\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Wiki/ProjectWiki/PartsUnlimitedWiki/Development Environment.json",
    "content": "{\n  \"content\": \"\\r\\n 1. Windows Server **2016** \\r\\n 1. Team Foundation Server **2017** \\r\\n 1. Visual Studio **2017** \\r\\n \\r\\n [Hardware and Software Requirements](.attachments/TFS%202017%20Hardware%20and%20Software%20Requirements-c349cc83-faf1-4add-96fc-017d41cb23ef.docx)\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Wiki/ProjectWiki/PartsUnlimitedWiki/Getting Started.json",
    "content": "﻿{\n  \"content\": \"Instructions for getting started.\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited/Wiki/ProjectWiki/PartsUnlimitedWiki/Key Features.json",
    "content": "{\n\t\"content\": \"\\r\\n - Works with Visual Studio 2017.\\r\\n - _ASP.NET 5_ support for Linux and Mono. \\r\\n - Modern HTML5 responsive layout using bootstrap for mobile, tablet, and PC. \\r\\n - Includes a Dockerfile and sample publishing profile to publish to a Docker container. \\r\\n - Supports multiple authentication options including Azure Active Directory, Google, and Facebook. \\r\\n - Azure Machine Learning product recommendations based on Order History. \\r\\n - Designed for Azure Websites, including Testing in Production, Staging slots and environment variables for feature \\r\\n   flags (to turn off recommendations). \\r\\n - Includes Grunt tasks for publishing assets to Azure Storage for CDN ingestion for faster performance. \\r\\n - Entity Framework code-first using SQL Azure or an in-memory database (Mono). \\r\\n - Basic administration pages to add or edit product information.. \\r\\n - Includes Azure RM JSON templates and PowerShell automation scripts to easily build and provision your environment.\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/BranchPolicy/BuildPolicy.json",
    "content": "{\n  \"isEnabled\": true,\n  \"isBlocking\": true,\n  \"isDeleted\": false,\n  \"settings\": {\n    \"buildDefinitionId\": \"$buildDefId$\",\n    \"queueOnSourceUpdateOnly\": true,\n    \"manualQueueOnly\": false,\n    \"displayName\": null,\n    \"validDuration\": 720.0,\n    \"scope\": [\n      {\n        \"refName\": \"refs/heads/master\",\n        \"matchKind\": \"Exact\",\n        \"repositoryId\": \"$PartsUnlimited$\"\n      }\n    ]\n  },\n  \"isEnterpriseManaged\": false,\n  \"type\": {\n    \"id\": \"$policyTypeId$\",\n    \"url\": \"$policyTypeUrl$\",\n    \"displayName\": \"Build\"\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/BranchPolicy/WorkItemLinkPolicy.json",
    "content": "{\n  \"isEnabled\": true,\n  \"isBlocking\": true,\n  \"isDeleted\": false,\n  \"settings\": {\n    \"scope\": [\n      {\n        \"refName\": \"refs/heads/master\",\n        \"matchKind\": \"Exact\",\n        \"repositoryId\": \"$PartsUnlimited$\"\n      }\n    ]\n  },\n  \"isEnterpriseManaged\": false,\n  \"type\": {\n    \"id\": \"$policyTypeId$\",\n    \"url\": \"$policyTypeUrl$\",\n    \"displayName\": \"Work item linking\"\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/BuildDefinitions/PartsUnlimited.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n\n      ],\n      \"pathFilters\": [\n\n      ],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {\n\n  },\n  \"tags\": [\n\n  ],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"./azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"id\": \"$PartsUnlimited$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"PartsUnlimited\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/PartsUnlimited\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [\n\n  ],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"PartsUnlimited\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/ImportSourceCode/PartsUnlimited.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/_git/PartsUnlimited\"\n    },\n    \"serviceEndpointId\": \"$PartsUnlimited-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 4\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 5\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 6\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"PartsUnlimited_YAML\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/ReleaseDefinitions/PartsUnlimitedE2E.json",
    "content": "{\n  \"source\": \"restApi\",\n  \"revision\": 1,\n  \"description\": null,\n  \"createdBy\": \"{}\",\n  \"createdOn\": \"\",\n  \"modifiedBy\": \"{}\",\n  \"modifiedOn\": \"\",\n  \"isDeleted\": false,\n  \"variables\": {\n    \"HostingPlan\": {\n      \"value\": \"pule2e\"\n    },\n    \"ResourceGroupName\": {\n      \"value\": \"ASPDOTNET\"\n    },\n    \"ServerName\": {\n      \"value\": \"pule2e878a160a\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 1,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"pule2e878a160a\"\n        }\n      },\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 2\n          }\n        ]\n      },\n      \"deployStep\": {\n        \"id\": 5\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 8\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Dev\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Azure Deployment\",\n              \"refName\": \"AzureResourceGroupDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(ResourceGroupName)\",\n                \"location\": \"Central US\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimited-aspnet45/env/PartsUnlimitedEnv/Templates/FullEnvironmentSetupMerged.json\",\n                \"csmParametersFile\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimited-aspnet45/env/PartsUnlimitedEnv/Templates/FullEnvironmentSetupMerged.param.json\",\n                \"overrideParameters\": \"-WebsiteName $(WebsiteName) -PUL_ServerName $(ServerName)  -PUL_HostingPlanName $(HostingPlan)\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"outputVariable\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment2\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"true\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"$(ResourceGroupName)\",\n                \"SlotName\": \"Dev\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimitedWebsite.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 0,\n        \"url\": \"https://vsrm.dev.azure.com/vstsdemodata/02dace75-887f-41d5-8cec-75cb554322ee/_apis/Release/releases/0\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    },\n    {\n      \"id\": 2,\n      \"name\": \"QA\",\n      \"rank\": 2,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"pule2e878a160a\"\n        }\n      },\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 1\n          }\n        ]\n      },\n      \"deployStep\": {\n        \"id\": 6\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 7\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"QA\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"true\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"$(ResourceGroupName)\",\n                \"SlotName\": \"Staging\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimitedWebsite.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"Dev\",\n          \"conditionType\": \"environmentState\",\n          \"value\": \"4\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 0,\n        \"url\": \"https://vsrm.dev.azure.com/vstsdemodata/02dace75-887f-41d5-8cec-75cb554322ee/_apis/Release/releases/0\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    },\n    {\n      \"id\": 3,\n      \"name\": \"Production\",\n      \"rank\": 3,\n      \"owner\": {\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"url\": \"\",\n        \"_links\": \"{}\",\n        \"id\": \"$OwnerId$\",\n        \"uniqueName\": \"$OwnerUniqueName$\",\n        \"imageUrl\": \"\",\n        \"descriptor\": \"\"\n      },\n      \"variables\": {\n        \"WebsiteName\": {\n          \"value\": \"pule2e878a160a\"\n        }\n      },\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 3\n          }\n        ]\n      },\n      \"deployStep\": {\n        \"id\": 4\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 9\n          }\n        ]\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Production\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"3.*\",\n              \"name\": \"Azure App Service Deploy\",\n              \"refName\": \"AzureRmWebAppDeployment1\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"WebAppName\": \"$(WebsiteName)\",\n                \"WebAppKind\": \"app\",\n                \"DeployToSlotFlag\": \"false\",\n                \"ImageSource\": \"Registry\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"\",\n                \"AzureContainerRegistry\": \"\",\n                \"AzureContainerRegistryLoginServer\": \"\",\n                \"AzureContainerRegistryImage\": \"\",\n                \"AzureContainerRegistryTag\": \"\",\n                \"DockerRepositoryAccess\": \"public\",\n                \"RegistryConnectedServiceName\": \"\",\n                \"PrivateRegistryImage\": \"\",\n                \"PrivateRegistryTag\": \"\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/PartsUnlimitedE2E/drop/PartsUnlimitedWebsite.zip\",\n                \"BuiltinLinuxPackage\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"node|4.4\",\n                \"StartupCommand\": \"\",\n                \"WebAppUri\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"GenerateWebConfig\": \"false\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"UseWebDeploy\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": false,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"QA\",\n          \"conditionType\": \"environmentState\",\n          \"value\": \"4\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 0,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n        \"id\": 0,\n        \"url\": \"https://vsrm.dev.azure.com/vstsdemodata/02dace75-887f-41d5-8cec-75cb554322ee/_apis/Release/releases/0\",\n        \"_links\": {}\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": [],\n      \"badgeUrl\": \"\"\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$PartsUnlimitedE2E-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"PartsUnlimitedE2E\",\n      \"definitionReference\": {\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"$PartsUnlimitedE2E-id$\",\n          \"name\": \"PartsUnlimitedE2E\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"artifactSourceDefinitionUrl\": \"{}\"\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [\n    {\n      \"artifactAlias\": \"PartsUnlimitedE2E\",\n      \"triggerConditions\": [],\n      \"triggerType\": \"artifactSource\"\n    }\n  ],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {},\n  \"id\": \"\",\n  \"name\": \"PartsUnlimitedE2E\",\n  \"path\": \"\\\\\",\n  \"projectReference\": null,\n  \"url\": \"\",\n  \"_links\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/ServiceEndpoints/PartsUnlimited-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"PartsUnlimited-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/_git/PartsUnlimited\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL-DB/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL-DB/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL-DB/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL-DB/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PUL-DB/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PartsUnlimited_YAML Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Design\",\n        \"itemLimit\": 10,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": true,\n        \"description\": \"Defintion of Done for the In Progress column:\\n\\nFor App Dev Team\\n-------------------\\n      1. Prototype approved by stakeholders\\n      2. User stories submitted\\n      3. Time and effort estimation completed\\n\\nPlease be sure that all of these are **complete** before moving something into the *Done* section of the In Progress column. Please refer to the [Team Wiki](http://devopsconferences.visualstudio.com/wiki) site for more details\"\n      },\n      {\n        \"name\": \"Develop & Test\",\n        \"itemLimit\": 15,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": true,\n        \"description\": \"Defintion of Done for the In Progress column:\\n             1. All unit test written\\n             2. Tested by someone other than yourself\\n             3. Upgrade scripts written and tested\\nPlease be sure that all of these are **complete** before moving something into the *Done* section of the In Progress column. Please refer to the [Team Wiki](http://devopsconferences.visualstudio.com/wiki) site for more details\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PartsUnlimited_YAML Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"fd08f0e8-2ddb-4981-841e-7afe43c40841\",\n        \"name\": \"Expedite\"\n      },\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PartsUnlimited_YAML Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Common.Severity\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AreaPath\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"true\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AreaPath\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"true\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PartsUnlimited_YAML Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/PartsUnlimited_YAML Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"c4af0040-253e-408a-8140-f447fc2c022f\",\n    \"name\": \"PartsUnlimited_YAML Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"54ecfc56-b83b-4c81-92ba-c0dc792900b8\",\n    \"name\": \"PUL-DB\",\n    \"description\": \"PUL DB Team\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"de6f7771-bf20-4c9b-bebd-043f7c32cc30\",\n    \"name\": \"PUL\",\n    \"description\": \"Parts Unlimited Web Team\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/WorkItems/Bug.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 3016,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:02.913Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:08.177Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Decline in orders noticed - Please Investigate immediately\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Decline in orders noticed - Please Investigate immediately\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": \"Expedite\",\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"AttachedFile\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/attachments/f8590db0-b12f-474e-ad0b-fc09aa93e983\",\n          \"attributes\": {\n            \"authorizedDate\": \"2019-05-03T04:58:08.05Z\",\n            \"id\": \"2389448\",\n            \"resourceCreatedDate\": \"2019-05-03T04:58:08.05Z\",\n            \"resourceModifiedDate\": \"2019-05-03T04:58:08.05Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"appInsights.png\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/02dace75-887f-41d5-8cec-75cb554322ee%2Fe39c00bd-7571-452a-a7f0-af9500d27984%2F21\",\n          \"attributes\": {\n            \"authorizedDate\": \"2019-05-03T04:58:08.177Z\",\n            \"id\": \"2389449\",\n            \"resourceCreatedDate\": \"2019-05-03T04:58:08.177Z\",\n            \"resourceModifiedDate\": \"2019-05-03T04:58:08.177Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3016\"\n    },\n    {\n      \"id\": 3015,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:02.76Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:02.76Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Sel_IE_Navigate Failed in 2488\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Sel_IE_Navigate Failed in 2488\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2877\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3015\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/WorkItems/Epic.json",
    "content": "{\n  \"count\": 16,\n  \"value\": [\n    {\n      \"id\": 3032,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:05.327Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3032\"\n    },\n    {\n      \"id\": 3031,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:05.187Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As ops guy, I'd like to keep the business owners happy ensuring there is no wasted spend in cloud resources.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As ops guy, I'd like to keep the business owners happy ensuring there is no wasted spend in cloud resources.\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3031\"\n    },\n    {\n      \"id\": 3030,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:05.047Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"We want to make frequent enhancements to the MRP application and need to modernize the application from its current legacy state.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"We want to make frequent enhancements to the MRP application and need to modernize the application from its current legacy state.\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3030\"\n    },\n    {\n      \"id\": 3029,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:04.903Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3029\"\n    },\n    {\n      \"id\": 3028,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:04.757Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a user i want to be able to search the PartsUnlimited Website so that i can find the products i want to purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a user i want to be able to search the PartsUnlimited Website so that i can find the products i want to purchase\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3028\"\n    },\n    {\n      \"id\": 3027,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:04.617Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As ops guy, I'd like to make sure I am notified anytime public availability is impacted for key user scenarios\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As ops guy, I'd like to make sure I am notified anytime public availability is impacted for key user scenarios\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3027\"\n    },\n    {\n      \"id\": 3026,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:04.48Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Payment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Payment\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2892\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3026\"\n    },\n    {\n      \"id\": 3025,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:04.333Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Product Catalog\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Product Catalog\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2891\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3025\"\n    },\n    {\n      \"id\": 3024,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:04.197Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Customer Service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Customer Service\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2888\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2889\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3024\"\n    },\n    {\n      \"id\": 3023,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:04.057Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Membership and Rewards Program\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Membership and Rewards Program\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2876\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3023\"\n    },\n    {\n      \"id\": 3022,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:03.913Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Notification\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3022\"\n    },\n    {\n      \"id\": 3021,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:03.77Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Promotion and Rewards\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Promotion and Rewards\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2887\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2890\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3021\"\n    },\n    {\n      \"id\": 3020,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:03.62Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Product reviews and ratings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Product reviews and ratings\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2877\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3020\"\n    },\n    {\n      \"id\": 3019,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:03.47Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Online tracking of shipments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Online tracking of shipments\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2883\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2880\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3019\"\n    },\n    {\n      \"id\": 3018,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:03.337Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Shopping Cart Facility\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Shopping Cart Facility\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2886\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2881\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2882\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3018\"\n    },\n    {\n      \"id\": 3017,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:03.14Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:52.867Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2885\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3017\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/WorkItems/Feature.json",
    "content": "{\n  \"count\": 22,\n  \"value\": [\n    {\n      \"id\": 2896,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:46.207Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a marketeer i want our website to be performant and available around the world\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2896\"\n    },\n    {\n      \"id\": 2895,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:45.963Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a business owner, I would like to know how much our historical spend is to help project future spend for budgeting + financials.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a business owner, I would like to know how much our historical spend is to help project future spend for budgeting + financials.\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2895\"\n    },\n    {\n      \"id\": 2894,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:45.823Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As an Ops guy, I want to ensure that the legacy MRP system configuration is consistent.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As an Ops guy, I want to ensure that the legacy MRP system configuration is consistent.\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2894\"\n    },\n    {\n      \"id\": 2893,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:45.6Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Ops needs the ability to quickly roll back to a known good state in the event of a critical problem in production.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ops needs the ability to quickly roll back to a known good state in the event of a critical problem in production.\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2893\"\n    },\n    {\n      \"id\": 2892,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:45.46Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Credit Card Purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Credit Card Purchase\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3026\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2892\"\n    },\n    {\n      \"id\": 2891,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:45.307Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Product catalog changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Product catalog changes\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3025\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2891\"\n    },\n    {\n      \"id\": 2890,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:45.09Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Product Recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Product Recommendations\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3021\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2890\"\n    },\n    {\n      \"id\": 2889,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:44.947Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Ask for customer feedback\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ask for customer feedback\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3024\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2889\"\n    },\n    {\n      \"id\": 2888,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:44.803Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Customer issues\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Customer issues\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3024\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2888\"\n    },\n    {\n      \"id\": 2887,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:44.65Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Ad-hoc promotions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ad-hoc promotions\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3021\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2887\"\n    },\n    {\n      \"id\": 2886,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:44.387Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Gift Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Gift Options\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3018\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2886\"\n    },\n    {\n      \"id\": 2885,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:44.247Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As marketeer, I want us to reuse the web assets for apps on Android and iOS with corporate branding, and I will want to be able to update the device apps with every marketing promotion. That will mean using Cordova.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As marketeer, I want us to reuse the web assets for apps on Android and iOS with corporate branding, and I will want to be able to update the device apps with every marketing promotion. That will mean using Cordova.\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3017\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2885\"\n    },\n    {\n      \"id\": 2884,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:43.943Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Customer notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Customer notification\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3022\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2884\"\n    },\n    {\n      \"id\": 2883,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:43.807Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Delivery confirmation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Delivery confirmation\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3019\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2883\"\n    },\n    {\n      \"id\": 2882,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:43.67Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Order confirmation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Order confirmation\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3018\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2882\"\n    },\n    {\n      \"id\": 2881,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:43.53Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Order cancellation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Order cancellation\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3018\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2881\"\n    },\n    {\n      \"id\": 2880,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:43.377Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Delivery Options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Delivery Options\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3019\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2880\"\n    },\n    {\n      \"id\": 2879,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:43.15Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Shipping charges calculation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Shipping charges calculation\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3018\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2879\"\n    },\n    {\n      \"id\": 2878,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:42.99Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Supplier Feedback\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Supplier Feedback\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3020\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2878\"\n    },\n    {\n      \"id\": 2877,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:42.84Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Ratings for purchased items\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ratings for purchased items\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3015\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3020\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2877\"\n    },\n    {\n      \"id\": 2876,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:42.573Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Rewards Redemption\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Rewards Redemption\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3023\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2876\"\n    },\n    {\n      \"id\": 2875,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:42.273Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T05:38:57.933Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Points Accural on Purchases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Points Accural on Purchases\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3023\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2875\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 18,\n  \"value\": [\n    {\n      \"id\": 2914,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:48.85Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:48.85Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to have a wishlist where I can add items for future purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"As a customer, I would like to have a wishlist where I can add items for future purchase\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3008\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2914\"\n    },\n    {\n      \"id\": 2913,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:48.71Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:48.71Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to provide my feedback on items that I have purchased\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"As a customer, I would like to provide my feedback on items that I have purchased\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3009\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2913\"\n    },\n    {\n      \"id\": 2912,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:48.567Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:48.567Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a admin, I should be able to update prices on ad-hoc condition\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 6.0,\n        \"System.Description\": \"As a admin, I should be able to update prices on ad-hoc condition. The prices should be immediately reflected on the product page. Any unconfirmed order should include the updated price&nbsp;\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3010\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2912\"\n    },\n    {\n      \"id\": 2911,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Work stopped\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:48.417Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:48.417Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Notify the user about any changes made to the order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"Users should be notified when there is a change to the order including shipping, delivery, price changes\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3001\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2911\"\n    },\n    {\n      \"id\": 2910,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:48.277Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:48.277Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Provide tentative duration for shipping.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 13.0,\n        \"System.Description\": \"Customers when they make the order and select the shipping method, the system should provide the tentative duration for shipping the items\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3014\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2910\"\n    },\n    {\n      \"id\": 2909,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:48.133Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:48.133Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2909\"\n    },\n    {\n      \"id\": 2908,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:47.993Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:47.993Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to select different shipping option\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"As a customer, I should be able to view all the shipping options available and be able to select a different shipping option other than the default option\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2908\"\n    },\n    {\n      \"id\": 2907,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:47.837Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:47.837Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to store my credit card details securely\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"More information here\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3004\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3002\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3003\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2907\"\n    },\n    {\n      \"id\": 2906,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:47.697Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:47.697Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to have the ability to send my items as gift\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"As a customer, I would like to have the ability to send my items as gift\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2906\"\n    },\n    {\n      \"id\": 2905,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:47.553Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:47.553Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Provide customers the ability to track status of the package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Provide customers the ability to track status of the package\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2905\"\n    },\n    {\n      \"id\": 2904,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:47.397Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:47.397Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"As marketer, I want to run an A|B test on alternative Web Sites using Application Insights.\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2904\"\n    },\n    {\n      \"id\": 2903,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:47.247Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:47.247Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to save my addresses so that I can easily select the address for delivery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"As a customer, I would like to save my addresses so that I can easily select the address for delivery\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3007\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2903\"\n    },\n    {\n      \"id\": 2902,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:47.097Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:47.097Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Recommended products must be based on customer purchase pattern history\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 2.0,\n        \"System.Description\": \"Recommended products must be based on customer purchase pattern history\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 10.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2902\"\n    },\n    {\n      \"id\": 2901,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:46.957Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:46.957Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to have a sort capabaility by price and customer ratings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 13.0,\n        \"System.Description\": \"As developer, I want a clone of the Phoenix feedback and events database\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3005\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2901\"\n    },\n    {\n      \"id\": 2900,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:46.813Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:46.813Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to print my purchase order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ops needs the ability to quickly roll back to a known good state in the event of a critical problem in production.\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3006\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2900\"\n    },\n    {\n      \"id\": 2899,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:46.67Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:46.67Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to put items to shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"As a customer, I should be able to put items to shopping cart\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3012\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3011\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3013\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2899\"\n    },\n    {\n      \"id\": 2898,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:46.517Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:46.517Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As tester, I need to test the website on all the relevant broswers and devices and be sure that it can handle our load.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"As tester, I need to test the website on all the relevant broswers and devices and be sure that it can handle our load.\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2898\"\n    },\n    {\n      \"id\": 2897,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:46.35Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:46.35Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Provide related items or frequently bought together section when people browse or search\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Provide related items or frequently bought together section when people browse or search\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3000\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2897\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/WorkItems/Task.json",
    "content": "{\n  \"count\": 29,\n  \"value\": [\n    {\n      \"id\": 2943,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:53.297Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:53.297Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update add product section with Gift options\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2943\"\n    },\n    {\n      \"id\": 2942,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:53.16Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:53.16Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Calculate delivery date based on shipping method\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2942\"\n    },\n    {\n      \"id\": 2941,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:53.023Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:53.023Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update order confirmation page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2941\"\n    },\n    {\n      \"id\": 2940,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:52.883Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:52.883Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update Gift selection page to include a message\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2940\"\n    },\n    {\n      \"id\": 2939,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:52.747Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:52.747Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Generate gift return slip\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2939\"\n    },\n    {\n      \"id\": 2938,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:52.61Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:52.61Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Add shipment tracking page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2938\"\n    },\n    {\n      \"id\": 2937,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:52.467Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:52.467Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update Orders page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update Orders page\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2937\"\n    },\n    {\n      \"id\": 2936,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:52.317Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:52.317Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Create Storyboard\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create Storyboard\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2936\"\n    },\n    {\n      \"id\": 2935,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:52.147Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:52.147Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Storyboard the Azure WS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Storyboard the Azure WS\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2935\"\n    },\n    {\n      \"id\": 2934,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:51.99Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:51.99Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Prototype Azure WS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Prototype Azure WS\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2934\"\n    },\n    {\n      \"id\": 2933,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:51.853Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:51.853Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Develop the logic to display geo dependent prices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Develop the logic to display geo dependent prices\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2933\"\n    },\n    {\n      \"id\": 2932,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:51.71Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:51.71Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Storyboard the Dashboard\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Storyboard the Dashboard\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2932\"\n    },\n    {\n      \"id\": 2931,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:51.57Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:51.57Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Create Storyboard\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create Storyboard that shows the customer experience of providing feedback&nbsp;\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2931\"\n    },\n    {\n      \"id\": 2930,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:51.427Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:51.427Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Design Feedback page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design the UI for a feedback section/page\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2930\"\n    },\n    {\n      \"id\": 2929,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:51.243Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:51.243Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update price changes to unfinished orders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2929\"\n    },\n    {\n      \"id\": 2928,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:51.103Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:51.103Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Display price change in the product section\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"The price change for a product should be displayed with a proper graphic depending on whether the price increase or decrease\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2928\"\n    },\n    {\n      \"id\": 2927,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:50.963Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:50.963Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Add wishlist page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2927\"\n    },\n    {\n      \"id\": 2926,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:50.823Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:50.823Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Approval for price change\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2926\"\n    },\n    {\n      \"id\": 2925,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:50.683Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:50.683Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Trial CD in staging\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Trial CD in staging\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2925\"\n    },\n    {\n      \"id\": 2924,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:50.313Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:05.623Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Add Terms and Conditions for Sale & Support in Layout.cshtml Page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add Terms and Conditions for Sale &amp; Support in Layout.cshtml Page\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/02dace75-887f-41d5-8cec-75cb554322ee%2Fe39c00bd-7571-452a-a7f0-af9500d27984%2F22\",\n          \"attributes\": {\n            \"authorizedDate\": \"2019-05-03T04:58:05.623Z\",\n            \"id\": \"2389447\",\n            \"resourceCreatedDate\": \"2019-05-03T04:58:05.623Z\",\n            \"resourceModifiedDate\": \"2019-05-03T04:58:05.623Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2924\"\n    },\n    {\n      \"id\": 2923,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:50.17Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:50.17Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update product selection section to move items to wishlist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automation to include creation of the SQL DB on Azure\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 12.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2923\"\n    },\n    {\n      \"id\": 2922,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:50.02Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:50.02Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Check new pricing for lights, brakes and wheels\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Check new pricing for lights, brakes and wheels\",\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2922\"\n    },\n    {\n      \"id\": 2921,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:49.877Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:49.877Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Develop the logic to display geo dependent prices\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Develop the logic to display geo dependent prices\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2921\"\n    },\n    {\n      \"id\": 2920,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:49.74Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:49.74Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update the prices on web pages\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update the prices on web pages\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2920\"\n    },\n    {\n      \"id\": 2919,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:49.593Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:49.593Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"testzzz\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"testzzz\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2919\"\n    },\n    {\n      \"id\": 2918,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:49.45Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:49.45Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Be sure and include a dark theme\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Be sure and include a dark theme\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2918\"\n    },\n    {\n      \"id\": 2917,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:49.31Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:49.31Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"New bug\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"New bug\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2917\"\n    },\n    {\n      \"id\": 2916,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:49.157Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:49.157Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Add categories\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add categories\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2916\"\n    },\n    {\n      \"id\": 2915,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:48.997Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:48.997Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Update navigation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update navigation\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2915\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-PartsUnlimited-YAML/WorkItems/Test Case.json",
    "content": "{\n  \"count\": 71,\n  \"value\": [\n    {\n      \"id\": 3014,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:02.487Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:02.487Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that the tentative date is displayed for shipping the product\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Customer  should be able to login into the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Click on the Categories which user is interested in &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Products available under the category should be displayed&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the images of items under the selected category and click on Shop Now link&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to navigate to Product Details screen&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the \\\"ADD TO CART\\\" button on the Product description page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should get navigated to Shopping Cart screen&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Enter the Valid pin code in the pin code field&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Based on the pincode entered, tentative dates for shipping the product should be displayed.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": \"<parameters/>\",\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2910\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3014\"\n    },\n    {\n      \"id\": 3013,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:02.36Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:02.36Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that user is able to remove the item from cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a Customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;Customer  should be able to login into the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Categories which user is interested in&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Products available under the category should be displayed&amp;nbsp;&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the images of items under the selected category and click on Shop Now button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to navigate to Product Details screen&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the \\\"ADD TO CART\\\" button on the Product description page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On adding item to cart, User should be able to see the added item in the Cart Page&lt;BR/&gt;Count on the cart icon should be displayed based on the number of items added to the cart.&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Cart icon on the home page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should get navigated to \\\"Cart Page\\\"&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Remove button on the cart page against the item which user wants to remove.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On removing the item, count on the cart icon should be decreased and the item should be removed from Cart page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2899\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3013\"\n    },\n    {\n      \"id\": 3012,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:02.24Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:02.24Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that user is able to add multiple items into the shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a Customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;Customer  should be able to login into the application with his credentials.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Categories which user is interested in&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Products available under the category should be displayed&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the images of items under the selected category and click on Shop Now button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to navigate to Product Details screen&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the \\\"ADD TO CART\\\" button on the Product description page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On adding item to cart, User should be able to see the added item in the Cart Page&lt;BR/&gt;Count on the cart icon should be displayed based on the number of items added to the cart.&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Go back to the home screen click on the categories, Hover on the images and click on the Shop now button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to navigate to Product Details screen&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on \\\"ADD TO CART\\\" button to add the item&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On adding an item to cart, Count on the Cart icon should be increased and the added item should be displayed in Cart Page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2899\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3012\"\n    },\n    {\n      \"id\": 3011,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:02.113Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:02.113Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that Customer is able to add an item into the shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login as a Customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to login with his credentials&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Categories which user is interested in&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Products available under the category should be displayed&amp;nbsp;&lt;BR/&gt;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the images of items under the selected category and click on Shop Now button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to navigate to Product Details screen&lt;BR/&gt;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the \\\"ADD TO CART\\\" button on the prodcut description page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;On adding item to cart, User should be able to see the added item in the Cart Page&amp;nbsp;&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2899\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3011\"\n    },\n    {\n      \"id\": 3010,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:01.99Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:01.99Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that Admin is able to change the price of the item\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login as Admin&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Admin should be able to login to the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On navigating to Home screen, click on the Admin icon and select Manage items&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Admin should be able to see the Manage Items icon in the Home screen&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On the Store manager page,  Click on the \\\"Edit\\\" link against the item which admin wants to update.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Admin should be able to edit the item link&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On item edit page, update the Price and Sale price and click on the Save button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;On successful update, updated price should reflect on the Store manager screen against the respective item&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2912\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3010\"\n    },\n    {\n      \"id\": 3009,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:01.873Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:01.873Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Validate that customer is allowed to add an feedback to the item purchases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login as an customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;User should be able to login to the site with his credentials&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Click on the Categories which user is interested in and hover on the image and click on Shop Now button&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to hover, see the \\\"Shop Now\\\" image and click on it&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Click on Add to Cart button  on the item page&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Item should be added to cart&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Click on Checkout button and enter Shipping information&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to enter details</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Click on \\\"Submit Order\\\" button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to submit his order successfully&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Once order is placed, click on the Profile icon and select View order option&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;View Order option should be visible in the User Profile&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Specify the search criteria, either by order number or by order dates&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;User should be able to see the orders or by dates or order&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Order number displayed in the search result&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Order number should be able to get selected&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Feedback link and enter the review comments in the feedback form and click on Save button&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Added feedback should get posted against the respective item&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2913\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3009\"\n    },\n    {\n      \"id\": 3008,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:01.673Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:01.673Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Validate that customer is able to add an item to the wishlist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a Customer&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to login to the application with his credentials&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Categories which user is interested in&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to see the category list&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Hover on the item and click on the \\\"Add to Wishlist\\\" button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Selected item should be displayed in the Wishlist page.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile icon and select \\\"Wish list\\\" option&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;User should be able to see the added item in the  \\\"Wishlist\\\" section&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2914\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3008\"\n    },\n    {\n      \"id\": 3007,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:01.553Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:01.553Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that customer is allowed to add address for shipping.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;User should be able to login with his credentials&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile icon and select \\\"Shipping Address \\\"&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be navigated to Shipping Address screen.&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on Add button to add the Shipping information, Enter the Shipping information&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to view and should be able to select  the saved address.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on Save button to save the details.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Details should be validated and saved&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3007\"\n    },\n    {\n      \"id\": 3006,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:01.433Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:01.433Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that as a customer, user should be able to print the purchase order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to login into the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile icon and select \\\"Order\\\"&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be navigated to Orders screen with list of orders from the logged in Customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Order number which customer wants to print&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be navigated to Orders details screen.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Print button on the order details screen&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Print preview page should be displayed and Customer should be able print the order page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2900\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3006\"\n    },\n    {\n      \"id\": 3005,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:01.317Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:01.317Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that user should be able to sort the products based on Price and Customer ratings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be able to login into the application with his credentials.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the product by entering the product name on the search bar&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Results should be displayed based on the search criteria&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Price dropdown and select \\\"Low to High\\\" option&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search results should be displayed based on lowest price to highest price.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Customer Ratings dropdown and select 3 star ratings&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Search results should display product with 3 star customer ratings.&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3005\"\n    },\n    {\n      \"id\": 3004,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:01.183Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:01.183Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that user is allowed to edit and save his valid credit card details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Customer should be able to login into the application as an Customer.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile and select Saved Cards&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer should get navigated to Saved cards page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the already added card number and Edit the card details&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3004\"\n    },\n    {\n      \"id\": 3003,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:01.063Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:01.063Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that user is not allowed to save invalid credit card details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Customer should be able to login into the application with his credentials&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile and select Saved Cards&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer should get navigated to Saved cards page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on ADD button to add new card details and enter invalid card details, Click on Save button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer should not be allowed to save the invalid card details&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3003\"\n    },\n    {\n      \"id\": 3002,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:00.86Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:00.86Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that user is allowed to save his credit card detail\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt; Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to login into the application as an Customer.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on the Profile and select Saved Cards&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;User should be navigated to Saved cards page.&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on ADD button to add new card details&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Enter the Credit Card number, Expiry date, CVV number and Card holders name and click on Save button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customers card details should be saved successfully.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2907\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3002\"\n    },\n    {\n      \"id\": 3001,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:00.74Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:00.74Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that a notification is sent out to the user when there are changes to the order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer  should be able to login into the application as an Customer.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the product by entering the product name on the search bar&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Product based on the search results should be displayed.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Select the product and add the product to Cart, From the cart screen, click on Proceed to Checkout button and make the payment&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Order should be successfully placed and order number should be generated.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Logout from the application and login as an admin&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to login as admin&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the product for which user had generated an order&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Results should be displayed based on the product search criteria.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on Edit description tab and change the product price and click on Save button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;a. Updated product price should be saved&lt;BR/&gt;b. An email and an SMS notification on the price change should be sent out to the User who has ordered the product.&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2911\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3001\"\n    },\n    {\n      \"id\": 3000,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:00.62Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:00.62Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that the items are displayed in the Frequently Bought section.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Customer  should be able to login into the application as an Customer.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Search for the product by entering the product name on the search bar&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Product based on the search results should be displayed.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Select the product which user wishes to purchase&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;On selecting the product, user should get navigated to \\\"Product details\\\" screen. &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Perform a scroll on the product details screen&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;User should be able to view the list of frequently purchased items under Frequently Bought section&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2897\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/3000\"\n    },\n    {\n      \"id\": 2999,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:00.487Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:00.487Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify by removing product from cart page.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Selected product should remove from user cart</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to any page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Nvigate to any product details page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on ADD TO CART button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">From cart page, click on REMOVE button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2999\"\n    },\n    {\n      \"id\": 2998,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:00.367Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:00.367Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify by adding product to cart page.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Selected product should add to user cart.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to any page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Nvigate to any product details page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on ADD TO CART button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2998\"\n    },\n    {\n      \"id\": 2997,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:00.243Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:00.243Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify clicking on logo redirects user to home page.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Clicking on logo should redirect the user to home page</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Navigate to any page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on application logo.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2997\"\n    },\n    {\n      \"id\": 2996,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:00.127Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:00.127Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify any input data entered returns proper message when no results found.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">. Launch the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Any input data entered should return proper message.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Type in any data in search field for which no results exist</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Search icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2996\"\n    },\n    {\n      \"id\": 2995,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:58:00Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:58:00Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify search results change according to the input\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;\\n &lt;COLGROUP&gt;&lt;COL width=\\\"225\\\" style=\\\"width:169pt\\\"/&gt;\\n &lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:30.0pt;width:169pt\\\"&gt;\\nLaunch the application.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:15.0pt\\\"&gt;\\n  &lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:15.0pt;border-top:none;width:169pt\\\"&gt; Type in any data in search field.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:15.0pt\\\"&gt;\\n  &lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:15.0pt;border-top:none;width:169pt\\\"&gt; Click on Search icon.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:30.0pt;border-top:none;width:169pt\\\"&gt; Again, alter the search input and click on search icon.&lt;/TD&gt;\\n &lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Any input data entered should return proper results.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"/><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2995\"\n    },\n    {\n      \"id\": 2994,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:59.857Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:59.857Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify any input data entered returns proper results/error message guiding to enter the correct input.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Search icon.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Type in any data in search field.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2994\"\n    },\n    {\n      \"id\": 2993,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:59.72Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:59.72Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify any input data entered returns proper results.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"1\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;\\n &lt;COLGROUP&gt;&lt;COL width=\\\"225\\\" style=\\\"width:169pt\\\"/&gt;\\n &lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:30.0pt;width:169pt\\\"&gt; Launch the application.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:15.0pt\\\"&gt;\\n  &lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:15.0pt;border-top:none;width:169pt\\\"&gt;&lt;BR/&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Any input data entered should return proper results.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2993\"\n    },\n    {\n      \"id\": 2992,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:59.597Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:59.597Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify user email confirmation by clicking the link Click here to confirm your email  Pre-requisite: Valid email\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Confirm email message should display.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;\\n &lt;COLGROUP&gt;&lt;COL width=\\\"225\\\" style=\\\"width:169pt\\\"/&gt;\\n &lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl66\\\" width=\\\"225\\\" style=\\\"height:30.0pt;width:169pt\\\"&gt;Click\\n  on Register as new user? link.&lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:30.0pt\\\"&gt;\\n  &lt;TD height=\\\"40\\\" class=\\\"xl66\\\" width=\\\"225\\\" style=\\\"height:30.0pt;border-top:none;width:169pt\\\"&gt; &lt;/TD&gt;\\n &lt;/TR&gt;\\n &lt;TR style=\\\"height:15.0pt\\\"&gt;\\n  &lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height:15.0pt;border-top:none;width:169pt\\\"&gt;&lt;BR/&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Type in email, password and confirm password.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;&lt;TBODY&gt;&lt;TR style=\\\"height: 15pt\\\"&gt;&lt;TD height=\\\"20\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height: 15pt;border-top: none;width: 169pt\\\"&gt; Click on REGISTER button.&lt;/TD&gt;&lt;/TR&gt;&lt;TR style=\\\"height: 30pt\\\"&gt;&lt;TD height=\\\"40\\\" class=\\\"xl65\\\" width=\\\"225\\\" style=\\\"height: 30pt;border-top: none;width: 169pt\\\"&gt; Click on link =&amp;gt; &lt;FONT class=\\\"font5\\\"&gt;Click here to confirm\\n  your email&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2992\"\n    },\n    {\n      \"id\": 2991,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:59.407Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:59.407Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify succesfull Registration.  Pre-requisite: Valid email\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Login to the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Register Confirmation message should display.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Register as new user? link.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Type in email, password and confirm password.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"> Click on REGISTER button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2991\"\n    },\n    {\n      \"id\": 2990,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:59.287Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:59.287Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify by clicking on Register as new user? redirecting the user to registration page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the Application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Clicking on Register as new user? should redirect the user to Registration page</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Register as new user? link.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2990\"\n    },\n    {\n      \"id\": 2989,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:59.163Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:59.163Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"\\\"Verify succesfull login.  Pre-requisite: Valid email and password\\\"\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Succesfull login and user should land in home page from his/her logged-in account.</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Type in Email and Password.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on LOGIN button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2989\"\n    },\n    {\n      \"id\": 2988,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:59.043Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:59.043Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"\\\"Verify succesfull login.  Pre-requisite: Valid email and password\\\"\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"1\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"225\\\" style=\\\"width: 169pt\\\"&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:60.0pt\\\"&gt;\\n  &lt;TD height=\\\"80\\\" class=\\\"xl65\\\" dir=\\\"LTR\\\" width=\\\"225\\\" style=\\\"height:60.0pt;width:169pt\\\"&gt;Login to the application.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;TABLE border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"262\\\" style=\\\"width: 197pt\\\"&gt;&lt;TBODY&gt;&lt;TR style=\\\"height:60.0pt\\\"&gt;\\n  &lt;TD height=\\\"80\\\" class=\\\"xl65\\\" width=\\\"262\\\" style=\\\"height:60.0pt;width:197pt\\\"&gt;Succesfull\\n  login and user should land in home page from his/her logged-in account.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2988\"\n    },\n    {\n      \"id\": 2987,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:58.927Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:58.927Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify by clicking on Login redirecting the user to login page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the Application.&lt;BR/&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Clicking on login should redirect the user to login page</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Login link found in right-top corner of home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2987\"\n    },\n    {\n      \"id\": 2986,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:58.807Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:58.807Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that cloning works decoupled form Phoenix legacy team. New Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Goto main&amp;nbsp;page &amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Login &amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;Successful Login&lt;/P&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2986\"\n    },\n    {\n      \"id\": 2985,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:58.687Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:58.687Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify CDNsetup works\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2985\"\n    },\n    {\n      \"id\": 2984,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:58.57Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:58.57Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify the large file loads\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2984\"\n    },\n    {\n      \"id\": 2983,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:58.447Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:58.447Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify the performance impact of loarge file loads are wiythin the specified limits\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2983\"\n    },\n    {\n      \"id\": 2982,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:58.327Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:58.327Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Sachin please test the new categories\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;open aap&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;adsfkj&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2982\"\n    },\n    {\n      \"id\": 2981,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:58.207Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:58.207Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Battery Test CAse\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Batteries&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on  &#39;Batteries\\n\\n\\n12-Volt Calcium Battery\\n$129.99\\n\\n&amp;nbsp;Shop Now\\n\\nSpiral Coil Battery\\n$154.99\\n\\n&amp;nbsp;Shop Now\\n\\nJumper Leads\\n$16.99\\n\\n&amp;nbsp;Shop Now\\n&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2981\"\n    },\n    {\n      \"id\": 2980,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:58.077Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:58.077Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Mobile verification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2980\"\n    },\n    {\n      \"id\": 2979,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:57.957Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:57.957Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Product Load Verification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2979\"\n    },\n    {\n      \"id\": 2978,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:57.837Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:57.837Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify that only managers c an have hierarchical backlog.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2978\"\n    },\n    {\n      \"id\": 2977,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:57.717Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:57.717Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"New test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Launch browser&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Go to www.partsunlimited.com &amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\" /><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2977\"\n    },\n    {\n      \"id\": 2976,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:57.593Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:57.593Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a consumer, I want to be able to add a coupon code to my purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><compref id=\\\"4\\\" ref=\\\"13022\\\"><step type=\\\"ActionStep\\\" id=\\\"1\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Add a coupon code to the coupon code text box&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ValidateStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click to apply button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;A discount should be applied&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></compref></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2976\"\n    },\n    {\n      \"id\": 2975,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:57.477Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:57.477Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to login  \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">start app</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">go to here</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2975\"\n    },\n    {\n      \"id\": 2974,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:57.347Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:57.347Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to login\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2974\"\n    },\n    {\n      \"id\": 2973,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:57.23Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:57.23Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"The customer should be able to place an item to the cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2973\"\n    },\n    {\n      \"id\": 2972,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:57.107Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:57.107Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer I would be able to browse the site\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step type=\\\"ActionStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">Open &lt;A href=\\\"http://www.surface.com\\\"&gt;www.surface.com&lt;/A&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\" /><description /></step><step type=\\\"ValidateStep\\\" id=\\\"3\\\"><parameterizedString isformatted=\\\"true\\\">press down scroll</parameterizedString><parameterizedString isformatted=\\\"true\\\">Scroll should work</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2972\"\n    },\n    {\n      \"id\": 2971,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:56.987Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:56.987Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Shopping using categories Test Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Go to browser&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Home page is displyed&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2971\"\n    },\n    {\n      \"id\": 2970,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:56.863Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:56.863Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify clone baseline functionality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2970\"\n    },\n    {\n      \"id\": 2969,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:56.747Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:56.747Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"VS Bug\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2969\"\n    },\n    {\n      \"id\": 2968,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:56.63Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:56.63Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Capacity verification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2968\"\n    },\n    {\n      \"id\": 2967,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:56.497Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:56.497Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"please tgest new tire category ...in green\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Lighting&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Wheels &amp; Tires&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2967\"\n    },\n    {\n      \"id\": 2966,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:56.343Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:56.343Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Test End to End Automation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 4.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2966\"\n    },\n    {\n      \"id\": 2965,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:56.13Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:56.13Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Test Azure Website Creation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 4.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2965\"\n    },\n    {\n      \"id\": 2964,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:56.003Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:56.003Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Test CI Runs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2964\"\n    },\n    {\n      \"id\": 2963,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:55.887Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:55.887Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Performance of Categories\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2963\"\n    },\n    {\n      \"id\": 2962,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:55.763Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:55.763Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Response SLA verifcatino\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2962\"\n    },\n    {\n      \"id\": 2961,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:55.643Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:55.643Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Internationalization Test Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2961\"\n    },\n    {\n      \"id\": 2960,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:55.453Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:55.453Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Performance of purchasing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2960\"\n    },\n    {\n      \"id\": 2959,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:55.333Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:55.333Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Native App versions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2959\"\n    },\n    {\n      \"id\": 2958,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:55.213Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:55.213Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Test CI Runs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2958\"\n    },\n    {\n      \"id\": 2957,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:55.093Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:55.093Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Reviews\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 4.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step type=\\\"ActionStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Start App&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"3\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Go to tires&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"4\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Add a Review&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2957\"\n    },\n    {\n      \"id\": 2956,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54.977Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54.977Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Test CD Runs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2956\"\n    },\n    {\n      \"id\": 2955,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54.857Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54.857Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Test Azure Creation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2955\"\n    },\n    {\n      \"id\": 2954,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54.737Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54.737Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Navigation Test Case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2954\"\n    },\n    {\n      \"id\": 2953,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54.617Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54.617Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"IOT Telemetry of products\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2953\"\n    },\n    {\n      \"id\": 2952,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54.493Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54.493Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"please make sure Oil is branding\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Lighting&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on link &#39;Wheels &amp; Tires&#39;.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2952\"\n    },\n    {\n      \"id\": 2951,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54.373Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54.373Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify new category navigation and IA is working as expected\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2951\"\n    },\n    {\n      \"id\": 2950,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54.25Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54.25Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Corbin Test\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;one&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;two&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;sdafkj&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;af&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;asdf&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;sdafasdfasdf&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"9\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\"></parameterizedString><parameterizedString isformatted=\\\"true\\\"></parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2950\"\n    },\n    {\n      \"id\": 2949,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54.13Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54.13Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Test CD Runs\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2949\"\n    },\n    {\n      \"id\": 2948,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:54Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:54Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Underwater device Versions\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2948\"\n    },\n    {\n      \"id\": 2947,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:53.847Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:53.847Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"A new test case\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2947\"\n    },\n    {\n      \"id\": 2946,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:53.71Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:53.71Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to browse the web site\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Goto http://partsunlimiteddev.azurewebsites.net/&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click Brakes&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Brakes will be shown&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click Lighting&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Lighting will be shown&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click &lt;SPAN STYLE=\\\"font-weight:bold;\\\"&gt;Batteries&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Batteries will be shown&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description></description></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P /&gt;&lt;/DIV&gt;</parameterizedString><description></description></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<?xml version=\\\"1.0\\\" encoding=\\\"utf-16\\\"?>\\n<NewDataSet>\\n  <xs:schema id=\\\"NewDataSet\\\" xmlns=\\\"\\\" xmlns:xs=\\\"http://www.w3.org/2001/XMLSchema\\\" xmlns:msdata=\\\"urn:schemas-microsoft-com:xml-msdata\\\">\\n    <xs:element name=\\\"NewDataSet\\\" msdata:IsDataSet=\\\"true\\\" msdata:Locale=\\\"\\\">\\n      <xs:complexType>\\n        <xs:choice minOccurs=\\\"0\\\" maxOccurs=\\\"unbounded\\\">\\n          <xs:element name=\\\"Table1\\\">\\n            <xs:complexType></xs:complexType>\\n          </xs:element>\\n        </xs:choice>\\n      </xs:complexType>\\n    </xs:element>\\n  </xs:schema>\\n</NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2946\"\n    },\n    {\n      \"id\": 2945,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:53.58Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:53.58Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Verify Branding\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step type=\\\"ActionStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Go to Page1&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ValidateStep\\\" id=\\\"3\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Check the brand at the top left corner&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;Brand is represented correctly&lt;/P&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2945\"\n    },\n    {\n      \"id\": 2944,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"PartsUnlimited_YAML\",\n        \"System.TeamProject\": \"PartsUnlimited_YAML\",\n        \"System.IterationPath\": \"PartsUnlimited_YAML\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-03T04:57:53.44Z\",\n        \"System.CreatedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.ChangedDate\": \"2019-05-03T04:57:53.44Z\",\n        \"System.ChangedBy\": \"Akshay H <H.akshay@outlook.com>\",\n        \"System.Title\": \"Enable reviews \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay H <H.akshay@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 3.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step type=\\\"ActionStep\\\" id=\\\"2\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Start application&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"3\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Go to reviews&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"4\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;add a review&amp;nbsp;@review&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"5\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;add a question&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"6\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Add a kudo&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step><step type=\\\"ActionStep\\\" id=\\\"7\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Close&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description /></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": \"<parameters><param name=\\\"review\\\" bind=\\\"default\\\" /></parameters>\",\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"{\\\"parameterMap\\\":[{\\\"localParamName\\\":\\\"review\\\",\\\"sharedParameterName\\\":\\\"review\\\",\\\"sharedParameterDataSetId\\\":3223}],\\\"sharedParameterDataSetIds\\\":[3223],\\\"rowMappingType\\\":0}\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/vstsdemodata/_apis/wit/workItems/2944\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/BoardColumns.json",
    "content": "[\n  {\n    \"description\": \"\",\n    \"name\": \"New\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"New\",\n      \"Bug\": \"New\"\n    },\n    \"columnType\": \"incoming\",\n    \"isSplit\": null\n  },\n  {\n    \"description\": \"Defintion of Done for the In Progress column:\\n\\nFor App Dev Team\\n-------------------\\n      1. Prototype approved by stakeholders\\n      2. User stories submitted\\n      3. Time and effort estimation completed\\n\\nPlease be sure that all of these are **complete** before moving something into the *Done* section of the In Progress column. Please refer to the [Team Wiki](http://devopsconferences.visualstudio.com/wiki) site for more details\",\n    \"name\": \"Approved\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Approved\",\n      \"Bug\": \"Approved\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": false\n  },\n  {\n    \"description\": \"Defintion of Done for the In Progress column:\\n             1. All unit test written\\n             2. Tested by someone other than yourself\\n             3. Upgrade scripts written and tested\\nPlease be sure that all of these are **complete** before moving something into the *Done* section of the In Progress column. Please refer to the [Team Wiki](http://devopsconferences.visualstudio.com/wiki) site for more details\",\n    \"name\": \"Build and Test\",\n    \"itemLimit\": 5,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Committed\",\n      \"Bug\": \"Committed\"\n    },\n    \"columnType\": \"inProgress\",\n    \"isSplit\": true\n  },\n  {\n    \"description\": \"\",\n    \"name\": \"Deploy\",\n    \"itemLimit\": 0,\n    \"stateMappings\": {\n      \"Product Backlog Item\": \"Done\",\n      \"Bug\": \"Done\"\n    },\n    \"columnType\": \"outgoing\",\n    \"isSplit\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/BoardRowsFromTemplate.json",
    "content": "[\n  {\n    \"id\": \"fd08f0e8-2ddb-4981-841e-7afe43c40841\",\n    \"name\": \"Expedite\"\n  },\n  {\n    \"id\": \"00000000-0000-0000-0000-000000000000\",\n    \"name\": null\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/BugfromTemplate.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 1407,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 5\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:58.607Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T14:21:31.14Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Lengthy usernames not accepted\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"Demo is long!\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Bug; Guests\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1407\"\n    },\n    {\n      \"id\": 1713,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Unable to connect through 3G network\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1713\"\n    },\n    {\n      \"id\": 1705,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Services has a bug\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1658\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1705\"\n    },\n    {\n      \"id\": 1690,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Same face patterns are not recognized\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1690\"\n    },\n    {\n      \"id\": 1686,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New defect reported\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Room lights are not dimming within the app\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1653\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1686\"\n    },\n    {\n      \"id\": 1406,\n      \"rev\": 13,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:58.31Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T14:21:31.14Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Search hotel works only for certain cities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"Search hotel works only for certain cities\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Search Hotel Bug\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1406\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/BuildDefinitionGitHub/SmartHotelPetcheckerWeb.json",
    "content": "{\n  \"name\": \"SmartHotel_Petchecker-Web\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Bug\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"Release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": 1,\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Use .NET Core sdk 2.1.403\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"b0ce7256-7898-45d3-9cb5-176b752bfea6\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"packageType\": \"sdk\",\n              \"version\": \"2.1.403\",\n              \"includePreviewVersions\": \"false\",\n              \"installationPath\": \"$(Agent.ToolsDirectory)/dotnet\",\n              \"performMultiLevelLookup\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Restore\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"Source/SmartHotel360.Website/SmartHotel360.Website.csproj \",\n              \"custom\": \"\",\n              \"arguments\": \"\",\n              \"publishTestResults\": \"true\",\n              \"testRunTitle\": \"\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"build\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"Source/SmartHotel360.Website/SmartHotel360.Website.csproj \",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"publishTestResults\": \"true\",\n              \"testRunTitle\": \"\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"publish\",\n              \"publishWebProjects\": \"True\",\n              \"projects\": \"Source/SmartHotel360.Website/SmartHotel360.Website.csproj \",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)\",\n              \"publishTestResults\": \"true\",\n              \"testRunTitle\": \"\",\n              \"zipAfterPublish\": \"True\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact- Website package\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"web\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": true,\n            \"displayName\": \"Publish Artifact- ARM Template\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeededOrFailed()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.SourcesDirectory)/Deploy\",\n              \"ArtifactName\": \"arm\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Build WebSite\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": 1,\n        \"jobCancelTimeoutInMinutes\": 1\n      },\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Use NuGet 4.4.1\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2c65196a-54fd-4a02-9be8-d9d1837b7c5d\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"versionSpec\": \"4.4.1\",\n              \"checkLatest\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"NuGet restore\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"333b11bd-d341-40d9-afcf-b32d5ce6f23b\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"solution\": \"Source/SmartHotel360.WebsiteFunction/SmartHotel360.WebsiteFunction.csproj\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"disableParallelProcessing\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"allowPackageConflicts\": \"false\",\n              \"externalEndpoint\": \"\",\n              \"verbosityPush\": \"Detailed\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"versioningScheme\": \"off\",\n              \"includeReferencedProjects\": \"false\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"packTimezone\": \"utc\",\n              \"includeSymbols\": \"false\",\n              \"toolPackage\": \"false\",\n              \"buildProperties\": \"\",\n              \"basePath\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"arguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build solution Source/SmartHotel360.WebsiteFunction/SmartHotel360.WebsiteFunction.csproj\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"solution\": \"Source/SmartHotel360.WebsiteFunction/SmartHotel360.WebsiteFunction.csproj\",\n              \"vsVersion\": \"latest\",\n              \"msbuildArgs\": \"/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation=\\\"$(build.artifactstagingdirectory)\\\\\\\\\\\"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"clean\": \"false\",\n              \"maximumCpuCount\": \"false\",\n              \"restoreNugetPackages\": \"false\",\n              \"msbuildArchitecture\": \"x86\",\n              \"logProjectEvents\": \"true\",\n              \"createLogFile\": \"false\",\n              \"logFileVerbosity\": \"normal\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact: Function-app\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.ArtifactStagingDirectory)\",\n              \"ArtifactName\": \"Function-app\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Build Pet Checker Functions App\",\n        \"refName\": \"Phase_2\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": 1,\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"vs2017-win2016\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"$username$/SmartHotel360-Website\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/SmartHotel360-Website/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/SmartHotel360-Website.git\",\n      \"connectedServiceId\": \"$GitHubSmartHotel360-web$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"$username$/SmartHotel360-Website\",\n      \"manageUrl\": \"https://github.com/$username$/SmartHotel360-Website\",\n      \"safeRepository\": \"SmartHotel360-Website\"\n    },\n    \"id\": \"$username$/SmartHotel360-Website\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/SmartHotel360-Website\",\n    \"url\": \"https://github.com/$username$/SmartHotel360-Website\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": 1,\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/BuildDefinitions/SmartHotelPetcheckerWeb.json",
    "content": "{\n  \"name\": \"SmartHotel_Petchecker-Web\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Bug\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"Release\",\n      \"allowOverride\": true\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"buildNumberFormat\": \"$(date:yyyyMMdd)$(rev:.r)\",\n  \"jobAuthorizationScope\": 1,\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Use .NET Core sdk 2.1.403\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"b0ce7256-7898-45d3-9cb5-176b752bfea6\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"packageType\": \"sdk\",\n              \"version\": \"2.1.403\",\n              \"includePreviewVersions\": \"false\",\n              \"installationPath\": \"$(Agent.ToolsDirectory)/dotnet\",\n              \"performMultiLevelLookup\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Restore\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"Source/SmartHotel360.Website/SmartHotel360.Website.csproj \",\n              \"custom\": \"\",\n              \"arguments\": \"\",\n              \"publishTestResults\": \"true\",\n              \"testRunTitle\": \"\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"build\",\n              \"publishWebProjects\": \"true\",\n              \"projects\": \"Source/SmartHotel360.Website/SmartHotel360.Website.csproj \",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration)\",\n              \"publishTestResults\": \"true\",\n              \"testRunTitle\": \"\",\n              \"zipAfterPublish\": \"true\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"5541a522-603c-47ad-91fc-a4b1d163081b\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"publish\",\n              \"publishWebProjects\": \"True\",\n              \"projects\": \"Source/SmartHotel360.Website/SmartHotel360.Website.csproj \",\n              \"custom\": \"\",\n              \"arguments\": \"--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)\",\n              \"publishTestResults\": \"true\",\n              \"testRunTitle\": \"\",\n              \"zipAfterPublish\": \"True\",\n              \"modifyOutputPath\": \"true\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/*.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"externalEndpoint\": \"\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"nobuild\": \"false\",\n              \"versioningScheme\": \"off\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"buildProperties\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"workingDirectory\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact- Website package\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(build.artifactstagingdirectory)\",\n              \"ArtifactName\": \"web\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": true,\n            \"displayName\": \"Publish Artifact- ARM Template\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeededOrFailed()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.SourcesDirectory)/Deploy\",\n              \"ArtifactName\": \"arm\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\\\\\\\\my\\\\share\\\\$(Build.DefinitionName)\\\\$(Build.BuildNumber)\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Build WebSite\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": 1,\n        \"jobCancelTimeoutInMinutes\": 1\n      },\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Use NuGet 4.4.1\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2c65196a-54fd-4a02-9be8-d9d1837b7c5d\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"versionSpec\": \"4.4.1\",\n              \"checkLatest\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"NuGet restore\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"333b11bd-d341-40d9-afcf-b32d5ce6f23b\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"command\": \"restore\",\n              \"solution\": \"Source/SmartHotel360.WebsiteFunction/SmartHotel360.WebsiteFunction.csproj\",\n              \"selectOrConfig\": \"select\",\n              \"feedRestore\": \"\",\n              \"includeNuGetOrg\": \"true\",\n              \"nugetConfigPath\": \"\",\n              \"externalEndpoints\": \"\",\n              \"noCache\": \"false\",\n              \"disableParallelProcessing\": \"false\",\n              \"packagesDirectory\": \"\",\n              \"verbosityRestore\": \"Detailed\",\n              \"searchPatternPush\": \"$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg\",\n              \"nuGetFeedType\": \"internal\",\n              \"feedPublish\": \"\",\n              \"publishPackageMetadata\": \"true\",\n              \"allowPackageConflicts\": \"false\",\n              \"externalEndpoint\": \"\",\n              \"verbosityPush\": \"Detailed\",\n              \"searchPatternPack\": \"**/*.csproj\",\n              \"configurationToPack\": \"$(BuildConfiguration)\",\n              \"outputDir\": \"$(Build.ArtifactStagingDirectory)\",\n              \"versioningScheme\": \"off\",\n              \"includeReferencedProjects\": \"false\",\n              \"versionEnvVar\": \"\",\n              \"requestedMajorVersion\": \"1\",\n              \"requestedMinorVersion\": \"0\",\n              \"requestedPatchVersion\": \"0\",\n              \"packTimezone\": \"utc\",\n              \"includeSymbols\": \"false\",\n              \"toolPackage\": \"false\",\n              \"buildProperties\": \"\",\n              \"basePath\": \"\",\n              \"verbosityPack\": \"Detailed\",\n              \"arguments\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build solution Source/SmartHotel360.WebsiteFunction/SmartHotel360.WebsiteFunction.csproj\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n              \"versionSpec\": \"\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"solution\": \"Source/SmartHotel360.WebsiteFunction/SmartHotel360.WebsiteFunction.csproj\",\n              \"vsVersion\": \"latest\",\n              \"msbuildArgs\": \"/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation=\\\"$(build.artifactstagingdirectory)\\\\\\\\\\\"\",\n              \"platform\": \"$(BuildPlatform)\",\n              \"configuration\": \"$(BuildConfiguration)\",\n              \"clean\": \"false\",\n              \"maximumCpuCount\": \"false\",\n              \"restoreNugetPackages\": \"false\",\n              \"msbuildArchitecture\": \"x86\",\n              \"logProjectEvents\": \"true\",\n              \"createLogFile\": \"false\",\n              \"logFileVerbosity\": \"normal\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact: Function-app\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"$(Build.ArtifactStagingDirectory)\",\n              \"ArtifactName\": \"Function-app\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Build Pet Checker Functions App\",\n        \"refName\": \"Phase_2\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": 1,\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"vs2017-win2016\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://github.com/Microsoft/SmartHotel360-Website.git\",\n      \"fullName\": \"Microsoft/SmartHotel360-Website\",\n      \"defaultBranch\": \"master\",\n      \"connectedServiceId\": \"$GitHubSmartHotel360-web$\",\n      \"isPrivate\": \"False\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"Microsoft/SmartHotel360-Website\",\n      \"ownerIsAUser\": \"False\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"cleanOptions\": \"0\",\n      \"fetchDepth\": \"0\",\n      \"gitLfsSupport\": \"false\",\n      \"reportBuildStatus\": \"true\",\n      \"skipSyncSource\": \"false\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"labelSources\": \"0\"\n    },\n    \"id\": \"https://github.com/Microsoft/SmartHotel360-Website.git\",\n    \"type\": \"git\",\n    \"name\": \"Microsoft/SmartHotel360-Website\",\n    \"url\": \"https://github.com/Microsoft/SmartHotel360-Website.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": 1,\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Dashboard.json",
    "content": "﻿{\n  \"name\": \"Overview\",\n  \"refreshInterval\": 0,\n  \"position\": 1,\n  \"widgets\": [\n    {\n      \"name\": \"Work in Progress\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 4\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$WorkinProgress$\\\",\\\"queryName\\\":\\\"Work in Progress\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Work in Progress\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"PublicWebSiteCI\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"name\\\":\\\"PublicWebSiteCI\\\",\\\"id\\\":$PublicWebBuild$,\\\"type\\\":2,\\\"uri\\\":\\\"vstfs:///Build/Definition/$PublicWebBuild$\\\",\\\"projectId\\\":\\\"$projectId$\\\",\\\"lastArtifactName\\\":\\\"PublicWebSiteCI\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BuildChartWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Burndown\",\n      \"position\": {\n        \"row\": 6,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"teams\\\":[{\\\"projectId\\\":\\\"$projectId$\\\",\\\"teamId\\\":\\\"$DefaultTeamId$\\\"}],\\\"aggregation\\\":{\\\"identifier\\\":0,\\\"settings\\\":\\\"\\\"},\\\"completedWorkEnabled\\\":true,\\\"fieldFilters\\\":[],\\\"stackByWorkItemTypeEnabled\\\":true,\\\"burndownTrendlineEnabled\\\":true,\\\"workItemTypeFilter\\\":{\\\"identifier\\\":\\\"BacklogCategory\\\",\\\"settings\\\":\\\"Microsoft.RequirementCategory\\\"},\\\"includeBugsForRequirementCategory\\\":true,\\\"timePeriodConfiguration\\\":{\\\"startDate\\\":\\\"$startDate$\\\",\\\"samplingConfiguration\\\":{\\\"identifier\\\":1,\\\"settings\\\":[\\\"$sprint2$\\\",\\\"$sprint3$\\\"]}},\\\"totalScopeTrendlineEnabled\\\":true}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BurndownWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BurndownWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BurndownWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BurndownWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"All Items by Assigned To\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"chartType\\\":\\\"PieChart\\\",\\\"groupKey\\\":\\\"$AllItems$\\\",\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"title\\\":\\\"All Items by Assigned To\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllItems$\\\",\\\"groupBy\\\":\\\"System.AssignedTo\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"All Items by Assigned To\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Build Health Overview\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 3\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contributionId\": \"ms-devlabs.TeamProjectHealth.TPHealth-OverviewWidget\",\n      \"typeId\": \"TPHealth-OverviewWidget\",\n      \"configurationContributionId\": \"ms-devlabs.TeamProjectHealth.TPHealth-OverviewWidget-Configuration\",\n      \"configurationContributionRelativeId\": \"TPHealth-OverviewWidget-Configuration\",\n      \"isNameConfigurable\": true,\n      \"loadingImageUrl\": null\n    },\n    {\n      \"name\": \"Sprint Overview\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintOverviewWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.SprintOverviewWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintOverviewWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.SprintOverviewWidget.Configuration\",\n      \"isNameConfigurable\": false\n    },\n    {\n      \"name\": \"Release Health Details\",\n      \"position\": {\n        \"row\": 6,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"definitionId\\\":\\\"$SmartHotel360_Website-Deploy$\\\",\\\"showRejectedAsFailed\\\":true}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contributionId\": \"ms-devlabs.TeamProjectHealth.TPHealth-ReleaseDetailsWidget\",\n      \"typeId\": \"TPHealth-ReleaseDetailsWidget\",\n      \"configurationContributionId\": \"ms-devlabs.TeamProjectHealth.TPHealth-ReleaseDetailsWidget-Configuration\",\n      \"configurationContributionRelativeId\": \"TPHealth-ReleaseDetailsWidget-Configuration\",\n      \"isNameConfigurable\": false,\n      \"loadingImageUrl\": null\n    },\n    {\n      \"name\": \"All Items by Assign To\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$AllItems$\\\",\\\"queryName\\\":\\\"All Items\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"BacklogBoard WI\",\n      \"position\": {\n        \"row\": 5,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#00643a\\\",\\\"queryId\\\":\\\"$BacklogBoardWI$\\\",\\\"queryName\\\":\\\"BacklogBoard WI\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"BacklogBoard WI\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n\n    {\n      \"name\": \"PublicWeb (master)\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"repositoryId\\\":\\\"$RepoPublicWeb$\\\",\\\"version\\\":\\\"GBmaster\\\",\\\"path\\\":\\\"/\\\",\\\"lastArtifactName\\\":\\\"PublicWeb (master)\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.CodeScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.CodeScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.CodeScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.CodeScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"All Items\",\n      \"position\": {\n        \"row\": 6,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllItems$\\\",\\\"title\\\":\\\"All Items\\\",\\\"chartType\\\":\\\"AreaChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllItems$\\\",\\\"groupBy\\\":\\\"\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":\\\"last7Days\\\"},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"All Items\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"MobileTeam_Work by Assigned To\",\n      \"position\": {\n        \"row\": 3,\n        \"column\": 9\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$MobileTeamWork$\\\",\\\"title\\\":\\\"MobileTeam_Work by Assigned To\\\",\\\"chartType\\\":\\\"ColumnChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$MobileTeamWork$\\\",\\\"groupBy\\\":\\\"System.AssignedTo\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"MobileTeam_Work by Assigned To\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Bugs\",\n      \"position\": {\n        \"row\": 5,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#e60017\\\",\\\"queryId\\\":\\\"$Bugs$\\\",\\\"queryName\\\":\\\"Bugs\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Bugs\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Bugs without Repro Steps by Assigned To\",\n      \"position\": {\n        \"row\": 8,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$BugswithoutRepro$\\\",\\\"title\\\":\\\"Bugs without Repro Steps by Assigned To\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$BugswithoutRepro$\\\",\\\"groupBy\\\":\\\"System.AssignedTo\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"Bugs without Repro Steps by Assigned To\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"smh360_scrum Team Velocity\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"projectId\\\":\\\"$projectId$\\\",\\\"teamId\\\":\\\"$DefaultTeamId$\\\",\\\"workItemTypeFilter\\\":{\\\"identifier\\\":\\\"BacklogCategory\\\",\\\"settings\\\":\\\"Microsoft.RequirementCategory\\\"},\\\"aggregation\\\":{\\\"identifier\\\":0,\\\"settings\\\":\\\"\\\"},\\\"numberOfIterations\\\":6,\\\"plannedWorkDelay\\\":null,\\\"lateWorkDelay\\\":null,\\\"lastArtifactName\\\":null}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.VelocityWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.VelocityWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.VelocityWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.VelocityWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Unfinished Work\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$UnfinishedWork$\\\",\\\"queryName\\\":\\\"Unfinished Work\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Unfinished Work\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Cumulative Flow Diagram\",\n      \"position\": {\n        \"row\": 8,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.CumulativeFlowDiagramWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.CumulativeFlowDiagramWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.CumulativeFlowDiagramWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.CumulativeFlowDiagramWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Sprint Burndown\",\n      \"position\": {\n        \"row\": 5,\n        \"column\": 7\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.SprintBurndownWidget\",\n      \"configurationContributionId\": null,\n      \"configurationContributionRelativeId\": null,\n      \"isNameConfigurable\": false\n    },\n    {\n      \"name\": \"State of TestCases - Chart\",\n      \"position\": {\n        \"row\": 5,\n        \"column\": 9\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$StateofTestCases$\\\",\\\"title\\\":\\\"State of TestCases - Chart\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$StateofTestCases$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"State of TestCases by State\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Markdown\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 3,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"repositoryId\\\":\\\"$RepoSmartHotel360$\\\",\\\"version\\\":\\\"GBmaster\\\",\\\"path\\\":\\\"/README.md\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.MarkdownWidget.Configuration\",\n      \"isNameConfigurable\": false,\n      \"lightboxOptions\": {\n        \"width\": 600,\n        \"height\": 500,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"BacklogBoard WI - Chart\",\n      \"position\": {\n        \"row\": 7,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$BacklogBoardWI$\\\",\\\"title\\\":\\\"BacklogBoard WI - Chart\\\",\\\"chartType\\\":\\\"StackAreaChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$BacklogBoardWI$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":\\\"last7Days\\\"},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"BacklogBoard WI by Work Item Type\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Assigned to Me\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.AssignedToMeWidget.Configuration\",\n      \"isNameConfigurable\": false,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"All Items by Assigned To\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 8\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$AllItems$\\\",\\\"title\\\":\\\"All Items by Assigned To\\\",\\\"chartType\\\":\\\"stackBarChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AllItems$\\\",\\\"groupBy\\\":\\\"System.AssignedTo\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"series\\\":\\\"System.AssignedTo\\\"},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"All Items by Assigned To\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/All Items.json",
    "content": "{\n  \"name\": \"All Items_WI\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/BacklogBoard WI.json",
    "content": "{\n  \"name\": \"BacklogBoard WI\",\n  \"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] <> '' and [System.BoardColumn] = 'New' and [System.IterationPath] Under '$projectId$'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Board WI.json",
    "content": "{\n  \"name\": \"Board WI\",\n  \"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] <> '' and [System.BoardColumn] = 'New' and [System.IterationPath] = '$projectId$'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Bugs without Repro Steps.json",
    "content": "{\n  \"name\": \"Bugs without Repro Steps\",\n  \"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] <> '' and [Microsoft.VSTS.TCM.ReproSteps] is empty\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Bugs.json",
    "content": "﻿{\n  \"name\": \"Bugs\",\n  \"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' AND [System.IterationPath] UNDER @currentIteration('[$projectId$]\\\\$projectId$ Team')\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Features with no Product Owner.json",
    "content": "{\n  \"name\": \"Features with no Product Owner\",\n  \"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] <> '' and [System.AssignedTo] = ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Feedback.json",
    "content": "{\n  \"name\": \"Feedback_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.Title], [System.State],[System.CreatedBy],[Microsoft.VSTS.Common.Rating] FROM workitems WHERE [System.TeamProject] = @project AND [System.WorkItemType] IN GROUP 'Microsoft.FeedbackResponseCategory' AND [System.State] = 'Active' ORDER BY [System.Id]\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/MobileTeam_Work.json",
    "content": "{\n  \"name\": \"MobileTeam_Work\",\n  \"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] <> '' and [System.AreaPath] = '$projectId$\\\\Mobile'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Open Bugs.json",
    "content": "{\n  \"name\": \"Open Bugs_WI\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/State of TestCases.json",
    "content": "{\n  \"name\": \"State of TestCases\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Unassigned Bugs.json",
    "content": "{\n  \"name\": \"Unassigned Bugs\",\n  \"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.AssignedTo] = ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Unassigned Tasks.json",
    "content": "{\n  \"name\": \"Unassigned Tasks\",\n  \"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] <> 'Done' and [System.AssignedTo] = ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/UnfinishedWork.json",
    "content": "﻿{\n  \"name\": \"Unfinished Work_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.Title],[Microsoft.VSTS.Common.BacklogPriority],[System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork],[Microsoft.VSTS.CMMI.Blocked],[System.WorkItemType] FROM workitemLinks WHERE ([Source].[System.TeamProject] = @project AND [Source].[System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND ([Source].[System.WorkItemType] IN GROUP 'Microsoft.RequirementCategory' OR [Source].[System.WorkItemType] IN GROUP 'Microsoft.TaskCategory' ) AND [Source].[System.State] <> 'Removed' AND [Source].[System.State] <> 'Done') AND ([System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward')  AND ([Target].[System.WorkItemType] IN GROUP 'Microsoft.TaskCategory' AND [Target].[System.State] <> 'Done' AND [Target].[System.State] <> 'Removed') ORDER BY [Microsoft.VSTS.Common.BacklogPriority],[Microsoft.VSTS.Scheduling.Effort], [Microsoft.VSTS.Scheduling.RemainingWork],[System.Id] MODE (Recursive)\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/WebTeam_Work.json",
    "content": "{\n  \"name\": \"WebTeam_Work\",\n  \"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] <> '' and [System.AreaPath] = '$projectId$\\\\Web'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Dashboard/Queries/Work in Progress.json",
    "content": "﻿{\n  \"name\": \"Work in Progress_WI\",\n  \"wiql\": \"SELECT [System.Id],[System.WorkItemType],[System.Title], [System.AssignedTo],[System.State],[Microsoft.VSTS.Scheduling.RemainingWork] FROM workitems WHERE [System.TeamProject] = @project     AND [System.IterationPath] UNDER '$projectId$\\\\Sprint 2' AND [System.WorkItemType] IN GROUP 'Microsoft.TaskCategory'     AND [System.State] = 'In Progress' ORDER BY [System.AssignedTo],[Microsoft.VSTS.Common.BacklogPriority],[System.Id]\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/EnableEpic.json",
    "content": "﻿{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/EpicfromTemplate.json",
    "content": "﻿{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"id\": 1732,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2018-07-24T09:52:50.867Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:42:12.993Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Smartphone Experience\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1733\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1732\"\n    },\n    {\n      \"id\": 1731,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New epic\",\n        \"System.CreatedDate\": \"2018-07-24T09:52:40.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:42:12.993Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Web Experience\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1734\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1736\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1735\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1731\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Extensions.json",
    "content": "﻿{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"ARM Outputs\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'><b>ARM Outputs</b></a>\",\n      \"publisherId\": \"keesschollaart\",\n      \"extensionId\": \"arm-outputs\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/keesschollaart.arm-outputs/license' target='_blank'>License Terms</a>\"\n    },\n    {\n      \"extensionName\": \"Team Project Health\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=ms-devlabs.TeamProjectHealth' target='_blank'><b>Team Project Health</b></a>\",\n      \"publisherId\": \"ms-devlabs\",\n      \"extensionId\": \"TeamProjectHealth\",\n      \"publisherName\": \"microsoft\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/ms-devlabs.TeamProjectHealth/license' target='_blank'>License Terms</a>\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/FeaturefromTemplate.json",
    "content": "﻿{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 1738,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2018-07-24T09:54:00.893Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Check-in from your phone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1732\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1660\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1661\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1649\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1650\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1406\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1369\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1407\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\"\n    },\n    {\n      \"id\": 1736,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2018-07-24T09:53:38.233Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Conference Rooms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1731\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1368\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1373\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1381\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1736\"\n    },\n    {\n      \"id\": 1735,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2018-07-24T09:53:30.72Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Reservations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1731\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1370\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1371\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1379\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1735\"\n    },\n    {\n      \"id\": 1734,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2018-07-24T09:53:23.28Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"User Registration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1388\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1731\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1384\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1387\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1734\"\n    },\n    {\n      \"id\": 1733,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New feature\",\n        \"System.CreatedDate\": \"2018-07-24T09:53:15.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Go green with smart sensors\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1645\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1732\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1389\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1653\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1644\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1733\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"Microsoft/SmartHotel360-Website\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ImportSourceCode/PublicWeb.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/smh360_scrum/_git/PublicWeb\"\n    },\n    \"serviceEndpointId\": \"$PublicWeb-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ImportSourceCode/SmartHotel360.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\": {\n        \"url\": \"https://vstsdemodata.visualstudio.com/smh360_scrum/_git/SmartHotel360\"\n      },\n      \"serviceEndpointId\": \"$SmartHotel360-code$\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Iterations.json",
    "content": "{\n  \n  \"name\": \"SmartHotel360\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true,\n  \"children\": [\n    {\n    \n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n     \n      \"children\": null\n    },\n    {\n      \n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n      \n      \"children\": null\n    },\n    {\n      \n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false,\n     \n      \"children\": null\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/PBIfromTemplate.json",
    "content": "{\n  \"count\": 26,\n  \"value\": [\n    {\n      \"id\": 1381,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.62Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-20T09:22:28.16Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to update conference room reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"As a customer, I should be able to update conference room reservation such that:<div><br></div><div>1. When a conference room is already reserved, an update option should be available<br><div><br></div><div><br></div></div>\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Business Meetings; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1736\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1809\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1808\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1381\"\n    },\n    {\n      \"id\": 1387,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:56.2Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-20T09:22:28.16Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to update my details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 12.0,\n        \"System.Description\": \"<p class=MsoNormal style=\\\"margin-bottom:0in;margin-bottom:.0001pt;line-height:19.5pt;background:white;\\\"><span style=\\\"font-size:10.5pt;font-family:&quot;Segoe UI&quot;,sans-serif;color:#222222;background:white;\\\">Sometimes customers need to change the card\\ninfo that they have on record with your business, whether that’s just to swap\\nin a preferred card, or because the card issuer sent a replacement.&nbsp;</span></p>\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Modification\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1812\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1734\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1387\"\n    },\n    {\n      \"id\": 1373,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:54.73Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-20T09:22:28.16Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to reserve a conference room\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 20.0,\n        \"System.Description\": \"As a customer, I would like to reserve a conference room such that:<div><br></div><div>1. It should display available date and time slots</div><div>2. Give an option to reserve a conference room for X hours</div><div>3. One can reserve a conference room for max 4 hours per day</div>\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1736\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1785\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1803\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1806\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1807\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1373\"\n    },\n    {\n      \"id\": 1371,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:54.513Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-20T09:22:28.16Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a reservation agent, I would like to send confirmations to guest\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 7.0,\n        \"System.Description\": \"<p class=MsoNormal><span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;,sans-serif;color:#222222;background:white;\\\">Enter the&nbsp;</span><span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;,sans-serif;color:#222222;\\\">guest's<span style=\\\"background:white;\\\">&nbsp;name to whom you&nbsp;</span></span>would\\nlike to send<span style=\\\"background:white;\\\">&nbsp;a&nbsp;</span>confirmation,&nbsp;<span style=\\\"background:white;\\\">display the company, contact, source\\nand&nbsp;</span>agent<span style=\\\"background:white;\\\">&nbsp;associated\\nwith the&nbsp;</span>reservation<span style=\\\"background:white;\\\">.</span></p>\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Notification\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1805\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1735\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1804\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1750\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1801\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1371\"\n    },\n    {\n      \"id\": 1370,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:54.433Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-20T09:22:43.537Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to remove a car reservation \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 6.0,\n        \"System.Description\": \"<div><p class=MsoNormal><span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;, sans-serif;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">If you have not picked up\\nyour&nbsp;</span><span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;, sans-serif;\\\">vehicle<span style=\\\"background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">&nbsp;you can remove or cancel your&nbsp;</span></span>reservation<span style=\\\"background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">&nbsp;by clicking here.</span></p><p class=MsoNormal><span style=\\\"background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\"><br></span></p></div><div>1. Car reserved should have an option to cancel the request</div><div>2. Car driver should receive a notification about cancellation</div>\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1735\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1784\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1377\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1382\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1370\"\n    },\n    {\n      \"id\": 1369,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:54.183Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-20T09:22:43.537Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to request hotel for late Check-out\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 15.0,\n        \"System.Description\": \"<span style=\\\"font-family:&quot;Segoe UI&quot;, sans-serif;font-size:10.5pt;\\\">As a courtesy, grant an\\nextra hour or two to leave&nbsp;the&nbsp;room, especially if it isn't booked\\nfor&nbsp;the upcoming evening. But customer must&nbsp;call the&nbsp;front desk\\nin advance and&nbsp;request&nbsp;a&nbsp;late checkout.</span><p class=MsoNormal><span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;, sans-serif;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\"></span></p><p class=MsoNormal><span style=\\\"font-size:12.0pt;line-height:107%;\\\"></span></p><div><div><br></div><div>1. Late Check-in time should be displayed</div><div>2. Request should be sent to front-desk&nbsp;</div><div>3. Any extra charge should be displayed</div></div>\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Front-desk; Members; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1783\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1799\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1392\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1380\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1369\"\n    },\n    {\n      \"id\": 1379,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.42Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-20T09:22:43.537Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to a reserve car\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 15.0,\n        \"System.Description\": \"As a customer, I should be able to a reserve car such that:<div><br></div><div>1. Car can be reserved and paid through the hotel</div>\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1735\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1383\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1379\"\n    },\n    {\n      \"id\": 1388,\n      \"rev\": 17,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Web\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:56.293Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-21T09:30:23.563Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a hotel manager, I should be able to view current guest list\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"Show current guests list such that it includes:<div><br></div><div>1. Guest first and last name</div><div>2. Check-in and check-out date</div><div><br></div>\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Privacy\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1673\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1376\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1674\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1734\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1388\"\n    },\n    {\n      \"id\": 1368,\n      \"rev\": 16,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Moved to the backlog\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:53.967Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:18:51.77Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to change reservation time\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"Change reservation time\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Guests; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1782\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1834\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1736\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1794\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1368\"\n    },\n    {\n      \"id\": 1655,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a room guest, I should be able to communicate with all smart devices from the app\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 23.0,\n        \"System.Description\": \"<font color=\\\"#5e5e5e\\\" face=\\\"montserrat, sans-serif\\\"><span style=\\\"font-size:15px;\\\">The smartphone will be the room's remote control. Through the app, the guest will be able to seamlessly control the room’s lighting, HVAC [heating, ventilation, and air conditioning], and entertainment options, including pre-loaded and streaming content.&nbsp;</span></font>\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"App; Guest; IoT; smarthotel\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1701\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1752\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1753\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1733\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1749\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1698\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1699\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1700\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\"\n    },\n    {\n      \"id\": 1659,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a room guest, I should be able to connect to the app with my own device\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Authorization\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1717\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1747\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1746\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1744\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1748\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1720\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1715\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1714\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1719\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1713\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\"\n    },\n    {\n      \"id\": 1661,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:39:05.96Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a reservation agent, I would like to search for available rooms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"The Reservation Agent should be able to assist customers with planning and booking reservations. This can mean booking a hotel room, a car rental, airplane tickets, a cruise package or tickets to a show. They may also help plan travel itineraries by suggesting local tourist attractions and places of interest. They then process payments and send the details and confirmation to the guest. When issues arise with reservations, the Reservation Agent is often contacted to sort out the issues.\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Reservation; Rooms [List]\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1728\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1729\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1661\"\n    },\n    {\n      \"id\": 1665,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a reservation agent, I would like to send confirmations to guest\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 12.0,\n        \"System.Description\": \"A written confirmation from the reservation agent stating the confirmation of name, arrival departure date, number of guest staying, room rate, type of room booked, number of rooms, pick up details, details of deposit made, package details etc. should be sent out.<div>Confirmation letter may also include the cancellation and no-show polices of the hotel. And also about the retention charges, hotel standard check-in and check-out time, early morning / early arrival charges and also about late departure charges.</div>\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Confirmation; Guests; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1725\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1647\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1665\"\n    },\n    {\n      \"id\": 1660,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a room guest, I should be able to personalize the app with themes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"The user should be able to personalize the SMH360 app with themes available in the settings menu and also be able to personalize the app with customized themes on the Android and IOS app.\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Android; IOS; Personalization; Themes; Xamarin\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1726\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1727\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1722\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1724\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1721\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1660\"\n    },\n    {\n      \"id\": 1658,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to have a responsive search experience\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 8.0,\n        \"System.Description\": \"The site should have responsive design for a better search experience, regardless of the device being used.&nbsp;The website adjusts automatically to the size of device’s screen and the user doesn’t have to browse through multiple pages to find what he is looking for, giving users a very smooth and optimized experience on the device.\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Guests; responsive; Rooms [List]; search\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1709\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1707\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1710\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1708\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1705\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1658\"\n    },\n    {\n      \"id\": 1656,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to access the app on all mobile platforms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 30.0,\n        \"System.Description\": \"The guest should be able to access the SMH360 app on platforms -&nbsp;<div><br></div><div>1. Google PlayStore</div><div>2. Apple Itunes</div><div>3. Windows Store</div>\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Android; App; Gues; IO; Windows\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1703\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1702\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1704\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1656\"\n    },\n    {\n      \"id\": 1650,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to make a reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"The user should be able to make a new reservation by clicking the &quot;Make a Reservation&quot; button in the site or in the app.\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Guests; Reservation; Room\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1797\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1650\"\n    },\n    {\n      \"id\": 1649,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to modify an existing reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 4.0,\n        \"System.Description\": \"The user should be able to modify his existing reservation if the reservation hasnt already ended.&nbsp;\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Modification; Reservations; Web experience\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1738\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1664\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1683\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1649\"\n    },\n    {\n      \"id\": 1378,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.263Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:40:51.65Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I would like to make a new reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"As a customer, I would like to make a new reservation\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Guest; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1378\"\n    },\n    {\n      \"id\": 1375,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:54.95Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:40:51.65Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a user, I should be able to cancel an existing booking of a conference room\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Conference Room - Cancel an existing reservation\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Conference Room; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1792\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1791\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1375\"\n    },\n    {\n      \"id\": 1384,\n      \"rev\": 16,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.92Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a front-desk admin, I should be able to print breakfast coupons\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"As a front-desk admin, I should be able to print breakfast coupons such that:<div><br></div><div>1. Complementary breakfast coupons should be provided for each checked-in guest</div><div>2. Guest names should be printed so that it is non transferable</div><div>3. Coupons should have unique barcode</div><div><br></div>\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": \"Expedite\",\n        \"System.Tags\": \"Admin; Coupons\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1734\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1405\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1400\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1395\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/cf20ba8d-265d-4e08-8eae-244dca8002c7%2F26b80411-f31b-488e-a08f-577077cdc4d5%2F12\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-07-23T10:53:33.263Z\",\n            \"id\": \"1313386\",\n            \"resourceCreatedDate\": \"2018-07-23T10:53:33.263Z\",\n            \"resourceModifiedDate\": \"2018-07-23T10:53:33.263Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1384\"\n    },\n    {\n      \"id\": 1389,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Committed\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:56.403Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a hotel manager, I should be able to see guest list for a date\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 20.0,\n        \"System.Description\": \"As a hotel manager, I should be able to see guest list for a particular date:<div><br></div><div>The guest list should include the following:</div><div><br></div><div>1. Guest first and last name</div><div>2. Check-in and check-out date</div><div>3. Advance amount paid</div><div>4. Balance amount to be paid</div><div>5. Booking mode</div>\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Admin; Manager\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1733\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1396\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1398\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1403\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1374\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1401\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1389\"\n    },\n    {\n      \"id\": 1644,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to use Bluetooth-enabled IoT Beacon sensors for registration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 12.0,\n        \"System.Description\": \"As a user, I should be able to able to use Bluetooth-enabled IoT Beacon sensors for registration such that:<div><br></div><div>1. As soon as a guest enters the hotel lobby, he should be registered automatically</div>\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": \"Expedite\",\n        \"System.Tags\": \"Registration\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1733\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1677\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1672\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1671\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1676\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1675\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1644\"\n    },\n    {\n      \"id\": 1654,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a room guest, I should be able to enter the room with facial recognition\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 30.0,\n        \"System.Description\": \"The guests should be able to check into their room with a quick scan of their face. To use the new feature, hotel guests must first scan their IDs, get their face scanned, and then add their contact details. Once the guest's booking information and identity have been confirmed, a room key will be presented.\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Authorization; Facial Recognition; Guests\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1695\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1692\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1690\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1693\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1733\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1691\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1696\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1697\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\"\n    },\n    {\n      \"id\": 1653,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a room guest, I should be able to control my room's lighting within the app\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 15.0,\n        \"System.Description\": \"The guest should be able to control the room lighting and welcome light. When the room is empty, the lights should be out.&nbsp; When the guest enters the room, a welcome light should be on automatically. Sensor can be motion-based, daylight-sensing or a combination and placed in aisles, bathrooms, elevators, seating areas, conference rooms and more.&nbsp;\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"App; Guests; Lights; Rooms [List]\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1688\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1733\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1687\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1662\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1689\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1686\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1653\"\n    },\n    {\n      \"id\": 1645,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"Approved\",\n        \"System.Reason\": \"Approved by the Product Owner\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"As a customer, I should be able to have a keyless entry to my room via smartphone\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"The hotel should configure the room key to the guest's mobile phone. With a single download, guests should be able to check-in and gain access to their hotel room and hotel amenities.\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Guests; keyless; smartphone\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1680\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1681\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1679\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1678\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1733\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1645\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ProjectSettings.json",
    "content": "﻿{\n\t\"type\": \"Scrum\",\n\t\"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ],\n\t\n\t\"queues\": [ \"HostedVS2017\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ProjectTemplate.json",
    "content": "{\n  \"Name\": \"SmartHotel360\",\n  \"Teams\": \"Teams.json\",\n  \"SourceCode\": \"ImportSourceCode.json\",\n  \"CreateService\": \"CreateServiceEndPoint.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"PBIfromTemplate\": \"PBIfromTemplate.json\",\n  \"BugfromTemplate\": \"BugfromTemplate.json\",\n  \"EpicfromTemplate\": \"EpicfromTemplate.json\",\n  \"TaskfromTemplate\": \"TaskfromTemplate.json\",\n  \"TestPlanFromTemplate\": \"TestPlan1.json\",\n  \"TestCasefromTemplate\": \"TestCasefromTemplate.json\",\n  \"TestSuiteFromTemplate\": \"TestPlan1.json\",\n  \"FeaturefromTemplate\": \"FeaturefromTemplate.json\",\n  \"UserStoriesFromTemplate\": \"UerStoriesfromTemplate.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"BoardRows\": \"BoardRowsFromTemplate.json\",\n  \"Widget\": \"WidgetQuery.json\",\n  \"Chart\": \"WidgetChart.json\",\n  \"TeamArea\": \"TeamArea.json\"\n\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/PullRequests/Comments/PullRequest1.json",
    "content": "{\n  \"count\": 8,\n  \"value\": [\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"The pull request is mergable and the target commit would be d029ed3d5a1503bd73623228db288dfc20034c2c.\",\n          \"commentType\": \"system\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": null\n      },\n      \"status\": null,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"I think the best is to keep this just internal to the class so'll leave it this way, what do you think Mark?\",\n          \"commentType\": \"text\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": null,\n          \"value\": 0\n        }\n      },\n      \"status\": \"active\",\n      \"pullRequestThreadContext\": {\n        \"iterationContext\": {\n          \"firstComparingIteration\": 1,\n          \"secondComparingIteration\": 1\n        },\n        \"changeTrackingId\": 1\n      },\n      \"threadContext\": {\n        \"filePath\": \"/SmartHotel360.PublicWeb/Controllers/SearchController.cs\",\n        \"rightFileStart\": {\n          \"line\": 11,\n          \"offset\": 1\n        },\n        \"rightFileEnd\": {\n          \"line\": 11,\n          \"offset\": 57\n        }\n      }\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"Sachin Raj added Paris Morgan as a reviewer\",\n          \"commentType\": \"system\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": null\n      },\n      \"status\": null,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"Sachin Raj added Preeti Rana👻 as a reviewer\",\n          \"commentType\": \"system\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": null\n      },\n      \"status\": null,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": null,\n          \"commentType\": \"text\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": null,\n          \"value\": 0\n        }\n      },\n      \"status\": \"active\",\n      \"pullRequestThreadContext\": {\n        \"iterationContext\": {\n          \"firstComparingIteration\": 1,\n          \"secondComparingIteration\": 1\n        },\n        \"changeTrackingId\": 1\n      },\n      \"threadContext\": {\n        \"filePath\": \"/SmartHotel360.PublicWeb/Controllers/SearchController.cs\",\n        \"rightFileStart\": {\n          \"line\": 22,\n          \"offset\": 1\n        },\n        \"rightFileEnd\": {\n          \"line\": 22,\n          \"offset\": 37\n        }\n      }\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"I think the best I can do is to have the entire Controls.TextBox in black in this case, so actually I think I'll leave it this way, what do you think Sai?\",\n          \"commentType\": \"text\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": null,\n          \"value\": 0\n        }\n      },\n      \"status\": \"active\",\n      \"pullRequestThreadContext\": {\n        \"iterationContext\": {\n          \"firstComparingIteration\": 1,\n          \"secondComparingIteration\": 1\n        },\n        \"changeTrackingId\": 2\n      },\n      \"threadContext\": {\n        \"filePath\": \"/SmartHotel360.PublicWeb/Models/Settings/Resources.cs\",\n        \"rightFileStart\": {\n          \"line\": 5,\n          \"offset\": 1\n        },\n        \"rightFileEnd\": {\n          \"line\": 5,\n          \"offset\": 47\n        }\n      }\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"Sachin Raj joined as a reviewer\",\n          \"commentType\": \"system\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": null\n      },\n      \"status\": null,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"Sachin Raj voted 10\",\n          \"commentType\": \"system\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": null\n      },\n      \"status\": null,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/PullRequests/Comments/PullRequest2.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"The pull request is mergable and the target commit would be 5bf2674da949ffd3425e2f20aa7df6907a85d16f.\",\n          \"commentType\": \"system\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": null\n      },\n      \"status\": null,\n      \"pullRequestThreadContext\": null,\n      \"threadContext\": null\n    },\n    {\n      \"comments\": [\n        {\n          \"parentCommentId\": 0,\n          \"content\": \"Bad idea!\",\n          \"commentType\": \"text\"\n        }\n      ],\n      \"properties\": {\n        \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\": {\n          \"type\": null,\n          \"value\": 0\n        }\n      },\n      \"status\": \"fixed\",\n      \"pullRequestThreadContext\": {\n        \"iterationContext\": {\n          \"firstComparingIteration\": 1,\n          \"secondComparingIteration\": 1\n        },\n        \"changeTrackingId\": 1\n      },\n      \"threadContext\": {\n        \"filePath\": \"/SmartHotel360.PublicWeb/package.json\",\n        \"rightFileStart\": {\n          \"line\": 25,\n          \"offset\": 1\n        },\n        \"rightFileEnd\": {\n          \"line\": 25,\n          \"offset\": 38\n        }\n      }\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/PullRequests/PullRequest1.json",
    "content": "{\n  \"title\": \"Search Citeis\",\n  \"description\": \"Please review\",\n  \"sourceRefName\": \"refs/heads/searchcities\",\n  \"targetRefName\": \"refs/heads/master\",\n  \"reviewers\": [\n    {\n      \"id\": \"$reviewer$\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/PullRequests/PullRequest2.json",
    "content": "{\n  \"title\": \"Added Packages\",\n  \"description\": \"Added Packages\",\n  \"sourceRefName\": \"refs/heads/feature/bot-widget\",\n  \"targetRefName\": \"refs/heads/master\",\n  \"reviewers\": [\n    {\n      \"id\": \"$reviewer$\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ReleaseDefinitions/SmartHotelWebsite Deploy.json",
    "content": "{\n  \"source\": 2,\n  \"revision\": 2,\n  \"description\": null,\n  \"isDeleted\": false,\n  \"variables\": {\n    \"location\": {\n      \"value\": \"East US\"\n    },\n    \"ResourceGroup\": {\n      \"value\": \"Website\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 3,\n      \"name\": \"Stage 1\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": 1\n        }\n      },\n      \"deployStep\": {\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": 2\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": 0\n            },\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": 1,\n          \"name\": \"Agent job\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"version\": \"2.*\",\n              \"name\": \"Deploying Resources\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(ResourceGroup)\",\n                \"location\": \"$(location)\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"$(System.DefaultWorkingDirectory)/_SmartHotel_Petchecker-Web/arm/deployment.json\",\n                \"csmParametersFile\": \"\",\n                \"overrideParameters\": \"\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"runAgentServiceAsUser\": \"false\",\n                \"userName\": \"\",\n                \"password\": \"\",\n                \"outputVariable\": \"\",\n                \"deploymentName\": \"\",\n                \"deploymentOutputs\": \"\",\n                \"addSpnToEnvironment\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"584bcff2-3353-4f11-872b-6ba01267a972\",\n              \"version\": \"6.*\",\n              \"name\": \"ARM Outputs\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceNameSelector\": \"ConnectedServiceNameARM\",\n                \"ConnectedServiceNameARM\": \"\",\n                \"resourceGroupName\": \"$(ResourceGroup)\",\n                \"prefix\": \"\",\n                \"outputNames\": \"\",\n                \"whenLastDeploymentIsFailed\": \"fail\",\n                \"deploymentNameFilter\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Deploy Azure Function\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": null,\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"functionApp\",\n                \"WebAppName\": \"$(function)\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"$(Build.BuildId)\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/_SmartHotel_Petchecker-Web/Function-app/SmartHotel360.WebsiteFunction.zip\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \"\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"true\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Deploy SmartHotel Website\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"webApp\",\n                \"WebAppName\": \"$(web)\",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"\",\n                \"DockerRepository\": \"\",\n                \"DockerImageTag\": \"\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/_SmartHotel_Petchecker-Web/web/SmartHotel360.Website.zip\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"true\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"true\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"true\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": 1,\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$SmartHotel_Petchecker-Web-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_SmartHotel_Petchecker-Web\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"latestType\",\n          \"name\": \"Latest\"\n        },\n        \"definition\": {\n          \"id\": \"96\",\n          \"name\": \"SmartHotel_Petchecker-Web\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        },\n        \"repository\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"Other\"\n    }\n  },\n  \"name\": \"SmartHotel360_Website-Deploy\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ServiceEndpoints/GitHub_SmartHotel360-public-web.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"GitHubSmartHotel360-web\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/Microsoft/SmartHotel360-Website.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ServiceEndpoints/PublicWeb-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"PublicWeb-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/smh360_scrum/_git/PublicWeb\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/ServiceEndpoints/SmartHotel360-code.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"SmartHotel360-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/smh360_scrum/_git/SmartHotel360\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/TaskfromTemplate.json",
    "content": "{\n  \"count\": 72,\n  \"value\": [\n    {\n      \"id\": 1804,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T07:29:58.24Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-20T07:29:58.24Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Capture guest details to Cosmos DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1371\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1804\"\n    },\n    {\n      \"id\": 1392,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Work stopped\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:56.84Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:19:33.29Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Implement to search for loyalty membership\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 3.0,\n        \"System.Description\": \"Search loyalty membership\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Front-desk; Members; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1369\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1392\"\n    },\n    {\n      \"id\": 1380,\n      \"rev\": 13,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.513Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:19:48.103Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Search for an existing reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"As a manager, I should be able to search for an existing reservation:<div><br></div><div>1. Guest first and last name should be listed along with the duration</div><div><br></div>\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Manager\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1369\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1380\"\n    },\n    {\n      \"id\": 1382,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.717Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:20:02.87Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Implement off-season discount\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 18.0,\n        \"System.Description\": \"As a front-desk agent, I should be able to apply off-season discount, such that:<div><br></div><div>1. When new bookings are taken off-season discount should be applied</div><div>2. Should be valid for a time period</div><div>3. Should be available for members only</div>\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Front-desk; Members; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1370\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1382\"\n    },\n    {\n      \"id\": 1383,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Commitment made by the team\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.823Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:20:16.043Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Generate complimentary parking coupons \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 10.0,\n        \"System.Description\": \"<span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;, sans-serif;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">Complimentary parking coupons can be used when guests park their vehicle in designated coupon car parks during specified parking hours.&nbsp;</span><div><font face=\\\"Segoe UI, sans-serif\\\"><br></font><div>The front-desk agent should be able to enter the correct vehicle and parking details on behalf of the other person to start a parking session. The parking coupons can be generated either through app or from a computer.</div><div><br><div><span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;, sans-serif;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">- coupons should include a valid date and time range</span></div><div><span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;, sans-serif;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\">- should include car parks in which it can be used</span></div><div><span style=\\\"font-size:10.5pt;line-height:107%;font-family:&quot;Segoe UI&quot;, sans-serif;background-image:initial;background-position:initial;background-size:initial;background-repeat:initial;background-attachment:initial;background-origin:initial;background-clip:initial;\\\"><br></span></div></div></div>\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Front-desk; Guests; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1379\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1383\"\n    },\n    {\n      \"id\": 1396,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:57.247Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Add new columns\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add new columns in the guests table for capturing additional information of guests for a particular reservation.<div><br></div>\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 12.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1389\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1396\"\n    },\n    {\n      \"id\": 1395,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:57.153Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Dining notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Dining notifications should be sent to guests who are in the vicinity of the dining area.\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1384\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1395\"\n    },\n    {\n      \"id\": 1676,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:50:19.33Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create training script\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create demo script for hotel managers to get training of the features\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1644\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1676\"\n    },\n    {\n      \"id\": 1720,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create document\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1720\"\n    },\n    {\n      \"id\": 1719,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create POCOs for the Graph to be generated\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1719\"\n    },\n    {\n      \"id\": 1717,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create console program that generate booking data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1717\"\n    },\n    {\n      \"id\": 1715,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Receive email or text notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1715\"\n    },\n    {\n      \"id\": 1714,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Google or Facebook Login\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1714\"\n    },\n    {\n      \"id\": 1729,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Print breakfast coupons\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1661\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1729\"\n    },\n    {\n      \"id\": 1728,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Not reflecting guest details after update\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1661\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1728\"\n    },\n    {\n      \"id\": 1834,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-23T06:18:43.787Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Implement cosmos db storage for reservation changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1368\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1834\"\n    },\n    {\n      \"id\": 1809,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T07:48:38.293Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Integrate iPad Connectivity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1381\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1809\"\n    },\n    {\n      \"id\": 1808,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Mobile\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T07:48:10.81Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Disable walk-in reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1381\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1808\"\n    },\n    {\n      \"id\": 1812,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T08:58:12.257Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Capture data in SQL DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1387\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1812\"\n    },\n    {\n      \"id\": 1807,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T07:47:46.417Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Integrate Google Calendar\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1373\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1807\"\n    },\n    {\n      \"id\": 1806,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T07:31:02.693Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Algorithm to check available conference rooms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1373\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1806\"\n    },\n    {\n      \"id\": 1805,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-08-20T07:30:40.787Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Implement multiple notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1371\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1805\"\n    },\n    {\n      \"id\": 1693,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Update generator to adapt to new DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 2.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1693\"\n    },\n    {\n      \"id\": 1692,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Recreate AzureML experiment in R\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<font color=\\\"#111111\\\" face=\\\"Open Sans, arial, verdana\\\"><span style=\\\"font-size:16px;\\\">Implement Azure ML to share the real-time predictive analytics of the new personal assistant with Cortana.&nbsp;</span></font>\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1692\"\n    },\n    {\n      \"id\": 1689,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create ARM Template\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 2.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1653\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1689\"\n    },\n    {\n      \"id\": 1701,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create ePCR collection\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1701\"\n    },\n    {\n      \"id\": 1700,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Insert ePCR data in Cosmos DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1700\"\n    },\n    {\n      \"id\": 1699,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Configure Alerts for email and text notifications\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1699\"\n    },\n    {\n      \"id\": 1698,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Dashboard notification for all sensors that are switched ON\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1698\"\n    },\n    {\n      \"id\": 1697,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create external tables to access Hotels DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1697\"\n    },\n    {\n      \"id\": 1679,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Encryption of the key code with room number\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Implement key codes with encryption for all rooms.\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1645\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1679\"\n    },\n    {\n      \"id\": 1681,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Add required methods to API\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add required methods to API for implementing keyless room entry\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 2.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1645\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1681\"\n    },\n    {\n      \"id\": 1664,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Find my room API\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Xamarin\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1649\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1664\"\n    },\n    {\n      \"id\": 1663,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"What do you need API\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Xamarin\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1663\"\n    },\n    {\n      \"id\": 1662,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Ambient settings API\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Xamarin\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1653\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1662\"\n    },\n    {\n      \"id\": 1675,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"New task\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create Schema and insert data into Azure SQL DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create a schema and insert guest details into Azure SQL DB.\",\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1644\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1675\"\n    },\n    {\n      \"id\": 1674,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create Azure SQL DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1388\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1674\"\n    },\n    {\n      \"id\": 1673,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Integrate in First Response repository\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1388\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1673\"\n    },\n    {\n      \"id\": 1377,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.153Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:40:51.65Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Apply membership points\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 5.0,\n        \"System.Description\": \"Apply membership points\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Front-desk; Members; Reservation\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1370\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1377\"\n    },\n    {\n      \"id\": 1376,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:55.027Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:40:51.65Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Add breakfast to room rate\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add breakfast to room rate\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Guest; Room\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1388\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1376\"\n    },\n    {\n      \"id\": 1401,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:57.793Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Allow filtering of data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"The user needs to be able to filter the guests list data based on -&nbsp;<div><br></div><div>1. Number of guests</div><div>2. Age&nbsp;</div><div>3. Gender</div>\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1389\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/cf20ba8d-265d-4e08-8eae-244dca8002c7%2F26b80411-f31b-488e-a08f-577077cdc4d5%2F12\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-07-23T10:53:51.993Z\",\n            \"id\": \"1313387\",\n            \"resourceCreatedDate\": \"2018-07-23T10:53:51.993Z\",\n            \"resourceModifiedDate\": \"2018-07-23T10:53:51.993Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1401\"\n    },\n    {\n      \"id\": 1400,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:57.7Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Validate meals voucher \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Meals vouchers with the guests should be validated for -&nbsp;<div><br></div><div>1. Date</div><div>2. Number of guests</div><div>3. Hotel's location</div><div>4. Guest Name</div>\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1384\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1400\"\n    },\n    {\n      \"id\": 1398,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:57.53Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"UI Changes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Change the UI for separating guests details from the main user's details.\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 21.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1389\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1398\"\n    },\n    {\n      \"id\": 1671,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:50:04.72Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Walk-in registration with automatic recognition of guests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create walk-in registration for hotel guests to automatically recognize them based on their previous facial recognition registration or registered mobile number or registered social id.\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1644\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1671\"\n    },\n    {\n      \"id\": 1677,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:50:24.547Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create Azure Cosmos DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create Azure cosmos db for registering bluetooth based registrations.\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 1.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1644\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1677\"\n    },\n    {\n      \"id\": 1691,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Facial recognition algorithm to be implemented\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>The face recognition system should be developed in two modes:</div><div><br></div><div>Verification or authentication of a facial image: it basically compares the input facial image with the facial image related to the user which is requiring the authentication. It is basically a 1x1 comparison.</div><div><br></div><div>Identification or facial recognition: it basically compares the input facial image with all facial images from a dataset with the aim to find the user that matches that face. It is basically a 1xN comparison.</div>\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1691\"\n    },\n    {\n      \"id\": 1696,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create entity framework classes and configuration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Craig Cambell <craig109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1696\"\n    },\n    {\n      \"id\": 1695,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Update R scripts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1654\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1695\"\n    },\n    {\n      \"id\": 1687,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Compatibility for Hue lighting system\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Develop the mobile app to make it compatible with Hue lighting system\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 12.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1653\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1687\"\n    },\n    {\n      \"id\": 1680,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Adapt to Azure Functions model\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Build reservation module on Azure functions model with an event-driven, serverless compute experience.\",\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1645\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1680\"\n    },\n    {\n      \"id\": 1374,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"Additional work found\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:54.823Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:40:51.65Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Update membership profile\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update membership profile\",\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Guest; membership\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1389\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1374\"\n    },\n    {\n      \"id\": 1797,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-08-20T06:54:32.453Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-20T08:53:05.953Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@outlook.com>\",\n        \"System.Title\": \"Store my credit card details securely\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 7.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1650\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1797\"\n    },\n    {\n      \"id\": 1405,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:58.2Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Add breakfast print button\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add print button for breakfast option to print the vouchers for guests.\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1384\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1405\"\n    },\n    {\n      \"id\": 1403,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-23T06:49:57.967Z\",\n        \"System.CreatedBy\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"System.ChangedDate\": \"2018-08-22T09:35:35.197Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Update checkout rule engine\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update checkout rule engine\",\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1389\",\n          \"attributes\": {\n            \"isLocked\": \"False\",\n            \"comment\": \"Making a new link for the dependency\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1403\"\n    },\n    {\n      \"id\": 1727,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"App background to have theme based on the chosen room\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1660\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1727\"\n    },\n    {\n      \"id\": 1726,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create evaluation scripts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1660\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1726\"\n    },\n    {\n      \"id\": 1725,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create Cosmos DB account\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1665\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1725\"\n    },\n    {\n      \"id\": 1724,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create ARM template\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1660\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1724\"\n    },\n    {\n      \"id\": 1722,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Ability to change app background color\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Nagaraj B <nagaraj.bhairaji@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1660\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1722\"\n    },\n    {\n      \"id\": 1721,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Unable to customize themes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1660\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1721\"\n    },\n    {\n      \"id\": 1710,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create stored procedure for production\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1658\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1710\"\n    },\n    {\n      \"id\": 1709,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Generate Hotel Conference Rooms Tweets\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1658\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1709\"\n    },\n    {\n      \"id\": 1708,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Generate data about hotels, people, locations and sentiments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1658\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1708\"\n    },\n    {\n      \"id\": 1707,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Generate Tweets, Sentiments, hashtags and Tag Phrases\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Noah Munger <nmunger109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1658\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1707\"\n    },\n    {\n      \"id\": 1704,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Compatibility of the app for Android Play Store\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1656\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1704\"\n    },\n    {\n      \"id\": 1703,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Compatibility of the app for IOS Play Store\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1656\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1703\"\n    },\n    {\n      \"id\": 1702,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Compatibility of the app for Windows Marketplace\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1656\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1702\"\n    },\n    {\n      \"id\": 1688,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Create tables\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Design and create tables for controlling the lighting system\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1653\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1688\"\n    },\n    {\n      \"id\": 1683,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Able to modify reservation from mobile or website\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1649\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1683\"\n    },\n    {\n      \"id\": 1678,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Push notification to the guest phone with room details and offers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Ability to push notifications to guests' smartphones about room and facilities offers should be implemented along with discounts and other offers\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1645\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1678\"\n    },\n    {\n      \"id\": 1672,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:48:16.59Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Install sensors along with the latest location-aware mobility\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Sensors need to be installed in the reception area and parking lots to recognize the guests.\",\n        \"System.AssignedTo\": \"Lowell Steel <lsteel109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1644\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1672\"\n    },\n    {\n      \"id\": 1647,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Work finished\",\n        \"System.CreatedDate\": \"2018-07-24T09:29:40.777Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Ability to find an existing reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 4.0,\n        \"System.Description\": \"The user should be able to find and review or modify their reservation online using first name, last name, and reservation confirmation number or log into the SMH360 account.\",\n        \"System.AssignedTo\": \"Christina Kelly 🏈 <ckelly109@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": \"Reservations; search; Web experience\",\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1665\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1647\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/TeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/Teams.json",
    "content": "[\n  {\n    \"name\": \"Web\",\n    \"Description\": \"Web Description\"\n  },\n  {\n    \"name\": \"Mobile\",\n    \"Description\": \"Mobile Description\"\n  }\n\n]\n    \n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/TestCasefromTemplate.json",
    "content": "{\n  \"count\": 23,\n  \"value\": [\n    {\n      \"id\": 1744,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2018-07-24T10:31:16.637Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-07-25T06:31:11.183Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that someone new to the app can log in with Facebook id\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the app and tap on &amp;quot;Login with Facebook&amp;quot; button&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Tap OK to accept the Read permissions&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click OK again to accept write permissions if applicable&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1744\"\n    },\n    {\n      \"id\": 1748,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-07-24T10:31:16.637Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-07-24T10:31:16.637Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify whether the application has been launched successfully or not.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Open the browser </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log the result </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Close the application </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Close the browser </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1748\"\n    },\n    {\n      \"id\": 1752,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that a notification is auto-closed after X seconds\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click the notification icon&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\">The notification should appear on the screen&amp;nbsp;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Wait for X seconds with the notification window&amp;nbsp;open</parameterizedString><parameterizedString isformatted=\\\"true\\\">Once the X seconds are passed, the notification window should close.&amp;nbsp;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1752\"\n    },\n    {\n      \"id\": 1751,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that trying to display a notification causes a dialog to appear\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"2\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&amp;nbsp;Click the notification icon</parameterizedString><parameterizedString isformatted=\\\"true\\\">A dialog box should appear showing the notification content&amp;nbsp;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1751\"\n    },\n    {\n      \"id\": 1750,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Check that each screen is appropriately displayed in each display mode (landscape, portrait).\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Change the display mode to landscape&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log the result&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Change the display mode to portrait&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log the result&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Close the application&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1371\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1750\"\n    },\n    {\n      \"id\": 1749,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that the application’s display is adapted to the screen size and all buttons and menus are easily clickable\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check the screen size adaption </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check whether all buttons are working&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log the results&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Close the application&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1749\"\n    },\n    {\n      \"id\": 1746,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-07-24T10:31:16.637Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-07-25T10:37:34.893Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that a changed Facebook password will ask for re-login in the application\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Open the Browser&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Open Facebook in the browser &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Enter the login credentials &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Login to the SmartHotel application through Facebook&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Come back to Facebook and change the login password &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;SmartHotel application should detect the Password change and ask for credentials&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Logout from Facebook &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Close the browser &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1746\"\n    },\n    {\n      \"id\": 1770,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-16T10:49:15.457Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-16T10:49:15.457Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that user can add reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"8\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click the &lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;reservation button displayed in the main menu.&lt;/SPAN&gt;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal;background-color: rgb(255, 255, 255)\\\"&gt;Add data in the fields of the form.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should allow user to enter data in the form.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;Check if the mandatory fields are empty.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should display error message.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;FONT color=\\\"#333333\\\" face=\\\"Verdana, Geneva, sans-serif\\\"&gt;&lt;SPAN style=\\\"font-size: 13.3333px;white-space: normal;background-color: rgb(255, 255, 255)\\\"&gt;Click on Clear button to check if all fields are cleared.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System clear all fields of the form.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Click on Cancel button to cancel the form.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should cancel the form.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;After filling the form, click on Save button to save the form.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should save the form.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1770\"\n    },\n    {\n      \"id\": 1771,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-16T11:08:55.15Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-16T11:08:55.15Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that system should calculate & display the departure date.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the arrival date in correct format.</parameterizedString><parameterizedString isformatted=\\\"true\\\">\\t\\tSystem should allow user to enter correct date only.    </parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the number of nights to stay in terms of integer.</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should allow only integer value.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Calculated departure date is displayed in the departure date field. </parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should calculate departure date and display in the correct field.&lt;/SPAN&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1771\"\n    },\n    {\n      \"id\": 1772,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-16T11:25:55.49Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-16T11:25:55.49Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that user can select a reservation from existing reservation list.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;Reservation list is displayed to the user.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Reservation list is displayed to the user.\\t</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">User selects his reservation and click the 'UPDATE' button to invoke update reservation interface.&amp;nbsp;\\tUpon invoking the update reservation interface, reservation information is displayed to the user.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Upon invoking the update reservation interface, reservation information is displayed to the user.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;User clears the update reservation interface.&lt;/SPAN&gt;&lt;BR/&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;User can clear the update reservation interface.&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;User cancels the form.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should cancel form.&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;Upon clicking update button, information is updated.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should update the form.&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">User does not fill the mandatory fields in the form,</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should check and if empty generate error message.&lt;/SPAN&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1772\"\n    },\n    {\n      \"id\": 1782,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\\\\Mobile\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-17T12:22:33.997Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-17T12:22:33.997Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that system allow user to update the fields in the reservation form.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Check-in with guest credentials</parameterizedString><parameterizedString isformatted=\\\"true\\\">System should allow check-in with valid credentials.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;Select a reservation from existing reservation list.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;BR/&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;User must fill the mandatory fields.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should check mandatory fields and display error if found empty.&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;User can clear or cancel form.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should clear &amp;amp; cancel form.&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;While clicking on the update button, system updates the reservation details.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should update reservation information.&lt;/SPAN&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1368\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1782\"\n    },\n    {\n      \"id\": 1783,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-17T12:31:23.79Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-17T12:31:23.79Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \" Verify that System should allow user to checkout late with a later time value.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Choose a later time from the time drop down for checkout.</parameterizedString><parameterizedString isformatted=\\\"true\\\">System should allow the user to choose the time.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on \\\"Checkout\\\" Button to invoke check-out interface.</parameterizedString><parameterizedString isformatted=\\\"true\\\">System should allow user to invoke check out interface by clicking 'Checkout' button.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1369\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1783\"\n    },\n    {\n      \"id\": 1784,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-17T12:39:13.713Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-17T12:39:13.713Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that the reservation gets cancelled after click on Cancel order number link\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"8\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the Car reservation link from the hotel portal.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;System should launch the car reservation page&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Login to the application using valid username and password.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Click the \\\"Car Reservations\\\" link.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Choose an order number.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Click on Cancel  &amp;lt;Order&amp;gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Click Yes on confirmation pop-up window&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Verify that the reservation is cancelled and no longer shows in the Booked Itinerary page.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1370\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1784\"\n    },\n    {\n      \"id\": 1785,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-17T13:06:26.837Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-17T13:06:26.837Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that user can book a reservation for conference rooms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;Click on the \\\"Reserve a conference room\\\" button in the main menu.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should allow user to click the button.&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;User will enter data in the fields of the form.&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should allow user to enter data in the form.&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;Check if the mandatory fields are empty&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should display error message.&lt;/SPAN&gt;</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;Upon clicking save button, user can save reservation.&lt;/SPAN&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;SPAN style=\\\"color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;System should save the form.&lt;/SPAN&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1373\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1785\"\n    },\n    {\n      \"id\": 1792,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-20T06:13:18.41Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-20T06:13:18.41Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that user is not allowed to save invalid credit card details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the application and login into the application as a customer.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Customer should be able to login into the application with his credentials</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on the Profile and select Saved Cards</parameterizedString><parameterizedString isformatted=\\\"true\\\">Customer should get navigated to Saved cards page.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on ADD button to add new card details and enter invalid card details, Click on Save button</parameterizedString><parameterizedString isformatted=\\\"true\\\">Customer should not be allowed to save the invalid card details</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1375\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1792\"\n    },\n    {\n      \"id\": 1794,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\\\\Mobile\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-20T06:21:35.687Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-20T06:48:18.967Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that a notification is sent out to the user when there are changes to the reservation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"7\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Launch the application and login into the application as a customer&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Customer  should be able to login into the application as an Customer.&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Search for the reservation by entering the id on the search bar&amp;nbsp;&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Reservation details based on the search results should be displayed.&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Select the reservation and click the date control to change the date, click on \\\"Confirm\\\" button.&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;ID should be successfully re-generated.&amp;nbsp;&lt;/P&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;Click \\\"Save\\\" button&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;a. Updated reservation should be saved&lt;/P&gt;b. An email and an SMS notification on the reservation change should be sent out to the customer</parameterizedString><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1368\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1794\"\n    },\n    {\n      \"id\": 1801,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-20T07:07:17.9Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-20T07:07:17.9Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify Order number is generated in booking confirmation page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"14\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch hotel reservation application using URL as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application using username and password as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select location as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select hotel as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select room type as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select no-of-rooms as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter check-out-date as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"9\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select No-of-adults as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"10\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select No-of-children as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"11\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on Search button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"12\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the hotel and click on continue button</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"13\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that total-price is being calculated as (price-pernight*no-ofrooms*no-of-days</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"14\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on \\\"Reserve\\\" button.</parameterizedString><parameterizedString isformatted=\\\"true\\\">ORDER no should be generated</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1371\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1801\"\n    },\n    {\n      \"id\": 1803,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-20T07:11:57.097Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-20T07:11:57.097Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"To check whether the booked conference room reflects the correct information in line with the booking.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"10\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch hotel reservation application using URL as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application using username and password as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click the \\\"Conference Rooms\\\" link from the main menu.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select Location as in the test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the From Date and To Date data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select the number of attendees as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Fill the form and click on Book now button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"9\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on My Bookings button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"10\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the details are reflected correctly as per the booking.</parameterizedString><parameterizedString isformatted=\\\"true\\\">Booking should reflect the correct information in\\nline with the booking.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1373\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1803\"\n    },\n    {\n      \"id\": 1773,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-16T11:27:55.163Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-20T11:02:58.02Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that system displays a confirmation message upon updating reservation.  \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Launch the application with the provided URL&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Login to the application with valid username and password.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&lt;SPAN style=\\\"background-color: rgb(239, 246, 252)\\\"&gt;Click&lt;/SPAN&gt;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt; on the update button to update reservation.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN style=\\\"background-color: rgb(255, 255, 255);color: rgb(51, 51, 51);font-family: Verdana, Geneva, sans-serif;font-size: 13.3333px;white-space: normal\\\"&gt;Successfully updating reservation system&amp;nbsp; should display a confirmation message.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&amp;nbsp;Click on the \\\"Save\\\" button to close the page.&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;&amp;nbsp;System should close the page.&lt;/P&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1773\"\n    },\n    {\n      \"id\": 1799,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-20T07:02:39.263Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"To verify whether the check-out date field accepts a later date than check-in date.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch hotel reservation application using URL</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Login to the application using username and\\npassword as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select location as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select hotel as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select room type as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select no-of-rooms as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter check-in-date later than the checkout-\\ndate field as in test data.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that system gives an error saying ‘check-in-date should not be later than check-out-date’.</parameterizedString><parameterizedString isformatted=\\\"true\\\">System should report an error message.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1369\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1799\"\n    },\n    {\n      \"id\": 1791,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-08-20T06:13:18.41Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that user can save his credit card detail\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\"> Launch the application and login into the application as a customer</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be able to login into the application as an Customer.</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on the Profile and select Saved Cards</parameterizedString><parameterizedString isformatted=\\\"true\\\">User should be navigated to Saved cards page.</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on ADD button to add new card details</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter the Credit Card number, Expiry date, CVV number and Card holders name and click on Save button</parameterizedString><parameterizedString isformatted=\\\"true\\\">Customers card details should be saved successfully.</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1375\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1791\"\n    },\n    {\n      \"id\": 1747,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2018-07-24T10:31:16.637Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-08-23T06:29:49.93Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify that someone logs into the app when the Facebook app is not installed, and iOS Facebook integration is not enabled\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"9\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Open the browser </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Launch the SmartHotel application  </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Login with the credentials </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check whether Facebook is installed  </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check whether integration of IOS and Facebook is enabled </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log the results </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Close the application </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"9\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Close the browser </parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1659\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1747\"\n    },\n    {\n      \"id\": 1753,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"smh360_scrum\",\n        \"System.TeamProject\": \"smh360_scrum\",\n        \"System.IterationPath\": \"smh360_scrum\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Deferred\",\n        \"System.CreatedDate\": \"2018-07-24T10:35:20.613Z\",\n        \"System.CreatedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.ChangedDate\": \"2018-07-25T06:31:46.957Z\",\n        \"System.ChangedBy\": \"Hoy <ecanarys9@outlook.com>\",\n        \"System.Title\": \"Verify notification can be dismissed by clicking the close button\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Hoy <ecanarys9@outlook.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click the Notification icon&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\">Notification window should be displayed&amp;nbsp;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">In the Notification window, click the &amp;quot;Close&amp;quot; button.&amp;nbsp;</parameterizedString><parameterizedString isformatted=\\\"true\\\">This should close the notification window.&amp;nbsp;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1655\",\n          \"attributes\": {\n            \"isLocked\": \"False\"\n          }\n        }\n      ],\n      \"url\": \"https://vstsdemodata.visualstudio.com/_apis/wit/workItems/1753\"\n    }\n  ],\n  \"HttpStatusCode\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/TestPlans/TestPlan1.json",
    "content": "{\n  \"name\": \"Iteration 2\",\n  \"iteration\": \"$project$\\\\Sprint 2\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/TestPlans/TestSuites/TestPlan1.json",
    "content": "{\n  \"value\": [\n    {\n      \"name\": \"$1655$ : As a room guest, I should be able to communicate with all smart devices\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1655$\"\n      ],\n      \"testCaseCount\": 5,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n        \"1749\",\n        \"1750\",\n        \"1751\",\n        \"1752\",\n        \"1753\"\n      ]\n    },\n    {\n      \"name\": \"$1659$ : As a user, I should be able to connect to the app with my own device\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1659$\"\n      ],\n      \"testCaseCount\": 5,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n        \"1744\",\n        \"1745\",\n        \"1746\",\n        \"1747\",\n        \"1748\"\n      ]\n    },\n    {\n      \"name\": \"$1375$ : As a user, I should be able to connect to the app with my own device\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1375$\"\n      ],\n      \"testCaseCount\": 2,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n        \"1791\",\n        \"1792\"\n      ]\n    },\n    {\n      \"name\": \"$1369$ : As a customer, I should be able to request hotel for late Check-out \",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1369$\"\n      ],\n      \"testCaseCount\": 2,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n        \"1783\",\n        \"1799\"\n      ]\n    },\n    {\n      \"name\": \"$1368$ : As a customer, I should be able to change reservation time \",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1368$\"\n      ],\n      \"testCaseCount\": 2,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n        \"1782\",\n        \"1794\"\n      ]\n    },\n    {\n      \"name\": \"$1370$ : As a customer, I should be able to remove a car reservation  \",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1370$\"\n      ],\n      \"testCaseCount\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n        \"1784\"\n      ]\n    },\n    {\n      \"name\": \"$1371$ : As a reservation agent, I would like to send confirmations to guest  \",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1371$\"\n      ],\n      \"testCaseCount\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n        \"1750\",\n        \"1801\"\n      ]\n    },\n    {\n      \"name\": \"$1373$ : As a reservation agent, I would like to send confirmations to guest  \",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1373$\"\n      ],\n      \"testCaseCount\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n        \"1785\",\n        \"1803\"\n      ]\n    },\n    {\n      \"name\": \"$1373$ : As a customer, I would like to modify an existing reservation  \",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [\n        \"$1373$\"\n      ],\n      \"testCaseCount\": 0,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"state\": \"In Progress\",\n      \"TestCases\": [\n      ]\n    }\n  ],\n  \"count\": 9\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/UpdateCardFields.json",
    "content": "{\n  \"cards\": {\n    \"Bug\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"false\"\n      }\n    ],\n    \"Product Backlog Item\": [\n      {\n        \"fieldIdentifier\": \"System.Title\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.State\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AreaPath\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Id\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.AssignedTo\",\n        \"displayFormat\": \"AvatarAndFullName\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"System.Tags\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"CORE\",\n        \"showEmptyFields\": \"\"\n      },\n      {\n        \"fieldIdentifier\": \"\",\n        \"displayFormat\": \"\",\n        \"displayType\": \"\",\n        \"showEmptyFields\": \"true\"\n      }\n    ]\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-SmartHotel360/UpdateTeamArea.json",
    "content": "﻿{\n  \"defaultValue\": \"$ProjectName$\\\\Mobile\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\Mobile\",\n      \"includeChildren\": true\n    },\n    {\n      \"value\": \"$ProjectName$\",\n      \"includeChildren\": false\n    },\n    {\n      \"value\": \"$ProjectName$\\\\Web\",\n      \"includeChildren\": false\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/BuildDefinitionGitHub/Backend-CI.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Bug\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"extracomposefile\": {\n      \"value\": \"docker-compose.netcore22.yml\"\n    },\n    \"registry\": {\n      \"value\": \"\"\n    },\n    \"resourcegroup\": {\n      \"value\": \"TailwindTradersBackend\"\n    },\n    \"servicePrincipalId\": {\n      \"value\": \"\"\n    },\n    \"servicePrincipalSecret\": {\n      \"value\": \"\"\n    },\n    \"sqlServerAdministratorLogin\": {\n      \"value\": \"sqladmin\"\n    },\n    \"sqlServerAdministratorLoginPassword\": {\n      \"value\": \"P2ssw0rd@123\"\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    },\n    \"tag\": {\n      \"value\": \"prod\"\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": 1,\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Azure Deployment:Create Or Update Resource Group action on $(resourcegroup)\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"ConnectedServiceName\": \"\",\n              \"action\": \"Create Or Update Resource Group\",\n              \"resourceGroupName\": \"$(resourcegroup)\",\n              \"location\": \"South India\",\n              \"templateLocation\": \"Linked artifact\",\n              \"csmFileLink\": \"\",\n              \"csmParametersFileLink\": \"\",\n              \"csmFile\": \"Deploy/deployment.json\",\n              \"csmParametersFile\": \"\",\n              \"overrideParameters\": \"-sqlServerAdministratorLogin $(sqlServerAdministratorLogin) -sqlServerAdministratorLoginPassword $(sqlServerAdministratorLoginPassword) -servicePrincipalId $(servicePrincipalId) -servicePrincipalSecret $(servicePrincipalSecret)\",\n              \"deploymentMode\": \"Incremental\",\n              \"enableDeploymentPrerequisites\": \"None\",\n              \"deploymentGroupEndpoint\": \"\",\n              \"project\": \"\",\n              \"deploymentGroupName\": \"\",\n              \"copyAzureVMTags\": \"true\",\n              \"runAgentServiceAsUser\": \"false\",\n              \"userName\": \"\",\n              \"password\": \"\",\n              \"outputVariable\": \"\",\n              \"deploymentName\": \"\",\n              \"deploymentOutputs\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"ARM Outputs\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"584bcff2-3353-4f11-872b-6ba01267a972\",\n              \"versionSpec\": \"6.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"ConnectedServiceNameSelector\": \"ConnectedServiceNameARM\",\n              \"ConnectedServiceNameARM\": \"\",\n              \"resourceGroupName\": \"$(resourcegroup)\",\n              \"prefix\": \"\",\n              \"outputNames\": \"\",\n              \"whenLastDeploymentIsFailed\": \"fail\",\n              \"deploymentNameFilter\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Azure CLI \",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"connectedServiceNameARM\": \"\",\n              \"scriptLocation\": \"inlineScript\",\n              \"scriptPath\": \"\",\n              \"inlineScript\": \"echo \\\"##vso[task.setvariable variable=registry;]$(acr).azurecr.io\\\"\",\n              \"args\": \"\",\n              \"addSpnToEnvironment\": \"false\",\n              \"useGlobalConfig\": \"false\",\n              \"cwd\": \"\",\n              \"failOnStandardError\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build services\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"$(acr)\",\n              \"dockerComposeFile\": \"Source/docker-compose.yml\",\n              \"additionalDockerComposeFiles\": \"$(extracomposefile)\",\n              \"dockerComposeFileArgs\": \"TAG=$(tag)\\nREGISTRY=$(registry)\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Build services\",\n              \"additionalImageTags\": \"\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"true\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Push services\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"$(acr).azurecr.io\",\n              \"dockerComposeFile\": \"**/docker-compose.yml\",\n              \"additionalDockerComposeFiles\": \"$(extracomposefile)\",\n              \"dockerComposeFileArgs\": \"\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Push services\",\n              \"additionalImageTags\": \"$(tag)\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"true\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact: HelmScripts\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"Deploy\",\n              \"ArtifactName\": \"HelmScripts\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"$username$/TailwindTraders-Backend\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/TailwindTraders-Backend/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/TailwindTraders-Backend.git\",\n      \"connectedServiceId\": \"$Backend$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"$username$/TailwindTraders-Backend\",\n      \"manageUrl\": \"https://github.com/$username$/TailwindTraders-Backend\",\n      \"safeRepository\": \"TailwindTraders-Backend\"\n    },\n    \"id\": \"$username$/TailwindTraders-Backend\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/TailwindTraders-Backend\",\n    \"url\": \"https://github.com/$username$/TailwindTraders-Backend\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": 1,\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"Backend-CI\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/BuildDefinitionGitHub/Website-CI.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Bug\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"ImageName\": {\n      \"value\": \"website\"\n    },\n    \"location\": {\n      \"value\": \"westus\"\n    },\n    \"resourcegroup\": {\n      \"value\": \"TailwindTraderWeb\"\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Azure Deployment:Create Or Update Resource Group action on $(resourcegroup)\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"ConnectedServiceName\": \"\",\n              \"action\": \"Create Or Update Resource Group\",\n              \"resourceGroupName\": \"$(resourcegroup)\",\n              \"location\": \"$(location)\",\n              \"templateLocation\": \"Linked artifact\",\n              \"csmFileLink\": \"\",\n              \"csmParametersFileLink\": \"\",\n              \"csmFile\": \"Deploy/deployment.json\",\n              \"csmParametersFile\": \"\",\n              \"overrideParameters\": \"\",\n              \"deploymentMode\": \"Incremental\",\n              \"enableDeploymentPrerequisites\": \"None\",\n              \"deploymentGroupEndpoint\": \"\",\n              \"project\": \"\",\n              \"deploymentGroupName\": \"\",\n              \"copyAzureVMTags\": \"true\",\n              \"runAgentServiceAsUser\": \"false\",\n              \"userName\": \"\",\n              \"password\": \"\",\n              \"outputVariable\": \"\",\n              \"deploymentOutputs\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"ARM Outputs\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"584bcff2-3353-4f11-872b-6ba01267a972\",\n              \"versionSpec\": \"6.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"ConnectedServiceNameSelector\": \"ConnectedServiceNameARM\",\n              \"ConnectedServiceNameARM\": \"\",\n              \"resourceGroupName\": \"$(resourcegroup)\",\n              \"prefix\": \"\",\n              \"outputNames\": \"\",\n              \"whenLastDeploymentIsFailed\": \"fail\",\n              \"deploymentNameFilter\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build an image\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"e28912f1-0114-4464-802a-a3a35437fd16\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"$(acr).azurecr.io\",\n              \"command\": \"Build an image\",\n              \"dockerFile\": \"Source/Dockerfile\",\n              \"arguments\": \"-t $(acr).azurecr.io/$(ImageName):$(Build.BuildId)\",\n              \"useDefaultContext\": \"true\",\n              \"buildContext\": \"\",\n              \"pushMultipleImages\": \"false\",\n              \"tagMultipleImages\": \"false\",\n              \"imageName\": \"$(ImageName):$(Build.BuildId)\",\n              \"imageNamesPath\": \"\",\n              \"qualifyImageName\": \"true\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"true\",\n              \"addDefaultLabels\": \"true\",\n              \"imageDigestFile\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"volumes\": \"\",\n              \"envVars\": \"\",\n              \"workingDirectory\": \"\",\n              \"entrypointOverride\": \"\",\n              \"containerCommand\": \"\",\n              \"runInBackground\": \"true\",\n              \"restartPolicy\": \"no\",\n              \"maxRestartRetries\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"enforceDockerNamingConvention\": \"true\",\n              \"memoryLimit\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Push Image\",\n            \"timeoutInMinutes\": 0,\n            \"task\": {\n              \"id\": \"e28912f1-0114-4464-802a-a3a35437fd16\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"$(acr).azurecr.io\",\n              \"command\": \"Push an image\",\n              \"dockerFile\": \"**/Dockerfile\",\n              \"arguments\": \"\",\n              \"useDefaultContext\": \"true\",\n              \"buildContext\": \"\",\n              \"pushMultipleImages\": \"false\",\n              \"tagMultipleImages\": \"false\",\n              \"imageName\": \"$(ImageName):$(Build.BuildId)\",\n              \"imageNamesPath\": \"\",\n              \"qualifyImageName\": \"true\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"false\",\n              \"addDefaultLabels\": \"true\",\n              \"imageDigestFile\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"volumes\": \"\",\n              \"envVars\": \"\",\n              \"workingDirectory\": \"\",\n              \"entrypointOverride\": \"\",\n              \"containerCommand\": \"\",\n              \"runInBackground\": \"true\",\n              \"restartPolicy\": \"no\",\n              \"maxRestartRetries\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"enforceDockerNamingConvention\": \"true\",\n              \"memoryLimit\": \"\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"$username$/TailwindTraders-Website\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/TailwindTraders-Website/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/TailwindTraders-Website.git\",\n      \"connectedServiceId\": \"$Website$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"$username$/TailwindTraders-Website\",\n      \"manageUrl\": \"https://github.com/$username$/TailwindTraders-Website\",\n      \"safeRepository\": \"TailwindTraders-Website\"\n    },\n    \"id\": \"$username$/TailwindTraders-Website\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/TailwindTraders-Website\",\n    \"url\": \"https://github.com/$username$/TailwindTraders-Website\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"Website-CI\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/BuildDefinitions/Backend-CI.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Bug\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"extracomposefile\": {\n      \"value\": \"docker-compose.netcore22.yml\"\n    },\n    \"registry\": {\n      \"value\": \"\"\n    },\n    \"resourcegroup\": {\n      \"value\": \"TailwindTradersBackend\"\n    },\n    \"servicePrincipalId\": {\n      \"value\": \"\"\n    },\n    \"servicePrincipalSecret\": {\n      \"value\": \"\"\n    },\n    \"sqlServerAdministratorLogin\": {\n      \"value\": \"sqladmin\"\n    },\n    \"sqlServerAdministratorLoginPassword\": {\n      \"value\": \"P2ssw0rd@123\"\n    },\n    \"system.debug\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    },\n    \"tag\": {\n      \"value\": \"prod\"\n    }\n  },\n  \"retentionRules\": [\n    {\n      \"branches\": [\n        \"+refs/heads/*\"\n      ],\n      \"artifacts\": [],\n      \"artifactTypesToDelete\": [\n        \"FilePath\",\n        \"SymbolStore\"\n      ],\n      \"daysToKeep\": 10,\n      \"minimumToKeep\": 1,\n      \"deleteBuildRecord\": true,\n      \"deleteTestResults\": true\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": 1,\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"phases\": [\n      {\n        \"steps\": [\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Azure Deployment:Create Or Update Resource Group action on $(resourcegroup)\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n              \"versionSpec\": \"2.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"ConnectedServiceName\": \"\",\n              \"action\": \"Create Or Update Resource Group\",\n              \"resourceGroupName\": \"$(resourcegroup)\",\n              \"location\": \"South India\",\n              \"templateLocation\": \"Linked artifact\",\n              \"csmFileLink\": \"\",\n              \"csmParametersFileLink\": \"\",\n              \"csmFile\": \"Deploy/deployment.json\",\n              \"csmParametersFile\": \"\",\n              \"overrideParameters\": \"-sqlServerAdministratorLogin $(sqlServerAdministratorLogin) -sqlServerAdministratorLoginPassword $(sqlServerAdministratorLoginPassword) -servicePrincipalId $(servicePrincipalId) -servicePrincipalSecret $(servicePrincipalSecret)\",\n              \"deploymentMode\": \"Incremental\",\n              \"enableDeploymentPrerequisites\": \"None\",\n              \"deploymentGroupEndpoint\": \"\",\n              \"project\": \"\",\n              \"deploymentGroupName\": \"\",\n              \"copyAzureVMTags\": \"true\",\n              \"runAgentServiceAsUser\": \"false\",\n              \"userName\": \"\",\n              \"password\": \"\",\n              \"outputVariable\": \"\",\n              \"deploymentName\": \"\",\n              \"deploymentOutputs\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"ARM Outputs\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"584bcff2-3353-4f11-872b-6ba01267a972\",\n              \"versionSpec\": \"6.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"ConnectedServiceNameSelector\": \"ConnectedServiceNameARM\",\n              \"ConnectedServiceNameARM\": \"\",\n              \"resourceGroupName\": \"$(resourcegroup)\",\n              \"prefix\": \"\",\n              \"outputNames\": \"\",\n              \"whenLastDeploymentIsFailed\": \"fail\",\n              \"deploymentNameFilter\": \"\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Azure CLI \",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"connectedServiceNameARM\": \"\",\n              \"scriptLocation\": \"inlineScript\",\n              \"scriptPath\": \"\",\n              \"inlineScript\": \"echo \\\"##vso[task.setvariable variable=registry;]$(acr).azurecr.io\\\"\",\n              \"args\": \"\",\n              \"addSpnToEnvironment\": \"false\",\n              \"useGlobalConfig\": \"false\",\n              \"cwd\": \"\",\n              \"failOnStandardError\": \"false\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Build services\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"$(acr)\",\n              \"dockerComposeFile\": \"Source/docker-compose.yml\",\n              \"additionalDockerComposeFiles\": \"$(extracomposefile)\",\n              \"dockerComposeFileArgs\": \"TAG=$(tag)\\nREGISTRY=$(registry)\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Build services\",\n              \"additionalImageTags\": \"\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"true\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Push services\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"6975e2d1-96d3-4afc-8a41-498b5d34ea19\",\n              \"versionSpec\": \"0.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"containerregistrytype\": \"Azure Container Registry\",\n              \"dockerRegistryEndpoint\": \"\",\n              \"azureSubscriptionEndpoint\": \"\",\n              \"azureContainerRegistry\": \"$(acr).azurecr.io\",\n              \"dockerComposeFile\": \"**/docker-compose.yml\",\n              \"additionalDockerComposeFiles\": \"$(extracomposefile)\",\n              \"dockerComposeFileArgs\": \"\",\n              \"projectName\": \"$(Build.Repository.Name)\",\n              \"qualifyImageNames\": \"true\",\n              \"action\": \"Push services\",\n              \"additionalImageTags\": \"$(tag)\",\n              \"includeSourceTags\": \"false\",\n              \"includeLatestTag\": \"true\",\n              \"buildImages\": \"true\",\n              \"serviceName\": \"\",\n              \"containerName\": \"\",\n              \"ports\": \"\",\n              \"workDir\": \"\",\n              \"entrypoint\": \"\",\n              \"containerCommand\": \"\",\n              \"detached\": \"true\",\n              \"abortOnContainerExit\": \"true\",\n              \"imageDigestComposeFile\": \"$(Build.StagingDirectory)/docker-compose.images.yml\",\n              \"removeBuildOptions\": \"false\",\n              \"baseResolveDirectory\": \"\",\n              \"outputDockerComposeFile\": \"$(Build.StagingDirectory)/docker-compose.yml\",\n              \"dockerComposeCommand\": \"\",\n              \"dockerHostEndpoint\": \"\",\n              \"nopIfNoDockerComposeFile\": \"false\",\n              \"requireAdditionalDockerComposeFiles\": \"false\",\n              \"cwd\": \"$(System.DefaultWorkingDirectory)\"\n            }\n          },\n          {\n            \"environment\": {},\n            \"enabled\": true,\n            \"continueOnError\": false,\n            \"alwaysRun\": false,\n            \"displayName\": \"Publish Artifact: HelmScripts\",\n            \"timeoutInMinutes\": 0,\n            \"condition\": \"succeeded()\",\n            \"task\": {\n              \"id\": \"2ff763a7-ce83-4e1f-bc89-0ae63477cebe\",\n              \"versionSpec\": \"1.*\",\n              \"definitionType\": \"task\"\n            },\n            \"inputs\": {\n              \"PathtoPublish\": \"Deploy\",\n              \"ArtifactName\": \"HelmScripts\",\n              \"ArtifactType\": \"Container\",\n              \"TargetPath\": \"\",\n              \"Parallel\": \"false\",\n              \"ParallelCount\": \"8\"\n            }\n          }\n        ],\n        \"name\": \"Agent job 1\",\n        \"refName\": \"Phase_1\",\n        \"condition\": \"succeeded()\",\n        \"target\": {\n          \"executionOptions\": {\n            \"type\": 0\n          },\n          \"allowScriptsAuthAccessOption\": false,\n          \"type\": 1\n        },\n        \"jobAuthorizationScope\": \"projectCollection\",\n        \"jobCancelTimeoutInMinutes\": 1\n      }\n    ],\n    \"target\": {\n      \"agentSpecification\": {\n        \"identifier\": \"ubuntu-18.04\"\n      }\n    },\n    \"type\": 1\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cleanOptions\": \"0\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\",\n      \"reportBuildStatus\": \"true\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"fetchDepth\": \"0\"\n    },\n    \"id\": \"$TailwindTraders-Backend$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"TailwindTraders-Backend\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"processParameters\": {},\n  \"quality\": 1,\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"Backend-CI\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/BuildDefinitions/Website-CI.json",
    "content": "{\n    \"options\": [\n        {\n            \"enabled\": false,\n            \"definition\": {\n                \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n            },\n            \"inputs\": {\n                \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n                \"additionalFields\": \"{}\"\n            }\n        },\n        {\n            \"enabled\": false,\n            \"definition\": {\n                \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n            },\n            \"inputs\": {\n                \"workItemType\": \"Bug\",\n                \"assignToRequestor\": \"true\",\n                \"additionalFields\": \"{}\"\n            }\n        }\n    ],\n    \"variables\": {\n        \"ImageName\": {\n            \"value\": \"website\"\n        },\n        \"location\": {\n            \"value\": \"westus\"\n        },\n        \"resourcegroup\": {\n            \"value\": \"TailwindTraderWeb\"\n        },\n        \"system.debug\": {\n            \"value\": \"false\",\n            \"allowOverride\": true\n        }\n    },\n    \"retentionRules\": [\n        {\n            \"branches\": [\n                \"+refs/heads/*\"\n            ],\n            \"artifacts\": [],\n            \"artifactTypesToDelete\": [\n                \"FilePath\",\n                \"SymbolStore\"\n            ],\n            \"daysToKeep\": 10,\n            \"minimumToKeep\": 1,\n            \"deleteBuildRecord\": true,\n            \"deleteTestResults\": true\n        }\n    ],\n    \"properties\": {},\n    \"tags\": [],\n    \"jobAuthorizationScope\": \"projectCollection\",\n    \"jobTimeoutInMinutes\": 60,\n    \"jobCancelTimeoutInMinutes\": 5,\n    \"process\": {\n      \"phases\": [\n        {\n          \"steps\": [\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Azure Deployment:Create Or Update Resource Group action on $(resourcegroup)\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"94a74903-f93f-4075-884f-dc11f34058b4\",\n                \"versionSpec\": \"2.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"action\": \"Create Or Update Resource Group\",\n                \"resourceGroupName\": \"$(resourcegroup)\",\n                \"location\": \"$(location)\",\n                \"templateLocation\": \"Linked artifact\",\n                \"csmFileLink\": \"\",\n                \"csmParametersFileLink\": \"\",\n                \"csmFile\": \"Deploy/deployment.json\",\n                \"csmParametersFile\": \"\",\n                \"overrideParameters\": \"\",\n                \"deploymentMode\": \"Incremental\",\n                \"enableDeploymentPrerequisites\": \"None\",\n                \"deploymentGroupEndpoint\": \"\",\n                \"project\": \"\",\n                \"deploymentGroupName\": \"\",\n                \"copyAzureVMTags\": \"true\",\n                \"runAgentServiceAsUser\": \"false\",\n                \"userName\": \"\",\n                \"password\": \"\",\n                \"outputVariable\": \"\",\n                \"deploymentOutputs\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"ARM Outputs\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"584bcff2-3353-4f11-872b-6ba01267a972\",\n                \"versionSpec\": \"6.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"ConnectedServiceNameSelector\": \"ConnectedServiceNameARM\",\n                \"ConnectedServiceNameARM\": \"\",\n                \"resourceGroupName\": \"$(resourcegroup)\",\n                \"prefix\": \"\",\n                \"outputNames\": \"\",\n                \"whenLastDeploymentIsFailed\": \"fail\",\n                \"deploymentNameFilter\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Build an image\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"e28912f1-0114-4464-802a-a3a35437fd16\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"containerregistrytype\": \"Azure Container Registry\",\n                \"dockerRegistryEndpoint\": \"\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureContainerRegistry\": \"$(acr).azurecr.io\",\n                \"command\": \"Build an image\",\n                \"dockerFile\": \"Source/Tailwind.Traders.Web/Dockerfile\",\n                \"arguments\": \"-t $(acr).azurecr.io/$(ImageName):$(Build.BuildId)\",\n                \"useDefaultContext\": \"true\",\n                \"buildContext\": \"\",\n                \"pushMultipleImages\": \"false\",\n                \"tagMultipleImages\": \"false\",\n                \"imageName\": \"$(ImageName):$(Build.BuildId)\",\n                \"imageNamesPath\": \"\",\n                \"qualifyImageName\": \"true\",\n                \"includeSourceTags\": \"false\",\n                \"includeLatestTag\": \"true\",\n                \"addDefaultLabels\": \"true\",\n                \"imageDigestFile\": \"\",\n                \"containerName\": \"\",\n                \"ports\": \"\",\n                \"volumes\": \"\",\n                \"envVars\": \"\",\n                \"workingDirectory\": \"\",\n                \"entrypointOverride\": \"\",\n                \"containerCommand\": \"\",\n                \"runInBackground\": \"true\",\n                \"restartPolicy\": \"no\",\n                \"maxRestartRetries\": \"\",\n                \"dockerHostEndpoint\": \"\",\n                \"enforceDockerNamingConvention\": \"true\",\n                \"memoryLimit\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"enabled\": true,\n              \"continueOnError\": false,\n              \"alwaysRun\": false,\n              \"displayName\": \"Push Image\",\n              \"timeoutInMinutes\": 0,\n              \"task\": {\n                \"id\": \"e28912f1-0114-4464-802a-a3a35437fd16\",\n                \"versionSpec\": \"1.*\",\n                \"definitionType\": \"task\"\n              },\n              \"inputs\": {\n                \"containerregistrytype\": \"Azure Container Registry\",\n                \"dockerRegistryEndpoint\": \"\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureContainerRegistry\": \"$(acr).azurecr.io\",\n                \"command\": \"Push an image\",\n                \"dockerFile\": \"**/Dockerfile\",\n                \"arguments\": \"\",\n                \"useDefaultContext\": \"true\",\n                \"buildContext\": \"\",\n                \"pushMultipleImages\": \"false\",\n                \"tagMultipleImages\": \"false\",\n                \"imageName\": \"$(ImageName):$(Build.BuildId)\",\n                \"imageNamesPath\": \"\",\n                \"qualifyImageName\": \"true\",\n                \"includeSourceTags\": \"false\",\n                \"includeLatestTag\": \"false\",\n                \"addDefaultLabels\": \"true\",\n                \"imageDigestFile\": \"\",\n                \"containerName\": \"\",\n                \"ports\": \"\",\n                \"volumes\": \"\",\n                \"envVars\": \"\",\n                \"workingDirectory\": \"\",\n                \"entrypointOverride\": \"\",\n                \"containerCommand\": \"\",\n                \"runInBackground\": \"true\",\n                \"restartPolicy\": \"no\",\n                \"maxRestartRetries\": \"\",\n                \"dockerHostEndpoint\": \"\",\n                \"enforceDockerNamingConvention\": \"true\",\n                \"memoryLimit\": \"\"\n              }\n            }\n          ],\n          \"name\": \"Agent job 1\",\n          \"refName\": \"Phase_1\",\n          \"condition\": \"succeeded()\",\n          \"target\": {\n            \"executionOptions\": {\n              \"type\": 0\n            },\n            \"allowScriptsAuthAccessOption\": false,\n            \"type\": 1\n          },\n          \"jobAuthorizationScope\": \"projectCollection\",\n          \"jobCancelTimeoutInMinutes\": 1\n        }\n      ],\n      \"target\": {\n        \"agentSpecification\": {\n          \"identifier\": \"ubuntu-18.04\"\n        }\n        },\n        \"type\": 1\n    },\n    \"repository\": {\n        \"properties\": {\n            \"cleanOptions\": \"0\",\n            \"labelSources\": \"0\",\n            \"labelSourcesFormat\": \"$(build.buildNumber)\",\n            \"reportBuildStatus\": \"true\",\n            \"gitLfsSupport\": \"false\",\n            \"skipSyncSource\": \"false\",\n            \"checkoutNestedSubmodules\": \"false\",\n            \"fetchDepth\": \"0\"\n        },\n        \"id\": \"$TailwindTraders-Website$\",\n        \"type\": \"TfsGit\",\n        \"name\": \"TailwindTraders-Website\",\n        \"defaultBranch\": \"refs/heads/master\",\n        \"clean\": \"false\",\n        \"checkoutSubmodules\": false\n    },\n    \"processParameters\": {},\n    \"quality\": \"definition\",\n    \"drafts\": [],\n    \"queue\": {\n        \"name\": \"Azure Pipelines\",\n        \"pool\": {\n            \"name\": \"Azure Pipelines\",\n            \"isHosted\": true\n        }\n    },\n    \"name\": \"Website-CI\",\n    \"path\": \"\\\\\",\n    \"type\": \"build\",\n    \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/Extensions.json",
    "content": "{\n  \"Extensions\": [\n    {\n      \"extensionName\": \"ARM Outputs\",\n      \"link\": \"<a href='https://marketplace.visualstudio.com/items?itemName=keesschollaart.arm-outputs' target='_blank'><b>ARM Outputs</b></a>\",\n      \"publisherId\": \"keesschollaart\",\n      \"extensionId\": \"arm-outputs\",\n      \"License\": \"<a href='https://marketplace.visualstudio.com/items/keesschollaart.arm-outputs/license' target='_blank'>License Terms</a>\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"Microsoft/TailwindTraders-Backend\"\n    },\n    {\n      \"fullName\": \"Microsoft/TailwindTraders-Website\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ImportSourceCode/Tailwind Traders.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://vstsdemodata.visualstudio.com/Tailwind%20Traders/_git/Tailwind%20Traders\"\n    },\n    \"serviceEndpointId\": \"$TailwindTraders-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ImportSourceCode/TailwindTraders-Backend.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://github.com/Microsoft/TailwindTraders-Backend\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ImportSourceCode/TailwindTraders-Website.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://github.com/Microsoft/TailwindTraders-Website\"\n    }\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Website\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"users\": [ \"ckelly109@outlook.com\", \"craig109@outlook.com\", \"nmunger109@outlook.com\", \"lsteel109@outlook.com\" ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ReleaseDefinitions/Backend-CD.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 16,\n  \"description\": null,\n  \"isDeleted\": false,\n  \"variables\": {\n    \"acrLogin\": {\n      \"value\": \"\"\n    },\n    \"acrName\": {\n      \"value\": \"\"\n    },\n    \"aksHost\": {\n      \"value\": \"\"\n    },\n    \"aksName\": {\n      \"value\": \"\"\n    },\n    \"resourcegroup\": {\n      \"value\": \"TailwindTradersBackend\"\n    },\n    \"servicePrincipalId\": {\n      \"value\": \"\"\n    },\n    \"servicePrincipalSecret\": {\n      \"value\": \"\"\n    },\n    \"tag\": {\n      \"value\": \"prod\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 3,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 7\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 8\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 9\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Hosted Ubuntu 1604$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent job\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"068d5909-43e6-48c5-9e01-7c8a94816220\",\n              \"version\": \"0.*\",\n              \"name\": \"Install Helm 2.9.1\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"helmVersion\": \"2.9.1\",\n                \"checkLatestHelmVersion\": \"true\",\n                \"installKubeCtl\": \"true\",\n                \"kubectlVersion\": \"1.10.3\",\n                \"checkLatestKubeCtl\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"Azure CLI to get AKS credentials\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"\",\n                \"inlineScript\": \"az aks get-credentials -n $(aksName) -g $(resourcegroup)\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"\",\n                \"failOnStandardError\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"6c731c3c-3c68-459a-a5c9-bde6e6595b5b\",\n              \"version\": \"3.*\",\n              \"name\": \"Bash Script to install tiller\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"targetType\": \"filePath\",\n                \"filePath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/add-tiller.sh\",\n                \"arguments\": \"\",\n                \"script\": \"echo \\\"------------------------------------------------------------\\\"\\necho \\\"Configuring RBAC for Tiller\\\"\\necho \\\"------------------------------------------------------------\\\"\\nkubectl create serviceaccount --namespace kube-system tiller\\nkubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller\\nkubectl patch deploy --namespace kube-system tiller-deploy -p '{\\\"spec\\\":{\\\"template\\\":{\\\"spec\\\":{\\\"serviceAccount\\\":\\\"tiller\\\"}}}}'      \\necho \\\"------------------------------------------------------------\\\"\\necho \\\"Installing Helm\\\"\\necho \\\"------------------------------------------------------------\\\"\\nhelm init --service-account tiller\\n\",\n                \"workingDirectory\": \"\",\n                \"failOnStderr\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"Azure CLI to Create secrets on the AKS\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"scriptPath\",\n                \"scriptPath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/create-secret.sh\",\n                \"inlineScript\": \"-g TailwindTradersBackend  --acr-name ttacrwuh4r5fleek4q --clientid 682afe77-9f64-4905-8814-cf50587a4d49 --password P2SSWORD\",\n                \"args\": \"-g $(resourcegroup) --acr-name $(acrName) --clientid $(servicePrincipalId) --password $(servicePrincipalSecret)\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"\",\n                \"failOnStandardError\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"afa7d54d-537b-4dc8-b60a-e0eeea2c9a87\",\n              \"version\": \"0.*\",\n              \"name\": \"helm init\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"$(resourcegroup)\",\n                \"kubernetesCluster\": \"$(aksName)\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"namespace\": \"default\",\n                \"command\": \"init\",\n                \"chartType\": \"Name\",\n                \"chartName\": \"\",\n                \"chartPath\": \"\",\n                \"version\": \"\",\n                \"releaseName\": \"\",\n                \"overrideValues\": \"\",\n                \"valueFile\": \"\",\n                \"destination\": \"$(Build.ArtifactStagingDirectory)\",\n                \"canaryimage\": \"false\",\n                \"upgradetiller\": \"true\",\n                \"updatedependency\": \"false\",\n                \"save\": \"true\",\n                \"install\": \"true\",\n                \"recreate\": \"false\",\n                \"resetValues\": \"false\",\n                \"force\": \"false\",\n                \"waitForExecution\": \"true\",\n                \"arguments\": \"\",\n                \"enableTls\": \"false\",\n                \"caCert\": \"\",\n                \"certificate\": \"\",\n                \"privatekey\": \"\",\n                \"tillernamespace\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"afa7d54d-537b-4dc8-b60a-e0eeea2c9a87\",\n              \"version\": \"0.*\",\n              \"name\": \"helm upgrade Coupons.api\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"$(resourcegroup)\",\n                \"kubernetesCluster\": \"$(aksName)\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"namespace\": \"default\",\n                \"command\": \"upgrade\",\n                \"chartType\": \"FilePath\",\n                \"chartName\": \"\",\n                \"chartPath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/coupons-api\",\n                \"version\": \"\",\n                \"releaseName\": \"coupons\",\n                \"overrideValues\": \"ingress.hosts={$(aksHost)},image.repository=$(acrLogin)/coupon.api,image.tag=$(tag)\",\n                \"valueFile\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/gvalues.yaml\",\n                \"destination\": \"$(Build.ArtifactStagingDirectory)\",\n                \"canaryimage\": \"false\",\n                \"upgradetiller\": \"true\",\n                \"updatedependency\": \"false\",\n                \"save\": \"true\",\n                \"install\": \"true\",\n                \"recreate\": \"true\",\n                \"resetValues\": \"false\",\n                \"force\": \"false\",\n                \"waitForExecution\": \"true\",\n                \"arguments\": \"\",\n                \"enableTls\": \"false\",\n                \"caCert\": \"\",\n                \"certificate\": \"\",\n                \"privatekey\": \"\",\n                \"tillernamespace\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"afa7d54d-537b-4dc8-b60a-e0eeea2c9a87\",\n              \"version\": \"0.*\",\n              \"name\": \"helm upgrade Popular-product.api\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"$(resourcegroup)\",\n                \"kubernetesCluster\": \"$(aksName)\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"namespace\": \"default\",\n                \"command\": \"upgrade\",\n                \"chartType\": \"FilePath\",\n                \"chartName\": \"\",\n                \"chartPath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/popular-products-api\",\n                \"version\": \"\",\n                \"releaseName\": \"popularproducts\",\n                \"overrideValues\": \"ingress.hosts={$(aksHost)},image.repository=$(acrLogin)/popular-product.api,image.tag=$(tag)\",\n                \"valueFile\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/gvalues.yaml\",\n                \"destination\": \"$(Build.ArtifactStagingDirectory)\",\n                \"canaryimage\": \"false\",\n                \"upgradetiller\": \"true\",\n                \"updatedependency\": \"false\",\n                \"save\": \"true\",\n                \"install\": \"true\",\n                \"recreate\": \"true\",\n                \"resetValues\": \"false\",\n                \"force\": \"false\",\n                \"waitForExecution\": \"true\",\n                \"arguments\": \"\",\n                \"enableTls\": \"false\",\n                \"caCert\": \"\",\n                \"certificate\": \"\",\n                \"privatekey\": \"\",\n                \"tillernamespace\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"afa7d54d-537b-4dc8-b60a-e0eeea2c9a87\",\n              \"version\": \"0.*\",\n              \"name\": \"helm upgrade Products.api\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"$(resourcegroup)\",\n                \"kubernetesCluster\": \"$(aksName)\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"namespace\": \"default\",\n                \"command\": \"upgrade\",\n                \"chartType\": \"FilePath\",\n                \"chartName\": \"\",\n                \"chartPath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/products-api\",\n                \"version\": \"\",\n                \"releaseName\": \"products\",\n                \"overrideValues\": \"ingress.hosts={$(aksHost)},image.repository=$(acrLogin)/product.api,image.tag=$(tag)\",\n                \"valueFile\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/gvalues.yaml\",\n                \"destination\": \"$(Build.ArtifactStagingDirectory)\",\n                \"canaryimage\": \"false\",\n                \"upgradetiller\": \"true\",\n                \"updatedependency\": \"false\",\n                \"save\": \"true\",\n                \"install\": \"true\",\n                \"recreate\": \"true\",\n                \"resetValues\": \"false\",\n                \"force\": \"false\",\n                \"waitForExecution\": \"true\",\n                \"arguments\": \"\",\n                \"enableTls\": \"false\",\n                \"caCert\": \"\",\n                \"certificate\": \"\",\n                \"privatekey\": \"\",\n                \"tillernamespace\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"afa7d54d-537b-4dc8-b60a-e0eeea2c9a87\",\n              \"version\": \"0.*\",\n              \"name\": \"helm upgrade Profiles.api \",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"$(resourcegroup)\",\n                \"kubernetesCluster\": \"$(aksName)\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"namespace\": \"default\",\n                \"command\": \"upgrade\",\n                \"chartType\": \"FilePath\",\n                \"chartName\": \"\",\n                \"chartPath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/profiles-api\",\n                \"version\": \"\",\n                \"releaseName\": \"profiles\",\n                \"overrideValues\": \"ingress.hosts={$(aksHost)},image.repository=$(acrLogin)/profile.api,image.tag=$(tag)\",\n                \"valueFile\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/gvalues.yaml\",\n                \"destination\": \"$(Build.ArtifactStagingDirectory)\",\n                \"canaryimage\": \"false\",\n                \"upgradetiller\": \"true\",\n                \"updatedependency\": \"false\",\n                \"save\": \"true\",\n                \"install\": \"true\",\n                \"recreate\": \"true\",\n                \"resetValues\": \"false\",\n                \"force\": \"false\",\n                \"waitForExecution\": \"true\",\n                \"arguments\": \"\",\n                \"enableTls\": \"false\",\n                \"caCert\": \"\",\n                \"certificate\": \"\",\n                \"privatekey\": \"\",\n                \"tillernamespace\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"afa7d54d-537b-4dc8-b60a-e0eeea2c9a87\",\n              \"version\": \"0.*\",\n              \"name\": \"helm upgrade Cart.api\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"$(resourcegroup)\",\n                \"kubernetesCluster\": \"$(aksName)\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"namespace\": \"default\",\n                \"command\": \"upgrade\",\n                \"chartType\": \"FilePath\",\n                \"chartName\": \"\",\n                \"chartPath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/cart-api\",\n                \"version\": \"\",\n                \"releaseName\": \"cart\",\n                \"overrideValues\": \"ingress.hosts={$(aksHost)},image.repository=$(acrLogin)/cart.api,image.tag=$(tag)\",\n                \"valueFile\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/gvalues.yaml\",\n                \"destination\": \"$(Build.ArtifactStagingDirectory)\",\n                \"canaryimage\": \"false\",\n                \"upgradetiller\": \"true\",\n                \"updatedependency\": \"false\",\n                \"save\": \"true\",\n                \"install\": \"true\",\n                \"recreate\": \"true\",\n                \"resetValues\": \"false\",\n                \"force\": \"false\",\n                \"waitForExecution\": \"true\",\n                \"arguments\": \"\",\n                \"enableTls\": \"false\",\n                \"caCert\": \"\",\n                \"certificate\": \"\",\n                \"privatekey\": \"\",\n                \"tillernamespace\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"afa7d54d-537b-4dc8-b60a-e0eeea2c9a87\",\n              \"version\": \"0.*\",\n              \"name\": \"helm upgrade Webapigw\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"$(resourcegroup)\",\n                \"kubernetesCluster\": \"$(aksName)\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"namespace\": \"default\",\n                \"command\": \"upgrade\",\n                \"chartType\": \"FilePath\",\n                \"chartName\": \"\",\n                \"chartPath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/webbff\",\n                \"version\": \"\",\n                \"releaseName\": \"webapigw\",\n                \"overrideValues\": \"ingress.hosts={$(aksHost)},image.repository=$(acrLogin)/webapigw,image.tag=$(tag)\",\n                \"valueFile\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/gvalues.yaml\",\n                \"destination\": \"$(Build.ArtifactStagingDirectory)\",\n                \"canaryimage\": \"false\",\n                \"upgradetiller\": \"true\",\n                \"updatedependency\": \"false\",\n                \"save\": \"true\",\n                \"install\": \"true\",\n                \"recreate\": \"true\",\n                \"resetValues\": \"false\",\n                \"force\": \"false\",\n                \"waitForExecution\": \"true\",\n                \"arguments\": \"\",\n                \"enableTls\": \"false\",\n                \"caCert\": \"\",\n                \"certificate\": \"\",\n                \"privatekey\": \"\",\n                \"tillernamespace\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"afa7d54d-537b-4dc8-b60a-e0eeea2c9a87\",\n              \"version\": \"0.*\",\n              \"name\": \"helm upgrade Stock.api\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": true,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectionType\": \"Azure Resource Manager\",\n                \"azureSubscriptionEndpoint\": \"\",\n                \"azureResourceGroup\": \"$(resourcegroup)\",\n                \"kubernetesCluster\": \"$(aksName)\",\n                \"kubernetesServiceEndpoint\": \"\",\n                \"namespace\": \"default\",\n                \"command\": \"upgrade\",\n                \"chartType\": \"FilePath\",\n                \"chartName\": \"\",\n                \"chartPath\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/stock-api\",\n                \"version\": \"\",\n                \"releaseName\": \"stock\",\n                \"overrideValues\": \"ingress.hosts={$(aksHost)},image.repository=$(acrLogin)/stock.api,image.tag=$(tag)\",\n                \"valueFile\": \"$(System.DefaultWorkingDirectory)/_Backend-CI/HelmScripts/helm/gvalues.yaml\",\n                \"destination\": \"$(Build.ArtifactStagingDirectory)\",\n                \"canaryimage\": \"false\",\n                \"upgradetiller\": \"true\",\n                \"updatedependency\": \"false\",\n                \"save\": \"true\",\n                \"install\": \"true\",\n                \"recreate\": \"true\",\n                \"resetValues\": \"false\",\n                \"force\": \"false\",\n                \"waitForExecution\": \"true\",\n                \"arguments\": \"\",\n                \"enableTls\": \"false\",\n                \"caCert\": \"\",\n                \"certificate\": \"\",\n                \"privatekey\": \"\",\n                \"tillernamespace\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Backend-CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Backend-CI\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"selectDuringReleaseCreationType\",\n          \"name\": \"Specify at the time of release creation\"\n        },\n        \"definition\": {\n          \"id\": \"$Backend-CI-id$\",\n          \"name\": \"Backend-CI\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"comment\": \"\",\n  \"tags\": [],\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"Other\"\n    }\n  },\n  \"name\": \"Backend-CD\",\n  \"path\": \"\\\\\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ReleaseDefinitions/Website-CD.json",
    "content": "{\n  \"source\": \"userInterface\",\n  \"revision\": 11,\n  \"description\": null,\n  \"isDeleted\": false,\n  \"variables\": {\n    \"ACR_LoginServer\": {\n      \"value\": \"\"\n    },\n    \"ACR_PASSWORD\": {\n      \"value\": \"\"\n    },\n    \"ACR_USERNAME\": {\n      \"value\": \"\"\n    },\n    \"appservice-name\": {\n      \"value\": \"\"\n    },\n    \"ImageName\": {\n      \"value\": \"website\"\n    },\n    \"resourcegroup\": {\n      \"value\": \"TailwindTraderWeb\"\n    }\n  },\n  \"variableGroups\": [],\n  \"environments\": [\n    {\n      \"id\": 1,\n      \"name\": \"Dev\",\n      \"rank\": 1,\n      \"owner\": {\n        \"id\": \"$OwnerId$\",\n        \"displayName\": \"$OwnerDisplayName$\",\n        \"uniqueName\": \"$OwnerUniqueName$\"\n      },\n      \"variables\": {},\n      \"variableGroups\": [],\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 1\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"beforeGates\"\n        }\n      },\n      \"deployStep\": {\n        \"id\": 2\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true,\n            \"isNotificationOn\": false,\n            \"id\": 3\n          }\n        ],\n        \"approvalOptions\": {\n          \"requiredApproverCount\": null,\n          \"releaseCreatorCanBeApprover\": false,\n          \"autoTriggeredAndPreviousEnvironmentApprovedCanBeSkipped\": false,\n          \"enforceIdentityRevalidation\": false,\n          \"timeoutInMinutes\": 0,\n          \"executionOrder\": \"afterSuccessfulGates\"\n        }\n      },\n      \"deployPhases\": [\n        {\n          \"deploymentInput\": {\n            \"parallelExecution\": {\n              \"parallelExecutionType\": \"none\"\n            },\n            \"skipArtifactsDownload\": false,\n            \"agentSpecification\": {\n              \"identifier\": \"windows-2019\"\n            },\n            \"artifactsDownloadInput\": {\n              \"downloadInputs\": []\n            },\n            \"queueId\": \"$Azure Pipelines$\",\n            \"demands\": [],\n            \"enableAccessToken\": false,\n            \"timeoutInMinutes\": 0,\n            \"jobCancelTimeoutInMinutes\": 1,\n            \"condition\": \"succeeded()\",\n            \"overrideInputs\": {}\n          },\n          \"rank\": 1,\n          \"phaseType\": \"agentBasedDeployment\",\n          \"name\": \"Agent job\",\n          \"refName\": null,\n          \"workflowTasks\": [\n            {\n              \"environment\": {},\n              \"taskId\": \"46e4be58-730b-4389-8a2f-ea10b3e5e815\",\n              \"version\": \"1.*\",\n              \"name\": \"Azure CLI to configure Container settings to App service\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"connectedServiceNameARM\": \"\",\n                \"scriptLocation\": \"inlineScript\",\n                \"scriptPath\": \"\",\n                \"inlineScript\": \"call az webapp config container set -n $(appservice-name) -g $(resourcegroup) -c website -r $(ACR_LoginServer) -u $(ACR_USERNAME) -p $(ACR_PASSWORD)\",\n                \"args\": \"\",\n                \"addSpnToEnvironment\": \"false\",\n                \"useGlobalConfig\": \"false\",\n                \"cwd\": \"\",\n                \"failOnStandardError\": \"false\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"497d490f-eea7-4f2b-ab94-48d9c1acdcb1\",\n              \"version\": \"4.*\",\n              \"name\": \"Deploy Container to App Service\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectionType\": \"AzureRM\",\n                \"ConnectedServiceName\": \"\",\n                \"PublishProfilePath\": \"$(System.DefaultWorkingDirectory)/**/*.pubxml\",\n                \"PublishProfilePassword\": \"\",\n                \"WebAppKind\": \"webAppContainer\",\n                \"WebAppName\": \"$(appservice-name) \",\n                \"DeployToSlotOrASEFlag\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SlotName\": \"production\",\n                \"DockerNamespace\": \"$(ACR_LoginServer)\",\n                \"DockerRepository\": \"$(ImageName)\",\n                \"DockerImageTag\": \"$(Build.BuildId)\",\n                \"VirtualApplication\": \"\",\n                \"Package\": \"$(System.DefaultWorkingDirectory)/**/*.zip\",\n                \"RuntimeStack\": \"\",\n                \"RuntimeStackFunction\": \"\",\n                \"StartupCommand\": \"\",\n                \"ScriptType\": \"\",\n                \"InlineScript\": \":: You can provide your deployment commands here. One command per line.\",\n                \"ScriptPath\": \"\",\n                \"WebConfigParameters\": \"\",\n                \"AppSettings\": \"\",\n                \"ConfigurationSettings\": \"\",\n                \"UseWebDeploy\": \"false\",\n                \"DeploymentType\": \"webDeploy\",\n                \"TakeAppOfflineFlag\": \"false\",\n                \"SetParametersFile\": \"\",\n                \"RemoveAdditionalFilesFlag\": \"false\",\n                \"ExcludeFilesFromAppDataFlag\": \"false\",\n                \"AdditionalArguments\": \"\",\n                \"RenameFilesFlag\": \"false\",\n                \"XmlTransformation\": \"false\",\n                \"XmlVariableSubstitution\": \"false\",\n                \"JSONFiles\": \"\"\n              }\n            },\n            {\n              \"environment\": {},\n              \"taskId\": \"f045e430-8704-11e6-968f-e717e6411619\",\n              \"version\": \"0.*\",\n              \"name\": \"Restart Azure App Service: tailwindtraders\",\n              \"refName\": \"\",\n              \"enabled\": true,\n              \"alwaysRun\": false,\n              \"continueOnError\": false,\n              \"timeoutInMinutes\": 0,\n              \"definitionType\": \"task\",\n              \"overrideInputs\": {},\n              \"condition\": \"succeeded()\",\n              \"inputs\": {\n                \"ConnectedServiceName\": \"\",\n                \"Action\": \"Restart Azure App Service\",\n                \"WebAppName\": \"$(appservice-name) \",\n                \"SpecifySlot\": \"false\",\n                \"ResourceGroupName\": \"\",\n                \"SourceSlot\": \"\",\n                \"SwapWithProduction\": \"true\",\n                \"TargetSlot\": \"\",\n                \"PreserveVnet\": \"false\",\n                \"Slot\": \"production\",\n                \"ExtensionsList\": \"\",\n                \"OutputVariable\": \"\",\n                \"AppInsightsResourceGroupName\": \"\",\n                \"ApplicationInsightsResourceName\": \"\",\n                \"ApplicationInsightsWebTestName\": \"\"\n              }\n            }\n          ]\n        }\n      ],\n      \"environmentOptions\": {\n        \"emailNotificationType\": \"OnlyOnFailure\",\n        \"emailRecipients\": \"release.environment.owner;release.creator\",\n        \"skipArtifactsDownload\": false,\n        \"timeoutInMinutes\": 0,\n        \"enableAccessToken\": false,\n        \"publishDeploymentStatus\": true,\n        \"badgeEnabled\": false,\n        \"autoLinkWorkItems\": false,\n        \"pullRequestDeploymentEnabled\": false\n      },\n      \"demands\": [],\n      \"conditions\": [\n        {\n          \"name\": \"ReleaseStarted\",\n          \"conditionType\": \"event\",\n          \"value\": \"\"\n        }\n      ],\n      \"executionPolicy\": {\n        \"concurrencyCount\": 1,\n        \"queueDepthCount\": 0\n      },\n      \"schedules\": [],\n      \"currentRelease\": {\n      },\n      \"retentionPolicy\": {\n        \"daysToKeep\": 30,\n        \"releasesToKeep\": 3,\n        \"retainBuild\": true\n      },\n      \"processParameters\": {},\n      \"properties\": {},\n      \"preDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"postDeploymentGates\": {\n        \"id\": 0,\n        \"gatesOptions\": null,\n        \"gates\": []\n      },\n      \"environmentTriggers\": []\n    }\n  ],\n  \"artifacts\": [\n    {\n      \"sourceId\": \"$ProjectId$:$Website-CI-id$\",\n      \"type\": \"Build\",\n      \"alias\": \"_Website-CI\",\n      \"definitionReference\": {\n        \"defaultVersionBranch\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionSpecific\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionTags\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"defaultVersionType\": {\n          \"id\": \"selectDuringReleaseCreationType\",\n          \"name\": \"Specify at the time of release creation\"\n        },\n        \"definition\": {\n          \"id\": \"$Website-CI-id$\",\n          \"name\": \"Website-CI\"\n        },\n        \"definitions\": {\n          \"id\": \"\",\n          \"name\": \"\"\n        },\n        \"IsMultiDefinitionType\": {\n          \"id\": \"False\",\n          \"name\": \"False\"\n        },\n        \"project\": {\n          \"id\": \"$ProjectId$\",\n          \"name\": \"$ProjectName$\"\n        }\n      },\n      \"isPrimary\": true,\n      \"isRetained\": false\n    }\n  ],\n  \"triggers\": [],\n  \"releaseNameFormat\": \"Release-$(rev:r)\",\n  \"tags\": [],\n  \"pipelineProcess\": {\n    \"type\": \"designer\"\n  },\n  \"properties\": {\n    \"DefinitionCreationSource\": {\n      \"$type\": \"System.String\",\n      \"$value\": \"Other\"\n    }\n  },\n  \"name\": \"Website-CD\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ServiceEndpoints/GitHub_TailwindTraderBackend.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"Backend\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/Microsoft/TailwindTraders-Backend\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ServiceEndpoints/GitHub_TailwindTradersWeb.json",
    "content": "﻿{\n  \"data\": {\n\n  },\n  \"name\": \"Website\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/Microsoft/TailwindTraders-Website\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/ServiceEndpoints/Tailwind Traders.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"TailwindTraders-code\",\n  \"type\": \"git\",\n  \"url\": \"https://vstsdemodata.visualstudio.com/Tailwind%20Traders/_git/Tailwind%20Traders\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/Teams/Teams.json",
    "content": "[\n  {\n    \"name\": \"Website Team\",\n    \"description\": \"The default project team.\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/Teams/Website Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/Teams/Website Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/Teams/Website Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/Teams/Website Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {},\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {},\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {},\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/Teams/Website Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/WorkItems/Bug.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 278,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:12:56.5Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:44.363Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"The link to \\\"about us\\\" on the bottom of the main page missing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/264\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/278\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/WorkItems/Epic.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 275,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:05:35.747Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:05:35.967Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Vendor Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/275\"\n    },\n    {\n      \"id\": 274,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:05:26.81Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:05:27.077Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Payments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/270\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/277\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/267\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/274\"\n    },\n    {\n      \"id\": 273,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:05:19.763Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:05:20.137Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Customer Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/276\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/265\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/273\"\n    },\n    {\n      \"id\": 272,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:05:03.247Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:19.863Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Loyalty Membership\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/269\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/268\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/272\"\n    },\n    {\n      \"id\": 271,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:04:55.327Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:32.677Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Shopping Cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/266\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/263\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/264\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/271\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/WorkItems/Feature.json",
    "content": "{\n  \"count\": 10,\n  \"value\": [\n    {\n      \"id\": 277,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:09:14.793Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:09:15.7Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Shipping & Delivery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/274\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/252\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/257\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/277\"\n    },\n    {\n      \"id\": 270,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:04:17.45Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:04:17.92Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Gift cards\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/274\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/270\"\n    },\n    {\n      \"id\": 269,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:04:08.45Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:19.863Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Loyalty points\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/272\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/108\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/256\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/269\"\n    },\n    {\n      \"id\": 268,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:03:56.747Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:03:57.107Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Redemption\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/272\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/268\"\n    },\n    {\n      \"id\": 267,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:03:19.78Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:03:34.013Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Credit Card Payments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/274\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/267\"\n    },\n    {\n      \"id\": 266,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:03:14.497Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:32.677Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Purchase\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/254\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/245\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/255\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/253\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/258\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/271\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/266\"\n    },\n    {\n      \"id\": 265,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:03:04.543Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:03:04.857Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Membership signup\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/251\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/273\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/250\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/112\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/265\"\n    },\n    {\n      \"id\": 264,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:02:26.607Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:44.363Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Price Catalog\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/247\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/278\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/271\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/264\"\n    },\n    {\n      \"id\": 276,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:09:02.997Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:19.863Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Newsletter\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/249\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/273\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/241\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/276\"\n    },\n    {\n      \"id\": 263,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:02:18.073Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:44.363Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Product Catalog\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/105\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/271\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/248\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/263\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/WorkItems/Task.json",
    "content": "{\n  \"count\": 12,\n  \"value\": [\n    {\n      \"id\": 102,\n      \"rev\": 13,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2018-10-22T08:03:56.253Z\",\n        \"System.CreatedBy\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"System.ChangedDate\": \"2018-11-30T07:43:55.663Z\",\n        \"System.ChangedBy\": \"Eduard Tomas <etomas@plainconcepts.com>\",\n        \"System.Title\": \"As a User I want to view a public landing page with static information - JS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/253\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Build/Build/6\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-23T10:06:59.017Z\",\n            \"id\": \"6504704\",\n            \"resourceCreatedDate\": \"2018-10-23T10:06:59.017Z\",\n            \"resourceModifiedDate\": \"2018-10-23T10:06:59.017Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"comment\": \"This build was automatically linked to this work item based on this work item's linked commits\",\n            \"name\": \"Integrated in build\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/49fa88ec-f0a8-417b-8858-c824a4e8582a%2fe09b416c-8a2c-45a2-976a-8165f248b1b8%2f1\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-23T09:50:31.19Z\",\n            \"id\": \"6504604\",\n            \"resourceCreatedDate\": \"2018-10-23T09:50:31.19Z\",\n            \"resourceModifiedDate\": \"2018-10-23T09:50:31.19Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/49fa88ec-f0a8-417b-8858-c824a4e8582a%2fe09b416c-8a2c-45a2-976a-8165f248b1b8%2fe253cb272a93936e38cd206de000f69e179820c0\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-23T09:51:28.237Z\",\n            \"id\": \"6504605\",\n            \"resourceCreatedDate\": \"2018-10-23T09:51:28.237Z\",\n            \"resourceModifiedDate\": \"2018-10-23T09:51:28.237Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Build/Build/275\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"id\": \"7228543\",\n            \"resourceCreatedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"resourceModifiedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"comment\": \"This build was automatically linked to this work item based on this work item's linked commits\",\n            \"name\": \"Integrated in build\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/102\"\n    },\n    {\n      \"id\": 125,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2018-10-25T10:39:35.18Z\",\n        \"System.CreatedBy\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"System.ChangedDate\": \"2018-10-25T10:39:44.54Z\",\n        \"System.ChangedBy\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"System.Title\": \"As a User I want to see a list of popular products in the landing page - Layout\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/105\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/125\"\n    },\n    {\n      \"id\": 104,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2018-10-22T08:11:26.02Z\",\n        \"System.CreatedBy\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"System.ChangedDate\": \"2018-11-05T11:06:57.09Z\",\n        \"System.ChangedBy\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"System.Title\": \"As a User I want to see a list of recommended product categories in the landing page\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/253\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/104\"\n    },\n    {\n      \"id\": 279,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2019-01-25T21:16:15.207Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:21:30.25Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"Update DB schema \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/112\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/279\"\n    },\n    {\n      \"id\": 262,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T20:58:48.603Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:20.693Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Route to login screen if not signed in or upon timeout\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/112\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/262\"\n    },\n    {\n      \"id\": 261,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-01-25T20:58:10.447Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:18:17.807Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Remove item if qty is set to zero\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/255\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/261\"\n    },\n    {\n      \"id\": 260,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T20:57:07.977Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:05:50.563Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"Shows the total price of all items\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/253\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/260\"\n    },\n    {\n      \"id\": 259,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2019-01-25T20:56:42.757Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:21:21.097Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"Create a new route and view for cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/253\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/259\"\n    },\n    {\n      \"id\": 244,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-01-25T18:13:44.527Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:05:12.753Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"As a user, I want to choose to unsubscribe newsletters\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/241\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/244\"\n    },\n    {\n      \"id\": 196,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2018-11-29T19:04:47.007Z\",\n        \"System.CreatedBy\": \"David Sanchez <dasanagu@microsoft.com>\",\n        \"System.ChangedDate\": \"2018-11-29T19:52:29.56Z\",\n        \"System.ChangedBy\": \"David Sanchez <dasanagu@microsoft.com>\",\n        \"System.Title\": \"Update ARM template for deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"David Sanchez <dasanagu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/196\"\n    },\n    {\n      \"id\": 123,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2018-10-24T14:14:37.237Z\",\n        \"System.CreatedBy\": \"Eduard Tomas <etomas@plainconcepts.com>\",\n        \"System.ChangedDate\": \"2018-11-30T07:43:55.663Z\",\n        \"System.ChangedBy\": \"Eduard Tomas <etomas@plainconcepts.com>\",\n        \"System.Title\": \"Create docker image\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Eduard Tomas <etomas@plainconcepts.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/105\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/49fa88ec-f0a8-417b-8858-c824a4e8582a%2fe09b416c-8a2c-45a2-976a-8165f248b1b8%2fd9cf8de09144f18690c4d734d58283c72eb663a9\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-24T14:15:13.267Z\",\n            \"id\": \"6533533\",\n            \"resourceCreatedDate\": \"2018-10-24T14:15:13.267Z\",\n            \"resourceModifiedDate\": \"2018-10-24T14:15:13.267Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/49fa88ec-f0a8-417b-8858-c824a4e8582a%2fe09b416c-8a2c-45a2-976a-8165f248b1b8%2f5\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-24T14:15:02.423Z\",\n            \"id\": \"6533532\",\n            \"resourceCreatedDate\": \"2018-10-24T14:15:02.423Z\",\n            \"resourceModifiedDate\": \"2018-10-24T14:15:02.423Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Build/Build/11\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-24T14:17:33.44Z\",\n            \"id\": \"6533547\",\n            \"resourceCreatedDate\": \"2018-10-24T14:17:33.44Z\",\n            \"resourceModifiedDate\": \"2018-10-24T14:17:33.44Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"comment\": \"This build was automatically linked to this work item based on this work item's linked commits\",\n            \"name\": \"Integrated in build\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Build/Build/275\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"id\": \"7228541\",\n            \"resourceCreatedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"resourceModifiedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"comment\": \"This build was automatically linked to this work item based on this work item's linked commits\",\n            \"name\": \"Integrated in build\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/123\"\n    },\n    {\n      \"id\": 122,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2018-10-24T11:08:30.183Z\",\n        \"System.CreatedBy\": \"Eduard Tomas <etomas@plainconcepts.com>\",\n        \"System.ChangedDate\": \"2018-11-30T07:43:55.663Z\",\n        \"System.ChangedBy\": \"Eduard Tomas <etomas@plainconcepts.com>\",\n        \"System.Title\": \"Create Azure environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Eduard Tomas <etomas@plainconcepts.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/105\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/49fa88ec-f0a8-417b-8858-c824a4e8582a%2fe09b416c-8a2c-45a2-976a-8165f248b1b8%2f3\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-24T11:09:14.34Z\",\n            \"id\": \"6530484\",\n            \"resourceCreatedDate\": \"2018-10-24T11:09:14.34Z\",\n            \"resourceModifiedDate\": \"2018-10-24T11:09:14.34Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Build/Build/275\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"id\": \"7228542\",\n            \"resourceCreatedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"resourceModifiedDate\": \"2018-11-30T07:43:55.663Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"comment\": \"This build was automatically linked to this work item based on this work item's linked commits\",\n            \"name\": \"Integrated in build\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/49fa88ec-f0a8-417b-8858-c824a4e8582a%2fe09b416c-8a2c-45a2-976a-8165f248b1b8%2f3a4cdf97cc0ea5f01ab4d3931b3f330047df28bd\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-24T11:09:34.95Z\",\n            \"id\": \"6530485\",\n            \"resourceCreatedDate\": \"2018-10-24T11:09:34.95Z\",\n            \"resourceModifiedDate\": \"2018-10-24T11:09:34.95Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Build/Build/10\",\n          \"attributes\": {\n            \"authorizedDate\": \"2018-10-24T11:17:49.95Z\",\n            \"id\": \"6530709\",\n            \"resourceCreatedDate\": \"2018-10-24T11:17:49.95Z\",\n            \"resourceModifiedDate\": \"2018-10-24T11:17:49.95Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"comment\": \"This build was automatically linked to this work item based on this work item's linked commits\",\n            \"name\": \"Integrated in build\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/122\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/WorkItems/Test Case.json",
    "content": "{\n  \"count\": 18,\n  \"value\": [\n    {\n      \"id\": 307,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Obsolete\",\n        \"System.CreatedDate\": \"2019-01-25T21:37:45.767Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:19:22.97Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"PeakLoad-Consistent-100K-50M\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/307\"\n    },\n    {\n      \"id\": 306,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-01-25T21:37:12.94Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:19:13.16Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"Peak Load Test - 500K users- Rampup - 30M\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/306\"\n    },\n    {\n      \"id\": 303,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \" Ceck discount is applied correctly\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/303\"\n    },\n    {\n      \"id\": 302,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check that user can select payment method\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/302\"\n    },\n    {\n      \"id\": 301,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check the delivery address details can be input\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/301\"\n    },\n    {\n      \"id\": 300,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check subtotal adds up correctly\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/300\"\n    },\n    {\n      \"id\": 299,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Ready\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:19:35.877Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"Remove product from shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/299\"\n    },\n    {\n      \"id\": 298,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check display of product information, including image, is correct in shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/298\"\n    },\n    {\n      \"id\": 297,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check user can signup for newsletters\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/297\"\n    },\n    {\n      \"id\": 296,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:30:04.36Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check that existing customers can login with username and password.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/296\"\n    },\n    {\n      \"id\": 290,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:35:39.143Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \" Check discount is applied correctly\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/290\"\n    },\n    {\n      \"id\": 289,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check that user can select payment method\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/289\"\n    },\n    {\n      \"id\": 288,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check the delivery address details can be input\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/288\"\n    },\n    {\n      \"id\": 287,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check subtotal adds up correctly\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/287\"\n    },\n    {\n      \"id\": 286,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Remove product from shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/286\"\n    },\n    {\n      \"id\": 285,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:26:13.76Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check display of product information, including image, is correct in shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/285\"\n    },\n    {\n      \"id\": 284,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:24:06.887Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:24:06.887Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check user can signup for newsletters\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/284\"\n    },\n    {\n      \"id\": 283,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T21:22:43.323Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:22:43.323Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Check that existing customers can login with username and password.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/283\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/WorkItems/Test Plan.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 280,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Plan\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"New test plan\",\n        \"System.CreatedDate\": \"2019-01-25T21:22:08.603Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:22:08.603Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Test Plan 1.0\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/280\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/WorkItems/Test Suite.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 305,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2019-01-25T21:30:35.703Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:37:45.94Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Performance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/305\"\n    },\n    {\n      \"id\": 295,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2019-01-25T21:28:15.843Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:34:46.143Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"User Acceptance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/295\"\n    },\n    {\n      \"id\": 282,\n      \"rev\": 14,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2019-01-25T21:22:20.447Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:35:54.127Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Functional Tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/282\"\n    },\n    {\n      \"id\": 281,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"Test Suite\",\n        \"System.State\": \"In Progress\",\n        \"System.Reason\": \"New test suite\",\n        \"System.CreatedDate\": \"2019-01-25T21:22:08.697Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T21:33:47.957Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"Test Plan 1.0\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 0.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/281\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-Tailwind Traders/WorkItems/User Story.json",
    "content": "{\n  \"count\": 17,\n  \"value\": [\n    {\n      \"id\": 105,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2018-10-22T08:11:35.957Z\",\n        \"System.CreatedBy\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:08:20.067Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"As a User I want to view products from a certain category\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/125\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/123\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/263\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/122\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/105\"\n    },\n    {\n      \"id\": 253,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2019-01-25T20:47:56Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:05:38.22Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"As a User, I want to add items to my shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/260\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/102\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/266\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/259\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/104\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/253\"\n    },\n    {\n      \"id\": 112,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2018-10-22T08:13:47.91Z\",\n        \"System.CreatedBy\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:19.863Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a User I want to view my user profile\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"David Sanchez <dasanagu@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/279\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/262\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/265\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/112\"\n    },\n    {\n      \"id\": 248,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2019-01-25T20:41:56.25Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:08:41.317Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"As a User I want to view product details \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/263\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/248\"\n    },\n    {\n      \"id\": 251,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2019-01-25T20:44:17.89Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:08:38.147Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"As a User, I want to be able to modify my particulars\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/265\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/251\"\n    },\n    {\n      \"id\": 245,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T18:14:56.327Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:32.677Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As developer, I want to use Azure Machine Learning to provide a recommendations engine behind the website.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/266\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/245\"\n    },\n    {\n      \"id\": 247,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T19:37:43.92Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:44.363Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a admin, I should be able to update prices on ad-hoc condition\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/264\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/247\"\n    },\n    {\n      \"id\": 249,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T20:43:31.953Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:19.863Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a user, I want to be able to update the frequency and type of newsletters to receive\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/276\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/249\"\n    },\n    {\n      \"id\": 256,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2019-01-25T20:51:31.587Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:19.863Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As an admin, I want to generate coupons for customers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/269\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/256\"\n    },\n    {\n      \"id\": 255,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2019-01-25T20:48:38.17Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:07:27.643Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"As a User, I want to change quantity of items in my shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/261\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/266\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/255\"\n    },\n    {\n      \"id\": 108,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2018-10-22T08:12:55.427Z\",\n        \"System.CreatedBy\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:19.863Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a User I want to view my discounts coupons\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"ivillanueva <ivillanueva@plainconcepts.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/269\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/108\"\n    },\n    {\n      \"id\": 250,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2019-01-25T20:43:50.86Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:19.863Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a user, I want to choose to unsubscribe newsletters\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/265\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/250\"\n    },\n    {\n      \"id\": 252,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T20:45:57.483Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T20:45:58.34Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a User, I should be able to select different shipping option\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/277\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/252\"\n    },\n    {\n      \"id\": 254,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T20:48:20.047Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:32.677Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a User, I want to remove items from my shopping cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/266\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/254\"\n    },\n    {\n      \"id\": 241,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2019-01-25T18:11:41.947Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-28T06:07:09.89Z\",\n        \"System.ChangedBy\": \"Sriramdas Balaji <sriramdas.balaji@ecanarys.com>\",\n        \"System.Title\": \"As a user, I want to subscribe to newsletters\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/276\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/244\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/241\"\n    },\n    {\n      \"id\": 257,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T20:54:30.243Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T20:54:30.743Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As an admin, I want to set order limit for free shipping \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/277\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/257\"\n    },\n    {\n      \"id\": 258,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"Website\",\n        \"System.TeamProject\": \"Website\",\n        \"System.IterationPath\": \"Website\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2019-01-25T20:55:54.65Z\",\n        \"System.CreatedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-01-25T22:00:32.677Z\",\n        \"System.ChangedBy\": \"Sachin Raj <sraj@microsoft.com>\",\n        \"System.Title\": \"As a User, I want to view my past orders\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/266\",\n          \"attributes\": {\n            \"isLocked\": \"false\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/tailwindtraders/_apis/wit/workItems/258\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/BranchPolicy/BuildPolicy.json",
    "content": "{\n    \"isEnabled\": true,\n    \"isBlocking\": true,\n    \"isDeleted\": false,\n    \"settings\": {\n      \"buildDefinitionId\": \"$buildDefId$\",\n      \"queueOnSourceUpdateOnly\": true,\n      \"manualQueueOnly\": false,\n      \"displayName\": null,\n      \"validDuration\": 720.0,\n      \"scope\": [\n        {\n          \"refName\": \"refs/heads/main\",\n          \"matchKind\": \"Exact\",\n          \"repositoryId\": \"$eshoponweb$\"\n        }\n      ]\n    },\n    \"isEnterpriseManaged\": false,\n    \"type\": {\n      \"id\": \"$policyTypeId$\",\n      \"url\": \"$policyTypeUrl$\",\n      \"displayName\": \"Build\"\n    }\n  }"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/BranchPolicy/WorkItemLinkPolicy.json",
    "content": "{\n    \"isEnabled\": true,\n    \"isBlocking\": true,\n    \"isDeleted\": false,\n    \"settings\": {\n      \"scope\": [\n        {\n          \"refName\": \"refs/heads/main\",\n          \"matchKind\": \"Exact\",\n          \"repositoryId\": \"$eshoponweb$\"\n        }\n      ]\n    },\n    \"isEnterpriseManaged\": false,\n    \"type\": {\n      \"id\": \"$policyTypeId$\",\n      \"url\": \"$policyTypeUrl$\",\n      \"displayName\": \"Work item linking\"\n    }\n  }"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/BuildDefinitions/eShoponweb-Yaml.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"BuildConfiguration\": {\n      \"value\": \"Release\"\n    },\n    \"BuildPlatform\": {\n      \"value\": \"any cpu\"\n    },\n    \"eshop_ServerName\": {\n      \"value\": \"eShopOnWeb$UUID$\"\n    },\n    \"WebsiteName\": {\n      \"value\": \"eshop$UUID$\"\n    },\n    \"rg_name\": {\n      \"value\": \"eShopOnWeb\"\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"comment\": \"Update variables\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/eShopOnWeb\",\n      \"fullName\": \"eShopOnWeb\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$eShopOnWeb$\",\n      \"reportBuildStatus\": \"true\",\n      \"fetchDepth\": \"1\"\n    },\n    \"id\": \"$eShopOnWeb$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"eShopOnWeb\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/eShopOnWeb\",\n    \"defaultBranch\": \"refs/heads/main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"eShopOnWeb\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 7,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Dashboard.json",
    "content": "{\n  \"name\": \"Overview\",\n  \"description\": \"\",\n  \"refreshInterval\": 0,\n  \"position\": 1,\n  \"widgets\": [\n    {\n      \"name\": \"Active Tasks by Assigned To\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"chartType\\\":\\\"PieChart\\\",\\\"groupKey\\\":\\\"$AppDevTeam Tasks$\\\",\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"title\\\":\\\"Active Tasks by Assigned To\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$AppDevTeam Tasks$\\\",\\\"groupBy\\\":\\\"System.AssignedTo\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":true,\\\"FilteredGroups\\\":[]},\\\"lastArtifactName\\\":\\\"Active Tasks by Assigned To\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"All Bugs\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 4\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#e60017\\\",\\\"queryId\\\":\\\"$All Bugs$\\\",\\\"queryName\\\":\\\"All Bugs\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Bugs\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"All Features by State\",\n      \"position\": {\n        \"row\": 2,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$All Features$\\\",\\\"title\\\":\\\"All Features by State\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$All Features$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"lastArtifactName\\\":\\\"All Features by State\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"All Tasks\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbbc3d\\\",\\\"queryId\\\":\\\"$All Tasks$\\\",\\\"queryName\\\":\\\"All Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Tasks\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"All Tasks by State\",\n      \"position\": {\n        \"row\": 4,\n        \"column\": 3\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$All Tasks$\\\",\\\"title\\\":\\\"All Tasks by State\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$All Tasks$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"lastArtifactName\\\":\\\"All Tasks by State\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"All User Stories\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 2\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$All User Stories$\\\",\\\"queryName\\\":\\\"All User Stories\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All User Stories\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"All Epics\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#db552c\\\",\\\"queryId\\\":\\\"$All Epics$\\\",\\\"queryName\\\":\\\"All Epics\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"All Epics\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Burndown\",\n      \"position\": {\n        \"row\": 6,\n        \"column\": 4\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"teams\\\":[{\\\"projectId\\\":\\\"$projectId$\\\",\\\"teamId\\\":\\\"$DefaultTeamId$\\\"}],\\\"aggregation\\\":{\\\"identifier\\\":0,\\\"settings\\\":\\\"\\\"},\\\"completedWorkEnabled\\\":false,\\\"fieldFilters\\\":[],\\\"stackByWorkItemTypeEnabled\\\":false,\\\"burndownTrendlineEnabled\\\":true,\\\"workItemTypeFilter\\\":{\\\"identifier\\\":\\\"BacklogCategory\\\",\\\"settings\\\":\\\"Microsoft.RequirementCategory\\\"},\\\"includeBugsForRequirementCategory\\\":false,\\\"timePeriodConfiguration\\\":{\\\"startDate\\\":\\\"$startDate$\\\",\\\"samplingConfiguration\\\":{\\\"identifier\\\":0,\\\"settings\\\":{\\\"endDate\\\":\\\"$endDate$\\\",\\\"lastDayOfWeek\\\":5,\\\"sampleInterval\\\":0}}},\\\"totalScopeTrendlineEnabled\\\":true,\\\"showResolvedItemsAsCompletedEnabled\\\":false}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BurndownWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BurndownWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BurndownWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BurndownWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Test Cases\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 1\n      },\n      \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$Test Cases$\\\",\\\"queryName\\\":\\\"Test Cases\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Test Cases\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n      \"isNameConfigurable\": true\n    },\n    {\n      \"name\": \"Other Links\",\n      \"position\": {\n        \"row\": 1,\n        \"column\": 6\n      },\n      \"size\": {\n        \"rowSpan\": 1,\n        \"columnSpan\": 2\n      },\n      \"settings\": null,\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": false,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.OtherLinksWidget\",\n      \"typeId\": null,\n      \"configurationContributionId\": null,\n      \"configurationContributionRelativeId\": null,\n      \"isNameConfigurable\": false,\n      \"loadingImageUrl\": null\n    },\n    {\n      \"name\": \"All User Stories by State\",\n      \"position\": {\n        \"row\": 2,\n        \"column\": 5\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$All User Stories$\\\",\\\"title\\\":\\\"All User Stories by State\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$All User Stories$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"lastArtifactName\\\":\\\"All User Stories by State\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Burnup\",\n      \"position\": {\n        \"row\": 8,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"teams\\\":[{\\\"projectId\\\":\\\"$projectId$\\\",\\\"teamId\\\":\\\"$DefaultTeamId$\\\"}],\\\"aggregation\\\":{\\\"identifier\\\":0,\\\"settings\\\":\\\"\\\"},\\\"completedWorkEnabled\\\":false,\\\"fieldFilters\\\":[],\\\"stackByWorkItemTypeEnabled\\\":false,\\\"burndownTrendlineEnabled\\\":true,\\\"workItemTypeFilter\\\":{\\\"identifier\\\":\\\"BacklogCategory\\\",\\\"settings\\\":\\\"Microsoft.RequirementCategory\\\"},\\\"includeBugsForRequirementCategory\\\":false,\\\"timePeriodConfiguration\\\":{\\\"startDate\\\":\\\"$startDate$\\\",\\\"samplingConfiguration\\\":{\\\"identifier\\\":0,\\\"settings\\\":{\\\"endDate\\\":\\\"$endDate$\\\",\\\"lastDayOfWeek\\\":5,\\\"sampleInterval\\\":0}}},\\\"totalScopeTrendlineEnabled\\\":true,\\\"showResolvedItemsAsCompletedEnabled\\\":false}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BurnupWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.BurnupWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.BurnupWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.BurnupWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"Velocity\",\n      \"position\": {\n        \"row\": 6,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 3\n      },\n      \"settings\": \"{\\\"projectId\\\":\\\"$projectId$\\\",\\\"teamId\\\":\\\"$DefaultTeamId$\\\",\\\"workItemTypeFilter\\\":{\\\"identifier\\\":\\\"BacklogCategory\\\",\\\"settings\\\":\\\"Microsoft.RequirementCategory\\\"},\\\"aggregation\\\":{\\\"identifier\\\":0,\\\"settings\\\":\\\"\\\"},\\\"numberOfIterations\\\":6,\\\"plannedWorkDelay\\\":0,\\\"lateWorkDelay\\\":0,\\\"lastArtifactName\\\":null,\\\"showResolvedItemsAsCompleted\\\":false}\",\n      \"settingsVersion\": {\n        \"major\": 1,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.VelocityWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.VelocityWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.VelocityWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.VelocityWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    },\n    {\n      \"name\": \"All Epics by State\",\n      \"position\": {\n        \"row\": 2,\n        \"column\": 1\n      },\n      \"size\": {\n        \"rowSpan\": 2,\n        \"columnSpan\": 2\n      },\n      \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$All Epics$\\\",\\\"title\\\":\\\"All Epics by State\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$All Epics$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"lastArtifactName\\\":\\\"All Epics by State\\\"}\",\n      \"settingsVersion\": {\n        \"major\": 3,\n        \"minor\": 0,\n        \"patch\": 0\n      },\n      \"artifactId\": \"\",\n      \"isEnabled\": true,\n      \"contentUri\": null,\n      \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n      \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n      \"isNameConfigurable\": true,\n      \"lightboxOptions\": {\n        \"width\": 900,\n        \"height\": 700,\n        \"resizable\": true\n      }\n    }\n  ],\n  \"dashboardScope\": \"project_Team\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/All Bugs.json",
    "content": "{\n  \"name\": \"All Bugs\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/All Epics.json",
    "content": "{\n  \"name\": \"All Epics\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/All Features.json",
    "content": "{\n  \"name\": \"All Features\",\n  \"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.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/All Tasks.json",
    "content": "{\n  \"name\": \"All Tasks\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/All User Stories.json",
    "content": "{\n  \"name\": \"All User Stories\",\n  \"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.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/AllWorkofAppdevTeam.json",
    "content": "{\n  \"name\": \"AllWorkofAppdevTeam\",\n  \"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] <> '' AND [System.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/AppDevTeam Tasks.json",
    "content": "{\n  \"name\": \"AppDevTeam Tasks\",\n  \"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$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/AppDevelopmentTeam Bugs.json",
    "content": "{\n  \"name\": \"AppDevelopmentTeam Bugs\",\n  \"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] <> '' AND [System.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/Test Cases.json",
    "content": "{\n  \"name\": \"Test Cases\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/App Development Team/Queries/TestcaseinDesignState.json",
    "content": "{\n  \"name\": \"TestcaseinDesignState\",\n  \"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] <> '' AND [System.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Dashboard.json",
    "content": "{\n    \"name\": \"eShopOnWeb\",\n    \"description\": \"\",\n    \"refreshInterval\": 5,\n    \"position\": 1,\n    \"widgets\": [\n        {\n            \"name\": \"Epics\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#db552c\\\",\\\"queryId\\\":\\\"$Epics$\\\",\\\"queryName\\\":\\\"Epics\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Epics\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Active Stories\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$Active Stories$\\\",\\\"queryName\\\":\\\"Active Stories\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Active Stories\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/2ad46a05-d61d-4202-b512-14078d46a7ea\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/2ad46a05-d61d-4202-b512-14078d46a7ea\"\n                },\n                \"group\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets\"\n                },\n                \"dashboard\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/Dashboards/9a836c44-1c39-435a-a7c3-a10a15f9e7fd\"\n                }\n            },\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Active Epic\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#db552c\\\",\\\"queryId\\\":\\\"$Active Epic$\\\",\\\"queryName\\\":\\\"Active Epic\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Active Epic\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/ab0a5ff3-4d54-4855-8483-162671933c87\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/ab0a5ff3-4d54-4855-8483-162671933c87\"\n                },\n                \"group\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets\"\n                },\n                \"dashboard\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/Dashboards/9a836c44-1c39-435a-a7c3-a10a15f9e7fd\"\n                }\n            },\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Active Tasks\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbbc3d\\\",\\\"queryId\\\":\\\"$Active Tasks$\\\",\\\"queryName\\\":\\\"Active Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Active Tasks\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/147ea43c-dcf7-43ba-8f10-25fb0157ce62\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/147ea43c-dcf7-43ba-8f10-25fb0157ce62\"\n                },\n                \"group\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets\"\n                },\n                \"dashboard\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/Dashboards/9a836c44-1c39-435a-a7c3-a10a15f9e7fd\"\n                }\n            },\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"Bugs By Priority by Priority\",\n        \"position\": {\n          \"row\": 5,\n          \"column\": 5\n        },\n        \"size\": {\n          \"rowSpan\": 2,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$Bugs By Priority$\\\",\\\"title\\\":\\\"Bugs By Priority by Priority\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$Bugs By Priority$\\\",\\\"groupBy\\\":\\\"Microsoft.VSTS.Common.Priority\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"Bugs By Priority by Priority\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 3,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"isNameConfigurable\": true,\n        \"lightboxOptions\": {\n          \"width\": 900,\n          \"height\": 700,\n          \"resizable\": true\n        }\n      },\n        {\n            \"name\": \"New Feature\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 2\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#339947\\\",\\\"queryId\\\":\\\"$New Feature$\\\",\\\"queryName\\\":\\\"New Feature\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"New Feature\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Closed Feature\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#339947\\\",\\\"queryId\\\":\\\"$Closed Feature$\\\",\\\"queryName\\\":\\\"Closed Feature\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Closed Feature\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"New Epic\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 2\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#db552c\\\",\\\"queryId\\\":\\\"$New Epic$\\\",\\\"queryName\\\":\\\"New Epic\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"New Epic\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"All Bugs\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#e60017\\\",\\\"queryId\\\":\\\"$All Bugs$\\\",\\\"queryName\\\":\\\"All Bugs\\\",\\\"colorRules\\\":[{\\\"isEnabled\\\":true,\\\"backgroundColor\\\":\\\"#db552c\\\",\\\"thresholdCount\\\":1,\\\"operator\\\":\\\">=\\\"},{\\\"isEnabled\\\":true,\\\"backgroundColor\\\":\\\"#e60017\\\",\\\"thresholdCount\\\":10,\\\"operator\\\":\\\">\\\"}],\\\"lastArtifactName\\\":\\\"All Bugs\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/26d94c7c-6fc8-4bc0-bf4a-3d24d77a1a0d\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/26d94c7c-6fc8-4bc0-bf4a-3d24d77a1a0d\"\n                },\n                \"group\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets\"\n                },\n                \"dashboard\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/Dashboards/9a836c44-1c39-435a-a7c3-a10a15f9e7fd\"\n                }\n            },\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"All Bugs by State\",\n        \"position\": {\n          \"row\": 3,\n          \"column\": 7\n        },\n        \"size\": {\n          \"rowSpan\": 2,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$All Bugs$\\\",\\\"title\\\":\\\"All Bugs by State\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$All Bugs$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"All Bugs by State\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 3,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"isNameConfigurable\": true,\n        \"lightboxOptions\": {\n          \"width\": 900,\n          \"height\": 700,\n          \"resizable\": true\n        }\n      },\n        {\n            \"name\": \"Tasks\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbbc3d\\\",\\\"queryId\\\":\\\"$Tasks$\\\",\\\"queryName\\\":\\\"Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Tasks\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/6edb2670-4279-4cd1-8b33-5cce16d9bda6\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/6edb2670-4279-4cd1-8b33-5cce16d9bda6\"\n                },\n                \"group\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets\"\n                },\n                \"dashboard\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/Dashboards/9a836c44-1c39-435a-a7c3-a10a15f9e7fd\"\n                }\n            },\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Features\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#339947\\\",\\\"queryId\\\":\\\"$Features$\\\",\\\"queryName\\\":\\\"Features\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Features\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/cee02331-0a6a-44fd-a04b-6170168e6686\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/cee02331-0a6a-44fd-a04b-6170168e6686\"\n                },\n                \"group\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets\"\n                },\n                \"dashboard\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/Dashboards/9a836c44-1c39-435a-a7c3-a10a15f9e7fd\"\n                }\n            },\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Closed Bugs\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#db552c\\\",\\\"queryId\\\":\\\"$Closed Bugs$\\\",\\\"queryName\\\":\\\"Closed Bugs\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Closed Bugs\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/f26fd786-5807-4c8f-9fbe-6b9c6f5c22a2\",\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/f26fd786-5807-4c8f-9fbe-6b9c6f5c22a2\"\n                },\n                \"group\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets\"\n                },\n                \"dashboard\": {\n                    \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/Dashboards/9a836c44-1c39-435a-a7c3-a10a15f9e7fd\"\n                }\n            },\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"Epics by State\",\n        \"position\": {\n          \"row\": 3,\n          \"column\": 5\n        },\n        \"size\": {\n          \"rowSpan\": 2,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$Epics$\\\",\\\"title\\\":\\\"Epics by State\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$Epics$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"Epics by State\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 3,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/ba8eaad5-25b6-42ca-8de5-6d2f05bd2de9\",\n        \"_links\": {\n          \"self\": {\n            \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets/ba8eaad5-25b6-42ca-8de5-6d2f05bd2de9\"\n          },\n          \"group\": {\n            \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/dashboards/Widgets\"\n          },\n          \"dashboard\": {\n            \"href\": \"https://dev.azure.com/suraj-ecanarys/_apis/Dashboard/Dashboards/9a836c44-1c39-435a-a7c3-a10a15f9e7fd\"\n          }\n        },\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"isNameConfigurable\": true,\n        \"lightboxOptions\": {\n          \"width\": 900,\n          \"height\": 700,\n          \"resizable\": true\n        }\n      },\n        {\n            \"name\": \"Active Bugs\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#db552c\\\",\\\"queryId\\\":\\\"$Active Bugs$\\\",\\\"queryName\\\":\\\"Active Bugs\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Active Bugs\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"New Tasks\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 2\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbbc3d\\\",\\\"queryId\\\":\\\"$New Tasks$\\\",\\\"queryName\\\":\\\"New Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"New Tasks\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Closed Stories\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$Closed Stories$\\\",\\\"queryName\\\":\\\"Closed Stories\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Closed Stories\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"New Stories\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 2\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$New Stories$\\\",\\\"queryName\\\":\\\"New Stories\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"New Stories\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"Closed Tasks\",\n            \"position\": {\n                \"row\": 4,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#fbbc3d\\\",\\\"queryId\\\":\\\"$Closed Tasks$\\\",\\\"queryName\\\":\\\"Closed Tasks\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Closed Tasks\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"All workitems by Work Item Type\",\n        \"position\": {\n          \"row\": 1,\n          \"column\": 5\n        },\n        \"size\": {\n          \"rowSpan\": 2,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$All workitems$\\\",\\\"title\\\":\\\"All workitems by Work Item Type\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$All workitems$\\\",\\\"groupBy\\\":\\\"System.WorkItemType\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"All workitems by Work Item Type\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 3,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"isNameConfigurable\": true,\n        \"lightboxOptions\": {\n          \"width\": 900,\n          \"height\": 700,\n          \"resizable\": true\n        }\n      },\n        {\n            \"name\": \"Closed Epic\",\n            \"position\": {\n                \"row\": 1,\n                \"column\": 4\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#db552c\\\",\\\"queryId\\\":\\\"$Closed Epic$\\\",\\\"queryName\\\":\\\"Closed Epic\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Closed Epic\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"All Stories by State\",\n        \"position\": {\n          \"row\": 1,\n          \"column\": 7\n        },\n        \"size\": {\n          \"rowSpan\": 2,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$All Stories$\\\",\\\"title\\\":\\\"All Stories by State\\\",\\\"chartType\\\":\\\"ColumnChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$All Stories$\\\",\\\"groupBy\\\":\\\"System.State\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"All Stories by State\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 3,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"isNameConfigurable\": true,\n        \"lightboxOptions\": {\n          \"width\": 900,\n          \"height\": 700,\n          \"resizable\": true\n        }\n      },\n        {\n            \"name\": \"User Stories\",\n            \"position\": {\n                \"row\": 3,\n                \"column\": 1\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#009ccc\\\",\\\"queryId\\\":\\\"$User Stories$\\\",\\\"queryName\\\":\\\"User Stories\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"User Stories\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n      {\n        \"name\": \"Bugs By Severity by Severity\",\n        \"position\": {\n          \"row\": 5,\n          \"column\": 7\n        },\n        \"size\": {\n          \"rowSpan\": 2,\n          \"columnSpan\": 2\n        },\n        \"settings\": \"{\\\"scope\\\":\\\"WorkitemTracking.Queries\\\",\\\"groupKey\\\":\\\"$Bugs By Severity$\\\",\\\"title\\\":\\\"Bugs By Severity by Severity\\\",\\\"chartType\\\":\\\"PieChart\\\",\\\"transformOptions\\\":{\\\"filter\\\":\\\"$Bugs By Severity$\\\",\\\"groupBy\\\":\\\"Microsoft.VSTS.Common.Severity\\\",\\\"orderBy\\\":{\\\"direction\\\":\\\"descending\\\",\\\"propertyName\\\":\\\"value\\\"},\\\"measure\\\":{\\\"aggregation\\\":\\\"count\\\",\\\"propertyName\\\":\\\"\\\"},\\\"historyRange\\\":null,\\\"groupByTags\\\":false},\\\"userColors\\\":[],\\\"lastArtifactName\\\":\\\"Bugs By Severity by Severity\\\"}\",\n        \"settingsVersion\": {\n          \"major\": 3,\n          \"minor\": 0,\n          \"patch\": 0\n        },\n        \"artifactId\": \"\",\n        \"isEnabled\": true,\n        \"contentUri\": null,\n        \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget\",\n        \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.WitChartWidget.Configuration\",\n        \"isNameConfigurable\": true,\n        \"lightboxOptions\": {\n          \"width\": 900,\n          \"height\": 700,\n          \"resizable\": true\n        }\n      },\n        {\n            \"name\": \"Active Feature\",\n            \"position\": {\n                \"row\": 2,\n                \"column\": 3\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#339947\\\",\\\"queryId\\\":\\\"$Active Feature$\\\",\\\"queryName\\\":\\\"Active Feature\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"Active Feature\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        },\n        {\n            \"name\": \"New Bugs\",\n            \"position\": {\n                \"row\": 5,\n                \"column\": 2\n            },\n            \"size\": {\n                \"rowSpan\": 1,\n                \"columnSpan\": 1\n            },\n            \"settings\": \"{\\\"defaultBackgroundColor\\\":\\\"#db552c\\\",\\\"queryId\\\":\\\"$New Bugs$\\\",\\\"queryName\\\":\\\"New Bugs\\\",\\\"colorRules\\\":[],\\\"lastArtifactName\\\":\\\"New Bugs\\\"}\",\n            \"settingsVersion\": {\n                \"major\": 1,\n                \"minor\": 0,\n                \"patch\": 0\n            },\n            \"artifactId\": \"\",\n            \"isEnabled\": true,\n            \"contentUri\": null,\n            \"contributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"typeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget\",\n            \"configurationContributionId\": \"ms.vss-dashboards-web.Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"configurationContributionRelativeId\": \"Microsoft.VisualStudioOnline.Dashboards.QueryScalarWidget.Configuration\",\n            \"isNameConfigurable\": true\n        }\n    ],\n    \"dashboardScope\": \"project\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Bugs.json",
    "content": "{\n  \"name\": \"Active Bugs\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Epic.json",
    "content": "{\n  \"name\": \"Active Epic\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Feature.json",
    "content": "{\n  \"name\": \"Active Feature\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Stories.json",
    "content": "{\n  \"name\": \"Active Stories\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Active Tasks.json",
    "content": "{\n  \"name\": \"Active Tasks\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Bugs.json",
    "content": "{\n  \"name\": \"All Bugs\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Epics.json",
    "content": "{\n  \"name\": \"All Epics\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Features.json",
    "content": "{\n  \"name\": \"All Features\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Stories.json",
    "content": "{\n  \"name\": \"All Stories\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/All Tasks.json",
    "content": "{\n  \"name\": \"All Tasks\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/All User Stories.json",
    "content": "{\n  \"name\": \"All User Stories\",\n  \"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.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/All workitems.json",
    "content": "{\n  \"name\": \"All workitems\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/AllWorkofAppdevTeam.json",
    "content": "{\n  \"name\": \"AllWorkofAppdevTeam\",\n  \"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] <> '' and [System.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/AppDevTeam Tasks.json",
    "content": "{\n  \"name\": \"AppDevTeam Tasks\",\n  \"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$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/AppDevelopmentTeam Bugs.json",
    "content": "{\n  \"name\": \"AppDevelopmentTeam Bugs\",\n  \"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] <> '' and [System.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Assigned to me.json",
    "content": "{\n  \"name\": \"Assigned to me\",\n  \"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\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Bugs By Priority.json",
    "content": "{\n  \"name\": \"Bugs By Priority\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [Microsoft.VSTS.Common.Priority] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Bug' and [Microsoft.VSTS.Common.Priority] <> '' and [System.State] <> 'Closed'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Bugs By Severity.json",
    "content": "{\n  \"name\": \"Bugs By Severity\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.AssignedTo], [System.State], [Microsoft.VSTS.Common.Severity] from WorkItems where [System.TeamProject] = @project and [System.WorkItemType] = 'Bug' and [Microsoft.VSTS.Common.Severity] <> '' and [System.State] <> 'Closed'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Bugs.json",
    "content": "{\n  \"name\": \"Closed Bugs\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Epic.json",
    "content": "{\n  \"name\": \"Closed Epic\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Feature.json",
    "content": "{\n  \"name\": \"Closed Feature\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Stories.json",
    "content": "{\n  \"name\": \"Closed Stories\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Closed Tasks.json",
    "content": "{\n  \"name\": \"Closed Tasks\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/DBATeam-All work.json",
    "content": "{\n  \"name\": \"DBATeam-All work\",\n  \"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] <> '' and [System.AreaPath] = '$projectId$\\\\DBA Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Epics.json",
    "content": "{\n  \"name\": \"Epics\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Features.json",
    "content": "{\n  \"name\": \"Features\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Followed work items.json",
    "content": "{\n  \"name\": \"Followed work items\",\n  \"wiql\": \"select [System.Id], [System.WorkItemType], [System.Title], [System.State], [System.AreaPath], [System.IterationPath] from WorkItems where [System.Id] in (@Follows)\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Bugs.json",
    "content": "{\n  \"name\": \"New Bugs\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Epic.json",
    "content": "{\n  \"name\": \"New Epic\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Feature.json",
    "content": "{\n  \"name\": \"New Feature\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Stories.json",
    "content": "{\n  \"name\": \"New Stories\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/New Tasks.json",
    "content": "{\n  \"name\": \"New Tasks\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Resolved Bugs.json",
    "content": "{\n  \"name\": \"Resolved Bugs\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Tasks.json",
    "content": "{\n  \"name\": \"Tasks\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/Test Cases.json",
    "content": "{\n  \"name\": \"Test Cases\",\n  \"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'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/TestcaseinDesignState.json",
    "content": "{\n  \"name\": \"TestcaseinDesignState\",\n  \"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] <> '' and [System.AreaPath] = '$projectId$\\\\App Development Team'\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Dashboard/Queries/User Stories.json",
    "content": "{\n  \"name\": \"User Stories\",\n  \"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] <> ''\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/DeliveryPlans/App-DB features.json",
    "content": "{\n  \"name\": \"Application-DB Team features\",\n  \"type\": \"deliveryTimelineView\",\n  \"properties\": {\n    \"teamBacklogMappings\": [\n      {\n        \"teamId\": \"$App Development Team$\",\n        \"categoryReferenceName\": \"Microsoft.FeatureCategory\"\n      },\n      {\n        \"teamId\": \"$DBA Team$\",\n        \"categoryReferenceName\": \"Microsoft.FeatureCategory\"\n      }\n    ],\n    \"criteria\": null,\n    \"cardSettings\": {\n      \"fields\": {\n        \"showId\": false,\n        \"showAssignedTo\": true,\n        \"assignedToDisplayFormat\": \"avatarAndFullName\",\n        \"showState\": true,\n        \"showTags\": true,\n        \"showParent\": false,\n        \"showEmptyFields\": false,\n        \"showChildRollup\": false,\n        \"additionalFields\": null,\n        \"coreFields\": [\n          {\n            \"referenceName\": \"System.AssignedTo\",\n            \"displayName\": \"Assigned To\",\n            \"fieldType\": \"string\",\n            \"isIdentity\": true\n          },\n          {\n            \"referenceName\": \"System.State\",\n            \"displayName\": \"State\",\n            \"fieldType\": \"string\",\n            \"isIdentity\": false\n          },\n          {\n            \"referenceName\": \"System.Tags\",\n            \"displayName\": \"Tags\",\n            \"fieldType\": \"plainText\",\n            \"isIdentity\": false\n          }\n        ]\n      }\n    },\n    \"markers\": null,\n    \"styleSettings\": [],\n    \"tagStyleSettings\": []\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/DeliveryPlans/DevelopmentPlan.json",
    "content": "{\n  \"name\": \"DevelopmentPlan\",\n  \"type\": \"deliveryTimelineView\",\n  \"properties\": {\n    \"teamBacklogMappings\": [\n      {\n        \"teamId\": \"$App Development Team$\",\n        \"categoryReferenceName\": \"Microsoft.RequirementCategory\"\n      },\n      {\n        \"teamId\": \"$DBA Team$\",\n        \"categoryReferenceName\": \"Microsoft.RequirementCategory\"\n      }\n    ],\n    \"criteria\": null,\n    \"cardSettings\": {\n      \"fields\": {\n        \"showId\": false,\n        \"showAssignedTo\": true,\n        \"assignedToDisplayFormat\": \"avatarOnly\",\n        \"showState\": true,\n        \"showTags\": true,\n        \"showParent\": false,\n        \"showEmptyFields\": false,\n        \"showChildRollup\": false,\n        \"additionalFields\": null,\n        \"coreFields\": [\n          {\n            \"referenceName\": \"System.AssignedTo\",\n            \"displayName\": \"Assigned To\",\n            \"fieldType\": \"string\",\n            \"isIdentity\": true\n          },\n          {\n            \"referenceName\": \"System.State\",\n            \"displayName\": \"State\",\n            \"fieldType\": \"string\",\n            \"isIdentity\": false\n          },\n          {\n            \"referenceName\": \"System.Tags\",\n            \"displayName\": \"Tags\",\n            \"fieldType\": \"plainText\",\n            \"isIdentity\": false\n          }\n        ]\n      }\n    },\n    \"markers\": [\n      {\n        \"date\": \"2023-08-20T00:00:00Z\",\n        \"label\": \"Client Presentation\",\n        \"color\": \"#51399F\"\n      }\n    ],\n    \"styleSettings\": [],\n    \"tagStyleSettings\": []\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/ImportSourceCode/eShopOnWeb.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/vstsdemodata/eShopOnWeb/_git/eShopOnWeb\"\n    },\n    \"serviceEndpointId\": \"$eShopOnWeb-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Iteration 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Iteration 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"eShoponweb\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/ProjectSettings.json",
    "content": "{\n  \"type\": \"Agile\",\n  \"id\": \"adcc42ab-9882-485e-a3ed-7678f01f66bc\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/ServiceEndpoints/eShoponweb-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"eShopOnWeb-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/vstsdemodata/eShopOnWeb/_git/eShopOnWeb\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/App Development Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/App Development Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"0137a60b-1ed1-4edd-ba10-c37cf83927d2\",\n        \"name\": \"High Scope\"\n      },\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/App Development Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"false\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/App Development Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"fill\": [\n        {\n          \"name\": \"Active\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[System.State] = 'Active'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"System.State\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"Active\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#c5d6fd\",\n            \"title-color\": \"#000000\"\n          }\n        },\n        {\n          \"name\": \"Closed\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[System.State] = 'Closed'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"System.State\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"Closed\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#aed7a8\",\n            \"title-color\": \"#000000\"\n          }\n        },\n        {\n          \"name\": \"performance\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[System.Title] contains 'performance'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"System.Title\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"CONTAINS\",\n              \"value\": \"performance\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#ffe660\",\n            \"title-color\": \"#000000\"\n          }\n        },\n        {\n          \"name\": \"High Priority\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[Microsoft.VSTS.Common.Priority] = '1'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"Microsoft.VSTS.Common.Priority\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"1\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#ffba69\",\n            \"title-color\": \"#000000\"\n          }\n        }\n      ],\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/App Development Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/DBA Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/DBA Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"544a79f7-f804-48fd-8650-4e5ad7aed0b7\",\n        \"name\": \"Data Patches\"\n      },\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/DBA Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Common.Priority\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"false\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/DBA Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"fill\": [\n        {\n          \"name\": \"High Priority\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[Microsoft.VSTS.Common.Priority] = '1'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"Microsoft.VSTS.Common.Priority\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"1\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#ffba69\",\n            \"title-color\": \"#000000\"\n          }\n        }\n      ],\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/DBA Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"7f1602f9-8a59-485c-a7b2-1b488be95ae8\",\n    \"name\": \"App Development Team\",\n    \"description\": \"\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"c8819c40-cb0c-4dcc-a000-a5a88685d3e4\",\n    \"name\": \"eShopOnWeb Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"6c5f3fe6-0e93-4245-83b6-5b9a90447bda\",\n    \"name\": \"DBA Team\",\n    \"description\": \"\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/eShoponweb Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Active\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Active\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Resolved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"User Story\": \"Resolved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Closed\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"User Story\": \"Closed\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/eShoponweb Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Stories\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/eShoponweb Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"User Story\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.StoryPoints\"\n        }\n      ]\n    },\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/eShoponweb Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"fill\": [\n        {\n          \"name\": \"closed\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[System.State] = 'Closed'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"System.State\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"Closed\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#aed7a8\",\n            \"title-color\": \"#000000\"\n          }\n        },\n        {\n          \"name\": \"Priority\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[Microsoft.VSTS.Common.Priority] = '1'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"Microsoft.VSTS.Common.Priority\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"1\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#ffba69\",\n            \"title-color\": \"#000000\"\n          }\n        },\n        {\n          \"name\": \"Active\",\n          \"isEnabled\": \"True\",\n          \"filter\": \"[System.State] = 'Active'\",\n          \"clauses\": [\n            {\n              \"fieldName\": \"System.State\",\n              \"index\": 1,\n              \"logicalOperator\": \"\",\n              \"operator\": \"=\",\n              \"value\": \"Active\"\n            }\n          ],\n          \"settings\": {\n            \"background-color\": \"#b1c8f7\",\n            \"title-color\": \"#000000\"\n          }\n        }\n      ],\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Stories\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/eShoponweb Team/IncludeSubAreas.json",
    "content": "{\n  \"defaultValue\": \"eshop-demo2\",\n  \"values\": [\n    {\n      \"value\": \"eshop-demo2\",\n      \"includeChildren\": false\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/Teams/eShoponweb Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asTasks\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": true,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/TestPlans/TestPlan.json",
    "content": "{\n  \"name\": \"$project$_TestPlan1\",\n  \"iteration\": \"$project$\\\\Iteration 2\"\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/TestPlans/TestSuites/TestPlan.json",
    "content": "{\n  \"value\": [\n    {\n      \"name\": \"$5312$ : Login and new user registraion to the eShopOnWeb portal using email id and password.\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [ \"$5312$\" ],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"4566\", \"4572\", \"4579\" ]\n    },\n    {\n      \"name\": \"$5319$ : Change the background color of the [ADD TO BASKET] button.\",\n      \"plan\": {\n        \"id\": \"$planID$\",\n        \"name\": \"$planName$\"\n      },\n      \"requirementIds\": [ \"$5319$\" ],\n      \"revision\": 1,\n      \"suiteType\": \"RequirementTestSuite\",\n      \"inheritDefaultConfigurations\": true,\n      \"TestCases\": [ \"5322\" ]\n    }\n  ],\n  \"count\": 1\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/WorkItems/Bug.json",
    "content": "{\n  \"count\": 9,\n  \"value\": [\n    {\n      \"id\": 4886,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Fixed\",\n        \"System.CreatedDate\": \"2023-07-10T10:54:39.203Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T13:12:51.64Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Failed to capture the credit card payment details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4602\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4886\"\n    },\n    {\n      \"id\": 4888,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Fixed\",\n        \"System.CreatedDate\": \"2023-07-10T10:56:17.827Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T13:12:51.64Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Items are removed automatically when the new item added to the wishlist\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4888\"\n    },\n    {\n      \"id\": 4891,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Approved\",\n        \"System.CreatedDate\": \"2023-07-10T10:57:49.82Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T13:12:31.023Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Pages are taking long time to load in peak time \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 16.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4891\"\n    },\n    {\n      \"id\": 4892,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Fixed\",\n        \"System.CreatedDate\": \"2023-07-10T10:58:06.32Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:57:07.45Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Images are not displaying properly\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 19.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4892\"\n    },\n    {\n      \"id\": 5291,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"eShoponweb\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"eShoponweb\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-22T10:59:32.16Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-22T10:59:33.24Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Admin account not authenticated\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5283\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///TestManagement/TcmResultAttachment/1000381.100000.1000214\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-22T10:59:33.24Z\",\n            \"id\": \"14684520\",\n            \"resourceCreatedDate\": \"2023-07-22T10:59:33.24Z\",\n            \"resourceModifiedDate\": \"2023-07-22T10:59:33.24Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Result Attachment\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///TestManagement/TcmResult/1000381.100000\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-22T10:59:32.16Z\",\n            \"id\": \"14684518\",\n            \"resourceCreatedDate\": \"2023-07-22T10:59:32.16Z\",\n            \"resourceModifiedDate\": \"2023-07-22T10:59:32.16Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Test Result\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///TestManagement/TcmResultAttachment/1000381.100000.1000213\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-22T10:59:32.16Z\",\n            \"id\": \"14684519\",\n            \"resourceCreatedDate\": \"2023-07-22T10:59:32.16Z\",\n            \"resourceModifiedDate\": \"2023-07-22T10:59:32.16Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"comment\": \"Admin account not authenticating.png\",\n            \"name\": \"Result Attachment\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5291\"\n    },\n    {\n      \"id\": 5293,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"eShoponweb\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Verified\",\n        \"System.CreatedDate\": \"2023-07-26T11:28:29.413Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:57:45.513Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Build 20230719.1 failed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Microsoft.VisualStudio.Services.TFS <00000002-0000-8888-8000-000000000000@2c895908-04e0-4952-89fd-54b0046d6288>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5293\"\n    },\n    {\n      \"id\": 5299,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"eShoponweb\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Verified\",\n        \"System.CreatedDate\": \"2023-07-27T11:28:29.183Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:57:44.203Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Build 20230720.1 failed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5299\"\n    },\n    {\n      \"id\": 5305,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"eShoponweb\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Build Failure\",\n        \"System.CreatedDate\": \"2023-07-28T11:28:28.53Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T11:28:28.53Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Build 20230721.1 failed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Microsoft.VisualStudio.Services.TFS <00000002-0000-8888-8000-000000000000@2c895908-04e0-4952-89fd-54b0046d6288>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Build/Build/1287\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-28T11:28:28.53Z\",\n            \"id\": \"14755046\",\n            \"resourceCreatedDate\": \"2023-07-28T11:28:28.53Z\",\n            \"resourceModifiedDate\": \"2023-07-28T11:28:28.53Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Found in build\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5305\"\n    },\n    {\n      \"id\": 5306,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"eShoponweb\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Bug\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Build Failure\",\n        \"System.CreatedDate\": \"2023-07-31T05:27:24.98Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-31T05:27:24.98Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Build 20230724.1 failed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Microsoft.VisualStudio.Services.TFS <00000002-0000-8888-8000-000000000000@2c895908-04e0-4952-89fd-54b0046d6288>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Build/Build/1295\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-31T05:27:24.98Z\",\n            \"id\": \"14767418\",\n            \"resourceCreatedDate\": \"2023-07-31T05:27:24.98Z\",\n            \"resourceModifiedDate\": \"2023-07-31T05:27:24.98Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Found in build\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5306\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/WorkItems/Epic.json",
    "content": "{\n  \"count\": 14,\n  \"value\": [\n    {\n      \"id\": 4493,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T11:41:05.58Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Modernize $ProjectName$ Frontend\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><ul><li>Updating in GUI </li><li>Changes in Themes </li> </ul> </div>\",\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4503\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4505\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4493\"\n    },\n    {\n      \"id\": 4494,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:38:27.937Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add Product Recommendations\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4864\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4851\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4494\"\n    },\n    {\n      \"id\": 4495,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:49:21.73Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Enhance Order Management Functionality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4504\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4495\"\n    },\n    {\n      \"id\": 4496,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Improve Performance and Scalability\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4586\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4496\"\n    },\n    {\n      \"id\": 4498,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:50:11.483Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Improve Search Functionality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5297\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4502\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4498\"\n    },\n    {\n      \"id\": 4499,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:39:06.59Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Internationalization and Localization Support\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4501\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5300\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4499\"\n    },\n    {\n      \"id\": 4500,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Performance Optimization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4588\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4492\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4500\"\n    },\n    {\n      \"id\": 4600,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T10:06:22.373Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:48:05.173Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Payment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4601\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4600\"\n    },\n    {\n      \"id\": 4853,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-07-10T08:57:03.567Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Database Migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4861\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4853\"\n    },\n    {\n      \"id\": 4854,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T08:57:19.923Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:50:20.637Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Database Performance Optimization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4862\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4854\"\n    },\n    {\n      \"id\": 4855,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T08:57:30.24Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:25:41.21Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Database Backup and Recovery\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4867\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4855\"\n    },\n    {\n      \"id\": 4856,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-07-10T08:57:39.21Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Database Security and Compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4871\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4856\"\n    },\n    {\n      \"id\": 4857,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T08:58:36.577Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:25:29.057Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Database Schema Versioning and Deployment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4857\"\n    },\n    {\n      \"id\": 4902,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2023-07-17T09:27:09.79Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T12:19:46.44Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Product Training\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4902\"\n    },\n    {\n      \"id\": 5310,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"eShoponweb\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Epic\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-08-03T10:38:06.74Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-08-03T10:38:49.817Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Login and Registration functionality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5311\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5310\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/WorkItems/Feature.json",
    "content": "{\n  \"count\": 21,\n  \"value\": [\n    {\n      \"id\": 4492,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T11:57:25.587Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"manage product inventory efficiently\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4500\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4492\"\n    },\n    {\n      \"id\": 4501,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:37:02.337Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add Social Login Integration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4499\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4503\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4846\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4501\"\n    },\n    {\n      \"id\": 4502,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Implement Advanced Search Functionality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4498\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4845\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4502\"\n    },\n    {\n      \"id\": 4503,\n      \"rev\": 11,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Stories complete\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Social Media Sharing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4501\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4587\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4493\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4503\"\n    },\n    {\n      \"id\": 4504,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:48:58.837Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Order Tracking and Shipment Status\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4495\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4509\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4504\"\n    },\n    {\n      \"id\": 4505,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Acceptance tests fail\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Wishlist Management\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4493\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4505\"\n    },\n    {\n      \"id\": 4586,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T13:26:55.347Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T13:26:55.347Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Collecting the feedback\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4508\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4496\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4586\"\n    },\n    {\n      \"id\": 4588,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T14:37:22.783Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T14:37:22.783Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Identifying and enhancing the sources of application performance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4500\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4588\"\n    },\n    {\n      \"id\": 4601,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T10:09:08.143Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Integration with all popular payment methods\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4603\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4600\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4604\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4602\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4601\"\n    },\n    {\n      \"id\": 4851,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-07-10T08:43:44.143Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Gathering enhanced data regarding users latest search\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4494\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4852\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4851\"\n    },\n    {\n      \"id\": 4861,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-07-10T09:54:00.797Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"planning, executing, and verifying the migration process\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4859\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4858\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4853\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4860\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4861\"\n    },\n    {\n      \"id\": 4862,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T09:58:44.353Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Resolving bottlenecks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4854\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4863\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4862\"\n    },\n    {\n      \"id\": 4864,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:06:18.64Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:16:12.207Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Optimizing queries and Enhancing indexing strategies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4866\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4865\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4494\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4864\"\n    },\n    {\n      \"id\": 4867,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:19:13.937Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Data Integrity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4855\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4869\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4870\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4868\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4867\"\n    },\n    {\n      \"id\": 4871,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-07-10T10:24:34.047Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Following regulatory standards for the database system\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4872\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4873\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4874\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4856\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4871\"\n    },\n    {\n      \"id\": 4875,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:35:01.693Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.577Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Handling the DB deployment in a controlled manner\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4878\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4876\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4877\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4857\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4879\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4875\"\n    },\n    {\n      \"id\": 4903,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2023-07-17T10:35:25.09Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T12:19:39.847Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Training dashboard\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5092\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5094\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4902\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5093\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4903\"\n    },\n    {\n      \"id\": 5294,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-27T07:19:13.213Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:21:28.163Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Enhance the search functionality - show related products based on history\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5296\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5295\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4498\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5294\"\n    },\n    {\n      \"id\": 5297,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-27T07:22:36.937Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:22:36.937Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Design search box\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4498\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5298\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5297\"\n    },\n    {\n      \"id\": 5300,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-28T09:35:56.06Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:36:32.007Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Store the login details in encrypted format\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5301\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4499\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5302\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5303\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5300\"\n    },\n    {\n      \"id\": 5311,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-08-03T10:38:33.777Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-08-03T10:38:42.343Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Login and Registration functionality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5313\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5310\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5312\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5311\"\n    },\n    {\n      \"id\": 5318,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.Id\": 5318,\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.NodeName\": \"$ProjectName$\",\n        \"System.AreaLevel1\": \"$ProjectName$\",\n        \"System.AuthorizedDate\": \"2023-08-04T04:36:10.42Z\",\n        \"System.RevisedDate\": \"9999-01-01T00:00:00Z\",\n        \"System.IterationPath\": \"eShoponweb\",\n        \"System.IterationLevel1\": \"eShoponweb\",\n        \"System.WorkItemType\": \"Feature\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-08-04T04:36:10.42Z\",\n        \"System.PersonId\": 93368033,\n        \"System.Watermark\": 7292,\n        \"System.CommentCount\": 0,\n        \"System.Title\": \"User interface changes\",\n        \"System.BoardColumn\": \"New\",\n        \"System.BoardColumnDone\": false,\n        \"Microsoft.VSTS.Common.StateChangeDate\": \"2023-08-04T04:36:10.42Z\",\n        \"Microsoft.VSTS.Common.Priority\": 2,\n        \"Microsoft.VSTS.Common.ValueArea\": \"Business\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/30007311-34b8-4487-bb97-ec54d3a7171a/_apis/wit/workItems/5321\",\n          \"attributes\": {\n            \"isLocked\": false,\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/30007311-34b8-4487-bb97-ec54d3a7171a/_apis/wit/workItems/5319\",\n          \"attributes\": {\n            \"isLocked\": false,\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/30007311-34b8-4487-bb97-ec54d3a7171a/_apis/wit/workItems/4494\",\n          \"attributes\": {\n            \"isLocked\": false,\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/30007311-34b8-4487-bb97-ec54d3a7171a/_apis/wit/workItems/5320\",\n          \"attributes\": {\n            \"isLocked\": false,\n            \"name\": \"Child\"\n          }\n        }\n      ]\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/WorkItems/Shared Steps.json",
    "content": "{\n  \"count\": 1,\n  \"value\": [\n    {\n      \"id\": 5292,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Shared Steps\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-22T12:04:14.21Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-22T12:04:14.21Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Navigating to .NET Tshirt\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;open project site&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Click on Brands drop-down&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Choose .Net&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Click on TYPE drop-down&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.TestCase.SharedStepReferencedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5283\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Test Case\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5292\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/WorkItems/Task.json",
    "content": "{\n  \"count\": 82,\n  \"value\": [\n    {\n      \"id\": 4510,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement an admin dashboard to manage and track orders.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4510\"\n    },\n    {\n      \"id\": 4511,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Enable order status updates, such as \\\"Processing,\\\" \\\"Shipped,\\\" and \\\"Delivered.\\\"\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4511\"\n    },\n    {\n      \"id\": 4512,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Integrate with a shipping provider to generate shipping labels and track shipments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4512\"\n    },\n    {\n      \"id\": 4513,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement order cancellation and refund functionality.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 6,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4513\"\n    },\n    {\n      \"id\": 4514,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Generate order reports for analysis and decision-making.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4514\"\n    },\n    {\n      \"id\": 4515,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-10T05:48:08.103Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Research and select suitable social login providers (e.g., Facebook, Google, Twitter).\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4587\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4515\"\n    },\n    {\n      \"id\": 4516,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Integrate the chosen social login provider's API into the application.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4516\"\n    },\n    {\n      \"id\": 4517,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-10T05:48:08.54Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Enable users to link their social media accounts with their existing $ProjectName$ accounts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 6,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4587\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4517\"\n    },\n    {\n      \"id\": 4518,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Update the authentication flow to support social login alongside traditional methods.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4518\"\n    },\n    {\n      \"id\": 4519,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Test and verify the functionality across different social login platforms.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 6,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4519\"\n    },\n    {\n      \"id\": 4520,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Conduct a performance analysis to identify bottlenecks and areas for improvement\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4520\"\n    },\n    {\n      \"id\": 4521,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-10T05:41:58.3Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Optimize database queries and indexing for faster data retrieval.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4521\"\n    },\n    {\n      \"id\": 4522,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-10T05:42:06.25Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Implement caching mechanisms to reduce the load on the server.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4522\"\n    },\n    {\n      \"id\": 4523,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Evaluate and implement horizontal scaling solutions, such as load balancing and auto-scaling.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4523\"\n    },\n    {\n      \"id\": 4524,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Conduct load testing to ensure the application can handle peak traffic efficiently.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4524\"\n    },\n    {\n      \"id\": 4525,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Upgrade the search engine to a more robust and feature-rich solution (e.g., Elasticsearch).\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4525\"\n    },\n    {\n      \"id\": 4526,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement full-text search capabilities to search product names, descriptions, and attributes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4526\"\n    },\n    {\n      \"id\": 4527,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Enable filtering and faceted search options for refining search results.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4527\"\n    },\n    {\n      \"id\": 4528,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement search suggestions and auto-complete functionality.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4528\"\n    },\n    {\n      \"id\": 4529,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Validate search accuracy and relevance through comprehensive testing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4529\"\n    },\n    {\n      \"id\": 4530,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Integrate a robust search engine or service.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4530\"\n    },\n    {\n      \"id\": 4531,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement autocomplete suggestions as users type in the search bar\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4531\"\n    },\n    {\n      \"id\": 4532,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Optimize search queries for faster response times.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4532\"\n    },\n    {\n      \"id\": 4533,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Include filters and sorting options to refine search results.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4533\"\n    },\n    {\n      \"id\": 4534,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Test and improve the relevance and accuracy of search results.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4534\"\n    },\n    {\n      \"id\": 4535,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Add social media sharing buttons to product detail pages.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4535\"\n    },\n    {\n      \"id\": 4536,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement APIs for sharing product information and images.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4536\"\n    },\n    {\n      \"id\": 4537,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Customize sharing messages and ensure they include relevant details.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4537\"\n    },\n    {\n      \"id\": 4538,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Validate that shared links open the correct product page on social media platforms.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4538\"\n    },\n    {\n      \"id\": 4539,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Track and analyze the effectiveness of social media shares.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4539\"\n    },\n    {\n      \"id\": 4540,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement two-factor authentication for user accounts.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4540\"\n    },\n    {\n      \"id\": 4541,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Enhance password security with requirements like minimum length and complexity.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4541\"\n    },\n    {\n      \"id\": 4542,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Add user account lockout functionality after multiple failed login attempts.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4542\"\n    },\n    {\n      \"id\": 4543,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Encrypt sensitive user data in the database.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4543\"\n    },\n    {\n      \"id\": 4544,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Conduct regular security audits and address any identified vulnerabilities.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4544\"\n    },\n    {\n      \"id\": 4545,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Integrate with a shipping provider or API to fetch shipment status updates.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4545\"\n    },\n    {\n      \"id\": 4546,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Display order tracking information on the user's order history page.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4546\"\n    },\n    {\n      \"id\": 4547,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:48:59.333Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Send email notifications to users when there are significant changes in the shipment status.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4547\"\n    },\n    {\n      \"id\": 4548,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:48:59.333Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Implement a user-friendly interface for tracking orders and understanding shipment progress.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4548\"\n    },\n    {\n      \"id\": 4549,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement language selection options for users.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4549\"\n    },\n    {\n      \"id\": 4550,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Translate application content and UI elements into different languages.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4550\"\n    },\n    {\n      \"id\": 4551,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Format currency and dates based on the user's selected region.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4551\"\n    },\n    {\n      \"id\": 4552,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Support different measurement units (e.g., metric vs. imperial).\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4552\"\n    },\n    {\n      \"id\": 4553,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Test and ensure proper functioning across different language and region settings.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4553\"\n    },\n    {\n      \"id\": 4554,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Enable users to create multiple wishlists and add products to them.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4554\"\n    },\n    {\n      \"id\": 4555,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-10T05:47:25.39Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Implement the ability to remove items from a wishlist.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4555\"\n    },\n    {\n      \"id\": 4556,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-10T05:47:25.837Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Share wishlists with others via email or social media.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4556\"\n    },\n    {\n      \"id\": 4557,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Allow users to set privacy settings for their wishlists (public, private, or shared with specific users).\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4557\"\n    },\n    {\n      \"id\": 4558,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-10T05:47:25.837Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Provide notifications when wishlist items go on sale or become available\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4558\"\n    },\n    {\n      \"id\": 4559,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Conduct a performance audit and identify bottlenecks.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4559\"\n    },\n    {\n      \"id\": 4560,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Implement caching mechanisms to reduce database and API calls.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4560\"\n    },\n    {\n      \"id\": 4561,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Optimize image loading and rendering.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4590\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4561\"\n    },\n    {\n      \"id\": 4562,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Minify and compress static assets (e.g., CSS, JavaScript).\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4562\"\n    },\n    {\n      \"id\": 4563,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Monitor and fine-tune application performance using tools and analytics.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4563\"\n    },\n    {\n      \"id\": 4723,\n      \"rev\": 18,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2023-06-30T11:12:06.5Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-06T09:12:57.773Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Update the Database password in appsettings.json\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div>New password is: Database@123.&nbsp; </div><div><ul><li>Create a new branch for this requirement </li><li>Update the password in appsettings.json in the created branch </li><li>Create the new build by using the created branch. </li> </ul> </div>\",\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4722\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/30007311-34b8-4487-bb97-ec54d3a7171a%2fab597fb4-b639-4c9f-a005-598748471c93%2f91a06cbe23662116073384c2546ecce38b6a4ab3\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-05T06:42:07.297Z\",\n            \"id\": \"14495015\",\n            \"resourceCreatedDate\": \"2023-07-05T06:42:07.297Z\",\n            \"resourceModifiedDate\": \"2023-07-05T06:42:07.297Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/30007311-34b8-4487-bb97-ec54d3a7171a%2Fab597fb4-b639-4c9f-a005-598748471c93%2Fd1ff975a32596e0219fa9afa37a9b2f4c5d996f4\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-03T04:46:39.21Z\",\n            \"id\": \"14485385\",\n            \"resourceCreatedDate\": \"2023-07-03T04:46:39.21Z\",\n            \"resourceModifiedDate\": \"2023-07-03T04:46:39.21Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/30007311-34b8-4487-bb97-ec54d3a7171a%2Fab597fb4-b639-4c9f-a005-598748471c93%2F78\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-03T10:29:29.223Z\",\n            \"id\": \"14486333\",\n            \"resourceCreatedDate\": \"2023-07-03T10:29:29.223Z\",\n            \"resourceModifiedDate\": \"2023-07-03T10:29:29.223Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Ref/30007311-34b8-4487-bb97-ec54d3a7171a%2Fab597fb4-b639-4c9f-a005-598748471c93%2FGBfeature\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-04T07:31:51.823Z\",\n            \"id\": \"14492095\",\n            \"resourceCreatedDate\": \"2023-07-04T07:31:51.823Z\",\n            \"resourceModifiedDate\": \"2023-07-04T07:31:51.823Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Branch\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4723\"\n    },\n    {\n      \"id\": 4724,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-30T12:54:52.04Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-30T12:54:52.04Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Store credit card in a separate table\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4599\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4724\"\n    },\n    {\n      \"id\": 4725,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-30T12:55:50.05Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-30T12:55:50.05Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Only last 4 digits should get displayed while fetching data\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4599\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4725\"\n    },\n    {\n      \"id\": 4847,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2023-07-10T05:44:34.317Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:36:48.73Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Login using MSA\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 3.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4846\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4847\"\n    },\n    {\n      \"id\": 4848,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T05:44:45.093Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:36:48.73Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Login using Google account\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 6.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4846\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4848\"\n    },\n    {\n      \"id\": 4849,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T05:44:54.657Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:36:48.73Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Login using Apple Id\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4846\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4849\"\n    },\n    {\n      \"id\": 4850,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2023-07-10T05:45:10.363Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:36:48.73Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Login using Linked In authentication\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4846\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4850\"\n    },\n    {\n      \"id\": 4880,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2023-07-10T10:52:18.04Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:48:59.333Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Tracking order status\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4880\"\n    },\n    {\n      \"id\": 4881,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2023-07-10T10:52:29.593Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:48:59.333Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Notify the customer through SMS\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4881\"\n    },\n    {\n      \"id\": 4882,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2023-07-10T10:52:38.857Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:48:59.333Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Notify the customer through email\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4882\"\n    },\n    {\n      \"id\": 4883,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:52:54.43Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-10T10:52:54.43Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Notify the customer when the price drop\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 6.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4883\"\n    },\n    {\n      \"id\": 4884,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2023-07-10T10:53:22.573Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:58:19.413Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Send notification to user when the wishlist updated\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4884\"\n    },\n    {\n      \"id\": 4885,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2023-07-10T10:53:49.34Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:56:33.77Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Extend the logic to move the items from wishlist to cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 13.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4885\"\n    },\n    {\n      \"id\": 4887,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2023-07-10T10:55:09.313Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:59:00.077Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Store the card details with valid encryption and decryption logic\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4602\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4887\"\n    },\n    {\n      \"id\": 4889,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2023-07-10T10:57:02.677Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-21T12:42:37.03Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Prepare a dashboard to showcase the inventory details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 25.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4889\"\n    },\n    {\n      \"id\": 4890,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2023-07-10T10:57:21.707Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:57:56.047Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Provide an option to add the items to inventory through barcode scanning\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 5.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4890\"\n    },\n    {\n      \"id\": 4893,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2023-07-10T10:58:24.8Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:58:00.543Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Capture the details upon the payment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 6.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4604\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4893\"\n    },\n    {\n      \"id\": 4894,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2023-07-10T10:59:08.143Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:59:12.937Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Post purchase- prompt the user to submit the product review\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 7.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4508\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4894\"\n    },\n    {\n      \"id\": 4895,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:59:41.53Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:57:20.73Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Send an email to submit review on the product\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 16.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4508\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4895\"\n    },\n    {\n      \"id\": 4896,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2023-07-10T10:59:56.867Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:59:14.17Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Promote the debit card payment with offers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4603\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4896\"\n    },\n    {\n      \"id\": 4897,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T11:00:40.553Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:57:30.553Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Based on the type of the card, offer should be differed. \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4603\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4897\"\n    },\n    {\n      \"id\": 4898,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2023-07-10T11:01:32.373Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:59:15.46Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Allow customer to order the product without login\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 4.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4509\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4898\"\n    },\n    {\n      \"id\": 4899,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T11:02:05.6Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:57:34.24Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Make the delivery address mandatory before checkout\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4509\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4899\"\n    },\n    {\n      \"id\": 4900,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Work started\",\n        \"System.CreatedDate\": \"2023-07-10T11:02:55.22Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:57:39.143Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Analyze the user behavior with the application\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 8.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4589\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4900\"\n    },\n    {\n      \"id\": 4901,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2023-07-10T11:03:43.59Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-17T04:59:19.487Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Integrate with social media platforms to share about the product\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 2.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4587\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4901\"\n    },\n    {\n      \"id\": 5095,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2023-07-18T08:23:00.73Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T12:19:23.533Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add page for most recent tutorials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5092\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5095\"\n    },\n    {\n      \"id\": 5096,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2023-07-18T08:29:23.923Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:59:21.457Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Optimize data query for most recent tutorials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 16.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5092\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5096\"\n    },\n    {\n      \"id\": 5304,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"Task\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-28T09:58:46.323Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:58:52.457Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Store notification and alert\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 17.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4605\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5304\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/WorkItems/Test Case.json",
    "content": "{\n  \"count\": 22,\n  \"value\": [\n    {\n      \"id\": 4566,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"User Registration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to the registration page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter valid user details (name, email, password, etc.).</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Submit the registration form.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the user is successfully registered and redirected to the login page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4566\"\n    },\n    {\n      \"id\": 4567,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Product Search\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter a search term in the search bar.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click the search button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the search results page is displayed.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check if the displayed products match the search criteria.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4567\"\n    },\n    {\n      \"id\": 4568,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Add Product to Cart\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Browse to a product detail page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click the \\\"Add to Cart\\\" button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to the shopping cart page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the added product is displayed in the cart.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4568\"\n    },\n    {\n      \"id\": 4569,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Update Cart Quantity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Add multiple products to the cart.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the shopping cart page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Update the quantity of a product.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the cart total is updated accordingly.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4569\"\n    },\n    {\n      \"id\": 4570,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Checkout Process\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Add products to the cart.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the checkout page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter valid shipping and payment details.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Complete the checkout process.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the order confirmation page is displayed.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4570\"\n    },\n    {\n      \"id\": 4571,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-28T06:21:29.417Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Social Media Sharing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to a product detail page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on a social media sharing button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the social media sharing dialog or page opens.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check if the shared content includes the correct product information and link.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4571\"\n    },\n    {\n      \"id\": 4572,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"User Account Login\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the login page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter valid login credentials (email and password).</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click the login button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the user is successfully logged in and redirected to the home page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4572\"\n    },\n    {\n      \"id\": 4573,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Order Tracking\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log in to the user account.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the order history page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select an order to track.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the order details and shipment status are displayed accurately.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4573\"\n    },\n    {\n      \"id\": 4574,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Wishlist Creation\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log in to the user account.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to a product detail page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on the &amp;quot;Add to Wishlist&amp;quot; button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the product is added to the user&amp;#39;s wishlist.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4574\"\n    },\n    {\n      \"id\": 4575,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Wishlist Sharing\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log in to the user account.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the wishlist page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select a wishlist to share.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on the share button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the sharing options (email, social media) are available.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4575\"\n    },\n    {\n      \"id\": 4576,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-28T06:21:34.85Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Review Submission\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log in to the user account.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Navigate to a product detail page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter a review rating and comment.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Submit the review form.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the review is displayed on the product page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4576\"\n    },\n    {\n      \"id\": 4577,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Password Reset\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"6\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the password reset page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter a valid email address associated with an existing account.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click the reset password button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check the email inbox for a password reset link.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"6\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the password reset process is successful.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4577\"\n    },\n    {\n      \"id\": 4578,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-28T06:21:24.07Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Order History\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Log in to the user account.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the order history page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the user&amp;#39;s previous orders are displayed.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check if the order details (products, quantities, prices) are accurate.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4578\"\n    },\n    {\n      \"id\": 4579,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Invalid Login Attempt\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"5\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to the login page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter an invalid email or password.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Click the login button.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"5\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that an error message is displayed indicating the invalid credentials.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4579\"\n    },\n    {\n      \"id\": 4580,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-28T06:21:18.393Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Low Stock Notification\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Add a product to the cart.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that a low stock notification is displayed if the product quantity is limited.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check if the notification disappears when the product is no longer in low stock.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4580\"\n    },\n    {\n      \"id\": 4581,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Product Sorting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Go to a product listing page.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Select a sorting option (e.g., price, popularity, rating).</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the products are rearranged according to the selected sorting criterion.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4581\"\n    },\n    {\n      \"id\": 4582,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-28T06:21:13.717Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Internationalization\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Change the language settings to a different supported language.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the UI elements and content are translated accordingly.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check if the currency and date formats are adjusted to the selected region.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4582\"\n    },\n    {\n      \"id\": 4583,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-28T06:19:54.323Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Account Lockout\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Enter incorrect login credentials multiple times.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the account is locked after reaching the specified threshold.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Test if the account can be unlocked after a specific duration or through the password reset process.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4583\"\n    },\n    {\n      \"id\": 4584,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-28T06:21:05.11Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Cross-Browser Compatibility\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Access the eShopOnWeb application using different web browsers (Chrome, Firefox, Safari, Edge).</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the application functions properly and displays correctly across browsers.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Test any browser-specific features or functionalities.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4584\"\n    },\n    {\n      \"id\": 4585,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-06-22T12:42:50.953Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \" Responsive Design\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Access the eShopOnWeb application on different devices (desktop, tablet, mobile).</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"3\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Verify that the application is responsive and adjusts layout and functionality based on the device.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step><step id=\\\"4\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">Check if all features and content are accessible and readable on different screen sizes.</parameterizedString><parameterizedString isformatted=\\\"true\\\"/><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4585\"\n    },\n    {\n      \"id\": 5283,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-22T07:57:30.107Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-22T12:07:39.993Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Confirm that order number appears after successful order\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"12\\\"><compref id=\\\"12\\\" ref=\\\"5292\\\"><step id=\\\"7\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Choose T-Shirt and click on search icon&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"8\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Enter @Email @Password&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"9\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Click Checkout&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Order #OrderID# should appear &lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"10\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Logout&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"11\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Close browser&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step></compref></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": \"<parameters><param name=\\\"Email\\\" bind=\\\"default\\\"/><param name=\\\"Password\\\" bind=\\\"default\\\"/></parameters>\",\n        \"Microsoft.VSTS.TCM.LocalDataSource\": \"<NewDataSet><xs:schema id='NewDataSet' xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:msdata='urn:schemas-microsoft-com:xml-msdata'><xs:element name='NewDataSet' msdata:IsDataSet='true' msdata:Locale=''><xs:complexType> <xs:choice minOccurs='0' maxOccurs = 'unbounded'><xs:element name='Table1'><xs:complexType><xs:sequence><xs:element name='Email' type='xs:string' minOccurs='0' /><xs:element name='Password' type='xs:string' minOccurs='0' /></xs:sequence></xs:complexType></xs:element></xs:choice></xs:complexType></xs:element></xs:schema><Table1><Email>admin@test.com</Email><Password>P@ssw0rd</Password></Table1></NewDataSet>\",\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5291\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.TestCase.SharedStepReferencedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5292\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Shared Steps\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5283\"\n    },\n    {\n      \"id\": 5290,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-22T08:34:16.58Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-22T08:34:16.58Z\",\n        \"System.ChangedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.Title\": \"Order Summary page will be having order details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"4\\\"><step id=\\\"1\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">View **My Orders**</parameterizedString><parameterizedString isformatted=\\\"true\\\">Delivery address will be shown</parameterizedString><description/></step><step id=\\\"2\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on delivery address </parameterizedString><parameterizedString isformatted=\\\"true\\\">Present given address will be displayed</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on **Change location** option</parameterizedString><parameterizedString isformatted=\\\"true\\\">Text boxes to collect new address will be shown</parameterizedString><description/></step><step id=\\\"4\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">Click on **submit**</parameterizedString><parameterizedString isformatted=\\\"true\\\">New Expected delivery date will be shown</parameterizedString><description/></step></steps>\",\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5286\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tests\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5290\"\n    },\n    {\n      \"id\": 5322,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Test Case\",\n        \"System.State\": \"Design\",\n        \"System.Reason\": \"New\",\n        \"System.CommentCount\": 0,\n        \"System.Title\": \"Verify the background color of add to basket button\",\n        \"Microsoft.VSTS.Common.Priority\": 2,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": \"Not Automated\",\n        \"System.Description\": \"0d 2h 45m\",\n        \"Microsoft.VSTS.TCM.Steps\": \"<steps id=\\\"0\\\" last=\\\"3\\\"><step id=\\\"2\\\" type=\\\"ActionStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;Navigate to eShopOnWeb&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;&lt;BR/&gt;&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><description/></step><step id=\\\"3\\\" type=\\\"ValidateStep\\\"><parameterizedString isformatted=\\\"true\\\">&lt;DIV&gt;&lt;P&gt;Check the color of ADD TO BASKET button&lt;/P&gt;&lt;/DIV&gt;</parameterizedString><parameterizedString isformatted=\\\"true\\\">&lt;P&gt;color should be blue&lt;/P&gt;</parameterizedString><description/></step></steps>\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Reverse\",\n          \"url\": \"https://dev.azure.com/akshayhosur/269036b4-72bf-4849-a991-cbda5f5bef6f/_apis/wit/workItems/11417\",\n          \"attributes\": {\n            \"isLocked\": false,\n            \"name\": \"Tests\"\n          }\n        }\n      ]\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Gen-eShopOnWeb/WorkItems/User Story.json",
    "content": "{\n  \"count\": 50,\n  \"value\": [\n    {\n      \"id\": 4506,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:48:59.333Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a existing User, I want to track my order status\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4504\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4881\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4509\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4880\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4882\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4548\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4547\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4506\"\n    },\n    {\n      \"id\": 4507,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As an Administrator, I want to manage product inventory efficiently\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4889\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4585\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4890\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4569\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4568\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4574\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4567\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4575\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4581\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5299\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5293\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4507\"\n    },\n    {\n      \"id\": 4508,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a Customer, I want to leave product reviews and ratings\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4894\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4895\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4586\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4508\"\n    },\n    {\n      \"id\": 4509,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T12:09:44.95Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a Guest User, I want to track my order without creating an account.\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4504\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4506\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4899\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4898\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4509\"\n    },\n    {\n      \"id\": 4587,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2023-06-22T13:35:27.47Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Integration with popular social media platforms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": \"High Scope\",\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4901\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4515\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4517\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4503\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4587\"\n    },\n    {\n      \"id\": 4589,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T14:37:54.623Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Analysis\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4563\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4559\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4900\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4524\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4588\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4589\"\n    },\n    {\n      \"id\": 4590,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-22T14:38:16.643Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Enhancements in performance and load time\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4521\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4523\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4561\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4892\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4588\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4891\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4522\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4590\"\n    },\n    {\n      \"id\": 4591,\n      \"rev\": 12,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2023-06-22T14:44:45.517Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T10:07:10.983Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Wishlist enhancement\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4558\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4505\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4555\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4556\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4885\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4888\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4884\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4598\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4883\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/30007311-34b8-4487-bb97-ec54d3a7171a%2Fab597fb4-b639-4c9f-a005-598748471c93%2F80\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-26T13:52:32.737Z\",\n            \"id\": \"14719790\",\n            \"resourceCreatedDate\": \"2023-07-26T13:52:32.737Z\",\n            \"resourceModifiedDate\": \"2023-07-26T13:52:32.737Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/30007311-34b8-4487-bb97-ec54d3a7171a%2fab597fb4-b639-4c9f-a005-598748471c93%2ff7ada583ef26ae759a2690651d7e4f3f30a1e6e2\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-26T14:00:10.643Z\",\n            \"id\": \"14719834\",\n            \"resourceCreatedDate\": \"2023-07-26T14:00:10.643Z\",\n            \"resourceModifiedDate\": \"2023-07-26T14:00:10.643Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\"\n    },\n    {\n      \"id\": 4598,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T09:50:41.9Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Separate fields for cart and Wishlist section in database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4591\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4598\"\n    },\n    {\n      \"id\": 4599,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T09:53:33.13Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Encrypting the card and other payment details \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4724\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4602\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4725\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4599\"\n    },\n    {\n      \"id\": 4602,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T10:12:22.78Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Credit card section\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4886\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4599\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4601\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4887\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4602\"\n    },\n    {\n      \"id\": 4603,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-06-28T10:13:04.04Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:54:02.55Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Debit card section\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4897\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4896\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4601\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4603\"\n    },\n    {\n      \"id\": 4604,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T10:14:38.593Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Internet banking option\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4601\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4893\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4604\"\n    },\n    {\n      \"id\": 4605,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T12:45:16.11Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"DB catalog to store notification messages and alerts\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5304\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4605\"\n    },\n    {\n      \"id\": 4606,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T12:46:56.6Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Separate table for returned orders \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4606\"\n    },\n    {\n      \"id\": 4607,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T12:47:51.77Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Identity DB  enhancement\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4607\"\n    },\n    {\n      \"id\": 4608,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-28T12:48:11.637Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Catalog DB enhancements\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4608\"\n    },\n    {\n      \"id\": 4722,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-06-30T10:58:19.363Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Database maintenance activity \",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4723\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4722\"\n    },\n    {\n      \"id\": 4845,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T05:43:53.577Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:24:46.39Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Add azure cognitive search service\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4502\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4845\"\n    },\n    {\n      \"id\": 4846,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T05:44:22.07Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:36:48.337Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Implement login with different social media platforms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4848\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4501\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4850\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4847\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4849\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4846\"\n    },\n    {\n      \"id\": 4852,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2023-07-10T08:46:26.107Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"API to fetch product visited by individual account\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4851\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/Commit/30007311-34b8-4487-bb97-ec54d3a7171a%2fab597fb4-b639-4c9f-a005-598748471c93%2f7549c72c7465f8ecf8032f5de4b1931316852e4a\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-25T18:32:39.85Z\",\n            \"id\": \"14705451\",\n            \"resourceCreatedDate\": \"2023-07-25T18:32:39.85Z\",\n            \"resourceModifiedDate\": \"2023-07-25T18:32:39.85Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Fixed in Commit\"\n          }\n        },\n        {\n          \"rel\": \"ArtifactLink\",\n          \"url\": \"vstfs:///Git/PullRequestId/30007311-34b8-4487-bb97-ec54d3a7171a%2Fab597fb4-b639-4c9f-a005-598748471c93%2F79\",\n          \"attributes\": {\n            \"authorizedDate\": \"2023-07-25T18:29:33.17Z\",\n            \"id\": \"14705428\",\n            \"resourceCreatedDate\": \"2023-07-25T18:29:33.17Z\",\n            \"resourceModifiedDate\": \"2023-07-25T18:29:33.17Z\",\n            \"revisedDate\": \"9999-01-01T00:00:00Z\",\n            \"name\": \"Pull Request\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4852\"\n    },\n    {\n      \"id\": 4858,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-07-10T09:07:02.833Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a database administrator, I want to analyze the existing database structure and dependencies\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4861\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4858\"\n    },\n    {\n      \"id\": 4859,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-07-10T09:10:35.207Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a developer, I want to create scripts for schema and data migration\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4861\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4859\"\n    },\n    {\n      \"id\": 4860,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2023-07-10T09:10:57.453Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a tester, I want to validate the migrated database to ensure data integrity\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4861\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4860\"\n    },\n    {\n      \"id\": 4863,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:04:56.487Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a database administrator, I want to analyze the database workload and identify performance bottlenecks\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4862\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4863\"\n    },\n    {\n      \"id\": 4865,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:06:50.29Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a developer, I want to optimize slow-performing queries and improve query execution plans\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4864\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4865\"\n    },\n    {\n      \"id\": 4866,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:07:10.34Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a tester, I want to validate the performance improvements and record benchmark metrics\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4864\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4866\"\n    },\n    {\n      \"id\": 4868,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:19:52.083Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a database administrator, I want to configure scheduled backups and monitor their completion\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4867\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4868\"\n    },\n    {\n      \"id\": 4869,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:20:07.407Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a developer, I want to create scripts to restore the database from backups\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4867\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4869\"\n    },\n    {\n      \"id\": 4870,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:20:18.297Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a tester, I want to validate the recovery process and ensure data consistency\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4867\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4870\"\n    },\n    {\n      \"id\": 4872,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2023-07-10T10:31:21.357Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"regulatory standards for the database system\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4871\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4872\"\n    },\n    {\n      \"id\": 4873,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Resolved\",\n        \"System.Reason\": \"Code complete and unit tests pass\",\n        \"System.CreatedDate\": \"2023-07-10T10:31:38.23Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a developer, I want to implement data encryption mechanisms to protect sensitive information\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4871\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4873\"\n    },\n    {\n      \"id\": 4874,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Implementation started\",\n        \"System.CreatedDate\": \"2023-07-10T10:32:08.99Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a tester, I want to validate the security controls and perform security vulnerability assessments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4871\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4874\"\n    },\n    {\n      \"id\": 4876,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:35:37.397Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a database administrator, I want to establish a version control system for the database schema\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4876\"\n    },\n    {\n      \"id\": 4877,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:36:02.3Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a developer, I want to create scripts for database schema changes and ensure they are versioned properly\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4877\"\n    },\n    {\n      \"id\": 4878,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:36:14.15Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a release manager, I want to automate the deployment of database schema changes to various environments\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4878\"\n    },\n    {\n      \"id\": 4879,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-10T10:36:33.293Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a tester, I want to verify that the deployed database schema changes are applied correctly and do not impact existing functionality\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4875\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4879\"\n    },\n    {\n      \"id\": 5092,\n      \"rev\": 8,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Reintroduced in Scope\",\n        \"System.CreatedDate\": \"2023-07-18T07:22:10.64Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:59:37.077Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I want to view new tutorials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 1.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5095\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5096\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Child\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5092\"\n    },\n    {\n      \"id\": 5093,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2023-07-18T07:22:41.793Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T12:17:55.25Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"As a customer, I would like to see recently viewed tutorial\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": \"Suraj <suraj@ecanarys.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5093\"\n    },\n    {\n      \"id\": 5094,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Closed\",\n        \"System.Reason\": \"Acceptance tests pass\",\n        \"System.CreatedDate\": \"2023-07-18T07:24:26.47Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"As a customer, I would need an option to request new tutorials\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4903\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5094\"\n    },\n    {\n      \"id\": 5285,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-22T08:12:40.613Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Algorithm to display the expected delivery date\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5285\"\n    },\n    {\n      \"id\": 5286,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\App Development Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-22T08:16:35.263Z\",\n        \"System.CreatedBy\": \"Suraj <suraj@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-25T23:42:55.57Z\",\n        \"System.ChangedBy\": \"Gloridel.Morales <Gloridel.Morales@microsoft.com>\",\n        \"System.Title\": \"Option to change the shipment address after order placed\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5290\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5286\"\n    },\n    {\n      \"id\": 5295,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-27T07:19:52.04Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:24:55.403Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Show related product based on the history below search box\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5295\"\n    },\n    {\n      \"id\": 5296,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-27T07:20:06.547Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:24:55.403Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Showcase search history\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5294\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5296\"\n    },\n    {\n      \"id\": 5298,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-27T07:23:20.333Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-27T07:25:00.99Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Search box should show upon clicking search button\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5297\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5298\"\n    },\n    {\n      \"id\": 5301,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-28T09:37:28.527Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:37:28.527Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Store social login details into user details table\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5300\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5301\"\n    },\n    {\n      \"id\": 5302,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-28T09:37:39.257Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:37:39.257Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"validate the login user details\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5300\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5302\"\n    },\n    {\n      \"id\": 5303,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\DBA Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 1\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-07-28T09:37:51.72Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-07-28T09:37:51.72Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"encrypt user personal details in db\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5300\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5303\"\n    },\n    {\n      \"id\": 5312,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"eShoponweb\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 2\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Active\",\n        \"System.CreatedDate\": \"2023-08-03T10:39:11.327Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-08-03T10:41:31.967Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Login and new user registraion to the eShopOnWeb portal using email id and password\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5311\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4566\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4579\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4572\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5312\"\n    },\n    {\n      \"id\": 5313,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"eShoponweb\",\n        \"System.TeamProject\": \"eShoponweb\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Iteration 3\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New\",\n        \"System.CreatedDate\": \"2023-08-03T10:39:40.62Z\",\n        \"System.CreatedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.ChangedDate\": \"2023-08-03T10:39:40.62Z\",\n        \"System.ChangedBy\": \"Akshay Hosur <akshay.hosur@ecanarys.com>\",\n        \"System.Title\": \"Register to eShop using your email id and passoword\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"Microsoft.VSTS.Common.TestedBy-Forward\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/4572\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Tested By\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5311\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Parent\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/suraj-ecanarys/_apis/wit/workItems/5313\"\n    },\n    {\n      \"id\": 5319,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.Id\": 5319,\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.Rev\": 1,\n        \"System.AuthorizedDate\": \"2023-08-04T04:36:42.58Z\",\n        \"System.RevisedDate\": \"9999-01-01T00:00:00Z\",\n        \"System.IterationId\": 888,\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Active\",\n        \"System.Title\": \"Change the background color of the [ADD TO BASKET] button\",\n        \"System.BoardColumn\": \"Active\",\n        \"System.BoardColumnDone\": false,\n        \"Microsoft.VSTS.Common.StateChangeDate\": \"2023-08-04T04:36:42.58Z\",\n        \"Microsoft.VSTS.Common.Priority\": 2,\n        \"Microsoft.VSTS.Common.ValueArea\": \"Business\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/30007311-34b8-4487-bb97-ec54d3a7171a/_apis/wit/workItems/5318\",\n          \"attributes\": {\n            \"isLocked\": false,\n            \"name\": \"Parent\"\n          }\n        }\n      ]\n    },\n    {\n      \"id\": 5320,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.Id\": 5320,\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.Rev\": 2,\n        \"System.AuthorizedDate\": \"2023-08-04T04:37:06.683Z\",\n        \"System.RevisedDate\": \"9999-01-01T00:00:00Z\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Active\",\n        \"System.CreatedDate\": \"2023-08-04T04:37:00.413Z\",\n        \"System.CommentCount\": 0,\n        \"System.Title\": \"Change the background color of the product page\",\n        \"System.BoardColumn\": \"Active\",\n        \"System.BoardColumnDone\": false,\n        \"Microsoft.VSTS.Common.StateChangeDate\": \"2023-08-04T04:37:00.413Z\",\n        \"Microsoft.VSTS.Common.Priority\": 2,\n        \"Microsoft.VSTS.Common.ValueArea\": \"Business\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/30007311-34b8-4487-bb97-ec54d3a7171a/_apis/wit/workItems/5318\",\n          \"attributes\": {\n            \"isLocked\": false,\n            \"name\": \"Parent\"\n          }\n        }\n      ]\n    },\n    {\n      \"id\": 5321,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.Id\": 5321,\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.Rev\": 1,\n        \"System.AuthorizedDate\": \"2023-08-04T04:37:28.53Z\",\n        \"System.RevisedDate\": \"9999-01-01T00:00:00Z\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"User Story\",\n        \"System.State\": \"Active\",\n        \"System.Reason\": \"Active\",\n        \"System.CommentCount\": 0,\n        \"System.Title\": \"On hover of the button - color of the button should change\",\n        \"System.BoardColumn\": \"Active\",\n        \"System.BoardColumnDone\": false,\n        \"Microsoft.VSTS.Common.StateChangeDate\": \"2023-08-04T04:37:28.53Z\",\n        \"Microsoft.VSTS.Common.Priority\": 2,\n        \"Microsoft.VSTS.Common.ValueArea\": \"Business\"\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"https://dev.azure.com/suraj-ecanarys/30007311-34b8-4487-bb97-ec54d3a7171a/_apis/wit/workItems/5318\",\n          \"attributes\": {\n            \"isLocked\": false,\n            \"name\": \"Parent\"\n          }\n        }\n      ]\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/ImportSourceCode/GitRepository.json",
    "content": "{\n    \"repositories\": [\n      {\n        \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web\"\n      }\n    ]\n  }\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/ImportSourceCode/Space Game - web.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Tailspin4444/Space Game - web/_git/Space Game - web\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/ServiceEndpoints/Space Game - web-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Space Game - web-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/Tailspin4444/Space Game - web/_git/Space Game - web\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/Teams/Space Game - web Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/Teams/Space Game - web Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/Teams/Space Game - web Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/Teams/Space Game - web Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"83f13779-2223-4fe8-b260-8c572d1fb0f3\",\n    \"name\": \"Space Game - web Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Create-Build-Pipeline/WorkItems/Issue.json",
    "content": "\n{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:16:23.937Z\",\n        \"System.CreatedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:27:07.373Z\",\n        \"System.ChangedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Stabilize the build server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">The build server keeps falling over. The OS, Ubuntu 16.04, requires security patches and updates. It's also a challenge to keep build tools and other software up to date</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:17:31.133Z\",\n        \"System.CreatedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:56.667Z\",\n        \"System.ChangedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create a Git-based workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Migrate source code to GitHub and define how we'll collaborate</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:18:10.95Z\",\n        \"System.CreatedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:27:18.37Z\",\n        \"System.ChangedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create unit tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Add unit tests to the project so help minimize regression bugs</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:21:13.077Z\",\n        \"System.CreatedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:43.46Z\",\n        \"System.ChangedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check code for vulnerabilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Scan our code for vulnerabilities and code smells</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:22:36.157Z\",\n        \"System.CreatedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:28.987Z\",\n        \"System.ChangedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:42:50Z\",\n        \"System.CreatedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:05.913Z\",\n        \"System.ChangedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Move model data to its own package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Package and share common Model code</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 7,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:43:52.77Z\",\n        \"System.CreatedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:25:46.887Z\",\n        \"System.ChangedBy\": \"jmdemo.devops@gmail.com <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Investigate hosted vs private build servers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Proof of concept for a private build server</span><span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/7\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/BuildDefinitionGitHub/mslearn-tailspin-spacegame-web-deploy.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-docker\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-docker/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-docker.git\",\n      \"connectedServiceId\": \"$GitHub_51da3d38$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"True\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"09/26/2019 01:28:15\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-docker\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTA5NzEzMjQ=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-docker/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-docker\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-docker\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"210971324\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-docker\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-docker\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-docker.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/sharplogic/_apis/build/Queues/8\"\n      }\n    },\n    \"url\": \"https://dev.azure.com/sharplogic/_apis/build/Queues/8\",\n    \"pool\": null\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-docker\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-docker\",\n      \"endPointName\": \"GitHub_51da3d38\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/ImportSourceCode/Space Game - web - Release workflow.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/sharplogic/Space Game - web - Docker/_git/Space Game - web - Release workflow\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Release workflow-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Docker\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/ServiceEndpoints/GitHub_51da3d38-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_51da3d38\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-docker\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/ServiceEndpoints/Space Game - web - Release workflow-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Space Game - web - Release workflow-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/sharplogic/Space Game - web - Docker/_git/Space Game - web - Release workflow\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/Teams/Space Game - web - Docker Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/Teams/Space Game - web - Docker Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/Teams/Space Game - web - Docker Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/Teams/Space Game - web - Docker Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"d1b736ce-eb0e-40d2-aedd-907dbab4bb95\",\n    \"name\": \"Space Game - web - Docker Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Docker-Template/WorkItems/Issue.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 9608,\n      \"rev\": 10,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2020-03-11T18:56:13.783Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T19:00:29.873Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Create container version of web site using Docker\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9608\"\n    },\n    {\n      \"id\": 9607,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:55.92Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:55.92Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Improve release cadence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Improve release cadence\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9607\"\n    },\n    {\n      \"id\": 9606,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:55.313Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:55.313Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Automate performance tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automate performance tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9606\"\n    },\n    {\n      \"id\": 9605,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:54.78Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:54.78Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Automate quality tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automate quality tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9605\"\n    },\n    {\n      \"id\": 9604,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:54.593Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:54.593Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Connect the web app to a database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Connect the web app to a database\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9604\"\n    },\n    {\n      \"id\": 9603,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:53.66Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:53.66Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Create a multi-stage pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create a multi-stage pipeline\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9603\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/BuildDefinitionGitHub/mslearn-tailspin-spacegame-web-deploy.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-kubernetes\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-kubernetes/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-kubernetes.git\",\n      \"connectedServiceId\": \"$GitHub_9a905ff5$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"True\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"09/26/2019 01:28:15\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-kubernetes\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTA5NzEzMjQ=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-kubernetes/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-kubernetes\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-kubernetes\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"210971324\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-kubernetes\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-kubernetes\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-kubernetes.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/sharplogic/_apis/build/Queues/8\"\n      }\n    },\n    \"url\": \"https://dev.azure.com/sharplogic/_apis/build/Queues/8\",\n    \"pool\": null\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-kubernetes\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-kubernetes\",\n      \"endPointName\": \"GitHub_9a905ff5\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/ImportSourceCode/Space Game - web - Release workflow.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/sharplogic/Space Game - web - Docker/_git/Space Game - web - Release workflow\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Release workflow-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Docker\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/ServiceEndpoints/GitHub_9a905ff5-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_9a905ff5\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-kubernetes\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/ServiceEndpoints/Space Game - web - Release workflow-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Space Game - web - Release workflow-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/sharplogic/Space Game - web - Docker/_git/Space Game - web - Release workflow\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/Teams/Space Game - web - Docker Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/Teams/Space Game - web - Docker Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/Teams/Space Game - web - Docker Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/Teams/Space Game - web - Docker Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"d1b736ce-eb0e-40d2-aedd-907dbab4bb95\",\n    \"name\": \"Space Game - web - Docker Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Deploy-Kubernetes-Template/WorkItems/Issue.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 9608,\n      \"rev\": 6,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2020-03-11T18:56:13.783Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:57:51.98Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Create multi-container version of web site orchestrated with Kubernetes\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9608\"\n    },\n    {\n      \"id\": 9607,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:55.92Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:55.92Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Improve release cadence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Improve release cadence\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9607\"\n    },\n    {\n      \"id\": 9606,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:55.313Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:55.313Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Automate performance tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automate performance tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9606\"\n    },\n    {\n      \"id\": 9605,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:54.78Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:54.78Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Automate quality tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automate quality tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9605\"\n    },\n    {\n      \"id\": 9604,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:54.593Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:54.593Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Connect the web app to a database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Connect the web app to a database\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9604\"\n    },\n    {\n      \"id\": 9603,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"Space Game - web - Docker\",\n        \"System.TeamProject\": \"Space Game - web - Docker\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-11T18:49:53.66Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-11T18:49:53.66Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Create a multi-stage pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create a multi-stage pipeline\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9603\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/BuildDefinitionGitHub/SpaceGameWeb-Build.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n      \"connectedServiceId\": \"$spacegame-web$\",\n      \"defaultBranch\": \"master\",\n      \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n      \"isPrivate\": \"False\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web\",\n      \"refsUrl\": \"https://api.github.com/repos/aksh-h/mslearn-tailspin-spacegame-web/git/refs\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"id\": 8,\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"pool\": {\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"mslearn-tailspin-spacegame-web\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/ImportSourceCode/GitRepository.json",
    "content": "{\n    \"repositories\": [\n      {\n        \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web\"\n      }\n    ]\n  }\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/ImportSourceCode/Space Game - web.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Tailspin4444/Space Game - web/_git/Space Game - web\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/ServiceEndpoints/GitHub_Jamcneil_code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"spacegame-web\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/jamcneil/mslearn-tailspin-spacegame-web\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/Teams/Space Game - web Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/Teams/Space Game - web Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/Teams/Space Game - web Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/Teams/Space Game - web Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"83f13779-2223-4fe8-b260-8c572d1fb0f3\",\n    \"name\": \"Space Game - web Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Host-Build-Agent/WorkItems/Issue.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:16:23.937Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-28T15:33:10.07Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Stabilize the build server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">The build server keeps falling over. The OS, Ubuntu 16.04, requires security patches and updates. It's also a challenge to keep build tools and other software up to date</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:17:31.133Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:56.667Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create a Git-based workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Migrate source code to GitHub and define how we'll collaborate</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:18:10.95Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:27:18.37Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create unit tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Add unit tests to the project so help minimize regression bugs</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:21:13.077Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:43.46Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check code for vulnerabilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Scan our code for vulnerabilities and code smells</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:22:36.157Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:28.987Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:42:50Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:05.913Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Move model data to its own package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Package and share common Model code</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 7,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:43:52.77Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:25:46.887Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Investigate hosted vs private build servers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Proof of concept for a private build server</span><span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/7\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/BuildDefinitionGitHub/SpaceGameWeb-Build.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n      \"connectedServiceId\": \"$spacegame-web$\",\n      \"defaultBranch\": \"master\",\n      \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n      \"isPrivate\": \"False\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web\",\n      \"refsUrl\": \"https://api.github.com/repos/aksh-h/mslearn-tailspin-spacegame-web/git/refs\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"id\": 8,\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"pool\": {\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"mslearn-tailspin-spacegame-web\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/ImportSourceCode/GitRepository.json",
    "content": "{\n    \"repositories\": [\n      {\n        \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web\"\n      }\n    ]\n  }\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/ImportSourceCode/Space Game - web.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Tailspin4444/Space Game - web/_git/Space Game - web\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/ServiceEndpoints/GitHub_Jamcneil_code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"spacegame-web\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/jamcneil/mslearn-tailspin-spacegame-web\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/Teams/Space Game - web Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/Teams/Space Game - web Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/Teams/Space Game - web Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/Teams/Space Game - web Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"83f13779-2223-4fe8-b260-8c572d1fb0f3\",\n    \"name\": \"Space Game - web Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Implement-Code-Workflow/WorkItems/Issue.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:16:23.937Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-28T15:33:10.07Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Stabilize the build server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">The build server keeps falling over. The OS, Ubuntu 16.04, requires security patches and updates. It's also a challenge to keep build tools and other software up to date</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:17:31.133Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:56.667Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create a Git-based workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Migrate source code to GitHub and define how we'll collaborate</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:18:10.95Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:27:18.37Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create unit tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Add unit tests to the project so help minimize regression bugs</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:21:13.077Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:43.46Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check code for vulnerabilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Scan our code for vulnerabilities and code smells</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:22:36.157Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:28.987Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:42:50Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:05.913Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Move model data to its own package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Package and share common Model code</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 7,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:43:52.77Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:25:46.887Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Investigate hosted vs private build servers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Proof of concept for a private build server</span><span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/7\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/BuildDefinitionGitHub/SpaceGameWeb-Build.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n      \"connectedServiceId\": \"$spacegame-web$\",\n      \"defaultBranch\": \"master\",\n      \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n      \"isPrivate\": \"False\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web\",\n      \"refsUrl\": \"https://api.github.com/repos/aksh-h/mslearn-tailspin-spacegame-web/git/refs\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"name\": \"Azure Pipelines\",\n    \"pool\": {\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"mslearn-tailspin-spacegame-web\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/ImportSourceCode/GitRepository.json",
    "content": "{\n    \"repositories\": [\n      {\n        \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web\"\n      }\n    ]\n  }\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/ImportSourceCode/Space Game - web.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Tailspin4444/Space Game - web/_git/Space Game - web\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/ServiceEndpoints/GitHub_Jamcneil_code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"spacegame-web\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/jamcneil/mslearn-tailspin-spacegame-web\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/Teams/Space Game - web Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/Teams/Space Game - web Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/Teams/Space Game - web Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/Teams/Space Game - web Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"83f13779-2223-4fe8-b260-8c572d1fb0f3\",\n    \"name\": \"Space Game - web Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Manage-Build-Dependencies/WorkItems/Issue.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:16:23.937Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-28T15:33:10.07Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Stabilize the build server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">The build server keeps falling over. The OS, Ubuntu 16.04, requires security patches and updates. It's also a challenge to keep build tools and other software up to date</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:17:31.133Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:56.667Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create a Git-based workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Migrate source code to GitHub and define how we'll collaborate</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:18:10.95Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:27:18.37Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create unit tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Add unit tests to the project so help minimize regression bugs</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:21:13.077Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:43.46Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check code for vulnerabilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Scan our code for vulnerabilities and code smells</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:22:36.157Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:28.987Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:42:50Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:05.913Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Move model data to its own package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Package and share common Model code</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 7,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:43:52.77Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:25:46.887Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Investigate hosted vs private build servers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Proof of concept for a private build server</span><span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/7\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/ImportSourceCode/toy-website-review.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://github.com/MicrosoftDocs/mslearn-review-azure-infrastructure-changes-using-bicep-pull-requests.git\"\n    },\n    \"serviceEndpointId\": \"\",\n    \"deleteServiceEndpointAfterImportIsDone\": false\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"toy-website-review\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"IsPrivate\": \"true\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"bd392432-963a-494f-853e-8890e13c007d\",\n    \"name\": \"toy-website-review Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/Teams/toy-website-review Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/Teams/toy-website-review Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/Teams/toy-website-review Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Review-azure-infrastructure-changes/Teams/toy-website-review Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/BuildDefinitionGitHub/SpaceGameWeb-Build.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n      \"connectedServiceId\": \"$spacegame-web$\",\n      \"defaultBranch\": \"master\",\n      \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n      \"isPrivate\": \"False\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web\",\n      \"refsUrl\": \"https://api.github.com/repos/aksh-h/mslearn-tailspin-spacegame-web/git/refs\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"id\": 8,\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"pool\": {\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"mslearn-tailspin-spacegame-web\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/ImportSourceCode/GitRepository.json",
    "content": "{\n    \"repositories\": [\n      {\n        \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web\"\n      }\n    ]\n  }\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/ImportSourceCode/Space Game - web.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Tailspin4444/Space Game - web/_git/Space Game - web\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/ServiceEndpoints/GitHub_Jamcneil_code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"spacegame-web\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/jamcneil/mslearn-tailspin-spacegame-web\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/Teams/Space Game - web Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/Teams/Space Game - web Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/Teams/Space Game - web Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/Teams/Space Game - web Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"83f13779-2223-4fe8-b260-8c572d1fb0f3\",\n    \"name\": \"Space Game - web Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Run-Quality-Tests/WorkItems/Issue.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:16:23.937Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-28T15:33:10.07Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Stabilize the build server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">The build server keeps falling over. The OS, Ubuntu 16.04, requires security patches and updates. It's also a challenge to keep build tools and other software up to date</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:17:31.133Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:56.667Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create a Git-based workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Migrate source code to GitHub and define how we'll collaborate</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:18:10.95Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:27:18.37Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create unit tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Add unit tests to the project so help minimize regression bugs</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:21:13.077Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:43.46Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check code for vulnerabilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Scan our code for vulnerabilities and code smells</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:22:36.157Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:28.987Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:42:50Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:05.913Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Move model data to its own package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Package and share common Model code</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 7,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:43:52.77Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:25:46.887Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Investigate hosted vs private build servers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Proof of concept for a private build server</span><span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/7\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/BuildDefinitionGitHub/SpaceGameWeb-Build.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n      \"connectedServiceId\": \"$spacegame-web$\",\n      \"defaultBranch\": \"master\",\n      \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n      \"isPrivate\": \"False\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web\",\n      \"refsUrl\": \"https://api.github.com/repos/aksh-h/mslearn-tailspin-spacegame-web/git/refs\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"id\": 8,\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"pool\": {\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"mslearn-tailspin-spacegame-web\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/ImportSourceCode/GitRepository.json",
    "content": "{\n    \"repositories\": [\n      {\n        \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web\"\n      }\n    ]\n  }\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/ImportSourceCode/Space Game - web.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Tailspin4444/Space Game - web/_git/Space Game - web\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/ServiceEndpoints/GitHub_Jamcneil_code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"spacegame-web\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/jamcneil/mslearn-tailspin-spacegame-web\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/Teams/Space Game - web Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/Teams/Space Game - web Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/Teams/Space Game - web Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/Teams/Space Game - web Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"83f13779-2223-4fe8-b260-8c572d1fb0f3\",\n    \"name\": \"Space Game - web Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-Open-Source/WorkItems/Issue.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:16:23.937Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-28T15:33:10.07Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Stabilize the build server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">The build server keeps falling over. The OS, Ubuntu 16.04, requires security patches and updates. It's also a challenge to keep build tools and other software up to date</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:17:31.133Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:56.667Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create a Git-based workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Migrate source code to GitHub and define how we'll collaborate</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:18:10.95Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:27:18.37Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create unit tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Add unit tests to the project so help minimize regression bugs</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:21:13.077Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:43.46Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check code for vulnerabilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Scan our code for vulnerabilities and code smells</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:22:36.157Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:28.987Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:42:50Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:05.913Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Move model data to its own package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Package and share common Model code</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 7,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:43:52.77Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:25:46.887Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Investigate hosted vs private build servers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Proof of concept for a private build server</span><span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/7\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/BuildDefinitionGitHub/SpaceGameWeb-Build.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n      \"connectedServiceId\": \"$spacegame-web$\",\n      \"defaultBranch\": \"master\",\n      \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n      \"isPrivate\": \"False\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web\",\n      \"refsUrl\": \"https://api.github.com/repos/aksh-h/mslearn-tailspin-spacegame-web/git/refs\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": \"false\",\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"drafts\": [],\n  \"queue\": {\n    \"id\": 8,\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"pool\": {\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"name\": \"mslearn-tailspin-spacegame-web\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/ImportSourceCode/GitRepository.json",
    "content": "{\n    \"repositories\": [\n      {\n        \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web\"\n      }\n    ]\n  }\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/ImportSourceCode/Space Game - web.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/Tailspin4444/Space Game - web/_git/Space Game - web\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/ServiceEndpoints/GitHub_Jamcneil_code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"spacegame-web\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/jamcneil/mslearn-tailspin-spacegame-web\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/Teams/Space Game - web Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/Teams/Space Game - web Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/Teams/Space Game - web Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/Teams/Space Game - web Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"83f13779-2223-4fe8-b260-8c572d1fb0f3\",\n    \"name\": \"Space Game - web Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Scan-for-Vulnerabilities/WorkItems/Issue.json",
    "content": "{\n  \"count\": 7,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:16:23.937Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-28T15:33:10.07Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Stabilize the build server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:16px;\\\">The build server keeps falling over. The OS, Ubuntu 16.04, requires security patches and updates. It's also a challenge to keep build tools and other software up to date</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:17:31.133Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:56.667Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create a Git-based workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Migrate source code to GitHub and define how we'll collaborate</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-05-22T21:18:10.95Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:27:18.37Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Create unit tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span><span style=\\\"display:inline !important;background-color:rgb(255, 255, 255);color:rgb(0, 0, 0);font-family:Segoe UI,SegoeUI,Segoe WP,Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;font-size:13.93px;\\\">Add unit tests to the project so help minimize regression bugs</span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:21:13.077Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:43.46Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check code for vulnerabilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Scan our code for vulnerabilities and code smells</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:22:36.157Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:28.987Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/5\"\n    },\n    {\n      \"id\": 6,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:42:50Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:26:05.913Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Move model data to its own package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Package and share common Model code</span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/6\"\n    },\n    {\n      \"id\": 7,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-05-22T21:43:52.77Z\",\n        \"System.CreatedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.ChangedDate\": \"2019-05-24T20:25:46.887Z\",\n        \"System.ChangedBy\": \"jmdemo.devops <jmdemo.devops@gmail.com>\",\n        \"System.Title\": \"Investigate hosted vs private build servers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"<div><span>Proof of concept for a private build server</span><span><br></span></div>\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/Tailspin4444/_apis/wit/workItems/7\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/BuildDefinitionGitHub/EdKaimmslearn-tailspin-spacegame-web-azure-functions.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": true\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-azure-functions\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-azure-functions/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-azure-functions.git\",\n      \"connectedServiceId\": \"$GitHub_210c1c54$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"False\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"True\",\n      \"lastUpdated\": \"2020-03-03T19:32:10Z\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-azure-functions\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyNDQ3MjQxNjQ=\",\n      \"ownerId\": \"1214799\",\n      \"orgName\": \"EdKaim\",\n      \"refsUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-azure-functions/git/refs\",\n      \"safeRepository\": \"EdKaim/mslearn-tailspin-spacegame-web-azure-functions\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-azure-functions\",\n      \"ownerAvatarUrl\": \"https://avatars0.githubusercontent.com/u/1214799?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"244724164\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-azure-functions\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-azure-functions\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-azure-functions.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/sharplogic/_apis/build/Queues/1219\"\n      }\n    },\n    \"id\": 1219,\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/sharplogic/_apis/build/Queues/1219\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-azure-functions\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-azure-functions\",\n      \"endPointName\": \"GitHub_210c1c54\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/ImportSourceCode/Space Game - web - Release workflow.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/sharplogic/Space Game Azure Functions/_git/Space Game - web - Release workflow\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Release workflow-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game Azure Functions\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/ServiceEndpoints/GitHub_210c1c54-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_210c1c54\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-azure-functions\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/ServiceEndpoints/Space Game - web - Release workflow-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Space Game - web - Release workflow-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/sharplogic/Space Game Azure Functions/_git/Space Game - web - Release workflow\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/Teams/Space Game Azure Functions Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/Teams/Space Game Azure Functions Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/Teams/Space Game Azure Functions Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Id\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\",\n          \"displayType\": \"CORE\"\n        },\n        {\n          \"showEmptyFields\": \"false\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/Teams/Space Game Azure Functions Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"6aa3d9b6-3b8a-421c-917d-e7bd0c519ecf\",\n    \"name\": \"Space Game Azure Functions Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-AzureFunctions/WorkItems/Issue.json",
    "content": "{\n  \"count\": 6,\n  \"value\": [\n    {\n      \"id\": 9500,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2020-03-03T19:31:41.367Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-03T22:27:42.497Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Refactor leaderboard API as an Azure Functions app\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Refactor leaderboard API as an Azure Functions app\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9500\"\n    },\n    {\n      \"id\": 9505,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-03T19:31:43.343Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-03T19:31:43.343Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Create a multi-stage pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create a multi-stage pipeline\",\n        \"System.AssignedTo\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9505\"\n    },\n    {\n      \"id\": 9504,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-03T19:31:43.203Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-03T19:31:43.203Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Connect the web app to a database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Connect the web app to a database\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9504\"\n    },\n    {\n      \"id\": 9503,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-03T19:31:42.997Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-03T19:31:42.997Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Automate quality tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automate quality tests\",\n        \"System.AssignedTo\": \"ckelly109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9503\"\n    },\n    {\n      \"id\": 9502,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-03T19:31:42.53Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-03T19:31:42.53Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Automate performance tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Automate performance tests\",\n        \"System.AssignedTo\": \"lsteel109@outlook.com\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9502\"\n    },\n    {\n      \"id\": 9501,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2020-03-03T19:31:41.897Z\",\n        \"System.CreatedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.ChangedDate\": \"2020-03-03T19:31:41.897Z\",\n        \"System.ChangedBy\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"System.Title\": \"Improve release cadence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Improve release cadence\",\n        \"System.AssignedTo\": \"Ed Kaim <edkaim@hotmail.com>\",\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/sharplogic/_apis/wit/workItems/9501\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/ImportSourceCode/Space Game - web.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/sharplogic/Space Game/_git/Space Game - web\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/ImportSourceCode/Space Game Delivery Plans.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/sharplogic/Space Game Delivery Plans/_git/Space Game Delivery Plans\"\n    },\n    \"serviceEndpointId\": \"$Space Game Delivery Plans-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 5\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 2\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 6\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 3\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    },\n    {\n      \"name\": \"Sprint 4\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game Delivery Plans\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/ProjectSettings.json",
    "content": "{\n  \"type\": \"Scrum\",\n  \"id\": \"6b724908-ef14-45cf-84f8-768b5384da45\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/ServiceEndpoints/Space Game - web-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Space Game - web-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/sharplogic/Space Game/_git/Space Game - web\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/ServiceEndpoints/Space Game Delivery Plans-code.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"Space Game Delivery Plans-code\",\n  \"type\": \"git\",\n  \"url\": \"https://dev.azure.com/sharplogic/Space Game Delivery Plans/_git/Space Game Delivery Plans\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$username$\",\n      \"password\": \"$password$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/ServiceEndpoints/spacegame-web.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"spacegame-web\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/jamcneil/mslearn-tailspin-spacegame-web\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"demogenerator\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/TeamIterationMap.json",
    "content": "{\n  \"TeamIterationMap\": [\n    {\n      \"TeamName\": \"Space Game Web Team\",\n      \"Iterations\": [ \"Sprint 1\", \"Sprint 2\", \"Sprint 3\", \"Sprint 4\", \"Sprint 5\", \"Sprint 6\" ]\n    },\n    {\n      \"TeamName\": \"Space Game Engine Team\",\n      \"Iterations\": [ \"Sprint 1\", \"Sprint 2\", \"Sprint 3\", \"Sprint 4\", \"Sprint 5\", \"Sprint 6\" ]\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game - web - Delivery plans Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game - web - Delivery plans Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game - web - Delivery plans Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game - web - Delivery plans Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game - web - Delivery plans Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Delivery Plans Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Delivery Plans Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Delivery Plans Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Delivery Plans Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Delivery Plans Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Engine Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Engine Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Engine Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Engine Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Engine Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Web Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"In Progress\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Feature\": \"In Progress\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Feature\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"name\": \"New\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"New\",\n          \"Bug\": \"New\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Approved\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Approved\",\n          \"Bug\": \"Approved\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Committed\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Committed\",\n          \"Bug\": \"Committed\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Product Backlog Item\": \"Done\",\n          \"Bug\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Web Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Features\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Backlog Items\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Web Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Feature\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"cards\": {\n      \"Bug\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ],\n      \"Product Backlog Item\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Web Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Features\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Backlog Items\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Space Game Web Team/TeamSetting.json",
    "content": "{\n  \"bugsBehavior\": \"asRequirements\",\n  \"backlogVisibilities\": {\n    \"Microsoft.EpicCategory\": false,\n    \"Microsoft.FeatureCategory\": true,\n    \"Microsoft.RequirementCategory\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"fdb020e6-d88f-4f76-bcc7-13d90d87387d\",\n    \"name\": \"Space Game - web - Delivery plans Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  },\n  {\n    \"id\": \"2930864c-0d39-4ef0-b5c6-75f444044f4b\",\n    \"name\": \"Space Game Web Team\",\n    \"description\": \"\",\n    \"isDefault\": \"false\"\n  },\n  {\n    \"id\": \"706e1331-eac2-47f9-a3e5-3484302804ee\",\n    \"name\": \"Space Game Engine Team\",\n    \"description\": \"\",\n    \"isDefault\": \"false\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-DeliveryPlans/WorkItems/Product Backlog Item.json",
    "content": "{\n  \"count\": 18,\n  \"value\": [\n    {\n      \"id\": 1757,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Engine Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 5\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Complete community interaction training\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Complete community interaction training\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1771\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1757\"\n    },\n    {\n      \"id\": 1758,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Create a Git-based workflow\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create a Git-based workflow\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1766\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1758\"\n    },\n    {\n      \"id\": 1759,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Engine Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 5\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Add final music and sound\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add final music and sound\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1759\"\n    },\n    {\n      \"id\": 1760,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Engine Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 5\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Investigate lag reported by customers in east\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Investigate lag reported by customers in east\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1760\"\n    },\n    {\n      \"id\": 1761,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Create unit tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Create unit tests\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1761\"\n    },\n    {\n      \"id\": 1762,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Engine Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Apply final artwork\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Apply final artwork\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1762\"\n    },\n    {\n      \"id\": 1763,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Stabilize the build server\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Stabilize the build server\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1768\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1764\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1763\"\n    },\n    {\n      \"id\": 1764,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Engine Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 6\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Push beta\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Push beta\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1774\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        },\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1763\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1764\"\n    },\n    {\n      \"id\": 1765,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Move model data to its own package\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Move model data to its own package\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1765\"\n    },\n    {\n      \"id\": 1766,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Check open source code for vulnerabilities and licensing terms\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1758\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1766\"\n    },\n    {\n      \"id\": 1767,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Investigate hosted vs private build servers\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Investigate hosted vs private build servers\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1767\"\n    },\n    {\n      \"id\": 1768,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 2\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Check code for vulnerabilities\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Check code for vulnerabilities\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1763\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1768\"\n    },\n    {\n      \"id\": 1769,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Add link to new community site\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Add link to new community site\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1769\"\n    },\n    {\n      \"id\": 1770,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Integrate with beta DB\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Integrate with beta DB\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1770\"\n    },\n    {\n      \"id\": 1771,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 3\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Update privacy policy\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update privacy policy\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1757\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1771\"\n    },\n    {\n      \"id\": 1772,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Fix leaderboard sorting\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Fix leaderboard sorting\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Forward\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1722\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Successor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1772\"\n    },\n    {\n      \"id\": 1773,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Fix level filtering on leaderboard\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Fix level filtering on leaderboard\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1773\"\n    },\n    {\n      \"id\": 1774,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\\\\Space Game Web Team\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 4\",\n        \"System.WorkItemType\": \"Product Backlog Item\",\n        \"System.State\": \"New\",\n        \"System.Reason\": \"New backlog item\",\n        \"System.Title\": \"Update site branding\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Update site branding\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": [\n        {\n          \"rel\": \"System.LinkTypes.Dependency-Reverse\",\n          \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1764\",\n          \"attributes\": {\n            \"isLocked\": \"false\",\n            \"name\": \"Predecessor\"\n          }\n        }\n      ],\n      \"url\": \"https://dev.azure.com/kaelli0595/_apis/wit/workItems/1774\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/BuildDefinitionGitHub/tpetchelmslearn-tailspin-spacegame-web-deploy.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n      \"connectedServiceId\": \"$GitHub_c26ff2e9$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"True\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"2019-09-26T01:28:15Z\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTA5NzEzMjQ=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-deploy/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-deploy\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-deploy\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"210971324\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\"\n      }\n    },\n    \"id\": 8,\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-deploy\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy\",\n      \"endPointName\": \"GitHub_c26ff2e9\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/ImportSourceCode/Space Game - web - Deploy database.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/lp3-staging-03/Space Game - web - Deploy database/_git/Space Game - web - Deploy database\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Deploy database-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Deploy database\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/ServiceEndpoints/GitHub_c26ff2e9-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_c26ff2e9\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/Teams/Space Game - web - Deploy database Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/Teams/Space Game - web - Deploy database Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/Teams/Space Game - web - Deploy database Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/Teams/Space Game - web - Deploy database Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"49b91585-b74c-40cd-b23a-3d45de072c5b\",\n    \"name\": \"Space Game - web - Deploy database Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeployDatabase/WorkItems/Issue.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:13.933Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:25:52.05Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Create a multi-stage pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:21.783Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:46.107Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Connect the web app to a database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:27.373Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:47.71Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate quality tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:33.477Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:49.16Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate performance tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:41.473Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:41.66Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Improve release cadence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/5\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/BuildDefinitionGitHub/tpetchelmslearn-tailspin-spacegame-web-deploy.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n      \"connectedServiceId\": \"$GitHub_604d3592$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"True\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"2019-09-26T01:28:15Z\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTA5NzEzMjQ=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-deploy/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-deploy\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-deploy\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"210971324\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\"\n      }\n    },\n    \"id\": 8,\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-deploy\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy\",\n      \"endPointName\": \"GitHub_604d3592\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/ImportSourceCode/Space Game - web - Deployment patterns.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/lp3-staging-03/Space Game - web - Deployment patterns/_git/Space Game - web - Deployment patterns\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Deployment patterns-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Deployment patterns\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/ServiceEndpoints/GitHub_604d3592-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_604d3592\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/Teams/Space Game - web - Deployment patterns Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/Teams/Space Game - web - Deployment patterns Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/Teams/Space Game - web - Deployment patterns Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/Teams/Space Game - web - Deployment patterns Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"49b91585-b74c-40cd-b23a-3d45de072c5b\",\n    \"name\": \"Space Game - web - Deployment patterns Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-DeploymentPatterns/WorkItems/Issue.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:13.933Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:25:52.05Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Create a multi-stage pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:21.783Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:26:46.88Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Connect the web app to a database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:27.373Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:28:39.973Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate quality tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:33.477Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:29:21.603Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate performance tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:41.473Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:41.66Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Improve release cadence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/5\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/BuildDefinitionGitHub/tpetchelmslearn-tailspin-spacegame-web-deploy.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n      \"connectedServiceId\": \"$GitHub_8dceab94$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"True\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"2019-09-26T01:28:15Z\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTA5NzEzMjQ=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-deploy/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-deploy\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-deploy\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"210971324\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\"\n      }\n    },\n    \"id\": 8,\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-deploy\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy\",\n      \"endPointName\": \"GitHub_8dceab94\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/ImportSourceCode/Space Game - web - Functional tests.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/lp3-staging-03/Space Game - web - Functional tests/_git/Space Game - web - Functional tests\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Functional tests-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Functional tests\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/ServiceEndpoints/GitHub_8dceab94-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_8dceab94\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/Teams/Space Game - web - Functional tests Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/Teams/Space Game - web - Functional tests Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/Teams/Space Game - web - Functional tests Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/Teams/Space Game - web - Functional tests Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"49b91585-b74c-40cd-b23a-3d45de072c5b\",\n    \"name\": \"Space Game - web - Functional tests Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-FunctionalTests/WorkItems/Issue.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:13.933Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:25:52.05Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Create a multi-stage pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:21.783Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:26:46.88Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Connect the web app to a database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:27.373Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:47.71Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate quality tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:33.477Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:49.16Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate performance tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:41.473Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:41.66Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Improve release cadence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/5\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/BuildDefinitionGitHub/tpetchelmslearn-tailspin-spacegame-web-deploy.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n      \"connectedServiceId\": \"$GitHub_93b35f8f$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"True\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"2019-09-26T01:28:15Z\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTA5NzEzMjQ=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-deploy/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-deploy\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-deploy\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"210971324\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\"\n      }\n    },\n    \"id\": 8,\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-deploy\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy\",\n      \"endPointName\": \"GitHub_eb001d95\"\n    },\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy\",\n      \"endPointName\": \"GitHub_93b35f8f\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/ImportSourceCode/Space Game - web - Release workflow.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/lp3-staging-03/Space Game - web - Release workflow/_git/Space Game - web - Release workflow\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Release workflow-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Release workflow\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/ServiceEndpoints/GitHub_93b35f8f-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_93b35f8f\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/ServiceEndpoints/GitHub_eb001d95-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_eb001d95\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/Teams/Space Game - web - Release workflow Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/Teams/Space Game - web - Release workflow Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/Teams/Space Game - web - Release workflow Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/Teams/Space Game - web - Release workflow Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"49b91585-b74c-40cd-b23a-3d45de072c5b\",\n    \"name\": \"Space Game - web - Release workflow Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Multi-stage/WorkItems/Issue.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:13.933Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:44.797Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Create a multi-stage pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:21.783Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:46.107Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Connect the web app to a database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:27.373Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:47.71Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate quality tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:33.477Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:49.16Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate performance tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:41.473Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:41.66Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Improve release cadence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/5\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/BuildDefinitionGitHub/tpetchelmslearn-tailspin-spacegame-web-deploy.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n      \"connectedServiceId\": \"$GitHub_39e50711$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"True\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"2019-09-26T01:28:15Z\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTA5NzEzMjQ=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-deploy/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-deploy\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-deploy\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"210971324\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\"\n      }\n    },\n    \"id\": 8,\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-deploy\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy\",\n      \"endPointName\": \"GitHub_39e50711\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/ImportSourceCode/Space Game - web - Non-functional tests.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/lp3-staging-03/Space Game - web - Non-functional tests/_git/Space Game - web - Non-functional tests\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Non-functional tests-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Non-functional tests\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/ServiceEndpoints/GitHub_39e50711-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_39e50711\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/Teams/Space Game - web - Non-functional tests Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/Teams/Space Game - web - Non-functional tests Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/Teams/Space Game - web - Non-functional tests Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/Teams/Space Game - web - Non-functional tests Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"49b91585-b74c-40cd-b23a-3d45de072c5b\",\n    \"name\": \"Space Game - web - Non-functional tests Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Non-functionalTests/WorkItems/Issue.json",
    "content": "{\n  \"count\": 5,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 4,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:13.933Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:25:52.05Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Create a multi-stage pipeline\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:21.783Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:26:46.88Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Connect the web app to a database\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:27.373Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:28:39.973Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate quality tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 3,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:33.477Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:49.16Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Automate performance tests\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 5,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Added to backlog\",\n        \"System.CreatedDate\": \"2019-09-26T05:18:41.473Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-09-26T05:18:41.66Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Improve release cadence\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/wit/workItems/5\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/BuildDefinitionGitHub/mslearn-tailspin-spacegame-web-automate.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-automate\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-automate/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-automate.git\",\n      \"connectedServiceId\": \"$GitHub_7cdb389c$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"False\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"10/29/2019 19:46:10\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-automate\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTgzNzA0MzM=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-automate/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-automate\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-automate\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"218370433\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-automate\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-automate\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-automate.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/thpetche-lp4-04/_apis/build/Queues/8\"\n      }\n    },\n    \"id\": 8,\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/thpetche-lp4-04/_apis/build/Queues/8\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-spacegame-web-automate\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-automate\",\n      \"endPointName\": \"GitHub_7cdb389c\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/ImportSourceCode/Space Game - web - ProvisionDB.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/thpetche-lp4-04/Space Game - web - ProvisionDB/_git/Space Game - web - ProvisionDB\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - ProvisionDB-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - ProvisionDB\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/ServiceEndpoints/GitHub_69cc250c.json",
    "content": "{\n  \"data\": {},\n  \"name\": \"GitHub_69cc250c\",\n  \"type\": \"GitHub\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-automate\",\n  \"authorization\": {\n    \"parameters\": {\n      \"username\": \"tpetchel\",\n      \"password\": \"password\"\n    },\n    \"scheme\": \"UsernamePassword\"\n  },\n  \"isShared\": false,\n  \"isReady\": true,\n  \"owner\": \"Library\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/ServiceEndpoints/GitHub_7cdb389c-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_7cdb389c\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/tpetchel/mslearn-tailspin-spacegame-web-automate.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/Teams/Space Game - web - ProvisionDB Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/Teams/Space Game - web - ProvisionDB Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/Teams/Space Game - web - ProvisionDB Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/Teams/Space Game - web - ProvisionDB Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"410d6456-70fc-4cb9-878d-57cc3433a5d1\",\n    \"name\": \"Space Game - web - ProvisionDB Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-ProvisionDB/WorkItems/Issue.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 4,\n      \"rev\": 1,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Moved to backlog\",\n        \"System.CreatedDate\": \"2019-11-25T04:04:52.92Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-11-25T04:04:52.92Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Provision a database in each environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Provision a database in each environment\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/thpetche-lp4-04/_apis/wit/workItems/4\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-11-25T04:04:52.807Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-11-25T05:13:10.547Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Scan for security and compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Scan for security and compliance\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/thpetche-lp4-04/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-11-25T04:04:52.637Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-11-25T05:13:08.573Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Configure virtual machines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Configure virtual machines\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/thpetche-lp4-04/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 1,\n      \"rev\": 2,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"Done\",\n        \"System.Reason\": \"Completed\",\n        \"System.CreatedDate\": \"2019-11-25T04:04:52.46Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-11-25T05:13:06.527Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Scale out the website\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": \"Scale out the website\",\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/thpetche-lp4-04/_apis/wit/workItems/1\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/BuildDefinitionGitHub/tpetchelmslearn-tailspin-spacegame-web-deploy.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"badgeEnabled\": true,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-deploy/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n      \"connectedServiceId\": \"$GitHub_70ec1fc5$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"True\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"2019-09-26T01:28:15Z\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTA5NzEzMjQ=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-deploy/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-deploy\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-deploy\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"210971324\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-deploy\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-deploy.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\"\n      }\n    },\n    \"id\": 8,\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/lp3-staging-03/_apis/build/Queues/8\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-deploy\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy\",\n      \"endPointName\": \"GitHub_70ec1fc5\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/ImportSourceCode/Space Game - web - Release.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://dev.azure.com/lp3-staging-03/Space Game - web - Release/_git/Space Game - web - Release\"\n    },\n    \"serviceEndpointId\": \"$Space Game - web - Release-code$\",\n    \"deleteServiceEndpointAfterImportIsDone\": true\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Release\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/ServiceEndpoints/GitHub_70ec1fc5-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_70ec1fc5\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/Teams/Space Game - web - Release Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/Teams/Space Game - web - Release Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/Teams/Space Game - web - Release Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/Teams/Space Game - web - Release Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Release/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"49b91585-b74c-40cd-b23a-3d45de072c5b\",\n    \"name\": \"Space Game - web - Release Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/BuildDefinitionGitHub/tpetchelmslearn-tailspin-spacegame-web-automate.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    },\n    {\n      \"settingsSourceType\": 2,\n      \"branchFilters\": [\n        \"+master\"\n      ],\n      \"forks\": {\n        \"enabled\": true,\n        \"allowSecrets\": false\n      },\n      \"pathFilters\": [],\n      \"requireCommentsForNonTeamMembersOnly\": false,\n      \"isCommentRequiredForPullRequest\": false,\n      \"triggerType\": \"pullRequest\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"apiUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-automate\",\n      \"branchesUrl\": \"https://api.github.com/repos/$username$/mslearn-tailspin-spacegame-web-automate/branches\",\n      \"cloneUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-automate.git\",\n      \"connectedServiceId\": \"$GitHub_69cc250c$\",\n      \"defaultBranch\": \"master\",\n      \"fullName\": \"repository\",\n      \"hasAdminPermissions\": \"False\",\n      \"isFork\": \"True\",\n      \"isPrivate\": \"False\",\n      \"lastUpdated\": \"2019-10-29T19:46:10Z\",\n      \"manageUrl\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-automate\",\n      \"nodeId\": \"MDEwOlJlcG9zaXRvcnkyMTgzNzA0MzM=\",\n      \"ownerId\": \"7142397\",\n      \"orgName\": \"tpetchel\",\n      \"refsUrl\": \"https://api.github.com/repos/tpetchel/mslearn-tailspin-spacegame-web-automate/git/refs\",\n      \"safeRepository\": \"tpetchel/mslearn-tailspin-spacegame-web-automate\",\n      \"shortName\": \"mslearn-tailspin-spacegame-web-automate\",\n      \"ownerAvatarUrl\": \"https://avatars2.githubusercontent.com/u/7142397?v=4\",\n      \"archived\": \"False\",\n      \"externalId\": \"218370433\",\n      \"ownerIsAUser\": \"True\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$username$/mslearn-tailspin-spacegame-web-automate\",\n    \"type\": \"GitHub\",\n    \"name\": \"$username$/mslearn-tailspin-spacegame-web-automate\",\n    \"url\": \"https://github.com/$username$/mslearn-tailspin-spacegame-web-automate.git\",\n    \"defaultBranch\": \"master\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/thpetche-lp4-01/_apis/build/Queues/8\"\n      }\n    },\n    \"id\": 8,\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/thpetche-lp4-01/_apis/build/Queues/8\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"mslearn-tailspin-spacegame-web-automate\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/ImportSourceCode/GitRepository.json",
    "content": "{\n  \"repositories\": [\n    {\n      \"fullName\": \"MicrosoftDocs/mslearn-tailspin-spacegame-web-automate\",\n      \"endPointName\": \"GitHub_69cc250c\"\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"Space Game - web - Terraform\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/ServiceEndpoints/GitHub_69cc250c-EndPoint.json",
    "content": "{\n  \"data\": {\n\n  },\n  \"name\": \"GitHub_69cc250c\",\n  \"type\": \"git\",\n  \"url\": \"https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-automate.git\",\n  \"authorization\": {\n    \"scheme\": \"UsernamePassword\",\n    \"parameters\": {\n      \"username\": \"$GitUserName$\",\n      \"password\": \"$GitUserPassword$\"\n    }\n  },\n  \"isReady\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/Teams/Space Game - web - Terraform Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/Teams/Space Game - web - Terraform Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/Teams/Space Game - web - Terraform Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/Teams/Space Game - web - Terraform Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"57e1fe8d-1a85-47ce-ab5d-17863a1d165f\",\n    \"name\": \"Space Game - web - Terraform Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-SpaceGame-web-Terraform/WorkItems/Issue.json",
    "content": "{\n  \"count\": 4,\n  \"value\": [\n    {\n      \"id\": 1,\n      \"rev\": 5,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2019-10-23T17:27:49.69Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-10-29T19:50:35.327Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Scale out the website\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/thpetche-lp4-01/_apis/wit/workItems/1\"\n    },\n    {\n      \"id\": 2,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2019-10-23T17:27:56.527Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-10-29T19:50:37.15Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Configure virtual machines\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/thpetche-lp4-01/_apis/wit/workItems/2\"\n    },\n    {\n      \"id\": 3,\n      \"rev\": 7,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Reactivated\",\n        \"System.CreatedDate\": \"2019-10-23T17:28:02.56Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-10-29T19:50:38.927Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Scan for security and compliance\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/thpetche-lp4-01/_apis/wit/workItems/3\"\n    },\n    {\n      \"id\": 4,\n      \"rev\": 9,\n      \"fields\": {\n        \"System.AreaPath\": \"$ProjectName$\",\n        \"System.TeamProject\": \"$ProjectName$\",\n        \"System.IterationPath\": \"$ProjectName$\\\\Sprint 1\",\n        \"System.WorkItemType\": \"Issue\",\n        \"System.State\": \"To Do\",\n        \"System.Reason\": \"Moved to backlog\",\n        \"System.CreatedDate\": \"2019-10-23T17:28:56.677Z\",\n        \"System.CreatedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.ChangedDate\": \"2019-10-29T19:50:43.88Z\",\n        \"System.ChangedBy\": \"Thomas Petchel <thpetche@microsoft.com>\",\n        \"System.Title\": \"Provision a database in each environment\",\n        \"Microsoft.VSTS.Scheduling.Effort\": 0.0,\n        \"System.Description\": null,\n        \"System.AssignedTo\": null,\n        \"Microsoft.VSTS.Scheduling.RemainingWork\": 0.0,\n        \"Microsoft.VSTS.Common.Priority\": 2.0,\n        \"System.BoardLane\": null,\n        \"System.Tags\": null,\n        \"Microsoft.VSTS.TCM.Steps\": null,\n        \"Microsoft.VSTS.TCM.Parameters\": null,\n        \"Microsoft.VSTS.TCM.LocalDataSource\": null,\n        \"Microsoft.VSTS.TCM.AutomationStatus\": null,\n        \"System.History\": null\n      },\n      \"relations\": null,\n      \"url\": \"https://dev.azure.com/thpetche-lp4-01/_apis/wit/workItems/4\"\n    }\n  ],\n  \"HttpStatusCode\": 0,\n  \"Message\": null\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Test-bicep/BuildDefinitions/toy-website-test.json",
    "content": "{\n  \"options\": [\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"5d58cc01-7c75-450c-be18-a388ddb129ec\"\n      },\n      \"inputs\": {\n        \"branchFilters\": \"[\\\"+refs/heads/*\\\"]\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"a9db38f9-9fdc-478c-b0f9-464221e58316\"\n      },\n      \"inputs\": {\n        \"workItemType\": \"Issue\",\n        \"assignToRequestor\": \"true\",\n        \"additionalFields\": \"{}\"\n      }\n    },\n    {\n      \"enabled\": false,\n      \"definition\": {\n        \"id\": \"57578776-4c22-4526-aeb0-86b6da17ee9c\"\n      },\n      \"inputs\": {}\n    }\n  ],\n  \"triggers\": [\n    {\n      \"branchFilters\": [\n        \"+main\"\n      ],\n      \"pathFilters\": [],\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"EnvironmentType\": {\n      \"value\": \"Test\"\n    },\n    \"ResourceGroupName\": {\n      \"value\": \"ToyWebsiteTest\"\n    },\n    \"ServiceConnectionName\": {\n      \"value\": \"ToyWebsiteTest\"\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"comment\": \"Update variables\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"deploy/azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-website-test\",\n      \"fullName\": \"toy-website-test\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$toy-website-test$\",\n      \"reportBuildStatus\": \"true\",\n      \"cleanOptions\": \"0\",\n      \"fetchDepth\": \"0\",\n      \"gitLfsSupport\": \"false\",\n      \"skipSyncSource\": \"false\",\n      \"checkoutNestedSubmodules\": \"false\",\n      \"labelSources\": \"0\",\n      \"labelSourcesFormat\": \"$(build.buildNumber)\"\n    },\n    \"id\": \"$toy-website-test$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"toy-website-test\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-website-test\",\n    \"defaultBranch\": \"main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\"\n      }\n    },\n    \"id\": \"$Hosted Ubuntu 1604$\",\n    \"name\": \"Hosted Ubuntu 1604\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Hosted Ubuntu 1604$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Hosted Ubuntu 1604\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"toy-website-test\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 3,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Test-bicep/ImportSourceCode/toy-website-test.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://github.com/MicrosoftDocs/mslearn-test-bicep-code-using-azure-pipelines.git\"\n    },\n    \"serviceEndpointId\": \"\",\n    \"deleteServiceEndpointAfterImportIsDone\": false\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Test-bicep/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Test-bicep/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"IsPrivate\": \"true\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/BuildDefinitions/module-storage-account.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"modules/storage-account/pipeline.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-reusable\",\n      \"fullName\": \"toy-reusable\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$toy-reusable$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$toy-reusable$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"toy-reusable\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-reusable\",\n    \"defaultBranch\": \"refs/heads/main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"module-storage-account\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/BuildDefinitions/template-spec-linux-app-service.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"template-specs/linux-app-service/pipeline.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-reusable\",\n      \"fullName\": \"toy-reusable\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$roy-reusable$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$toy-reusable$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"toy-reusable\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-reusable\",\n    \"defaultBranch\": \"refs/heads/main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"template-spec-linux-app-service\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 2,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/ImportSourceCode/toy-reusable.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://github.com/MicrosoftDocs/mslearn-publish-reusable-bicep-code-using-azure-pipelines.git\"\n    },\n    \"serviceEndpointId\": \"\",\n    \"deleteServiceEndpointAfterImportIsDone\": false\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"toy-reusable\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"IsPrivate\": \"true\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/Teams/Teams.json",
    "content": "[\n  {\n    \"id\": \"92b98ca1-adcb-454c-a6d3-f55708b1a66f\",\n    \"name\": \"toy-reusable Team\",\n    \"description\": \"The default project team.\",\n    \"isDefault\": \"true\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/Teams/toy-reusable Team/BoardColumns.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Epic\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Epic\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"name\": \"To Do\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"To Do\"\n        },\n        \"columnType\": \"incoming\"\n      },\n      {\n        \"name\": \"Doing\",\n        \"itemLimit\": 5,\n        \"stateMappings\": {\n          \"Issue\": \"Doing\"\n        },\n        \"columnType\": \"inProgress\",\n        \"isSplit\": false,\n        \"description\": \"\"\n      },\n      {\n        \"name\": \"Done\",\n        \"itemLimit\": 0,\n        \"stateMappings\": {\n          \"Issue\": \"Done\"\n        },\n        \"columnType\": \"outgoing\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/Teams/toy-reusable Team/BoardRows.json",
    "content": "[\n  {\n    \"BoardName\": \"Epics\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  },\n  {\n    \"BoardName\": \"Issues\",\n    \"value\": [\n      {\n        \"id\": \"00000000-0000-0000-0000-000000000000\",\n        \"name\": null\n      }\n    ]\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/Teams/toy-reusable Team/CardFields.json",
    "content": "[\n  {\n    \"cards\": {\n      \"Epic\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        }\n      ]\n    },\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"cards\": {\n      \"Issue\": [\n        {\n          \"fieldIdentifier\": \"System.Id\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Title\"\n        },\n        {\n          \"fieldIdentifier\": \"System.AssignedTo\",\n          \"displayFormat\": \"AvatarAndFullName\"\n        },\n        {\n          \"fieldIdentifier\": \"System.Tags\"\n        },\n        {\n          \"fieldIdentifier\": \"System.State\"\n        },\n        {\n          \"fieldIdentifier\": \"Microsoft.VSTS.Scheduling.Effort\"\n        }\n      ]\n    },\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-Toy-reusable/Teams/toy-reusable Team/CardStyles.json",
    "content": "[\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Epics\"\n  },\n  {\n    \"url\": \"\",\n    \"rules\": {\n      \"tagStyle\": []\n    },\n    \"_links\": \"{}\",\n    \"BoardName\": \"Issues\"\n  }\n]"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-manage-end-end-deployment-scenarios/BuildDefinitions/toy-website-end-to-end.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"deploy/azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-website-end-to-end\",\n      \"fullName\": \"toy-website-end-to-end\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$toy-website-end-to-end$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$toy-website-end-to-end$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"toy-website-end-to-end\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-website-end-to-end\",\n    \"defaultBranch\": \"refs/heads/main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"toy-website-end-to-end\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-manage-end-end-deployment-scenarios/ImportSourceCode/toy-website-end-to-end.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://github.com/MicrosoftDocs/mslearn-manage-end-end-deployment-scenarios-using-bicep-azure-pipelines.git\"\n    },\n    \"serviceEndpointId\": \"\",\n    \"deleteServiceEndpointAfterImportIsDone\": false\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-manage-end-end-deployment-scenarios/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"toy-website-end-to-end\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-manage-end-end-deployment-scenarios/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-manage-end-end-deployment-scenarios/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-manage-end-end-deployment-scenarios/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MSL-manage-end-end-deployment-scenarios/VariableGroups/VariableGroup.json",
    "content": "{\n  \"count\": 2,\n  \"value\": [\n    {\n      \"variables\": {\n        \"EnvironmentType\": {\n          \"value\": \"Test\"\n        },\n        \"ResourceGroupName\": {\n          \"value\": \"ToyWebsiteTest\"\n        },\n        \"ReviewApiKey\": {\n          \"value\": \"sandboxsecretkey\",\n          \"isSecret\": true\n        },\n        \"ReviewApiUrl\": {\n          \"value\": \"https://sandbox.contoso.com/reviews\"\n        }\n      },\n      \"id\": \"10\",\n      \"type\": \"Vsts\",\n      \"name\": \"ToyWebsiteTest\",\n      \"isShared\": false\n    },\n    {\n      \"variables\": {\n        \"EnvironmentType\": {\n          \"value\": \"Production\"\n        },\n        \"ResourceGroupName\": {\n          \"value\": \"ToyWebsiteProduction\"\n        },\n        \"ReviewApiKey\": {\n          \"value\": \"productionsecretkey\",\n          \"isSecret\": true\n        },\n        \"ReviewApiUrl\": {\n          \"value\": \"https://api.contoso.com/reviews\"\n        }\n      },\n      \"id\": \"9\",\n      \"type\": \"Vsts\",\n      \"name\": \"ToyWebsiteProduction\",\n      \"isShared\": false\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Manage-multiple-environments-azure-pipelines/BuildDefinitions/toy-website-environments.json",
    "content": "{\n  \"triggers\": [\n    {\n      \"branchFilters\": [],\n      \"pathFilters\": [],\n      \"settingsSourceType\": 2,\n      \"batchChanges\": false,\n      \"maxConcurrentBuildsPerBranch\": 1,\n      \"triggerType\": \"continuousIntegration\"\n    }\n  ],\n  \"variables\": {\n    \"EnvironmentType\": {\n      \"value\": \"Test\"\n    },\n    \"ResourceGroupName\": {\n      \"value\": \"ToyWebsite\"\n    },\n    \"ServiceConnectionName\": {\n      \"value\": \"ToyWebsite\"\n    }\n  },\n  \"properties\": {},\n  \"tags\": [],\n  \"_links\": \"{}\",\n  \"jobAuthorizationScope\": \"projectCollection\",\n  \"jobTimeoutInMinutes\": 60,\n  \"jobCancelTimeoutInMinutes\": 5,\n  \"process\": {\n    \"yamlFilename\": \"deploy/azure-pipelines.yml\",\n    \"type\": 2\n  },\n  \"repository\": {\n    \"properties\": {\n      \"cloneUrl\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-website-environments\",\n      \"fullName\": \"toy-website-environments\",\n      \"defaultBranch\": \"refs/heads/main\",\n      \"isFork\": \"False\",\n      \"safeRepository\": \"$toy-website-environments$\",\n      \"reportBuildStatus\": \"true\"\n    },\n    \"id\": \"$toy-website-environments$\",\n    \"type\": \"TfsGit\",\n    \"name\": \"toy-website-environments\",\n    \"url\": \"https://$Organization$@dev.azure.com/$Organization$/$ProjectName$/_git/toy-website-environments\",\n    \"defaultBranch\": \"refs/heads/main\",\n    \"clean\": null,\n    \"checkoutSubmodules\": false\n  },\n  \"quality\": \"definition\",\n  \"authoredBy\": \"{}\",\n  \"drafts\": [],\n  \"queue\": {\n    \"_links\": {\n      \"self\": {\n        \"href\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\"\n      }\n    },\n    \"id\": \"$Azure Pipelines$\",\n    \"name\": \"Azure Pipelines\",\n    \"url\": \"https://dev.azure.com/$Organization$/_apis/build/Queues/$Azure Pipelines$\",\n    \"pool\": {\n      \"id\": \"\",\n      \"name\": \"Azure Pipelines\",\n      \"isHosted\": true\n    }\n  },\n  \"id\": \"\",\n  \"name\": \"toy-website-environments\",\n  \"url\": \"\",\n  \"uri\": \"\",\n  \"path\": \"\\\\\",\n  \"type\": \"build\",\n  \"queueStatus\": \"enabled\",\n  \"revision\": 1,\n  \"createdDate\": \"\",\n  \"project\": \"{}\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Manage-multiple-environments-azure-pipelines/ImportSourceCode/toy-website-environments.json",
    "content": "{\n  \"parameters\": {\n    \"gitSource\": {\n      \"url\": \"https://github.com/MicrosoftDocs/mslearn-manage-multiple-environments-using-bicep-azure-pipelines.git\"\n    },\n    \"serviceEndpointId\": \"\",\n    \"deleteServiceEndpointAfterImportIsDone\": false\n  }\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Manage-multiple-environments-azure-pipelines/Iterations.json",
    "content": "{\n  \"children\": [\n    {\n      \"name\": \"Sprint 1\",\n      \"structureType\": \"iteration\",\n      \"hasChildren\": false\n    }\n  ],\n  \"name\": \"toy-website-environments\",\n  \"structureType\": \"iteration\",\n  \"hasChildren\": true\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Manage-multiple-environments-azure-pipelines/ProjectSettings.json",
    "content": "{\n  \"type\": \"Basic\",\n  \"id\": \"b8a3a935-7e91-48b8-a94c-606d37c3e9f2\",\n  \"users\": []\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Manage-multiple-environments-azure-pipelines/ProjectTemplate.json",
    "content": "{\n  \"Description\": \"Generated by Azure DevOps Demo Generator\",\n  \"Teams\": \"Teams.json\",\n  \"BoardColumns\": \"BoardColumns.json\",\n  \"ProjectSettings\": \"ProjectSettings.json\",\n  \"CardStyle\": \"UpdateCardStyles.json\",\n  \"CardField\": \"UpdateCardFields.json\",\n  \"BugfromTemplate\": \"Bug.json\",\n  \"EpicfromTemplate\": \"Epic.json\",\n  \"FeaturefromTemplate\": \"Feature.json\",\n  \"PBIfromTemplate\": \"ProductBacklogItem.json\",\n  \"UserStoriesFromTemplate\": \"UserStory.json\",\n  \"TaskfromTemplate\": \"Task.json\",\n  \"TestCasefromTemplate\": \"TestCase.json\",\n  \"SetEpic\": \"EnableEpic.json\",\n  \"TeamArea\": \"TeamArea.json\",\n  \"IsPrivate\": \"true\",\n  \"TemplateVersion\": \"2.0\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/Manage-multiple-environments-azure-pipelines/TeamArea.json",
    "content": "{\n  \"defaultValue\": \"$ProjectName$\\\\$AreaName$\",\n  \"values\": [\n    {\n      \"value\": \"$ProjectName$\\\\$AreaName$\",\n      \"includeChildren\": false\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/MovePages.json",
    "content": "{\n  \"path\": \"$ChildFile$\",\n  \"newPath\": \"$ParentFile$/$ChildFile$\",\n  \"newOrder\": 0\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/SampleContent.json",
    "content": "{\n  \"content\": \"$Content$\"\n}"
  },
  {
    "path": "src/VstsDemoBuilder/Templates/TemplateSetting.json",
    "content": "{\n  \"Groups\": [\n    \"General\",\n    \"DevOps Labs\",\n    \"Microsoft Learn\",\n    \"Azure Community\",\n    \"Cloud Adoption Framework\",\n    \"FastTrack for Azure\",\n    \"Private\"\n  ],\n  \"PrivateGroups\": [\n    \"PrivateTemplates\"\n  ],\n  \"GroupwiseTemplates\": [\n    {\n      \"Groups\": \"General\",\n      \"Template\": [\n        {\n          \"Key\": \"bd068fd0-10dc-475f-8483-78e983b5e211\",\n          \"Name\": \"eShopOnWeb\",\n          \"TemplateFolder\": \"Gen-eShopOnWeb\",\n          \"ShortName\": \"eShopOnWeb\",\n          \"Description\": \"This template contains the source code, pipelines and e2e implementations for GitHub Advanced Security for Azure DevOps using eShopOnWeb source code. See the home page for project on <a href='https://github.com/dotnet-architecture/eShopOnWeb' target='_blank'> GitHub</a>. <a href='https://azuredevopslabs.com/labs/azuredevops/EndtoEnd/' target='_blank'> Refer to Azure DevOps End to End Concepts </a>\",\n          \"Tags\": [\n            \"GHAS\",\n            \"Advanced Security\",\n            \"agile\",\n            \"aspdotnetcore\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/eShop.png\"\n        },\n        {\n          \"Key\": \"77379\",\n          \"Name\": \"PartsUnlimited\",\n          \"TemplateFolder\": \"Gen-PartsUnlimited\",\n          \"ShortName\": \"PartsUnlimited\",\n          \"Description\": \"Use this lab to provision a scrum based team project containing sample work items, complete source code and pipeline definitions to deploy Parts Unlimited, a sample eCommerce website based on the The Phoenix Project book by Gene Kim. See the home page of the project on <a href='https://github.com/Microsoft/PartsUnlimited' target='_blank'>GitHub</a> \",\n          \"Tags\": [\n            \"scrum\",\n            \"aspdotnet\",\n            \"azureappservice\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/Partunlimited.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/PartsUnlimited/Images/boards.png\",\n            \"/Templates/PartsUnlimited/Images/pulwebsite.png\",\n            \"/Templates/PartsUnlimited/Images/dashboard.png\"\n          ]\n        },\n        {\n          \"Key\": \"77383\",\n          \"Name\": \"SmartHotel360\",\n          \"TemplateFolder\": \"Gen-SmartHotel360\",\n          \"ShortName\": \"SmartHotel360\",\n          \"Description\": \"This template contains work items, code and pipeline definitions for the public web site of SmartHotel360, an E2E reference sample app with several consumer and line-of-business apps and an Azure backend. For more information, please see the project page on <a href='https://github.com/Microsoft/SmartHotel360' target='_blank'>GitHub</a>\",\n          \"Tags\": [\n            \"scrum\",\n            \"aspnetcore\",\n            \"azureappservice\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/SmartHotel.png\",\n          \"PreviewImages\": [\n            \"/Templates/SmartHotel360/Images/dashboard.png\",\n            \"/Templates/SmartHotel360/Images/Diagram.png\",\n            \"/Templates/SmartHotel360/Images/Screens.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Note: This template requires latest versions of ARM Outputs extension, please update. Ignore if you already have the latest version. \\n <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>'\"\n        },\n        {\n          \"Key\": \"77386\",\n          \"Name\": \"Tailwind Traders\",\n          \"TemplateFolder\": \"Gen-Tailwind Traders\",\n          \"ShortName\": \"TailwindTraders\",\n          \"Description\": \"Tailwind Traders is an ASP.NET & React application, which uses Azure App Service, AKS, Cosmos DB, Logic App and the Function App.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Data and AI\",\n            \"React\"\n          ],\n          \"PreviewImages\": [\n            \"/Templates/Tailwind Traders/Images/Architecture.png\",\n            \"/Templates/Tailwind Traders/Images/Website.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/TailwindTraders.png\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Note: This template requires latest versions of ARM Outputs extension, please update. Ignore if you already have the latest version. <br> Fork <a href='https://github.com/microsoft/tailwindtraders-website' target='_blank'> Tailwind Traders Website </a> and <a href='https://github.com/microsoft/tailwindTraders-Backend' target='_blank'> Tailwind Traders Backend </a> repository and follow the steps given in the document to set up your resources on Azure and deployment pipelines.\"\n        },\n        {\n          \"Key\": \"77380\",\n          \"Name\": \"MyHealthClinic\",\n          \"TemplateFolder\": \"Gen-MyHealthClinic\",\n          \"ShortName\": \"MyHealthClinic\",\n          \"Description\": \"This template provisions a scrum based team project with code, work items for a  sample ASP.NET Core web application-My Health Clinic. The template also includes pipeline definition to build and deploy the web app to Azure App Service.\",\n          \"Tags\": [\n            \"scrum\",\n            \"aspnetcore\",\n            \"azureappservice\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/MyHealthClinic.png\",\n          \"PreviewImages\": [\n            \"/Templates/MyHealthClinic/Images/boards.png\",\n            \"/Templates/MyHealthClinic/Images/CI.png\",\n            \"/Templates/MyHealthClinic/Images/dashboard.png\",\n            \"/Templates/MyHealthClinic/Images/site.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"LastUpdatedDate\": \"20/12/2018\"\n        },\n        {\n          \"Key\": \"77387\",\n          \"Name\": \"PartsUnlimited-YAML\",\n          \"TemplateFolder\": \"Gen-PartsUnlimited-YAML\",\n          \"ShortName\": \"yml\",\n          \"Description\": \"Use this lab to provision a scrum based team project containing sample work items, complete source code and pipeline definitions to deploy Parts Unlimited, a sample eCommerce website based on the The Phoenix Project book by Gene Kim. See the home page of the project on <a href='https://github.com/Microsoft/PartsUnlimited' target='_blank'>GitHub</a> \",\n          \"Tags\": [\n            \"scrum\",\n            \"aspdotnet\",\n            \"azureappservice\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/Partunlimited.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/PartsUnlimited/Images/boards.png\",\n            \"/Templates/PartsUnlimited/Images/pulwebsite.png\",\n            \"/Templates/PartsUnlimited/Images/dashboard.png\"\n          ]\n        },\n        {\n          \"Key\": \"77371\",\n          \"Name\": \"MyShuttle\",\n          \"TemplateFolder\": \"Gen-MyShuttle\",\n          \"ShortName\": \"MyShuttle\",\n          \"Description\": \"This template contains work items and source code for  MyShuttle, a sample Java application backed by a MySQL database. This template also contains pipeline definitions to build the maven project and deploy the app to Tomcat server on Azure app service. <br />Lab URL: <a href='https://www.azuredevopslabs.com/labs/vstsextend/tomcat/' target='_blank'> Deploying a Java application on Tomcat</a> \",\n          \"Tags\": [\n            \"scrum\",\n            \"java\",\n            \"application\",\n            \"azure web app\",\n            \"mysql\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/MyShuttle.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/MyShuttle/Images/boards.png\",\n            \"/Templates/MyShuttle/Images/loginpage.png\",\n            \"/Templates/MyShuttle/Images/dashboard.png\"\n          ]\n        },\n        {\n          \"Key\": \"77384\",\n          \"Name\": \"ContosoAir\",\n          \"TemplateFolder\": \"Gen-ContosoAir\",\n          \"ShortName\": \"ContosoAir\",\n          \"Description\": \"Contoso Air is a sample airline booking application with a Node.js based frontend with a CosmosDB database. This template provisions an Agile based project with user stories, features, epics and a CI&CD pipeline that builds and deploys code from  <a href='https://github.com/Microsoft/ContosoAir' target='_blank'>GitHub</a>\",\n          \"Message\": \"Note that the code for the Contoso Air Website is hosted on GitHub and is not imported to Azure Repos. The CI pipeline refers to the code on <a href='https://github.com/Microsoft/ContosoAir' target='_blank'>GitHub</a>\",\n          \"Tags\": [\n            \"agile\",\n            \" node.js\",\n            \"User stories\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/ContosAir.png\"\n        }\n\n      ]\n    },\n    {\n      \"Groups\": \"DevOps Labs\",\n      \"Template\": [\n        {\n          \"Key\": \"77382\",\n          \"Name\": \"Terraform\",\n          \"TemplateFolder\": \"DL-Terraform\",\n          \"ShortName\": \"Terraform\",\n          \"Description\": \"Use this template to learn how Terraform can be used to implement Infrastructure as Code (IaC) and how we can automate infrastructure deployments in the Cloud with Terraform and Azure pipelines.\",\n          \"Tags\": [\n            \"infrastructure as code\",\n            \"aspdotnetcore\",\n            \"azure cloud\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/Terraform.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/Terraform/Images/Terraform.png\",\n            \"/Templates/Terraform/Images/queuebuild.gif\",\n            \"/Templates/Terraform/Images/releasetasks.png\",\n            \"/Templates/Terraform/Images/releasetrigger.gif\"\n          ],\n          \"Message\": \"Note: <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>\"\n        },\n        {\n          \"Key\": \"77386\",\n          \"Name\": \"Ansible\",\n          \"TemplateFolder\": \"DL-Ansible\",\n          \"ShortName\": \"Ansible\",\n          \"Description\": \"Use this template to learn how Ansible can be used to implement Infrastructure as Code (IaC) and how we can automate infrastructure deployments in the Cloud with Ansible and Azure pipelines\",\n          \"Tags\": [\n            \"infrastructure as code\",\n            \"java\",\n            \"azure cloud\",\n            \"playbook\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/Ansible.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/Ansible/Images/browseweb.png\",\n            \"/Templates/Ansible/Images/ci-queue.gif\",\n            \"/Templates/Ansible/Images/cd-queue.gif\",\n            \"/Templates/Ansible/Images/logintosite.png\"\n          ]\n        },\n        {\n          \"Key\": \"77381\",\n          \"Name\": \"LaunchDarkly\",\n          \"TemplateFolder\": \"DL-LaunchDarkly\",\n          \"ShortName\": \"LaunchDarkly\",\n          \"Image\": \"/Templates/TemplateImages/launchdarkly.png\",\n          \"Author\": \"Microsoft\",\n          \"Description\": \"Use this template to learn how to implement a very simple feature flag for an ASP.NET MVC application using LaunchDarkly and how we can integrate LaunchDarkly with Azure DevOps release pipelines\",\n          \"PreviewImages\": [\n            \"/Templates/LaunchDarkly/Images/CD.png\",\n            \"/Templates/LaunchDarkly/Images/buildandrelease.gif\",\n            \"/Templates/LaunchDarkly/Images/browseapp.png\"\n          ],\n          \"Message\": \"Note: <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>\"\n        },\n        {\n          \"Key\": \"77385\",\n          \"Name\": \"Azure Machine Learning\",\n          \"TemplateFolder\": \"DL-MachineLearning\",\n          \"ShortName\": \"MachineLearning\",\n          \"Description\": \"This template contains code and pipeline definition for a machine learning project demonstrating how to automate the end to end ML/AI project. The build pipelines include DevOps tasks for data sanity test, unit test, model training on different compute targets, model version management, model evaluation/model selection, model deployment as realtime web service, staged deployment to QA/prod, integration testing and functional testing.\",\n          \"Image\": \"/Templates/TemplateImages/MachineLearning.png\",\n          \"Tags\": [\n            \"Agile\",\n            \"Machine Learning\",\n            \"AI\"\n          ],\n          \"Author\": \"<a href='mailto:prsol@microsoft.com'>Praneet Singh Solanki</a>\",\n          \"PreviewImages\": [\n            \"/Templates/MachineLearning/Images/aml.png\",\n            \"/Templates/MachineLearning/Images/CI.png\",\n            \"/Templates/MachineLearning/Images/Items.png\"\n          ]\n        },\n        {\n          \"Key\": \"77380\",\n          \"Name\": \"Azure Key Vault\",\n          \"TemplateFolder\": \"DL-Keyvault\",\n          \"ShortName\": \"Keyvault\",\n          \"Image\": \"/Templates/TemplateImages/key-vault.png\",\n          \"Description\": \"Use this template to learn how you can read a secret from an Azure Key Vault in a CI/CD pipeline. <br/> Lab URL:<a href='https://azuredevopslabs.com/labs/vstsextend/azurekeyvault/' target='_blank'>Using secrets from Azure Key Vault in a pipeline</a>\",\n          \"Tags\": [\n            \"JPA \",\n            \"key vault\",\n            \"azureappservice\"\n          ],\n          \"Message\": \"Note that the code for the Azure Key Vault hosted on <a href='https://github.com/hsachinraj/SmartHotel360-CouponManagement.git' target='_blank'>GitHub</a> is not imported into Azure Repos. The CI pipeline just points to the code on GitHub. \\n <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>\",\n          \"Author\": \"Microsoft\",\n          \"LastUpdatedDate\": \"12/3/2019\"\n        },\n        {\n          \"Key\": \"77363\",\n          \"Name\": \"Docker\",\n          \"TemplateFolder\": \"DL-Docker\",\n          \"ShortName\": \"Docker\",\n          \"Description\": \"Learn how you can use Azure pipelines to build and deploy a Docker based ASP.NET Core web application to Azure Container Registry and  Azure App Service. <br/> Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/docker/' target='_blank'>Deploying Docker Containers to Azure App Service</a>\",\n          \"Tags\": [\n            \"docker\",\n            \"containers\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/Docker.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/Docker/Images/buildtasks.png\",\n            \"/Templates/Docker/Images/buildresult.png\",\n            \"/Templates/Docker/Images/release.png\",\n            \"/Templates/Docker/Images/finalresult.png\"\n          ],\n          \"Message\": \"Note: <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>\"\n        },\n        {\n          \"Key\": \"77372\",\n          \"Name\": \"Azure Kubernetes Service\",\n          \"TemplateFolder\": \"DL-AKS\",\n          \"ShortName\": \"AKS\",\n          \"Description\": \"Use this template to learn how to deploy a Docker-based ASP.NET Core web application to a Kubernetes cluster running in Azure Kubernetes Service (AKS) with Azure Pipelines. <br />Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/kubernetes/' target='_blank'> Deploying to Azure Container Service (AKS)</a>\",\n          \"Tags\": [\n            \"aks\",\n            \"kubernetes\",\n            \"containers\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/kubernetes.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/AKS/Images/AKS.png\",\n            \"/Templates/AKS/Images/aksdashboard.png\",\n            \"/Templates/AKS/Images/update_CD3.png\",\n            \"/Templates/AKS/Images/updateprocessbd.png\"\n          ],\n          \"Message\": \"Note: <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>\"\n        },\n        {\n          \"Key\": \"77370\",\n          \"Name\": \"Octopus\",\n          \"TemplateFolder\": \"DL-Octopus\",\n          \"ShortName\": \"Octopus\",\n          \"Description\": \"Select this template if you are following the “integrating Octopus Deploy” lab. The template provisions code for a sample PHP application and a build pipeline. <br />Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/Octopus/' target='_blank'>Integrating Octopus Deploy</a>\",\n          \"Tags\": [\n            \"azure app service\",\n            \"octopus\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/octopus.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/Octopus/Images/AccountOctopusDeploy.png\",\n            \"/Templates/Octopus/Images/BuildAzureDevOpsServices1.png\",\n            \"/Templates/Octopus/Images/OctopusDeploy.png\",\n            \"/Templates/Octopus/Images/PartsUnlimited.png\"\n          ],\n          \"Message\": \"Note: <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>\"\n        },\n        {\n          \"Key\": \"77367\",\n          \"Name\": \"Selenium\",\n          \"TemplateFolder\": \"DL-Selenium\",\n          \"ShortName\": \"Selenium\",\n          \"Description\": \"This template contains code of Parts Unlimited and pipelines definitions that will show you how you can deploy and test applications using Selenium. <br />Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/Selenium/' target='_blank'>Driving continuous testing with Selenium</a>\",\n          \"Tags\": [\n            \"selenium\",\n            \"aspdotnet\",\n            \"automation testing\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/selenium.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/Selenium/Images/Buildsuccess.png\",\n            \"/Templates/Selenium/Images/dev.png\",\n            \"/Templates/Selenium/Images/seleniumtest.png\",\n            \"/Templates/Selenium/Images/testsuccess.png\"\n          ]\n        },\n        {\n          \"Key\": \"77368\",\n          \"Name\": \"DeploymentGroups\",\n          \"TemplateFolder\": \"DL-DeploymentGroups\",\n          \"ShortName\": \"DeploymentGroups\",\n          \"Description\": \"Provision a team project using this template to learn how you build and release  applications to multiple target servers on Azure using Deployment Groups with Azure Pipelines. <br />Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/deploymentgroups/' target='_blank'>Working with Deployment Groups</a>\",\n          \"Tags\": [\n            \"deployment groups\",\n            \"azure devops\",\n            \"parallel  deployment\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureDevOps.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/DeploymentGroups/Images/application.png\",\n            \"/Templates/DeploymentGroups/Images/dgscript.png\",\n            \"/Templates/DeploymentGroups/Images/differentphases.png\"\n          ]\n        },\n        {\n          \"Key\": \"77364\",\n          \"Name\": \"SonarQube\",\n          \"TemplateFolder\": \"DL-SonarQube\",\n          \"ShortName\": \"SonarQube\",\n          \"Description\": \"This template contains code of MyShuttle, a sample application and a pipeline definition that will show you how you can use SonarQube with Azure Pipeline to analyze code during build and improve code quality. <br />Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/sonarqube/' target='_blank'>Technical Debt Management with SonarQube</a>\",\n          \"Tags\": [\n            \"code analysis\",\n            \"sonarqube\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/SonarQube.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/SonarQube/Images/bug_details.png\",\n            \"/Templates/SonarQube/Images/analysis_report.png\",\n            \"/Templates/SonarQube/Images/build_configure.png\",\n            \"/Templates/SonarQube/Images/build_summary.png\"\n          ],\n          \"Message\": \"Note: <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>\"\n        },\n        {\n          \"Key\": \"77375\",\n          \"Name\": \"ReleaseGates\",\n          \"TemplateFolder\": \"DL-ReleaseGates\",\n          \"ShortName\": \"ReleaseGates\",\n          \"Description\": \"Release Gates allow you to configure automated calls to external services, where the results are used to approve or reject a deployment. Use this template if you are following the <a href='https://azuredevopslabs.com/labs/vstsextend/releasegates/' target='_blank''>Controlling deployments using Release Gates</a> Lab\",\n          \"Tags\": [\n            \"aks\",\n            \"kubernetes\",\n            \"containers\",\n            \"aspnetcore\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureDevOps.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/ReleaseGates/Images/qam.png\",\n            \"/Templates/ReleaseGates/Images/querywi.png\",\n            \"/Templates/ReleaseGates/Images/timeout.png\"\n          ]\n        },\n        {\n          \"Key\": \"77365\",\n          \"Name\": \"PHP\",\n          \"TemplateFolder\": \"DL-PHP\",\n          \"ShortName\": \"PHP\",\n          \"Description\": \"This template contains code for a sample PHP application and pipeline definitions to build & deploy a PHP application  to Azure App service. <br />Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/PHP/' target='_blank'> Deploy PHP application to Azure App Service</a>\",\n          \"Tags\": [\n            \"php\",\n            \"azure app service\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/PHP.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/PHP/Images/authorize.png\",\n            \"/Templates/PHP/Images/builddef.png\",\n            \"/Templates/PHP/Images/php.png\"\n          ]\n        },\n        {\n          \"Key\": \"77369\",\n          \"Name\": \"Python\",\n          \"TemplateFolder\": \"DL-Python\",\n          \"ShortName\": \"Python\",\n          \"Description\": \"Select this template with code for a sample Python application and pipeline definitions to learn how you can build and deploy a Python app to Azure App service using Django framework.<br />Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/python/' target='_blank'>How to deploy a Python application to Azure using Azure Pipelines</a>\",\n          \"Tags\": [\n            \"quality validation\",\n            \"infrastructure health\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/Python.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/Python/Images/ci-pipeline.png\",\n            \"/Templates/Python/Images/cd-tasks.png\",\n            \"/Templates/Python/Images/release-progress.gif\",\n            \"/Templates/Python/Images/release-output.gif\"\n          ]\n        },\n        {\n          \"Key\": \"77362\",\n          \"Name\": \"WhiteSource Bolt\",\n          \"TemplateFolder\": \"DL-WhiteSource-Bolt\",\n          \"ShortName\": \"WhiteSource-Bolt\",\n          \"Description\": \"This template provisions WebGoat code, a deliberately insecure web application from OWASP along with CI and CD definitions that will teach you how you can manage security and compliance when using open-source software, with WhiteSource. <br />Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/WhiteSource/' target='_blank'>OSS governance with WhiteSource</a>\",\n          \"Tags\": [\n            \"security vulnerabilities\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/WhiteSourceBolt.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/WhiteSource-Bolt/Images/CI.png\",\n            \"/Templates/WhiteSource-Bolt/Images/WhiteSourceBolt13.png\",\n            \"/Templates/WhiteSource-Bolt/Images/WhiteSourceBolt30.png\"\n          ],\n          \"Message\": \"Note: <p>If you're using Demo Generator for the first time, please make the following setting in your organization settings </p> </p><img src='/Templates/TemplateImages/policy-org.png' style='width:100%;border:1px solid blue;' alt='note'/></p>\"\n        },\n        {\n          \"Key\": \"77374\",\n          \"Name\": \"AzureFunctions\",\n          \"TemplateFolder\": \"DL-AzureFunctions\",\n          \"ShortName\": \"AzureFunctions\",\n          \"Description\": \"Provision a team project using this template to learn how you build and release Azure Functions with Azure Pipelines\",\n          \"Tags\": [\n            \"azure function\",\n            \"serverless compute\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureFunction.png\",\n          \"Author\": \"Microsoft\",\n          \"PreviewImages\": [\n            \"/Templates/AzureFunctions/Images/createfunctionapp.png\",\n            \"/Templates/AzureFunctions/Images/projectcreation.png\",\n            \"/Templates/AzureFunctions/Images/deploysite.png\",\n            \"/Templates/AzureFunctions/Images/pulwebsite.png\"\n          ]\n        },\n        {\n          \"Key\": \"77366\",\n          \"Name\": \"GitHub\",\n          \"TemplateFolder\": \"DL-GitHub\",\n          \"ShortName\": \"GitHub\",\n          \"Description\": \"Use this team project template to deploy an ASP.Net sample application to Azure App Service using CI/CD pipeline in Azure DevOps with code repository in GitHub. <br /> Lab URL: <a href='https://azuredevopslabs.com/labs/vstsextend/github/' target='_blank'>How to continuously deliver code on GitHub with Azure DevOps</a>\",\n          \"Image\": \"/Templates/TemplateImages/GitHub.png\",\n          \"Author\": \"Microsoft\"\n        }\n      ]\n    },\n    {\n      \"Groups\": \"Private\",\n      \"Template\": [\n        {\n          \"Name\": \"Private\",\n          \"TemplateFolder\": \"<iframe id='myiFrame' data-src='../Environment/PrivateTemplate'  frameborder='0' border='0' width='100%' style='display:inline-block; min-height:500px'></iframe>\"\n        }\n      ]\n    },\n    {\n      \"Groups\": \"PrivateTemplates\",\n      \"Template\": [\n        {\n          \"Key\": \"77388\",\n          \"Name\": \"Dynatrace\",\n          \"TemplateFolder\": \"Dynatrace\",\n          \"ShortName\": \"Dynatrace\",\n          \"Tags\": [\n            \"Repo\",\n            \"Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/Dynatrace.png\",\n          \"Description\": \"This template uses tools to create a high performant, resilient, self- healing pipeline: Azure Repos: Source control repository for the application. <br />Lab URL: <a href='https://github.com/safia-habib/UnbreakablePipelineAzureHOTDay' target='_blank'>Unbreakable Pipeline AzureHOTDay</a>\"\n        },\n        {\n          \"Key\": \"77377\",\n          \"Name\": \"ContosoShuttle\",\n          \"ShortName\": \"ContosoShuttle\",\n          \"TemplateFolder\": \"ContosoShuttle\",\n          \"Description\": \"Generated by Azure DevOps Demo Generator\"\n        },\n        {\n          \"Key\": \"77777\",\n          \"Name\": \"ContosoShuttle2\",\n          \"ShortName\": \"ContosoShuttle2\",\n          \"TemplateFolder\": \"ContosoShuttle2\",\n          \"Description\": \"Generated by Azure DevOps Demo Generator\"\n        },\n        {\n          \"Name\": \"devops-mobile\",\n          \"TemplateFolder\": \"devops-mobile\",\n          \"Description\": \"A simple Xamarin app named Acquaint. The app is a simple list of contacts, each of which can be viewed in a detail screen and modified in an edit screen. It runs on iOS 9+, Android 4.2+, and UWP (mobile and desktop).\"\n        },\n        {\n          \"Name\": \"bikesharing 360\",\n          \"TemplateFolder\": \"bikesharing 360\",\n          \"Description\": \"BikeSharing360 is a fictitious example of a smart bike sharing system with 10,000 bikes distributed in 650 stations located throughout New York City and Seattle. Their vision is to provide a modern and personalized experience to riders and to run their business with intelligence.\"\n        },\n        {\n          \"Name\": \"bikesharing360\",\n          \"TemplateFolder\": \"bikesharing360\",\n          \"Description\": \"BikeSharing360 is a fictitious example of a smart bike sharing system with 10,000 bikes distributed in 650 stations located throughout New York City and Seattle. Their vision is to provide a modern and personalized experience to riders and to run their business with intelligence.\"\n        },\n        {\n          \"Name\": \"DevOps Dojo – White Belt\",\n          \"Key\": \"836ce6eb-8f20-4096-9186-b7ff0946c9c9\",\n          \"ShortName\": \"DoJoWhiteBeltGold\",\n          \"TemplateFolder\": \"DoJoWhiteBeltGold\",\n          \"Image\": \"/Templates/TemplateImages/devopsdojo.png\",\n          \"Description\": \"A DevOps dōjō a space where cross-functional feature teams practice agile, continuous, collaborative & automation principles of DevOps to find the best path to deliver software from idea to production with quality. More details: <a href='https://servicescode.visualstudio.com/DevOps-Dojo/_wiki/wikis/1Microsoft%20DevOps%20Dojo?wikiVersion=GBmaster&pageId=701&pagePath=%2FOverview' target='_blank'>1Microsoft – DevOps Dojo</a>\"\n        }\n      ]\n    },\n    {\n      \"Groups\": \"Microsoft Learn\",\n      \"Template\": [\n        {\n          \"Key\": \"77738738\",\n          \"Name\": \"Create a build pipeline with Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Create-Build-Pipeline\",\n          \"ShortName\": \"create-build-pipeline\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/create-a-build-pipeline-azure-pipelines.png\",\n          \"Description\": \"Set up a continuous integration (CI) pipeline that automates the process of building your application. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/create-a-build-pipeline/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Create a build pipeline</a>\"\n        },\n        {\n          \"Key\": \"77738739\",\n          \"Name\": \"Implement a code workflow in your build pipeline using Git and GitHub\",\n          \"TemplateFolder\": \"MSL-Implement-Code-Workflow\",\n          \"ShortName\": \"implement-code-workflow\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\",\n            \"Git\",\n            \"GitHub\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/host-your-own-build-server-in-your-build-pipeline.png\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/implement-code-workflow/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Implement code workflow</a>\",\n          \"Description\": \"Collaborate with others and merge only the highest quality code. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/implement-code-workflow/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Implement code workflow</a>\"\n        },\n        {\n          \"Key\": \"77738740\",\n          \"Name\": \"Run quality tests in your build pipeline using Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Run-Quality-Tests\",\n          \"ShortName\": \"run-quality-tests\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/implement-a-code-workflow-in-your-build-pipeline.png\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/run-quality-tests-build-pipeline/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Run quality tests build pipeline</a>\",\n          \"Description\": \"Set up automated testing in your pipeline to improve code quality. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/run-quality-tests-build-pipeline/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Run quality tests build pipeline</a>\"\n        },\n        {\n          \"Key\": \"77738741\",\n          \"Name\": \"Scan code for vulnerabilities in Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Scan-for-Vulnerabilities\",\n          \"ShortName\": \"scan-for-vulnerabilities\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\",\n            \"SonarCloud\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/manage-dependencies-in-your-build-pipeline.png\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/scan-for-vulnerabilities/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Scan for vulnerabilities</a>\",\n          \"Description\": \" Scan for potential vulnerabilities in your source code during the build process. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/scan-for-vulnerabilities/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Scan for vulnerabilities</a>\"\n        },\n        {\n          \"Key\": \"77738742\",\n          \"Name\": \"Scan open source components for vulnerabilities and license ratings in Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Scan-Open-Source\",\n          \"ShortName\": \"scan-open-source\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\",\n            \"WhiteSource Bolt\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/manage-security-and-compliance-in-your-build-pipeline.png\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/scan-open-source/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Scan open source</a>\",\n          \"Description\": \"Scan open-source components for security vulnerabilities and assess their license ratings when your application builds. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/scan-open-source/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Scan open source</a>\"\n        },\n        {\n          \"Key\": \"77738743\",\n          \"Name\": \"Manage build dependencies with Azure Artifacts\",\n          \"TemplateFolder\": \"MSL-Manage-Build-Dependencies\",\n          \"ShortName\": \"manage-build-dependencies\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\",\n            \"Azure Artifacts\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/run-quality-tests-when-your-application-builds.png\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/manage-build-dependencies/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage build dependencies</a>\",\n          \"Description\": \"Manage your application and the packages it uses across build pipelines. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/manage-build-dependencies/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage build dependencies</a>\"\n        },\n        {\n          \"Key\": \"77738744\",\n          \"Name\": \"Host your own build agent in Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Host-Build-Agent\",\n          \"ShortName\": \"host-build-agent\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/scan-code-for-vulnerabilities-in-your-build-pipeline.png\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/host-build-agent/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Host build agent</a>\",\n          \"Description\": \"Use your own build agent when Microsoft-hosted agents don't meet your needs. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/host-build-agent/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Host build agent</a>\"\n        },\n        {\n          \"Key\": \"3456781\",\n          \"Name\": \"Create a release pipeline with Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-SpaceGame-web-Release\",\n          \"ShortName\": \"create-release-pipeline\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/create-a-release-pipeline-with-azure-pipelines.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/create-release-pipeline/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Create a release pipeline</a>\",\n          \"Description\": \"Set up a continuous delivery (CD) pipeline that automates the process of deploying your application. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/create-release-pipeline/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Create a release pipeline</a>\"\n        },\n        {\n          \"Key\": \"3456782\",\n          \"Name\": \"Create a multi-stage pipeline with Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-SpaceGame-web-Multi-stage\",\n          \"ShortName\": \"create-multi-stage-pipeline\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/create-multi-stage-pipeline.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/create-multi-stage-pipeline/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Create a multi-stage pipeline</a>\",\n          \"Description\": \"Build a pipeline that deploys an app to multiple development and testing stages. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/create-multi-stage-pipeline/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Create a multi-stage pipeline</a>\"\n        },\n        {\n          \"Key\": \"3456783\",\n          \"Name\": \"Manage database changes in Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-SpaceGame-web-DeployDatabase\",\n          \"ShortName\": \"manage-database-changes\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/manage-database-changes-with-azure-pipelines.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines. ' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/manage-database-changes-in-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage database changes</a>\",\n          \"Description\": \"Connect your webapp to an Azure SQL Database and manage database schema changes by using a release approval. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/manage-database-changes-in-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage database changes</a>\"\n        },\n        {\n          \"Key\": \"3456784\",\n          \"Name\": \"Run functional tests in Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-SpaceGame-web-FunctionalTests\",\n          \"ShortName\": \"run-functional-tests\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/run-functional-tests-azure-pipelines.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/run-functional-tests-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Run functional tests</a>\",\n          \"Description\": \"Run Selenium UI tests, a form of functional tests, in Azure Pipelines. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/run-functional-tests-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Run functional tests</a>\"\n        },\n        {\n          \"Key\": \"3456785\",\n          \"Name\": \"Run non-functional tests in Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-SpaceGame-web-Non-functionalTests\",\n          \"ShortName\": \"run-non-functional-tests\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/run-non-functional-tests-in-azure-pipelines.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/run-non-functional-tests-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Run non-functional tests</a>\",\n          \"Description\": \"Run load tests with Apache JMeter, a form of non-functional tests, in Azure Pipelines. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/run-non-functional-tests-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Run non-functional tests</a>\"\n        },\n        {\n          \"Key\": \"3456786\",\n          \"Name\": \"Manage release cadence in Azure Pipelines with deployment patterns\",\n          \"TemplateFolder\": \"MSL-SpaceGame-web-DeploymentPatterns\",\n          \"ShortName\": \"manage-release-cadence\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/manage-release-cadence-using-deployment-patterns.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-deploy' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/manage-release-cadence/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage release cadence</a>\",\n          \"Description\": \"Choose an appropriate  deployment pattern for your application. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/manage-release-cadence/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage release cadence</a>\"\n        },\n        {\n          \"Key\": \"34567862\",\n          \"Name\": \"Provision infrastructure in Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-SpaceGame-web-Terraform\",\n          \"ShortName\": \"provision-infrastructure-azure-pipelines\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\",\n            \"Terraform\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/manage-release-cadence-using-deployment-patterns.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-automate' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/provision-infrastructure-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady ' target='_blank'>Provision infrastructure</a>\",\n          \"Description\": \"Run a Terraform plan in Azure Pipelines to automatically provision Azure resources. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/provision-infrastructure-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady ' target='_blank'>Provision infrastructure</a>\"\n        },\n        {\n          \"Key\": \"34567862\",\n          \"Name\": \"Provision databases in Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-SpaceGame-web-ProvisionDB\",\n          \"ShortName\": \"provision-database-azure-pipelines\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/provision-database-azure-pipelines.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-automate' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/provision-database-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Provision Database</a>\",\n          \"Description\": \"Automatically provision Azure SQL Database in Azure Pipelines by using an Azure Resource Manager template. <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/provision-database-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Provision Database</a>\"\n        },\n        {\n          \"Key\": \"345678643\",\n          \"Name\": \"Manage Agile software delivery plans across teams\",\n          \"TemplateFolder\": \"MSL-SpaceGame-DeliveryPlans\",\n          \"ShortName\": \"DeliveryPlans\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Boards\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/manage-agile-software-delivery-plans-across-teams.svg\",\n          \"ForkGitHubRepo\": false,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action\",\n          \"Description\": \"Learn to optimize delivery efficiency by improving work plan visibility across teams <br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/manage-delivery-plans/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage delivery plans</a>\"\n        },\n        {\n          \"Key\": \"345678644\",\n          \"Name\": \"Automate Azure Function deployments with Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-SpaceGame-AzureFunctions\",\n          \"ShortName\": \"DeployAzureFunction\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/deploy-azure-functions.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-azure-functions' target='_blank'> repository </a> manually and follow the steps given in the document - <a href='https://docs.microsoft.com/learn/modules/deploy-azure-functions/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Deploy Azure Functions</a>\",\n          \"Description\": \"Learn to implement a CI/CD pipeline for Azure Functions<br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/deploy-azure-functions/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Deploy Azure Functions</a>\"\n        },\n        {\n          \"Key\": \"345678645\",\n          \"Name\": \"Automate Docker container deployments with Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Deploy-Docker-Template\",\n          \"ShortName\": \"DeployDockercontainers\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/deploy-docker.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-docker' target='_blank'> repository </a> manually and follow the steps given in the document - <a href=' https://docs.microsoft.com/learn/modules/deploy-docker/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Deploy Docker containers</a>\",\n          \"Description\": \"Learn to implement a CI/CD pipeline for Docker containers<br /><br />Lab URL: <a href=' https://docs.microsoft.com/learn/modules/deploy-docker/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Deploy Docker containers</a>\"\n        },\n        {\n          \"Key\": \"345678646\",\n          \"Name\": \"Automate multi-container deployments to Azure Kubernetes Services with Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Deploy-Kubernetes-Template\",\n          \"ShortName\": \"Deploymulti-containersolutionstoKubernetes\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Azure Pipelines\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/deploy-kubernetes.svg\",\n          \"ForkGitHubRepo\": true,\n          \"Message\": \"Code for this project will be forked to your GitHub repository and the build definition will be using the forked repo, need user authentication. </ br> User has to be configured <a href='https://github.com/marketplace/azure-pipelines' target='_blank'>Azure Pipelines</a> extension to complete the action. <br> Forking may fail if the organization protected by SAML enforcement. You can fork the <a href='https://github.com/MicrosoftDocs/mslearn-tailspin-spacegame-web-kubernetes' target='_blank'> repository </a> manually and follow the steps given in the document - <a href=' https://docs.microsoft.com/learn/modules/deploy-kubernetes/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Deploymulti-container solutions to Kubernetes</a>\",\n          \"Description\": \"Learn to implement a CI/CD pipeline for multi-container solutions orchestrated with Kubernetes<br /><br />Lab URL: <a href=' https://docs.microsoft.com/learn/modules/deploy-kubernetes/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Deploymulti-container solutions to Kubernetes</a>\"\n        },\n        {\n          \"Key\": \"5B06AA95-9578-438F-8E65-7C95765665A0\",\n          \"Name\": \"Test your Bicep code by using Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Test-bicep\",\n          \"ShortName\": \"testbicep\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Bicep\",\n            \"ARM\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/testbicep.svg\",\n          \"Description\": \"Validate and test your Bicep code in your deployment pipeline. You'll use linting, preflight validation, and the what-if operation to validate your Azure changes before you deploy, and you'll test your resources after each deployment<br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/test-bicep-code-using-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Test Bicep code using Azure Pipelines</a>\"\n        },\n        {\n\n          \"Key\": \"971E21BF-76C1-4C88-929C-63F824830459\",\n          \"Name\": \"Manage multiple environments by using Bicep and Azure Pipelines\",\n          \"TemplateFolder\": \"Manage-multiple-environments-azure-pipelines\",\n          \"ShortName\": \"bicepenvironments\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Bicep\",\n            \"ARM\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/bicepenvironments.svg\",\n          \"Description\": \"Deploy your Bicep code to multiple environments to improve the quality of your deployments. Use pipeline templates to reduce code duplication, and set different parameter values for each environment<br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/manage-multiple-environments-using-bicep-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage multiple environments by using Bicep Azure Pipelines</a>\"\n        },\n        {\n          \"Key\": \"CBB8A827-69C8-4073-89C2-A634053FFBC9\",\n          \"Name\": \"Manage end-to-end deployment scenarios by using Bicep and Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-manage-end-end-deployment-scenarios\",\n          \"ShortName\": \"bicependtoend\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Bicep\",\n            \"ARM\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/bicep-end-to-end-deployment-pipeline.svg\",\n          \"Description\": \"Create a unified pipeline to deploy your entire environment. You'll add a build stage to your pipeline, and use pipeline artifacts and Bicep outputs to publish applications, databases, and blobs<br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/manage-end-end-deployment-scenarios-using-bicep-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Manage end-to-end deployment scenarios by using Bicep and Azure Pipelines</a>\"\n        },\n        {\n          \"Key\": \"E48A30EB-857C-43AD-9D7F-CFD58CC8D051\",\n          \"Name\": \"Review Azure infrastructure changes by using Bicep and pull requests\",\n          \"TemplateFolder\": \"MSL-Review-azure-infrastructure-changes\",\n          \"ShortName\": \"bicepreview\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Bicep\",\n            \"ARM\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/review-azure-infrastructure.png\",\n          \"Description\": \"Ensure the quality of your team's Bicep code. Use branching strategies to protect your main branch from accidental changes. Review Bicep code by using pull requests<br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/review-azure-infrastructure-changes-using-bicep-pull-requests/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Review Azure infrastructure changes by using Bicep and pull requests</a>\"\n        },\n        {\n          \"Key\": \"06AE7538-42F1-4910-B3A0-183B2F2337C4\",\n          \"Name\": \"Publish reusable Bicep code by using Azure Pipelines\",\n          \"TemplateFolder\": \"MSL-Toy-reusable\",\n          \"ShortName\": \"bicepreusable\",\n          \"Tags\": [\n            \"Microsoft Learn\",\n            \"Bicep\",\n            \"ARM\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/mslearn/bicep-publish-code-pipelines.png\",\n          \"Description\": \"Publish Azure template specs and Bicep modules by using a deployment pipeline. Automatically validate and add versioning to your reusable Bicep code.<br /><br />Lab URL: <a href='https://docs.microsoft.com/learn/modules/publish-reusable-bicep-code-using-azure-pipelines/?WT.mc_id=devopsgen_inproduct-15843-dabrady' target='_blank'>Publish reusable Bicep code by using Azure Pipelines</a>\"\n        }\n      ]\n    },\n    {\n      \"Groups\": \"Azure Community\",\n      \"Template\": [\n        {\n          \"Key\": \"7DC3758B-2909-4C6C-83CA-D0AC47037E94\",\n          \"Name\": \"Azure Sentinel DevOps\",\n          \"TemplateFolder\": \"AC-AzureSentinel\",\n          \"ShortName\": \"AzureSentinel\",\n          \"Description\": \"The objective is helping customers to quickly deploy Azure Sentinel following the best practices using Azure DevOps board with agile practices.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Azure\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"ForkGitHubRepo\": false,\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/Azure Sentinel DevOps.jpg\"\n        },\n        {\n          \"Key\": \"7DC3758B-2909-4C6C-83CA-D0AC47037E95\",\n          \"Name\": \"NIST 800-171\",\n          \"TemplateFolder\": \"AC-NIST800171Rev2\",\n          \"ShortName\": \"AzureNIST\",\n          \"Description\": \"By importing the NIST 800-171 DevOps template, you will be able to complete actionable Work Items that correspond to customer responsibilities in order to implement compliance.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Azure\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"ForkGitHubRepo\": false,\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/NIST 800-171.png\"\n        },\n        {\n          \"Key\": \"532B15D2-C4E2-4427-897B-3FBD3D5516672\",\n          \"Name\": \"WVD Guidance\",\n          \"TemplateFolder\": \"AC-WVDGuidance\",\n          \"ShortName\": \"WVD\",\n          \"Description\": \"A guide to describe the main topics on Windows Virtual Desktop from architecture design through implementation\",\n          \"Tags\": [\n            \"Azure\",\n            \"WVD\",\n            \"Architecture\",\n            \"Deployment\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/windows-virtual-desktop.svg\"\n        },\n        {\n          \"Key\": \"79692C2C-845B-4E3E-8DD6-1AB78B5FD171\",\n          \"Name\": \"SAP on Azure\",\n          \"TemplateFolder\": \"AC-SapOnAzure\",\n          \"ShortName\": \"sapazure\",\n          \"Description\": \"Main topics for successful SAP on Azure deployment, organized in task lists linking both Azure and SAP documentation. <a href='https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/sap/get-started' target='_blank'>Reference Document</a>\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"SAP\",\n            \"Enterprise-Scale Landing Zone\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/SapOnAzureLogo.png\"\n        }\n      ]\n    },\n    {\n      \"Groups\": \"Cloud Adoption Framework\",\n      \"Template\": [\n        {\n          \"Key\": \"78B05F45-F411-46E0-9974-6D9633D37F7A\",\n          \"Name\": \"Cloud Adoption Plan\",\n          \"TemplateFolder\": \"CAF-CloudAdoptionPlan\",\n          \"ShortName\": \"CloudAdoptionPlan\",\n          \"Description\": \"The Cloud Adoption Plan template creates a backlog for managing cloud adoption efforts based on the guidance in the Microsoft Cloud Adoption Framework.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Migration\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"PreviewImages\": [\n            \"/Templates/CloudAdoptionPlan/Images/Overview.png\",\n            \"/Templates/CloudAdoptionPlan/Images/Website.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/CloudAdoptionFramework.jpg\",\n          \"ForkGitHubRepo\": false\n        },\n        {\n          \"Key\": \"78B05F45-F411-46E0-9974-6D9633D37FGH\",\n          \"Name\": \"CAF Strategy-Plan-Ready-Governance\",\n          \"TemplateFolder\": \"CAF-ADO-Strategy-Plan-Ready-Governance\",\n          \"ShortName\": \"StrategyPlan\",\n          \"Description\": \"In this checklist we share all the decision points needed to successfully build a Cloud Adoption Plan as well as the Landing Zone with Governance\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Cloud Adoption Plan\",\n            \"Strategy\",\n            \"Plan\",\n            \"Ready\",\n            \"Landing Zone\",\n            \"Governance\",\n            \"Readiness\"\n          ],\n          \"PreviewImages\": [\n            \"/Templates/CloudAdoptionPlan/Images/Overview.png\",\n            \"/Templates/CloudAdoptionPlan/Images/Website.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"ForkGitHubRepo\": false,\n          \"Image\": \"/Templates/TemplateImages/CloudAdoptionFramework.jpg\"\n        },\n        {\n          \"Key\": \"78B05F45-F411-46E0-9974-6D9633D37F6\",\n          \"Name\": \"Server Migration\",\n          \"TemplateFolder\": \"CAF-ServerMigration\",\n          \"ShortName\": \"ServerMigration\",\n          \"Description\": \"Server migration has many different activities. In the Azure DevOps Project we will provide the steps necessary to go from zero to a complete Server migration and management.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Migration\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"PreviewImages\": [\n            \"/Templates/CloudAdoptionPlan/Images/Overview.png\",\n            \"/Templates/CloudAdoptionPlan/Images/Website.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/CloudAdoptionFramework.jpg\",\n          \"ForkGitHubRepo\": false\n        },\n        {\n          \"Key\": \"78B05F45-F411-46E0-9974-6D9633D37FJH\",\n          \"Name\": \"AKS_CloudAdoptionFramework\",\n          \"TemplateFolder\": \"CAF-AKS_CAF\",\n          \"ShortName\": \"CAFAKS\",\n          \"Description\": \"AKS deployment has many different activities. In the Azure DevOps Project we will provide the steps necessary to go from zero to a complete AKS deployment and management.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Migration\",\n            \"AKS\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"PreviewImages\": [\n            \"/Templates/CloudAdoptionPlan/Images/Overview.png\",\n            \"/Templates/CloudAdoptionPlan/Images/Website.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/CloudAdoptionFramework.jpg\",\n          \"ForkGitHubRepo\": false\n        },\n        {\n          \"Key\": \"78B05F45-F411-46E0-9974-6D9633D37FJI\",\n          \"Name\": \"SQL Migration\",\n          \"TemplateFolder\": \"CAF-SQL_Migration\",\n          \"ShortName\": \"SQLMIGRATION\",\n          \"Description\": \"SQL migration has many different activities. In the Azure DevOps Project we will provide the steps necessary to go from zero to a complete SQL migration and management.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Migration\",\n            \"SQL\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"PreviewImages\": [\n            \"/Templates/CloudAdoptionPlan/Images/Overview.png\",\n            \"/Templates/CloudAdoptionPlan/Images/Website.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/CloudAdoptionFramework.jpg\",\n          \"ForkGitHubRepo\": false\n        },\n        {\n          \"Key\": \"78B05F45-F411-46E0-9974-6D9633D37FJI\",\n          \"Name\": \"Windows Virtual Desktop\",\n          \"TemplateFolder\": \"CAF-WindowsVirtualDesktop\",\n          \"ShortName\": \"WVDMigration\",\n          \"Description\": \"Project work plan templates in Azure DevOps that provide the steps necessary to go from zero to a complete WVD deployment with ongoing management\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Migration\",\n            \"WVD\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"PreviewImages\": [\n            \"/Templates/CloudAdoptionPlan/Images/Overview.png\",\n            \"/Templates/CloudAdoptionPlan/Images/Website.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/CloudAdoptionFramework.jpg\",\n          \"ForkGitHubRepo\": false\n        },\n        {\n          \"Key\": \"3197C45A-9440-4272-99A7-164C89DFA778\",\n          \"Name\": \"Knowledge Mining\",\n          \"TemplateFolder\": \"CAF-KnowledgeMining\",\n          \"ShortName\": \"kmine\",\n          \"Description\": \"Knowledge project simplifies the process of accessing the latent insights contained within structured and unstructured data. Use this project to help you address all the steps.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Innovate\",\n            \"Knowledge Mining\",\n            \"AI\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"PreviewImages\": [\n            \"/Templates/CloudAdoptionPlan/Images/Overview.png\",\n            \"/Templates/CloudAdoptionPlan/Images/Website.png\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/CloudAdoptionFramework.jpg\",\n          \"ForkGitHubRepo\": false\n        },\n        {\n          \"Key\": \"532B15D2-C4E2-4427-897B-3FBD3D551650\",\n          \"Name\": \"Azure Governance Readiness\",\n          \"TemplateFolder\": \"CAF-AzureGovernance\",\n          \"ShortName\": \"gov\",\n          \"Description\": \"The standalone Azure governance project provides guidance and tools on how to ensure that your Azure environment is governed in the correct way.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Govern\",\n            \"Azure Policy\",\n            \"Azure Blueprints\",\n            \"Azure Security Center\",\n            \"Enterprise-Scale Landing Zone\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/AzureGov.png\"\n        },\n        {\n          \"Key\": \"A7691C19-7D13-4694-A585-85304FB2D147\",\n          \"Name\": \"Modern Data Warehouse\",\n          \"TemplateFolder\": \"CAF-ModernDataWarehouse\",\n          \"ShortName\": \"moddw\",\n          \"Description\": \"Build your modern data warehouse using this ADO checklist of items, in this checklist we have links to assets, code and learning material.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Migration\",\n            \"“Synapse\",\n            \"“Modern\",\n            \"Data\",\n            \"Warehouse\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/ModernDataWarehouse.png\"\n        },\n        {\n          \"Key\": \"F518D392-31BB-45F5-A1E2-E2EA1B25DF57\",\n          \"Name\": \"Retail Recommender with Azure Synapse\",\n          \"TemplateFolder\": \"CAF-RetailRecommender-SolutionAccelerator\",\n          \"ShortName\": \"retailai\",\n          \"Description\": \"This Solution Accelerator is an end-to-end example on how to enable personalized customer experiences for retail scenarios by leveraging Azure Synapse Analytics, Azure Machine Learning Services, and other Azure Big Data services. This project can be found in the following GitHub repo <a href='https://github.com/microsoft/Azure-Synapse-Retail-Recommender-Solution-Accelerator' target='_blank'>Retail Recommender with Azure Synapse</a>\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Azure Synapse\",\n            \"“Machine\",\n            \"Learning\",\n            \"“Retail\",\n            \"solution\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/RecommederIcon.PNG\"\n        },\n        {\n          \"Key\": \"50428F01-0FC9-47C5-B8B0-3DC6295213C7\",\n          \"Name\": \"Modern IOT\",\n          \"TemplateFolder\": \"CAF-ModernIOT\",\n          \"ShortName\": \"modiot\",\n          \"Description\": \" Connected sensors, devices, and intelligent operations can transform businesses and enable new growth opportunities. In this project you will get the work items needed to plan and implement your IOT solution using the <a href='https://azure.microsoft.com/en-us/overview/iot/?WT.mc_id=devops_userstory_service_iot-inproduct-devopsportal' targer='_blank'> Azure IoT Platform </a>\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Innovate\",\n            \"IOT\",\n            \"Microsoft Cloud Adoption Framework\"\n\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/modiot.png\"\n        },\n        {\n          \"Key\": \"3EDBAE1D-F776-44E4-ADB5-B356D60CF1DF\",\n          \"Name\": \"Secure Research\",\n          \"TemplateFolder\": \"CAF-SecureResearch\",\n          \"ShortName\": \"secresearch\",\n          \"Description\": \" Microsoft has developed a secure research enclave architecture designed for existing and emerging standards. The solution enables a centralized and scalable approach that allows institutions to accelerate research efforts without placing added administrative overhead on researchers. <a href='https://info.microsoft.com/en-us-ondemand-SimplifyandautomateresearchcomplianceresponsibilitieswithAzure-none.html' target='_blank'> On-demand Webinar</a>\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Innovate\",\n            \"Secure Research\",\n            \"Education\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/Secureresearch.png\"\n        },\n        {\n          \"Key\": \"E4149FAA-D1AF-43CA-AAF3-2E2F3BEA30B2\",\n          \"Name\": \"Unified Data Governance\",\n          \"TemplateFolder\": \"CAF-UnifiedDataGovernance\",\n          \"ShortName\": \"datagov\",\n          \"Description\": \" Azure Purview is a unified data governance service that helps you manage and govern your on-premises, multi-cloud, and software-as-a-service (SaaS) data. Easily create a holistic, up-to-date map of your data landscape with automated data discovery, sensitive data classification, and end-to-end data lineage. Empower data consumers to find valuable, trustworthy data. <a href=''https://azure.microsoft.com/en-us/services/purview/' target='_blank'> Here </a>\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Innovate\",\n            \"Data\",\n            \"Governance\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/unifiedgov.png\"\n        },\n        {\n          \"Key\": \"8207A5A9-3F9E-414F-83C5-CA3CC7A10F07\",\n          \"Name\": \"Modern Data Analytics\",\n          \"TemplateFolder\": \"CAF-ModernDataAnalytics\",\n          \"ShortName\": \"dataanalytics\",\n          \"Description\": \" Enterprise-scale for analytics and AI builds upon enterprise landing zones for ease of deployment and governance. The principal purpose of the enterprise landing zones is to ensure that when an application or workload lands on Azure, the required plumbing is already in place. It provides greater agility and compliance with enterprise security and governance requirements. Enterprise-scale landing zones must be in place before you deploy your first data management and analytics landing zones. <a href='https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/scenarios/data-management/enterprise-scale-landing-zone' target='_blank'> Modern Data Analytics </a>\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Innovate\",\n            \"Data\",\n            \"Analytics\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/ModernDataAnalytics.png\"\n        }\n      ]\n    },\n    {\n      \"Groups\": \"FastTrack for Azure\",\n      \"Template\": [\n        {\n          \"Key\": \"2DA09437-7FC3-4A81-94CD-041A14C98D61\",\n          \"Name\": \"Azure Migrations - IaC\",\n          \"TemplateFolder\": \"FA-IAC-migration\",\n          \"ShortName\": \"AzureMigrationsIaC\",\n          \"Description\": \"Starter template guidance around executing Azure Migrations through a redeployment approach with Infrastructure as Code (Bicep and Powershell). <a href='https://github.com/amillerb/fta-live-devops-iac-migration-src/blob/main/readme.md' target='_blank'>IaC Migration</a>\",\n          \"Tags\": [\n            \"Migration\",\n            \"Azure\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/AzureCommunity/iac.png\",\n          \"ForkGitHubRepo\": false\n        }\n      ]\n    },\n    {\n      \"Groups\": \"Community\",\n      \"Template\": [\n        {\n          \"Key\": \"78B05F45-F411-46E0-9974-6D9633D37F7A\",\n          \"Name\": \"Community T1\",\n          \"TemplateFolder\": \"https://raw.githubusercontent.com/aksh-h/PUL_YML/master/PHP.zip\",\n          \"ShortName\": \"CloudAdoptionPlan121\",\n          \"Description\": \"<a href='https://raw.githubusercontent.com/aksh-h/PUL_YML/master/PHP.zip'>Template</a> The Cloud Adoption Plan template creates a backlog for managing cloud adoption efforts based on the guidance in the Microsoft Cloud Adoption Framework.\",\n          \"Tags\": [\n            \"Agile\",\n            \"Cloud Adoption\",\n            \"Migration\",\n            \"Microsoft Cloud Adoption Framework\"\n          ],\n          \"Author\": \"Microsoft\",\n          \"Image\": \"/Templates/TemplateImages/CloudAdoptionFramework.jpg\",\n          \"ForkGitHubRepo\": false\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Account/SessionOutReturn.cshtml",
    "content": "﻿\n@{\n    ViewBag.Title = \"SessionOutReturn\";\n}\n\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/content/assets/css/custom.min.css\">\n    <link href=\"~/assets/templategrouping/templategroup.custom.min.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"https://use.fontawesome.com/releases/v5.0.8/css/all.css\" integrity=\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\" crossorigin=\"anonymous\">\n\n    <script type=\"text/javascript\">\n        var appInsights = window.appInsights || function (config) {\n            function i(config) { t[config] = function () { var i = arguments; t.queue.push(function () { t[config].apply(t, i) }) } } var t = { config: config }, u = document, e = window, o = \"script\", s = \"AuthenticatedUserContext\", h = \"start\", c = \"stop\", l = \"Track\", a = l + \"Event\", v = l + \"Page\", y = u.createElement(o), r, f; y.src = config.url || \"https://az416426.vo.msecnd.net/scripts/a/ai.0.js\"; u.getElementsByTagName(o)[0].parentNode.appendChild(y); try { t.cookie = u.cookie } catch (p) { } for (t.queue = [], t.version = \"1.0\", r = [\"Event\", \"Exception\", \"Metric\", \"PageView\", \"Trace\", \"Dependency\"]; r.length;) i(\"track\" + r.pop()); return i(\"set\" + s), i(\"clear\" + s), i(h + a), i(c + a), i(h + v), i(c + v), i(\"flush\"), config.disableExceptionTracking || (r = \"onerror\", i(\"_\" + r), f = e[r], e[r] = function (config, i, u, e, o) { var s = f && f(config, i, u, e, o); return s !== !0 && t[\"_\" + r](config, i, u, e, o), s }), t\n        }({\n            instrumentationKey: \"__AIKEY__\"\n        });\n\n        window.appInsights = appInsights;\n        appInsights.trackPageView();\n    </script>\n    <!-- Google tag (gtag.js) -->\n    <script async src=\"https://www.googletagmanager.com/gtag/js?id=__GAKEY__\"></script>\n    <script>\n        window.dataLayer = window.dataLayer || [];\n        function gtag() { dataLayer.push(arguments); }\n        gtag('js', new Date());\n\n\n\n        gtag('config', '__GAKEY__');\n        gtag('event', 'SessionOutReturn', {\n            'event_category': 'SessionOutReturn',\n            'event_label': 'SessionOutReturn',\n            'event_action': 'page_view',\n            'send_to': '__GAKEY__'\n        });\n    </script>\n    <title>Create Project</title>\n</head>\n<body class=\"pb-3\">\n\n    <div class=\"container mt-3\">\n        <div class=\"row VSTS-mh-100 create-new-project\" style=\"align-items:flex-start\">\n            <!--\n                  COL 1\n                  Image and Feedback section\n            -->\n            <div class=\"col-md-3 order-2 order-md-1 VSTS-mh-100\">\n            </div>\n            <!--\n                COL 2\n                Create section\n            -->\n            <div class=\"col-md-6 order-1 order-md-2\">\n                <div class=\"demo_form\" style=\"min-height:25%\">\n                    <div class=\"demo-content\">\n                        <div class=\"center-block\" style=\" align-content:center\">\n                            <h4 style=\"color:red\">\n                                Session Expired! <a href=\"../account/index\"> click here </a> to reload.\n                            </h4>\n                        </div>\n                    </div>\n                </div>\n            </div>\n            <div class=\"col-md-3 order-2 order-md-3 VSTS-mh-100\">\n            </div>\n            <!--\n               COL 3\n               Notification section\n            -->\n        </div>\n    </div>\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\" integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n    <script src=\"~/Scripts/tooltip.js\"></script>\n</body>\n</html>\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Account/Verify.cshtml",
    "content": "﻿@model VstsDemoBuilder.Models.LoginModel\n@{\n    ViewBag.Title = \"Azure DevOps Demo Generator\";\n}\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/assets/css/custom.min.css\">\n    <title>Verify</title>\n    <script src=\"~/Scripts/jquery-1.12.4.js\"></script>\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n\n</head>\n<body>\n    <section class=\"section-1 d-flex flex-column\">\n        <main class=\"d-flex\">\n            <div class=\"VSTS-hero-image d-none d-sm-flex flex-column\" style=\"position:relative;\">\n                <div class=\"VSTS-hero p-4\">\n                    <div class=\"display-4 ml-5 text-white text-center\" style=\"font-weight: 400;\">\n                        <img src=\"~/assets/images/VS_logo.png\" alt=\"\" width=\"60px\" class=\"p-2\">\n                        Azure DevOps Demo Generator\n                    </div>\n                </div>\n\n                <div class=\"VSTS-hero-text text-primary p-5\" style=\"position: absolute; bottom: 0;width: 100%;\">\n                </div>\n            </div>\n            <div class=\"VSTS-details p-3 d-flex flex-column\">\n                <img class=\"d-block mx-auto demo-generator-details-logo mt-2 mt-md-5\" src=\"~/assets/images/VSTS_full_logo.png\" alt=\"\">\n                <h6 class=\"h6 text-primary mt-3 text-uppercase text-center\"><a href=\"https://docs.microsoft.com/azure/devops/demo-gen/?view=vsts\" target=\"_blank\">Azure DevOps Demo Generator</a></h6>\n                <p class=\"text-center\">\n                    Azure DevOps Demo Generator helps you create projects on your Azure DevOps Organization with pre-populated  sample content that includes source code, work items, iterations, service endpoints, build and release definitions based on a template you choose. <a href=\"https://docs.microsoft.com/en-us/azure/devops/demo-gen/use-vsts-demo-generator-v2?view=vsts\" target=\"_blank\">Read more</a>\n                </p>\n                <p class=\"text-center mb-0\">\n                    The purpose of this system is to simplify working with the <a href=\"https://www.azuredevopslabs.com\" target=\"_blank\"> Azure Devops hands-on-labs</a>, demos and other education material provided by the Microsoft Azure Marketing team.\n                </p>\n                <div class=\"text-center mt-4\">\n                    <button class=\"btn btn-primary\" id=\"signInWithVSTS\">Sign In</button>\n                </div>\n                <p class=\"text-center mt-3 mb-0\">Don’t have an Azure DevOps Organization?</p>\n                <div class=\"text-center\">\n                    <a target=\"_blank\" aria-label=\"Get started with Azure DevOps for free\" class=\"btn btn-primary mt-2\" href=\"https://app.vsaex.visualstudio.com\">\n                        <span class=\"\">Get started for free</span>\n                        <img src=\"~/Images/next.png\" style=\"width:10px\" />\n                    </a>\n                </div>\n                @if (!string.IsNullOrEmpty(ViewBag.resMessage))\n                {\n                    <p style=\"text-align:center; color:red;\">@ViewBag.resMessage</p>\n                }\n                <!--div class=\"demo-generator-feedback mt-auto text-center text-sm-left\">\n                    <p>\n                        <ul>\n                            <li>\n                                Looking to populate your TFS projects? Checkout the\n                                <a href=\"https://github.com/Microsoft/TFSDemoGenerator\" target=\"_blank\">TFS Demo Generator</a>\n                            </li>\n                            <li>\n                                Looking for Mobile DevOps projects? Checkout the\n                                <a href=\"https://appcenterdemobuilder.azurewebsites.net/\" target=\"_blank\">App Center Demo Builder</a>\n                            </li>\n\n                        </ul>\n                    </p>\n                </div-->\n            </div>\n        </main>\n        <footer class=\"footer bg-light text-sm p-2 text-center d-flex flex-column flex-sm-row text-sm-left\">\n            <a href=\"https://www.ecanarys.com\" class=\"text-primary mr-sm-auto\" target=\"_blank\">Developed by Canarys Automations Pvt Ltd</a>\n            <div class=\"link\">\n                <script>function fbs_click() { u = \"https://azuredevopsdemogenerator.azurewebsites.net/\"; t = +Azure + DevOps + Demo + Generator & window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'sharer', 'toolbar=0,status=0,width=626,height=436'); return false; }</script>\n                <a href=\"http://www.facebook.com/sharer.php?u=https://azuredevopsdemogenerator.azurewebsites.net/&t=Azure+DevOps+Demo+Generator\" target=\"_blank\"><img src=\"~/Images/facebook.png\" style=\"width:20px;\" /></a>&nbsp;&nbsp;\n                <a href=\"https://www.linkedin.com/shareArticle?mini=true&amp;url=https://azuredevopsdemogenerator.azurewebsites.net/&t=Azure+DevOps+Demo+Generator\" target=\"_blank\"><img src=\"~/Images/linkedin.png\" style=\"width:20px;\" /></a>&nbsp;&nbsp;\n                <a href=\"https://twitter.com/intent/tweet?url=https://azuredevopsdemogenerator.azurewebsites.net/&amp;text=Azure+DevOps+Demo+Generator&amp;hashtags=azuredevopsdemogenerator\" target=\"_blank\"><img src=\"~/Images/twitter.png\" style=\"width:20px;\" /></a>&nbsp;&nbsp;\n\n                <a href=\"https://www.visualstudio.com/support/support-overview-vs\" target=\"_blank\" class=\"text-primary ml-3\">Contact Us</a>\n                <a href=\"https://go.microsoft.com/fwlink/?LinkID=264782\" target=\"_blank\" class=\"text-primary ml-3\">Privacy</a>\n                <a href=\"https://go.microsoft.com/fwlink/?LinkID=266231\" target=\"_blank\" class=\"text-primary ml-3\">Terms of Use</a>\n                <a href=\"https://www.microsoft.com/en-us/legal/intellectualproperty/Trademarks/EN-US.aspx\" target=\"_blank\" class=\"text-primary ml-3\">Trademarks</a>\n            </div>\n        </footer>\n    </section>\n</body>\n</html>\n<script type=\"text/javascript\">\n    $(document).ready(function () {\n        $('#signInWithVSTS').click(function () {\n            appInsights.trackEvent(\"Sign in button clicked\");\n            gtag('event', 'SignIn', {\n                'event_category': 'Sign In',\n                'event_label': 'Sign In',\n                'event_action': 'clicked',\n                'send_to': '__GAKEY__'\n            });\n            window.location.href=\"../Account/index\";\n        });\n\n        gtag('event', 'Verify', {\n            'event_category': 'Verify page',\n            'event_label': 'Verify page',\n            'event_action': 'visited',\n            'send_to': '__GAKEY__'\n        });\n    });\n\n\t$(\"input\").on(\"keypress\", function (e) {\n\t\tif (e.which === 32 && !this.value.length)\n\t\t\te.preventDefault();\n\t});\n\t$(document).keypress(function (e) {\n\t\tif (e.which == 13) {\n\t\t\t$('#btnSubmit').click();\n\t\t\treturn false;\n\t\t}\n    });\n\n\n\t$(\"#btnCreate\").click(function () {\n\t\tvar URL = \"https://login.microsoftonline.com/common/oauth2/authorize?client_id=499b84ac-1321-427f-aa17-267ca6975798&site_id=501454&response_mode=form_post&response_type=code+id_token&redirect_uri=https%3A%2F%2Fapp.vssps.visualstudio.com%2F_signedin&nonce=0393a80e-180e-412e-8504-49736ead790b&state=realm%3Dapp.vsaex.visualstudio.com%26reply_to%3Dhttps%253A%252F%252Fapp.vsaex.visualstudio.com%252Fprofile%252Faccount%253FacquisitionId%253Df008a85e-fb3c-4181-9b38-52e037824656%2526campaign%253Do~msft~vscom~product-vsts-hero~464%2526account%253Dfirst%2526mkt%253Den-us%26ht%3D3%26nonce%3D0393a80e-180e-412e-8504-49736ead790b&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&cid=0393a80e-180e-412e-8504-49736ead790b&wsucxt=1\";\n\t\twindow.open(URL, '_blank');\n\t\treturn false;\n\t});\n\n\t$(function () {\n\t\tif ('@Model.Message' != '') {\n\t\t\t$(\"#txtAlert\").text('@Model.Message');\n\t\t\t$(\"#txtALertContainer\").show();\n\t\t}\n\n\t\t$(document).on('click', '.radioclass', function () {\n\t\t\tif ($('#haveAccount').is(':checked')) {\n\t\t\t\t$('.radioclass').not(this).prop('checked', false);\n\t\t\t}\n\t\t});\n\t});\n</script>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Account/unsupported_browser.cshtml",
    "content": "﻿@model VstsDemoBuilder.Models.LoginModel\n@{\n    ViewBag.Title = \"Azure DevOps Demo Generator\";\n}\n\n<!DOCTYPE html>\n<html lang=\"en-US\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/assets/css/custom.min.css\">\n    <title>Unsupported Browser</title>\n    <script src=\"~/Scripts/jquery-1.12.4.js\"></script>\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n    <style>\n        body {\n            background-color: #f8f8f8;\n            font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Open Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n        }\n\n        img {\n            width: 48px;\n            height: 48px;\n        }\n\n        h1 {\n            font-weight: 300;\n            font-size: 34px;\n            line-height: 40px;\n        }\n\n        p {\n            font-weight: normal;\n            font-size: 15px;\n            line-height: 20px;\n            color: rgba(0, 0, 0, 0.54);\n        }\n\n        a {\n            word-wrap: break-word;\n            overflow-wrap: break-word;\n        }\n\n        .container {\n            margin: 200px auto 50px;\n            max-width: 500px;\n        }\n    </style>\n</head>\n<body>\n    <div class=\"container\">\n        <img width=\"48\" height=\"48\" alt=\"browser not supported\" src=\"~/Images/Thinking_Face_Emoji.png\">\n\n        <h1>Oops, you seem to be using an unsupported browser.</h1>\n        <p>Azure DevOps Demo Generator works best on Chrome, Firefox, Edge, or Safari.</p>\n\n    </div>\n\n</body>\n</html>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Environment/Create.cshtml",
    "content": "﻿"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Environment/CreateProject.cshtml",
    "content": "﻿@model VstsDemoBuilder.Models.Project\n@{\n    ViewBag.Title = \"Azure DevOps Demo Generator\";\n}\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/content/assets/css/custom.min.css\">\n    <link href=\"~/assets/templategrouping/templategroup.custom.min.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"https://use.fontawesome.com/releases/v5.0.8/css/all.css\" integrity=\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\" crossorigin=\"anonymous\">\n\n    <script type=\"text/javascript\">\n        var appInsights = window.appInsights || function (config) {\n            function i(config) { t[config] = function () { var i = arguments; t.queue.push(function () { t[config].apply(t, i) }) } } var t = { config: config }, u = document, e = window, o = \"script\", s = \"AuthenticatedUserContext\", h = \"start\", c = \"stop\", l = \"Track\", a = l + \"Event\", v = l + \"Page\", y = u.createElement(o), r, f; y.src = config.url || \"https://az416426.vo.msecnd.net/scripts/a/ai.0.js\"; u.getElementsByTagName(o)[0].parentNode.appendChild(y); try { t.cookie = u.cookie } catch (p) { } for (t.queue = [], t.version = \"1.0\", r = [\"Event\", \"Exception\", \"Metric\", \"PageView\", \"Trace\", \"Dependency\"]; r.length;) i(\"track\" + r.pop()); return i(\"set\" + s), i(\"clear\" + s), i(h + a), i(c + a), i(h + v), i(c + v), i(\"flush\"), config.disableExceptionTracking || (r = \"onerror\", i(\"_\" + r), f = e[r], e[r] = function (config, i, u, e, o) { var s = f && f(config, i, u, e, o); return s !== !0 && t[\"_\" + r](config, i, u, e, o), s }), t\n        }({\n            instrumentationKey: \"__AIKEY__\"\n        });\n\n        window.appInsights = appInsights;\n        appInsights.trackPageView();\n    </script>\n    <!-- Google tag (gtag.js) -->\n    <script async src=\"https://www.googletagmanager.com/gtag/js?id=__GAKEY__\"></script>\n    <script>\n        window.dataLayer = window.dataLayer || [];\n        function gtag() { dataLayer.push(arguments); }\n        gtag('js', new Date());\n\n\n\n        gtag('config', '__GAKEY__');\n        gtag('event', 'Azure DevOps Demo Generator - Main', {\n            'event_category': 'Azure DevOps Demo Generator',\n            'event_label': 'Azure DevOps Demo Generator - Main',\n            'event_action': 'page_view',\n            'send_to': '__GAKEY__'\n        });\n    </script>\n    <title>Create Project</title>\n\n</head>\n<body class=\"pb-3\">\n    <input type=\"hidden\" id=\"hidnUID\" />\n    @if (!string.IsNullOrEmpty(Model.accessToken))\n    {\n        <input type=\"hidden\" value=\"@Model.accessToken\" id=\"hiddenAccessToken\" />\n    }\n    @if (!string.IsNullOrEmpty(Model.selectedTemplateDescription))\n    {\n        <input type=\"hidden\" value=\"@Model.selectedTemplateDescription\" id=\"selectedTemplateDescription\" />\n    }\n    @if (!string.IsNullOrEmpty(Model.selectedTemplateFolder))\n    {\n        <input type=\"hidden\" value=\"@Model.selectedTemplateFolder\" id=\"selectedTemplateFolder\" />\n    }\n    @if (!string.IsNullOrEmpty(Model.Message))\n    {\n        <input type=\"hidden\" value=\"@Model.Message\" id=\"infoMessageTxt\" />\n    }\n    @if (!string.IsNullOrEmpty(Model.SelectedTemplate))\n    {\n        <input type=\"hidden\" value=\"@Model.SelectedTemplate\" id=\"selectedTemplate\" />\n    }@if (!string.IsNullOrEmpty(Model.templateImage))\n    {\n        <input type=\"hidden\" value=\"@Model.templateImage\" id=\"selectedTemplateImage\" />\n    }\n    <input type=\"hidden\" value=\"@Model.ForkGitHubRepo\" id=\"forkGitRepo\" />\n    <input type=\"hidden\" id=\"hdnMessage\" />\n    <input type=\"hidden\" id=\"hdnGToken\" />\n    <!--TEMPLATE GROUPING-->\n    <div class=\"VSTemplateSelection p-3 d-none\" aria-hidden=\"true\">\n        <div class=\"template-holder bg-white \">\n            <div class=\"template-dialog-title text-primary p-3 text-center\">\n                <span>Choose a template</span>\n                <div class=\"template-close\">X</div>\n            </div>\n            <div class=\"template-group bg-primary d-flex align-items-center p-3\">\n                <ul class=\"nav nav-pills w-100 justify-content-center\" role=\"tablist\" id=\"modtemplateGroup\"></ul>\n            </div>\n            <div class=\"template-body vstsScroll bg-light p-3\">\n                <div class=\"tab-content\" id=\"pills-tabContent\">\n                </div>\n            </div>\n            <div class=\"template-footer p-3 bg-white text-right\">\n                <button class=\"btn btn-primary\" id=\"selecttmplate\">Select Template</button>\n                <button class=\"btn btn-primary d-none\" id=\"selecttmplateCommunity\">Select Template</button>\n                <div>\n                    <span id=\"urlerror\" style=\"color:red\"></span>\n                </div>\n            </div>\n\n        </div>\n    </div>\n    <!--/TEMPLATEgROUPING-->\n    <!-- MODAL -->\n    <div class=\"modal fade\" id=\"exampleModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"exampleModalLabel\" aria-hidden=\"true\">\n        <div class=\"modal-dialog\" role=\"document\">\n            <div class=\"modal-content\">\n                <div class=\"modal-header\">\n                    <h5 class=\"modal-title\" id=\"exampleModalLabel\">Copy Diagnostic Log</h5>\n                    <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                        <span aria-hidden=\"true\">&times;</span>\n                    </button>\n                </div>\n                <div class=\"modal-body\">\n                    <div id=\"errorMail\" style=\"text-align:justify;word-wrap: break-word;height: 150px;overflow: auto;\">\n                    </div>\n                </div>\n                <div class=\"modal-footer\">\n                    <button type=\"button\" class=\"btn btn-secondary\" data-dismiss=\"modal\">Close</button>\n                    @*<button type=\"button\" class=\"btn btn-primary\" id=\"sendEmail\">Send Email</button>*@\n                </div>\n            </div>\n        </div>\n    </div>\n    <!-- /MODAL -->\n    <nav class=\"navbar navbar-dark navbar-expand-lg fixed-top no-border navbar-toggler\" id=\"headbar\">\n        <a class=\"navbar-brand p-0 mr-auto\" href=\"../Account/Verify\">\n            <img src=\"~/content/assets/images/VS_logo.png\" alt=\"\">\n            <span class=\"navbar-brand-text ml-1\">\n                Azure DevOps Demo Generator\n            </span>\n        </a>\n        <ul class=\"navbar-nav\">\n            <li class=\"nav-item dropdown\">\n                <a class=\"nav-link dropdown-toggle\" href=\"#\" id=\"navbarDropdown\" role=\"button\" data-toggle=\"dropdown\" aria-haspopup=\"true\"\n                   aria-expanded=\"false\">\n                    <img src=\"@Model.profileImage\" alt=\"user\">\n                    @if (Session[\"User\"] != null)\n                    {\n                        <span class=\"VSTS-username ml-1\" style=\"font-size:16px\">@Session[\"User\"].ToString()</span>\n                    }\n                    <span class=\"sr-only\">(current)</span>\n                </a>\n\n                <div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\">\n                    <a class=\"dropdown-item\" id=\"switch\" href=\"https://aex.dev.azure.com/\"  target=\"_blank\">Switch Directory</a>\n                    <a class=\"dropdown-item\" href=\"../Account/SignOut\">Sign out</a>\n                </div>\n            </li>\n        </ul>\n    </nav>\n    <div class=\"jumbotron mb-0\" style=\"padding-bottom: 25px; padding-top: 25px;\">\n        <div class=\"text-center text-white display-4 p-3\" id=\"greeting\" style=\"line-height: 1.2;\">\n            Create New Project\n        </div>\n        <div class=\"text-center display-4 p-3\" id=\"greeting\" style=\"line-height: 1.2;\">\n            <a href=\"../extractor/index\" target=\"_blank\" class=\"text-white\" style=\"font-size: 18px; float: right;\" id=\"buildYourTemplate\">Build your template</a>\n        </div>\n    </div>\n    @if (!string.IsNullOrEmpty(ViewBag.ErrorMessage))\n    {\n        <div class=\"col-sm-12\" style=\"background-color:#ffaeae\">\n            <span style=\"color:#b71616\">@ViewBag.ErrorMessage</span>\n        </div>\n    }\n\n    <div class=\"container-fluid mt-3\">\n        <div class=\"row VSTS-mh-100\">\n            <!--\n                  COL 1\n                  Image and Feedback section\n            -->\n            <div class=\"col-md-3 order-3 order-md-1 VSTS-mh-100\">\n                <div class=\"d-flex flex-column VSTS-mh-100\">\n                    <img class=\"img-fluid mob_d\" src=\"~/content/assets/images/VSTS-demoGen-image.png\" alt=\"\" style=\"max-width: 88%; opacity:0.3\">\n                    <div class=\"demo-generator-feedback VSTS-create-page-feedback mt-3 text-center text-sm-left\">\n                        <h6>Feedback&colon;</h6>\n                        <p class=\"mb-0\">\n                            To provide feedback, you can email us\n                            <a class=\"text-primary\" href=\"https://github.com/microsoft/AzureDevOpsDemoGenerator/issues/new\" target=\"_blank\">here </a>.\n                        <p>Like our tool? We would appreciate if you share feedback on social</p>\n\n                        <p>\n                            <script>function fbs_click() { u = \"https://azuredevopsdemogenerator.azurewebsites.net/\"; t = +Azure + DevOps + Demo + Generator & window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'sharer', 'toolbar=0,status=0,width=626,height=436'); return false; }</script>\n                            <a href=\"http://www.facebook.com/sharer.php?u=https://azuredevopsdemogenerator.azurewebsites.net/&t=Azure+Devops+Demo+Generator\" target=\"_blank\"><img src=\"~/Images/facebook.png\" style=\"width:20px;\" /></a>&nbsp;&nbsp;\n                            <a href=\"https://www.linkedin.com/shareArticle?mini=true&amp;url=https://azuredevopsdemogenerator.azurewebsites.net/&t=Azure+Devops+Demo+Generator\" target=\"_blank\"><img src=\"~/Images/linkedin.png\" style=\"width:20px;\" /></a>&nbsp;&nbsp;\n                            <a href=\"https://twitter.com/intent/tweet?url=https://azuredevopsdemogenerator.azurewebsites.net/&amp;text=Azure+DevOps+Demo+Generator&amp;hashtags=azuredevopsdemogenerator\" target=\"_blank\"><img src=\"~/Images/twitter.png\" style=\"width:20px;\" /></a>&nbsp;&nbsp;\n                        </p>\n                    </div>\n                </div>\n            </div>\n            <!--\n                COL 2\n                Create section\n            -->\n            <div class=\"col-md-6 order-1 order-md-2\">\n                <div style=\"border:1px solid #ccc; padding:15px;\">\n                    <div class=\"form-group row\" id=\"\">\n                        <label for=\"Template\" class=\"col-lg-3 col-form-label mt-1 \" style=\"font-weight:400\">Selected Template :</label>\n                        <div class=\"col-lg-5  mb-3 mt-1\">\n                            <input type=\"text\" class=\"form-control\" id=\"ddlTemplates\" disabled />\n                            <input type=\"hidden\" id=\"PrivateTemplateName\" />\n                            <input type=\"hidden\" id=\"PrivateTemplatePath\" />\n                            <div class=\"alert alert-danger d-none\" role=\"alert\" id=\"ddlTemplates_Error\">\n                            </div>\n                        </div>\n                        <div class=\"template-invoke mb-3 mt-1 col-lg-3\">\n                            @if (Session[\"PrivateTemplateOriginalName\"] == null)\n                            {\n                                <button type=\"button\" class=\"btn btn-primary\" id=\"templateselection\" style=\"padding-left:5px; padding-right:5px; width: 100%\">\n                                    Choose template\n                                </button>\n                            }\n                        </div>\n                    </div>\n                    <div class=\"form-group row\">\n                        <label for=\"inputPassword\" class=\"col-lg-3 col-form-label\" style=\"font-weight: 400;\">New Project Name :</label>\n                        <div class=\"col-lg-8\">\n                            @Html.TextBoxFor(model => model.ProjectName, null, new { @class = \"form-control rmverror\", id = \"txtProjectName\", placeholder = \"Project Name\", maxlength = \"64\" })\n                            <div class=\"alert alert-danger d-none\" role=\"alert\" id=\"txtProjectName_Error\">\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"form-group row\">\n                        <label for=\"ddlAcccountName\" class=\"col-lg-3 col-form-label\" style=\"font-weight: 400;\">Select Organization :</label>\n                        <div class=\"col-lg-8\">\n\n                            @Html.DropDownListFor(model => model.accountName, new SelectList(Model.accountsForDropdown), \"Select Organization\", new { @class = \"form-control rmverror\", id = \"ddlAcccountName\", name = \"accountName\", style = \"cursor:pointer\" })\n                            <div class=\"alert alert-danger d-none\" role=\"alert\" id=\"ddlAcccountName_Error\">\n                            </div>\n                            <div id=\"notify\" class=\"d-none\" style=\"color: #918a8a \">Not finding your organization? <a href=\"../account/index\">Sign In</a> </div>\n                            <div style=\"color:red\">\n                                @ViewBag.AccDDError\n                            </div>\n                        </div>\n                    </div>\n\n                </div>\n\n                <div style=\"border:1px solid #ccc; margin-top:15px;\" id=\"gitHubCheckboxDiv\">\n                    <div class=\"form-group row\">\n                        <div class=\"col-lg-12\">\n                            <div class=\"git_support\">\n                                <div for=\"Template\" class=\"col-lg-12 col-sm-12 p-0\">\n                                    <p class=\"githubPng\"><b>Azure DevOps Demo Generator now supports GitHub forking!</b></p>\n                                    <p class=\"m-2\">\n                                        The selected template includes a GitHub repository. You can choose to fork it or use the existing\n                                        repo. If you fork, all pipelines will be updated to point to the forked repo.\n                                    </p>\n                                </div>\n                            </div>\n                            <div class=\"col-lg-3 float-left\"></div>\n                            <div class=\"col-lg-5  mb-3 mt-3 float-left\" style=\"\">\n                                <div class=\"template-invoke mb-3 mt-1 inlinestyle\">\n                                    <input type=\"checkbox\" id=\"gitHubCheckbox\" name=\"gitHubCheckbox\">\n                                    <label for=\"gitHubCheckbox\">Yes, I want to fork this repository</label>\n                                </div>\n                            </div>\n                            <div class=\"template-invoke mb-3 mt-3 col-lg-3 float-left\" id=\"gitHubAuthDiv\">\n                                <button type=\"button\" class=\"btn githubIcon\" id=\"githubAuth\" style=\"padding-left:5px; padding-right:5px; width: 100%\" disabled=\"\">\n                                    Authorize\n                                </button>\n                            </div>\n                        </div>\n                    </div>\n                </div>\n\n                <div id=\"projectParameters\" style=\"display:none\">\n                </div>\n                <!-- PROJECT PARAMETERS -->\n                <!--EXTENSIONS -->\n                <div id=\"InfoMessage\" style=\"border-radius: 4px;box-shadow: 0px 5px 20px #f2f2f2;\" class=\"border col-lg-12 d-block mt-4 p-3\">\n\n                </div>\n                <div class=\"mt-4 mb-3 border p-3 d-none col-lg-12\" id=\"lblextensionError\" style=\"border-radius: 4px; box-shadow: 0px 5px 20px #f2f2f2;\">\n                    <div style=\"margin-bottom: 6px;\" class=\"boldText\"><strong>Verifying if all required extension(s) are installed and enabled</strong></div>\n                    <div class=\"extensionError boldText\">\n                        <p style=\"display:none;\" id=\"extensionError\"></p>\n                    </div>\n                </div>\n                <!--/EXTENSIONS -->\n                <div class=\"col-lg-12\">\n                    <div class=\"form-group row\" id=\"\">\n                        <div class=\"col-lg-3 float-left\"></div>\n                        <div class=\"col-lg-5  mb-3 mt-3 float-left\" style=\"\"></div>\n                        <div class=\"col-lg-3  mb-3 mt-3 m-0\">\n                            <button class=\"btn btn-primary submitBtn btnUpdate \" id=\"btnSubmit\" style=\" width: 100%;\">\n                                Create Project\n                            </button>\n                            @*<img src=\"~/Images/loading.gif\" alt=\"loading\" class=\"img-circle\" id=\"imgLoading\" style=\"display:none;\" />*@\n                        </div>\n                    </div>\n                </div>\n                <div class=\"card mt-3 d-none col-lg-12\" id=\"finalLink\">\n                    <div class=\"card-body\" id=\"accountLink\" style=\"color: green;font-weight: 300; padding-left:0px; padding-right:0px;\">\n                    </div>\n                </div>\n                <!-- PROGRESS BAR -->\n                <div class=\"progress mt-3 d-none col-lg-12\" id=\"dvProgress\" style=\"padding-left:0px;\">\n                    <div class=\"progress-bar progress-bar-striped bg-primary\" id=\"progressBar\" role=\"progressbar\" style=\"width: 0%; height: 15px;\" aria-valuenow=\"25\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\n                </div>\n                <h6 class=\"text-muted d-none\" id=\"textMuted\">Your project is being created...</h6>\n\n                <!-- PROGRESS BAR -->\n                <div id=\"status-messages\" class=\"border p-3 mt-3 col-lg-12\" style=\"display:none; border-radius: 4px; box-shadow: 0px 5px 20px #f2f2f2;\">\n                </div>\n            </div>\n            <!--\n               COL 3\n               Notification section\n            -->\n            <div class=\"col-md-3 order-2 order-md-3\">\n                <div class=\"card text-white mb-3 vstsScroll\" id=\"announcement\" style=\"max-height:250px;overflow-y:auto;\">\n                    <div class=\"card-header bg-primary\">Note - enable the classic build and release pipeline!!</div>\n                    <div class=\"card-body\" style=\"background-color:white; color:red;\">\n                        <ul style=\"padding-left:10px; list-style-type:none\">\n                            <li>\n                                <p>If you're using brand new organization, please enable the creation of classic build and relase pipeline by disabling the following flag under <i>Organization Settings >> Pipelines >> Settings</i><a href=\"../Images/enable_classic.png\" target=\"_blank\"> here. </a></p>\n                                <p>We are working on migrating the classic pipelines to YAML.</p>\n                            </li>\n                        </ul>\n                    </div>\n                </div>\n                <!-- Description card -->\n                <div class=\"card text-white mb-3 vstsScroll\" id=\"lblDescription\" style=\"max-height:250px;overflow-y:auto;\">\n                    <div class=\"card-header bg-primary \">About this Template</div>\n                    <div class=\"card-body\" style=\"background-color:white; color:black\">\n                        <div class=\"template-header\" style=\"width:100%; float:left;\">\n                            <img class=\"templateImage\" style=\"display: inline-block; float: left;\" id=\"templatePreviewImage\" src=\"\">\n                            <strong style=\"margin-left: 7px;text-align: left;float: right;display: inline-block;width: 83%;\" id=\"templatePreviewName\"></strong>\n                        </div>\n                        <p class=\"card-text\" id=\"descContainer\">\n                        </p>\n                    </div>\n                </div>\n\n                <div class=\"card text-white mb-3 vstsScroll\" id=\"announcement\" style=\"max-height:250px;overflow-y:auto;\">\n                    <div class=\"card-header bg-primary\">What's new?</div>\n                    <div class=\"card-body\" style=\"background-color:white; color:black\">\n                        <ul style=\"padding-left:10px\">\n                            <li>\n                                New templates <b>eShopOnWeb</b> to demonstrate the features of <a href=\"https://azure.microsoft.com/en-in/products/devops/github-advanced-security\" target=\"_blank\">GitHub Advanced Security for Azure DevOps (GHAzDo)</a>\n                            </li>\n                        </ul>\n                    </div>\n                </div>\n                <div class=\"card bg-primary mb-3 mt-auto\" id=\"errorNotify\" style=\"display:none;\">\n                    <div class=\"card-header\" style=\"color:white\">Sorry….We ran into an issue!</div>\n                    <div class=\"card-body\" style=\"background-color:white\">\n                        <p class=\"card-text\" id=\"errorDescription\">\n                        </p>\n                    </div>\n                    <div class=\"card-footer\" style=\"background-color:white\">\n                        <button class=\"btn btn-block btn-danger\" data-toggle=\"modal\" data-target=\"#exampleModal\">\n                            View Diagnostics\n                        </button>\n                    </div>\n                </div>\n                <!-- /Description card -->\n            </div>\n        </div>\n    </div>\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\" integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n    <script src=\"~/Scripts/AppScripts/create.js\"></script>\n    <script src=\"~/Scripts/AppScripts/FileUpload.js\"></script>\n    <script src=\"~/Scripts/AppScripts/GitHubAuth.js\"></script>\n    <script src=\"~/Scripts/tooltip.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Environment/PrivateTemplate.cshtml",
    "content": "﻿<html>\n<head>\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n    <script src=\"~/Scripts/AppScripts/FileUpload.js\"></script>\n    <script src=\"~/Scripts/AppScripts/create.js\"></script>\n    <link rel=\"stylesheet\" href=\"~/content/assets/css/custom.min.css\">\n    <link href=\"~/assets/templategrouping/templategroup.custom.min.css\" rel=\"stylesheet\" />\n\n</head>\n<body class=\"mt-3 bg-light\">\n    <div class=\"container\">\n        <div>\n            Azure DevOps Demo Generator enables users to create their own templates using existing projects and provision new projects using extracted template.\n            The capacity to have custom templates can be helpful in many situations,\n            such as constructing custom training content, providing only certain artifacts, etc., <br>\n            You can refer the document\n            <a href=\"https://vstsdemodata.visualstudio.com/AzureDevOpsDemoGenerator/_wiki/wikis/AzureDevOpsGenerator.wiki?pagePath=%2FAbout%20Azure%20DevOps%20Demo%20Generator%2FBuild%20your%20own%20template&amp;pageId=58&amp;wikiVersion=GBwikiMaster\" target=\"_blank\">here</a>\n            on how to use the extractor.\n        </div>\n        <div class=\"template-body bg-light p-3 col-lg-12 col-sm-12 row\" style=\"border: 1px solid grey; height: fit-content;\">\n            <div class=\"col-lg-4 col-sm-4\">\n                <label>Upload your template archive (zip) file from:</label>\n                <div style=\"border:1px solid #ccc; padding:15px;\">\n\n                    <div style=\"margin-left:15px\">\n                        <label class=\"form-check-label\">\n                            <input type=\"radio\" name=\"FileUpload\" class=\"fileMode form-check-input\" value=\"1\" checked>\n                            Local Drive\n                        </label> <br>\n                    </div>\n                    <div style=\"margin-left:15px\">\n                        <label class=\"form-check-label\">\n                            <input type=\"radio\" name=\"FileUpload\" class=\"fileMode form-check-input\" value=\"2\">\n                            GitHub\n                        </label> <br>\n                    </div>\n                    <div style=\"margin-left:15px\">\n                        <label class=\"form-check-label\">\n                            <input type=\"radio\" name=\"FileUpload\" class=\"fileMode form-check-input\" value=\"3\">\n                            URL\n                        </label><br>\n                    </div>\n                </div>\n            </div>\n            <div class=\"col-sm-8 col-lg-8\">\n\n                <div id=\"zipUpload\">\n                    <p>Specify File</p>\n                    <div class=\"form-group\"><input class=\"form-control\" type=\"file\" id=\"FileUpload1\" accept=\".zip\"></div>\n                    <div id=\"btnContainer\">\n                        <button class=\"btn btn-primary\" style=\"float:right\" id=\"btnUpload\">Submit</button>\n                    </div>\n\n                </div>\n                <div class=\"d-none\" id=\"GitHubUpload\">\n                    <p>\n                        Provide the github URL to your private template (zip file). Note: If your repo is private, you will need to provide a\n                        <a href=\"https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line\"  target=\"_blank\"> Personal Access Token</a>\n                    </p>\n\n                    <div class=\"form-group\"><input class=\"form-control\" type=\"text\" id=\"GitHubUrl\" placeholder=\"https://github.com/{GitHub-ID}/{RepoName}/{Branch}/{FileName}.zip\"></div>\n                    <div class=\"form-group\">\n                        <div class=\"col-lg-6\"></div>\n                        <div class=\"col-lg-6\">\n                            <input type=\"checkbox\" id=\"privateGitHubRepo\"><label for=\"privateGitHubRepo\" style=\"margin-left: 5px;\">\n                                Requires Authorization\n                            </label>\n                        </div>\n                    </div>\n                    <div class=\"form-group row d-none\" id=\"githubAuthDetails\">\n                        <div class=\"col-lg-5\">\n                            <label for=\"Template\" style=\"width:100%;display: block;text-align: right;\">\n                                <i class=\"githubPng\" style=\"padding: 2% 11% 5% 1% !important;\"></i>Personal Access Token\n                            </label>\n                        </div>\n                        <div class=\"col-lg-7\">\n\n                            <input class=\"form-control\" type=\"password\" id=\"GitHubToken\" placeholder=\"Personal Access Token\">\n                        </div>\n\n                    </div>\n\n                    <div id=\"btnGitHubContainer\">\n                        <button class=\"btn btn-primary\" style=\"float:right\" id=\"btnGitHubUpload\">Submit</button>\n                    </div>\n                </div>\n                <div class=\"d-none\" id=\"urlUpload\">\n                    <p>Specify the URL to your private template. If the URL needs authentication, please provide username and password </p>\n                    <div class=\"form-group\"><input class=\"form-control\" type=\"text\" id=\"FileURL\" placeholder=\"https://www.mysite.com/mytemplatefile.zip\"></div>\n                    <div class=\"col-lg-6\">\n                        <input type=\"checkbox\" id=\"privateurl\"><label for=\"privateurl\" style=\"margin-left: 5px;\">\n                            Requires Authorization\n                        </label>\n                    </div>\n                    <div class=\"form-row d-none\" id=\"divUserID\">\n                        <div class=\"col-lg-5\"><label style=\"text-align: right;display: block;/* vertical-align: middle; */\">Username:</label></div><div class=\"col-lg-7\">\n                            <input class=\"form-control\" type=\"text\" id=\"UserId\" placeholder=\"username\">\n                        </div>\n                    </div>\n                    <div class=\"form-row d-none\" id=\"divPassword\" style=\"padding-top: 5px; padding-bottom: 5px;\">\n                        <div class=\"col-lg-5\">\n                            <label style=\" display: block; text-align: right;\">Password:</label>\n                        </div><div class=\"col-lg-7\">\n                            <input class=\"form-control\" type=\"password\" id=\"Password\" placeholder=\"password\" />\n                        </div>\n                    </div>\n\n                    <div id=\"urlbtnContainer\">\n                        <button class=\"btn btn-primary\" style=\"float:right\" id=\"btnURLUpload\">Submit</button>\n                    </div>\n                </div>\n                <div align=\"center\"> <span style=\"color:red\" id=\"urlerror\"></span></div>\n\n            </div>\n        </div>\n    </div>\n</body>\n</html>\n<script type=\"text/javascript\">\n    $(document).ready(function () {\n        $('.fileMode').change(function () {\n            $(\"#urlerror\").empty();\n            $('#zipUpload').addClass('d-none');\n            $('#urlUpload').addClass('d-none');\n            $('#GitHubUpload').addClass('d-none');\n            $('#GitHubUrl').val('');\n            $('#GitHubToken').val('');\n            $('#UserId').val('');\n            $('#Password').val('');\n            $('#FileURL').val('');\n            var selectedVal = $(this).val();\n            if (selectedVal === \"1\") {\n                $('#zipUpload').removeClass('d-none');\n            }\n            else if (selectedVal === \"2\") {\n                $('#GitHubUpload').removeClass('d-none');\n            }\n            else if (selectedVal === \"3\") {\n                $('#urlUpload').removeClass('d-none');\n            }\n        });\n\n        $('body').on('click', '#privateGitHubRepo, #privateurl', function () {\n            var controlID = this.id;\n            $(\"#urlerror\").empty();\n            $('#UserId').val('');\n            $('#GitHubToken').val('');\n            $('#Password').val('');\n            if (controlID === 'privateGitHubRepo' && this.checked) {\n                $('#githubAuthDetails').removeClass('d-none');\n            } else if (controlID === 'privateurl' && this.checked) {\n                $('#divUserID').removeClass('d-none');\n                $('#divPassword').removeClass('d-none');\n            }\n            else {\n                $('#githubAuthDetails').addClass('d-none');\n                $('#divUserID').addClass('d-none');\n                $('#divPassword').addClass('d-none');\n            }\n        });\n    });\n</script>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Extractor/Index.cshtml",
    "content": "﻿@model VstsDemoBuilder.Models.ProjectList.ProjectDetails\n@{\n    ViewBag.Title = \"Azure DevOps Demo Generator - Template Builder\";\n}\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/content/assets/css/custom.min.css\">\n    <link href=\"~/assets/templategrouping/templategroup.custom.min.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"https://use.fontawesome.com/releases/v5.0.8/css/all.css\" integrity=\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\" crossorigin=\"anonymous\">\n    <script type=\"text/javascript\">\n        var appInsights = window.appInsights || function (config) {\n            function i(config) { t[config] = function () { var i = arguments; t.queue.push(function () { t[config].apply(t, i) }) } } var t = { config: config }, u = document, e = window, o = \"script\", s = \"AuthenticatedUserContext\", h = \"start\", c = \"stop\", l = \"Track\", a = l + \"Event\", v = l + \"Page\", y = u.createElement(o), r, f; y.src = config.url || \"https://az416426.vo.msecnd.net/scripts/a/ai.0.js\"; u.getElementsByTagName(o)[0].parentNode.appendChild(y); try { t.cookie = u.cookie } catch (p) { } for (t.queue = [], t.version = \"1.0\", r = [\"Event\", \"Exception\", \"Metric\", \"PageView\", \"Trace\", \"Dependency\"]; r.length;) i(\"track\" + r.pop()); return i(\"set\" + s), i(\"clear\" + s), i(h + a), i(c + a), i(h + v), i(c + v), i(\"flush\"), config.disableExceptionTracking || (r = \"onerror\", i(\"_\" + r), f = e[r], e[r] = function (config, i, u, e, o) { var s = f && f(config, i, u, e, o); return s !== !0 && t[\"_\" + r](config, i, u, e, o), s }), t\n        }({\n            instrumentationKey: \"__AIKEY__\"\n        });\n\n        window.appInsights = appInsights;\n        appInsights.trackPageView();\n    </script>\n    <!-- Google tag (gtag.js) -->\n    <script async src=\"https://www.googletagmanager.com/gtag/js?id=__GAKEY__\"></script>\n    <script>\n        window.dataLayer = window.dataLayer || [];\n        function gtag() { dataLayer.push(arguments); }\n        gtag('js', new Date());\n\n\n\n        gtag('config', '__GAKEY__', 'auto');\n        gtag('event', 'Template Builder', {\n            'event_category': 'Azure DevOps Demo Generator',\n            'event_label': 'Azure DevOps Demo Generator - Template Builder',\n            'event_action': 'page_view',\n            'send_to': '__GAKEY__'\n        });\n    </script>\n    <title>Template Builder</title>\n    <style type=\"text/css\">\n        .nav-pills .nav-link.active, .nav-pills .show > .nav-link {\n            color: rgb(34, 121, 195);\n            background-color: white;\n            border-bottom: 2px solid rgb(34, 121, 195);\n        }\n\n        .fas {\n            color: #8DC63F;\n            padding: 5px;\n        }\n\n        .bl {\n            color: #2279C3;\n            padding: 5px;\n        }\n\n        body {\n            background: url('../../../Images/bg_new.png'),#fff;\n            background-repeat: no-repeat !important;\n            background-size: contain;\n            background-position: top right;\n        }\n\n        .tooltip {\n            position: relative;\n            display: inline-block;\n            border-bottom: 1px dotted black;\n            opacity: 1;\n        }\n\n            .tooltip .tooltiptext {\n                visibility: hidden;\n                width: 120px;\n                background-color: black;\n                color: #fff;\n                text-align: center;\n                border-radius: 6px;\n                padding: 5px 0;\n                position: absolute;\n                z-index: 1;\n                bottom: 150%;\n                left: 50%;\n                margin-left: -60px;\n            }\n\n                .tooltip .tooltiptext::after {\n                    content: \"\";\n                    position: absolute;\n                    top: 100%;\n                    left: 50%;\n                    margin-left: -5px;\n                    border-width: 5px;\n                    border-style: solid;\n                    border-color: black transparent transparent transparent;\n                }\n\n            .tooltip:hover .tooltiptext {\n                visibility: visible;\n            }\n    </style>\n</head>\n<body class=\"pb-3\">\n    <input type=\"hidden\" id=\"hidnUID\" />\n    @Html.HiddenFor(model => model.accessToken, new { id = \"key\" })\n    <!--TEMPLATE GROUPING-->\n    <!--/TEMPLATEgROUPING-->\n    <!-- MODAL -->\n    <div class=\"modal fade\" id=\"exampleModal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"exampleModalLabel\" aria-hidden=\"true\">\n        <div class=\"modal-dialog\" role=\"document\">\n            <div class=\"modal-content\">\n                <div class=\"modal-header\">\n                    <h5 class=\"modal-title\" id=\"exampleModalLabel\">Copy Diagnostic Log</h5>\n                    <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                        <span aria-hidden=\"true\">&times;</span>\n                    </button>\n                </div>\n                <div class=\"modal-body\">\n                    <div id=\"errorMail\" style=\"text-align:justify;word-wrap: break-word;height: 150px;overflow: auto;\">\n                    </div>\n                </div>\n                <div class=\"modal-footer\">\n                    <button type=\"button\" class=\"btn btn-secondary\" data-dismiss=\"modal\">Close</button>\n                </div>\n            </div>\n        </div>\n    </div>\n    <!-- /MODAL -->\n    <nav class=\"navbar navbar-dark navbar-expand-lg fixed-top no-border navbar-toggler\" id=\"headbar\">\n        <a class=\"navbar-brand p-0 mr-auto\" href=\"#\">\n            <img src=\"~/content/assets/images/VS_logo.png\" alt=\"\">\n            <span class=\"navbar-brand-text ml-1\">\n                Azure DevOps Demo Generator - Template Builder\n            </span>\n        </a>\n        <ul class=\"navbar-nav\">\n            <li class=\"nav-item dropdown\">\n                <a class=\"nav-link dropdown-toggle\" href=\"#\" id=\"navbarDropdown\" role=\"button\" data-toggle=\"dropdown\" aria-haspopup=\"true\"\n                   aria-expanded=\"false\">\n                    <img src=\"@Model.profileImage\" alt=\"user\">\n                    @if (Session[\"User\"] != null)\n                    {\n                        <span class=\"VSTS-username ml-1\" style=\"font-size:16px\">@Session[\"User\"].ToString()</span>\n                    }\n                    <span class=\"sr-only\">(current)</span>\n                </a>\n                <div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\">\n                    <a class=\"dropdown-item\" id=\"switch\" href=\"https://aex.dev.azure.com/\" target=\"_blank\">Switch Directory</a>\n                    <a class=\"dropdown-item\" href=\"../Account/SignOut\">Sign out</a>\n                </div>\n            </li>\n        </ul>\n    </nav>\n    <div class=\"jumbotron mb-0\" style=\"padding-bottom: 25px; padding-top: 25px;\">\n        <div class=\"text-center text-white display-4 p-3\" id=\"greeting\" style=\"line-height: 1.2;\">\n            Create New Template\n        </div>\n    </div>\n    <div class=\"container-fluid mt-3\">\n        <div class=\"row VSTS-mh-100\">\n            <!--\n                  COL 1\n                  Image and Feedback section\n            -->\n            <div class=\"col-md-3 order-2 order-md-1 VSTS-mh-100\">\n                <div class=\"d-flex flex-column VSTS-mh-100\">\n                    <img class=\"img-fluid\" src=\"~/Images/theme_img_3.png\" alt=\"side\" />\n                </div>\n            </div>\n            <!--\n                COL 2\n                Create section\n            -->\n            <div class=\"col-md-6 order-1 order-md-2 listDivs1 \">\n                <div class=\"center_portion\">\n                    <div class=\"form-group row listDivs1\">\n                        <label for=\"ddlAcccountName\" class=\"col-lg-4 col-form-label\" style=\"font-weight: 400;\">Select Organization :</label>\n                        <div class=\"col-lg-7 mt-1\">\n                            @Html.DropDownListFor(model => model.accountName, new SelectList(Model.accountsForDropdown), \"Select Organization\", new { @class = \"form-control rmverror\", id = \"ddlAcccountName\", name = \"Organization\" })\n                            <div class=\"alert alert-danger d-none\" role=\"alert\" id=\"ddlAcccountName_Error\">\n                            </div>\n                            <div id=\"notify\" class=\"d-none\" style=\"color: #918a8a \">Not finding your organization? <a href=\"../account/index\">Sign In</a> </div>\n                            <div style=\"color:red\">\n                                @ViewBag.AccDDError\n                            </div>\n                        </div>\n                    </div>\n\n                    <div class=\"form-group row \">\n                        <label for=\"inputPassword\" class=\"col-lg-4 col-form-label\" style=\"font-weight: 400;\">\n                            Select Project :  <i class=\"fas fa-info-circle bl\" id=\"info\"></i>\n                            <span class=\"d-none\" id=\"infoData\" style=\"font-weight:500\">\n                                Please select a project that uses the standard Scrum or Agile process template\n                            </span>\n                        </label>\n                        <div class=\"col-lg-7 mt-1\">\n                            <select class=\"form-control rmverror\" id=\"projectSelect\">\n                                <option value=\"0\">Select Project</option>\n                            </select>\n                            <div class=\"alert alert-danger d-none pl-0\" role=\"alert\" id=\"projectSelect_Error\">\n                            </div>\n                        </div>\n                        <div class=\"template-invoke mt-1 col-lg-1\" id=\"projecctDiv\">\n                            @*<img src=\"~/Images/loading.gif\" alt=\"loading\" class=\"img-circle d-none\" id=\"projectloader\" />*@\n                        </div>\n                    </div>\n\n                    <div class=\"form-group row listDivs1\" id=\"\">\n                        <div class=\"col-sm-6\" style=\"width:70%;\">\n                            <input type=\"hidden\" id=\"processtemplate\" />\n                            <input type=\"hidden\" id=\"TemplateClass\" />\n\n                        </div>\n                    </div>\n                    <div class=\"mr-3 text-right listDivs1 btn_analyz\" style=\"padding:0px\">\n                        <button class=\"btn btn-primary submitBtn btnUpdate\" id=\"Analyse\">\n                            Analyze\n                        </button>\n                        <img src=\"~/Images/loading.gif\" alt=\"loading\" class=\"img-circle d-none\" id=\"imgLoading\" />\n                    </div>\n\n                    <div class=\"form-group d-none listDivs1 col-lg-11 artifact\" id=\"analyseDiv\">\n                        <div class=\"accordion\" id=\"accordionExample\">\n                            <div class=\"card rounded\">\n                                <div class=\"card-header\" data-toggle=\"collapse\" data-target=\"#collapseOne\" aria-expanded=\"true\" aria-controls=\"collapseOne\" id=\"headingOne\" style=\"padding:0px; background-color:white; cursor:pointer;\">\n                                    <h5 class=\"mb-0\">\n                                        <i class=\"fas fa-chevron-down\" style=\"float: right;padding: 8px; color:black;\"></i>\n                                        <button class=\"btn\" type=\"button\">\n                                            <b>Artifacts Analysis</b>\n                                        </button>\n                                    </h5>\n                                </div>\n\n                                <div id=\"collapseOne\" class=\"collapse show accorDetails\" aria-labelledby=\"headingOne\" data-parent=\"#accordionExample\">\n                                    <div class=\"card-body\">\n                                        <div id=\"analytics\">\n                                        </div>\n                                        <p id=\"templateError\"></p>\n                                    </div>\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n\n                    <div class=\"text-right mt-3 mr-3 d-none btn_analyz\" style=\"padding:0px\" id=\"genArtDiv\">\n                        <button class=\"btn btn-primary \" id=\"GenerateArtifacts\" disabled>\n                            Generate Artifacts\n                        </button>\n                        @*<img src=\"~/Images/loading.gif\" alt=\"loading\" class=\"img-circle d-none\" id=\"ExdvProgress\" />*@\n                    </div>\n\n                    <!--EXTENSIONS -->\n                    <!--/EXTENSIONS -->\n                    <div class=\"order-md-2 d-none col-lg-11 artifact\" id=\"GenerateArtifact\">\n                        <!-- PROGRESS BAR -->\n                        <div class=\"accordion\">\n                            <div class=\"card\">\n                                <div class=\"card-header\" data-toggle=\"collapse\" data-target=\"#collapseTwo\" aria-expanded=\"true\" aria-controls=\"collapseTwo\" id=\"headingTwo\" style=\"padding:0px; background-color:white; cursor:pointer;\">\n                                    <h5 class=\"mb-0\">\n                                        <i class=\"fas fa-chevron-down\" style=\"float: right;padding: 8px; color:black;\"></i>\n                                        <button class=\"btn\" type=\"button\">\n                                            <b>Artifact Summary</b>\n                                        </button>\n                                    </h5>\n                                </div>\n                                <div id=\"collapseTwo\" class=\"collapse show genArtifacts\" aria-labelledby=\"headingTwo\" data-parent=\"#GenerateArtifact\">\n                                    <div class=\"card-body\">\n                                        <div id=\"artifactProgress\" class=\"d-none\">\n                                        </div>\n                                        <div id=\"ExStatus-messages\" class=\"mt-3\" style=\"display:none;\">\n                                        </div>\n                                    </div>\n                                </div>\n                            </div>\n                        </div>\n                        <div class=\"card mt-3 d-none\" id=\"finalLink\" style=\"border: 0px\">\n                            <div class=\"card-body\" id=\"accountLink\" style=\"color: green;font-weight: 300;box-shadow: 0px 3px 10px #e0e0e0;\">\n                                <form action=\"~/Extractor/ZipAndDownloadFiles\" method=\"post\">\n                                    <input type=\"hidden\" name=\"fileName\" id=\"hdnProjecName\">\n                                    Click <button type=\"submit\" class=\"btn btn-link\" id=\"fileDownload\" style=\"padding:0px; vertical-align: baseline;padding-right: 2px;\">here</button>to download your file\n                                    <p style=\"font-weight:600\">Note: Folder will be deleted from the server once you click on download button.</p>\n                                </form>\n                            </div>\n                        </div>\n                    </div>\n\n                    <div class=\"card bg-primary mb-3 mt-auto d-none\" id=\"errorNotify\">\n                        <div class=\"card-header\" style=\"color:white\">Sorry….We ran into an issue!</div>\n                        <div class=\"card-body\" style=\"background-color:white\">\n                            <p class=\"card-text\" id=\"errorDescription\">\n                            </p>\n                        </div>\n                        <div class=\"card-footer\" style=\"background-color:white\">\n                            <button class=\"btn btn-block btn-danger\" data-toggle=\"modal\" data-target=\"#exampleModal\">\n                                View Diagnostics\n                            </button>\n                        </div>\n                    </div>\n                </div>\n            </div>\n            <!--\n               COL 3\n               Notification section\n            -->\n\n\n        </div>\n    </div>\n\n    <div class=\"container-fluid mt-3 listDivs2\">\n        <div class=\"row VSTS-mh-100\">\n\n        </div>\n    </div>\n\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\" integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n    <script src=\"~/Scripts/tooltip.js\"></script>\n    <script src=\"~/Scripts/AppScripts/Extractor.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Extractor/NotFound.cshtml",
    "content": "﻿\n@{\n    ViewBag.Title = \"HandleError\";\n    Layout = null;\n}\n\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/assets/css/custom.min.css\">\n    <link rel=\"stylesheet\" href=\"https://use.fontawesome.com/releases/v5.0.8/css/all.css\" integrity=\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\" crossorigin=\"anonymous\">\n    <title>NotFound</title>\n</head>\n<body class=\"pb-3\">\n    <!-- /MODAL -->\n    <nav class=\"navbar navbar-dark navbar-expand-lg no-border navbar-toggler\" id=\"headbar\" style=\"background-color:#0078d7\">\n        <a class=\"navbar-brand p-0 mr-auto\" href=\"../Account/Verify\">\n            <img src=\"~/content/assets/images/VS_logo.png\" />\n            <span class=\"navbar-brand-text ml-1\">\n                Azure DevOps Demo Generator\n            </span>\n        </a>\n    </nav>\n\n    <div class=\"container-fluid mt-3\">\n        <div class=\"row\">\n            <!--\n                  COL 1\n                  Image and Feedback section\n            -->\n            <div class=\"col-md-2 order-2 order-md-1\">\n\n            </div>\n            <!--\n                COL 2\n                Create section\n            -->\n            <div class=\"col-md-8 order-1 order-md-2\" style=\"line-height: 1.2;color:#808080; font-weight:200; font-size: 1.75rem;text-align:center\">\n\n                <img src=\"~/assets/images/NotFound.png\" alt=\"notfound\" style=\"height:60%\"/>\n\n                @*<div class=\"text-center display-4 p-3\" id=\"greeting\">*@\n                <div class=\"\">\n                    <h6>Oops! We can not find the page you are looking for.</h6>\n                </div>\n                <u><a href=\"https://app.vssps.visualstudio.com/_signout\" style=\"color:#808080;\">Sign out</a></u>\n\n                @*</div>*@\n            </div>\n            <!--\n               COL 3\n               Notification section\n            -->\n            <div class=\"col-md-2 order-3 order-md-3\">\n                <!-- Description card -->\n                <!-- /Description card -->\n            </div>\n        </div>\n    </div>\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\" integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n</body>\n</html>\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/GitHub/Issue.cshtml",
    "content": "﻿@{\n    ViewBag.Title = \"Azure DevOps Demo Generator\";\n}\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/content/assets/css/custom.min.css\">\n    <link href=\"~/assets/templategrouping/templategroup.custom.min.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"https://use.fontawesome.com/releases/v5.0.8/css/all.css\" integrity=\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\" crossorigin=\"anonymous\">\n\n    <script type=\"text/javascript\">\n        var appInsights = window.appInsights || function (config) {\n            function i(config) { t[config] = function () { var i = arguments; t.queue.push(function () { t[config].apply(t, i) }) } } var t = { config: config }, u = document, e = window, o = \"script\", s = \"AuthenticatedUserContext\", h = \"start\", c = \"stop\", l = \"Track\", a = l + \"Event\", v = l + \"Page\", y = u.createElement(o), r, f; y.src = config.url || \"https://az416426.vo.msecnd.net/scripts/a/ai.0.js\"; u.getElementsByTagName(o)[0].parentNode.appendChild(y); try { t.cookie = u.cookie } catch (p) { } for (t.queue = [], t.version = \"1.0\", r = [\"Event\", \"Exception\", \"Metric\", \"PageView\", \"Trace\", \"Dependency\"]; r.length;) i(\"track\" + r.pop()); return i(\"set\" + s), i(\"clear\" + s), i(h + a), i(c + a), i(h + v), i(c + v), i(\"flush\"), config.disableExceptionTracking || (r = \"onerror\", i(\"_\" + r), f = e[r], e[r] = function (config, i, u, e, o) { var s = f && f(config, i, u, e, o); return s !== !0 && t[\"_\" + r](config, i, u, e, o), s }), t\n        }({\n            instrumentationKey: \"__AIKEY__\"\n        });\n\n        window.appInsights = appInsights;\n        appInsights.trackPageView();\n    </script>\n    <!-- Google tag (gtag.js) -->\n    <script async src=\"https://www.googletagmanager.com/gtag/js?id=__GAKEY__\"></script>\n    <script>\n        window.dataLayer = window.dataLayer || [];\n        function gtag() { dataLayer.push(arguments); }\n        gtag('js', new Date());\n\n\n\n        gtag('config', '__GAKEY__', 'auto');\n        gtag('event', 'Azure DevOps Demo Generator - Issue', {\n            'event_category': 'Azure DevOps Demo Generator',\n            'event_label': 'Azure DevOps Demo Generator - Issue',\n            'event_action': 'page_view',\n            'send_to': '__GAKEY__'\n        });\n    </script>\n    <title>Create Project</title>\n</head>\n<body class=\"pb-3\">\n\n    <div class=\"container mt-3\">\n        <div class=\"row VSTS-mh-100 create-new-project\" style=\"align-items:flex-start\">\n            <!--\n                  COL 1\n                  Image and Feedback section\n            -->\n            <div class=\"col-md-3 order-2 order-md-1 VSTS-mh-100\">\n            </div>\n            <!--\n                COL 2\n                Create section\n            -->\n            <div class=\"col-md-6 order-1 order-md-2\">\n                <div class=\"demo_form\" style=\"min-height:25%\">\n                    <div class=\"demo-content\">\n                        <div class=\"center-block\" style=\" align-content:center\">\n                            <h4 style=\"color:#ff0000\">\n                                Sorry, Couldn't authenticate.\n                            </h4>\n                        </div>\n                    </div>\n                </div>\n            </div>\n            <div class=\"col-md-3 order-2 order-md-3 VSTS-mh-100\">\n            </div>\n            <!--\n               COL 3\n               Notification section\n            -->\n        </div>\n    </div>\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\" integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n    <script src=\"~/Scripts/tooltip.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/GitHub/Oauth.cshtml",
    "content": "﻿\n@{\n    ViewBag.Title = \"Oauth\";\n}\n\n<h2>Oauth</h2>\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/GitHub/Redirect.cshtml",
    "content": "﻿\n@{\n    ViewBag.Title = \"Redirect\";\n}\n\n<h2>Redirect</h2>\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/GitHub/Status.cshtml",
    "content": "﻿@{\n    ViewBag.Title = \"Azure DevOps Demo Generator\";\n}\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/content/assets/css/custom.min.css\">\n    <link href=\"~/assets/templategrouping/templategroup.custom.min.css\" rel=\"stylesheet\" />\n    <link rel=\"stylesheet\" href=\"https://use.fontawesome.com/releases/v5.0.8/css/all.css\" integrity=\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\" crossorigin=\"anonymous\">\n\n    <script type=\"text/javascript\">\n        var appInsights = window.appInsights || function (config) {\n            function i(config) { t[config] = function () { var i = arguments; t.queue.push(function () { t[config].apply(t, i) }) } } var t = { config: config }, u = document, e = window, o = \"script\", s = \"AuthenticatedUserContext\", h = \"start\", c = \"stop\", l = \"Track\", a = l + \"Event\", v = l + \"Page\", y = u.createElement(o), r, f; y.src = config.url || \"https://az416426.vo.msecnd.net/scripts/a/ai.0.js\"; u.getElementsByTagName(o)[0].parentNode.appendChild(y); try { t.cookie = u.cookie } catch (p) { } for (t.queue = [], t.version = \"1.0\", r = [\"Event\", \"Exception\", \"Metric\", \"PageView\", \"Trace\", \"Dependency\"]; r.length;) i(\"track\" + r.pop()); return i(\"set\" + s), i(\"clear\" + s), i(h + a), i(c + a), i(h + v), i(c + v), i(\"flush\"), config.disableExceptionTracking || (r = \"onerror\", i(\"_\" + r), f = e[r], e[r] = function (config, i, u, e, o) { var s = f && f(config, i, u, e, o); return s !== !0 && t[\"_\" + r](config, i, u, e, o), s }), t\n        }({\n            instrumentationKey: \"__AIKEY__\"\n        });\n\n        window.appInsights = appInsights;\n        appInsights.trackPageView();\n    </script>\n    <!-- Google tag (gtag.js) -->\n    <script async src=\"https://www.googletagmanager.com/gtag/js?id=__GAKEY__\"></script>\n    <script>\n        window.dataLayer = window.dataLayer || [];\n        function gtag() { dataLayer.push(arguments); }\n        gtag('js', new Date());\n\n\n\n        gtag('config', '__GAKEY__', 'auto');\n        gtag('event', 'Azure DevOps Demo Generator - Status', {\n            'event_category': 'Azure DevOps Demo Generator',\n            'event_label': 'Azure DevOps Demo Generator - Status',\n            'event_action': 'page_view',\n            'send_to': '__GAKEY__'\n        });\n    </script>\n    <title>Create Project</title>\n</head>\n<body class=\"pb-3\">\n\n    <div class=\"container mt-3\">\n        <div class=\"row VSTS-mh-100 create-new-project\" style=\"align-items:flex-start\">\n            <!--\n                  COL 1\n                  Image and Feedback section\n            -->\n            <div class=\"col-md-3 order-2 order-md-1 VSTS-mh-100\">\n            </div>\n            <!--\n                COL 2\n                Create section\n            -->\n            <div class=\"col-md-6 order-1 order-md-2\">\n                <div class=\"demo_form\" style=\"min-height:25%\">\n                    <div class=\"demo-content\">\n                        <div class=\"center-block\" style=\" align-content:center\">\n                            <h4 style=\"color:#49b524\">\n                                Successfully Authorized\n                            </h4>\n                        </div>\n                    </div>\n                </div>\n            </div>\n            <div class=\"col-md-3 order-2 order-md-3 VSTS-mh-100\">\n            </div>\n            <!--\n               COL 3\n               Notification section\n            -->\n        </div>\n    </div>\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\" integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n    <script src=\"~/Scripts/tooltip.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Home/Index.cshtml",
    "content": "﻿<body style=\"background-color: white;\">\n\n    <div class=\"jumbotron\">\n    <h2>VSTS DemoBuilder</h2>      \n    <p style=\"font-size:12px;\">Visual Studio Team System Profiler is a commercial profiler offered by Microsoft, available as part of the Visual Studio Team System (VSTS) suite and the Development Edition of Visual Studio.[1] It can work either in sampling mode, in which the snapshot of the program state is recorded at certain intervals, or in instrumentation mode, where statistic gathering probes are injected at entry and exit point of functions.[2] While the instrumentation mode allows more accurate statistics to be gathered, it also makes the program run more slowly while being profiled.\n<br /><br />\nThe VSTS profiler helps to optimize performance of code targeted for the .NET platform or natively compiled Visual C++ code. Modern versions of the VSTS profiler can be used to profile both 32-bit and 64-bit Windows programs. The profiler reports performance characteristics for methods which are called during a given run of the profiler including the number of calls to the function and the call stack when the function was called.\nFrom within the profiler, the application is launched and executed normally for a period of time. When the user decides to exit the program, the profiler gives a summary of the number of times that each function was called, the elapsed time of each function, and the memory consumed by objects.\n<br /><br />\nA standalone version of the Azure DevOps profiler can also be installed from the Visual Studio Team System DVD, and is also available for download on the Microsoft website. While the standalone profiler can be installed or used on any platform, the results it collects can only be analyzed in a version of Visual Studio which includes the profiler.</p>\n</div>\n\n  @*<div>\n      @Html.ActionLink(\"Goto Project Setup\", \"Verify\", \"Account\")\n  </div>*@\n\n</body>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Shared/Error.cshtml",
    "content": "﻿\n@{\n    ViewBag.Title = \"HandleError\";\n    Layout = null;\n}\n\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">\n    <link rel=\"stylesheet\" href=\"~/assets/css/custom.min.css\">\n    <link rel=\"stylesheet\" href=\"https://use.fontawesome.com/releases/v5.0.8/css/all.css\" integrity=\"sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S\" crossorigin=\"anonymous\">\n    <title>Error</title>\n</head>\n<body class=\"pb-3\">\n    <!-- /MODAL -->\n    <nav class=\"navbar navbar-dark navbar-expand-lg no-border navbar-toggler\" id=\"headbar\" style=\"background-color:#0078d7\">\n        <a class=\"navbar-brand p-0 mr-auto\" href=\"#\">\n            <img src=\"~/assets/images/VS_logo.png\" alt=\"\">\n            <span class=\"navbar-brand-text ml-1\">\n                Azure DevOps Demo Generator\n            </span>\n        </a>\n    </nav>\n\n    <div class=\"container-fluid mt-3\">\n        <div class=\"row\">\n            <!--\n                  COL 1\n                  Image and Feedback section\n            -->\n            <div class=\"col-md-2 order-2 order-md-1\">\n\n            </div>\n            <!--\n                COL 2\n                Create section\n            -->\n            <div class=\"col-md-8 order-1 order-md-2\" style=\"line-height: 1.2;color:#808080; font-weight:200; font-size: 1.75rem;text-align:center\">\n\n                <img src=\"~/assets/images/error.png\" />\n\n                @*<div class=\"text-center display-4 p-3\" id=\"greeting\">*@\n\n                <p>\n                    Sorry! We ran into an issue. Please sign out and try again later.\n                </p>\n\n                <u><a href=\"https://app.vssps.visualstudio.com/_signout\" style=\"color:#808080;\">Sign out</a></u>\n\n                @*</div>*@\n            </div>\n            <!--\n               COL 3\n               Notification section\n            -->\n            <div class=\"col-md-2 order-3 order-md-3\">\n                <!-- Description card -->\n                <!-- /Description card -->\n            </div>\n        </div>\n    </div>\n    <script src=\"~/Scripts/jquery-1.12.4.min.js\"></script>\n    <script src=\"https://code.jquery.com/jquery-3.2.1.slim.min.js\" integrity=\"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js\" integrity=\"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q\" crossorigin=\"anonymous\"></script>\n    <script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js\" integrity=\"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl\" crossorigin=\"anonymous\"></script>\n</body>\n</html>\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Shared/_Layout.cshtml",
    "content": "﻿<!DOCTYPE html>\n<html>\n<head>\n    <link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"~/Images/favicon.png\" />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\" />\n    <meta charset=\"utf-8\" />\n    <meta name=\"viewport\" content=\"width=device-width\" />\n    <title>@ViewBag.Title</title>\n\n    <meta property=\"og:title\" content=\"Azure DevOps Demo Generator\">\n    <meta property=\"og:image\" content=\"https://azuredevopsdemogenerator.azurewebsites.net/assets/images/VSTS_cover_image.png\">\n    <meta property=\"og:description\" content=\"Azure DevOps Demo Generator helps you create projects on your Azure DevOps organization with pre-populated  sample content that includes source code, work items, iterations, service endpoints, build and release definitions based on a template you choose.\">\n    <meta property=\"og:url\" content=\"https://azuredevopsdemogenerator.azurewebsites.net\">\n\n    <script type=\"text/javascript\">\n        var appInsights = window.appInsights || function (config) {\n            function i(config) { t[config] = function () { var i = arguments; t.queue.push(function () { t[config].apply(t, i) }) } } var t = { config: config }, u = document, e = window, o = \"script\", s = \"AuthenticatedUserContext\", h = \"start\", c = \"stop\", l = \"Track\", a = l + \"Event\", v = l + \"Page\", y = u.createElement(o), r, f; y.src = config.url || \"https://az416426.vo.msecnd.net/scripts/a/ai.0.js\"; u.getElementsByTagName(o)[0].parentNode.appendChild(y); try { t.cookie = u.cookie } catch (p) { } for (t.queue = [], t.version = \"1.0\", r = [\"Event\", \"Exception\", \"Metric\", \"PageView\", \"Trace\", \"Dependency\"]; r.length;) i(\"track\" + r.pop()); return i(\"set\" + s), i(\"clear\" + s), i(h + a), i(c + a), i(h + v), i(c + v), i(\"flush\"), config.disableExceptionTracking || (r = \"onerror\", i(\"_\" + r), f = e[r], e[r] = function (config, i, u, e, o) { var s = f && f(config, i, u, e, o); return s !== !0 && t[\"_\" + r](config, i, u, e, o), s }), t\n        }({\n            instrumentationKey: \"__AIKEY__\"\n        });\n\n        window.appInsights = appInsights;\n        appInsights.trackPageView();\n    </script>\n    <!-- Google tag (gtag.js) -->\n    <script async src=\"https://www.googletagmanager.com/gtag/js?id=__GAKEY__\"></script>\n    <script>\n        window.dataLayer = window.dataLayer || [];\n        function gtag() { dataLayer.push(arguments); }\n        gtag('js', new Date());\n\n\n\n        gtag('config', '__GAKEY__', 'auto');\n        gtag('event', 'Azure DevOps Demo Generator - Shared', {\n            'event_category': 'Azure DevOps Demo Generator',\n            'event_label': 'Azure DevOps Demo Generator - Shared',\n            'event_action': 'page_view',\n            'send_to': '__GAKEY__'\n        });\n    </script>\n\n</head>\n<body>\n    <!--nav bar-->\n    @RenderBody()\n\n    @Scripts.Render(\"~/bundles/jquery\")\n    \n\n    @RenderSection(\"scripts\", required: false)\n</body>\n</html>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/Web.config",
    "content": "﻿<?xml version=\"1.0\"?>\n\n<configuration>\n  <configSections>\n    <sectionGroup name=\"system.web.webPages.razor\" type=\"System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35\">\n      <section name=\"host\" type=\"System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35\" requirePermission=\"false\" />\n      <section name=\"pages\" type=\"System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35\" requirePermission=\"false\" />\n    </sectionGroup>\n  </configSections>\n\n  <system.web.webPages.razor>\n    <host factoryType=\"System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35\" />\n    <pages pageBaseType=\"System.Web.Mvc.WebViewPage\">\n      <namespaces>\n        <add namespace=\"System.Web.Mvc\" />\n        <add namespace=\"System.Web.Mvc.Ajax\" />\n        <add namespace=\"System.Web.Mvc.Html\" />\n        <add namespace=\"System.Web.Optimization\"/>\n        <add namespace=\"System.Web.Routing\" />\n      </namespaces>\n    </pages>\n  </system.web.webPages.razor>\n\n  <appSettings>\n    <add key=\"webpages:Enabled\" value=\"false\" />\n  </appSettings>\n\n  <system.web>\n    <httpHandlers>\n      <add path=\"*\" verb=\"*\" type=\"System.Web.HttpNotFoundHandler\"/>\n    </httpHandlers>\n\n    <!--\n        Enabling request validation in view pages would cause validation to occur\n        after the input has already been processed by the controller. By default\n        MVC performs request validation before a controller processes the input.\n        To change this behavior apply the ValidateInputAttribute to a\n        controller or action.\n    -->\n    <pages\n        validateRequest=\"false\"\n        pageParserFilterType=\"System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35\"\n        pageBaseType=\"System.Web.Mvc.ViewPage, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35\"\n        userControlBaseType=\"System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35\">\n      <controls>\n        <add assembly=\"System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35\" namespace=\"System.Web.Mvc\" tagPrefix=\"mvc\" />\n      </controls>\n    </pages>\n  </system.web>\n\n  <system.webServer>\n    <validation validateIntegratedModeConfiguration=\"false\" />\n\n    <handlers>\n      <remove name=\"BlockViewHandler\"/>\n      <add name=\"BlockViewHandler\" path=\"*\" verb=\"*\" preCondition=\"integratedMode\" type=\"System.Web.HttpNotFoundHandler\" />\n    </handlers>\n  </system.webServer>\n</configuration>\n"
  },
  {
    "path": "src/VstsDemoBuilder/Views/_ViewStart.cshtml",
    "content": "﻿@{\n    Layout = \"~/Views/Shared/_Layout.cshtml\";\n}"
  },
  {
    "path": "src/VstsDemoBuilder/VstsDemoBuilder.csproj",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"12.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n  <Import Project=\"$(MSBuildExtensionsPath32)\\Microsoft\\VisualStudio\\v$(VisualStudioVersion)\\TypeScript\\Microsoft.TypeScript.Default.props\" Condition=\"Exists('$(MSBuildExtensionsPath32)\\Microsoft\\VisualStudio\\v$(VisualStudioVersion)\\TypeScript\\Microsoft.TypeScript.Default.props')\" />\n  <Import Project=\"$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props\" Condition=\"Exists('$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props')\" />\n  <PropertyGroup>\n    <Configuration Condition=\" '$(Configuration)' == '' \">Debug</Configuration>\n    <Platform Condition=\" '$(Platform)' == '' \">AnyCPU</Platform>\n    <ProductVersion>\n    </ProductVersion>\n    <SchemaVersion>2.0</SchemaVersion>\n    <ProjectGuid>{E1796A5C-DA7B-4077-86F3-B2C8626257B7}</ProjectGuid>\n    <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>\n    <OutputType>Library</OutputType>\n    <AppDesignerFolder>Properties</AppDesignerFolder>\n    <RootNamespace>VstsDemoBuilder</RootNamespace>\n    <AssemblyName>VstsDemoBuilder</AssemblyName>\n    <TargetFrameworkVersion>v4.7</TargetFrameworkVersion>\n    <MvcBuildViews>false</MvcBuildViews>\n    <UseIISExpress>false</UseIISExpress>\n    <IISExpressSSLPort />\n    <IISExpressAnonymousAuthentication />\n    <IISExpressWindowsAuthentication />\n    <IISExpressUseClassicPipelineMode />\n    <SccProjectName>SAK</SccProjectName>\n    <SccLocalPath>SAK</SccLocalPath>\n    <SccAuxPath>SAK</SccAuxPath>\n    <SccProvider>SAK</SccProvider>\n    <TargetFrameworkProfile />\n    <UseGlobalApplicationHostFile />\n    <ApplicationInsightsResourceId>/subscriptions/f74e6a4f-08cd-4e93-968f-6618f41c4531/resourcegroups/Default-ApplicationInsights-EastUS/providers/microsoft.insights/components/VstsDemoBuilder</ApplicationInsightsResourceId>\n    <Use64BitIISExpress />\n    <TypeScriptToolsVersion>2.8</TypeScriptToolsVersion>\n  </PropertyGroup>\n  <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' \">\n    <DebugSymbols>true</DebugSymbols>\n    <DebugType>full</DebugType>\n    <Optimize>false</Optimize>\n    <OutputPath>bin\\</OutputPath>\n    <DefineConstants>DEBUG;TRACE</DefineConstants>\n    <ErrorReport>prompt</ErrorReport>\n    <WarningLevel>4</WarningLevel>\n    <Prefer32Bit>false</Prefer32Bit>\n  </PropertyGroup>\n  <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' \">\n    <DebugType>full</DebugType>\n    <Optimize>false</Optimize>\n    <OutputPath>bin\\</OutputPath>\n    <DefineConstants>\n    </DefineConstants>\n    <ErrorReport>prompt</ErrorReport>\n    <WarningLevel>4</WarningLevel>\n    <Prefer32Bit>false</Prefer32Bit>\n    <DebugSymbols>true</DebugSymbols>\n  </PropertyGroup>\n  <ItemGroup>\n    <Reference Include=\"Antlr3.Runtime, Version=3.3.1.7705, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\WebGrease.1.3.0\\lib\\Antlr3.Runtime.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Common.Logging, Version=3.4.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Common.Logging.3.4.1\\lib\\net40\\Common.Logging.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Common.Logging.Core, Version=3.4.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Common.Logging.Core.3.4.1\\lib\\net40\\Common.Logging.Core.dll</HintPath>\n    </Reference>\n    <Reference Include=\"EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\EntityFramework.6.2.0\\lib\\net45\\EntityFramework.dll</HintPath>\n    </Reference>\n    <Reference Include=\"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\EntityFramework.6.2.0\\lib\\net45\\EntityFramework.SqlServer.dll</HintPath>\n    </Reference>\n    <Reference Include=\"GoogleAnalyticsTracker.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=04ab204e84b117c0, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\GoogleAnalyticsTracker.Core.5.0.0\\lib\\portable45-net45+win8+wpa81\\GoogleAnalyticsTracker.Core.dll</HintPath>\n    </Reference>\n    <Reference Include=\"GoogleAnalyticsTracker.Simple, Version=5.0.0.0, Culture=neutral, PublicKeyToken=04ab204e84b117c0, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\GoogleAnalyticsTracker.Simple.5.0.0\\lib\\portable45-net45+win8+wpa81\\GoogleAnalyticsTracker.Simple.dll</HintPath>\n    </Reference>\n    <Reference Include=\"GoogleAnalyticsTracker.WebAPI2, Version=5.0.0.0, Culture=neutral, PublicKeyToken=04ab204e84b117c0, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\GoogleAnalyticsTracker.WebAPI2.5.0.0\\lib\\net45\\GoogleAnalyticsTracker.WebAPI2.dll</HintPath>\n    </Reference>\n    <Reference Include=\"LaunchDarkly.Client, Version=5.4.0.0, Culture=neutral, PublicKeyToken=f86add69004e6885, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\LaunchDarkly.Client.5.4.0\\lib\\net45\\LaunchDarkly.Client.dll</HintPath>\n    </Reference>\n    <Reference Include=\"LaunchDarkly.Common.StrongName, Version=1.1.1.0, Culture=neutral, PublicKeyToken=45ef1738a929a7df, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\LaunchDarkly.Common.StrongName.1.1.1\\lib\\net45\\LaunchDarkly.Common.StrongName.dll</HintPath>\n    </Reference>\n    <Reference Include=\"LaunchDarkly.EventSource, Version=3.1.5.0, Culture=neutral, PublicKeyToken=18e8c36453e3060f, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\LaunchDarkly.EventSource.3.1.5\\lib\\net45\\LaunchDarkly.EventSource.dll</HintPath>\n    </Reference>\n    <Reference Include=\"log4net, Version=2.0.12.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\log4net.2.0.12\\lib\\net45\\log4net.dll</HintPath>\n    </Reference>\n    <Reference Include=\"LowercaseRoutesMVC, Version=1.0.3.0, Culture=neutral, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\LowercaseRoutesMVC.1.0.3\\lib\\LowercaseRoutesMVC.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.AI.Agent.Intercept, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.ApplicationInsights.Agent.Intercept.1.2.1\\lib\\net45\\Microsoft.AI.Agent.Intercept.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.AI.DependencyCollector, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.ApplicationInsights.DependencyCollector.2.1.0\\lib\\net45\\Microsoft.AI.DependencyCollector.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.AI.PerfCounterCollector, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.ApplicationInsights.PerfCounterCollector.2.1.0\\lib\\net45\\Microsoft.AI.PerfCounterCollector.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.AI.ServerTelemetryChannel, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.1.0\\lib\\net45\\Microsoft.AI.ServerTelemetryChannel.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.AI.Web, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.ApplicationInsights.Web.2.1.0\\lib\\net45\\Microsoft.AI.Web.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.AI.WindowsServer, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.ApplicationInsights.WindowsServer.2.1.0\\lib\\net45\\Microsoft.AI.WindowsServer.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.ApplicationInsights, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.ApplicationInsights.2.1.0\\lib\\net46\\Microsoft.ApplicationInsights.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.CSharp\" />\n    <Reference Include=\"Microsoft.IdentityModel.Clients.ActiveDirectory, Version=3.13.5.907, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.5\\lib\\net45\\Microsoft.IdentityModel.Clients.ActiveDirectory.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=3.13.5.907, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.5\\lib\\net45\\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.Practices.ServiceLocation, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\CommonServiceLocator.1.3\\lib\\portable-net4+sl5+netcore45+wpa81+wp8\\Microsoft.Practices.ServiceLocation.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.Practices.Unity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Unity.4.0.1\\lib\\net45\\Microsoft.Practices.Unity.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.Practices.Unity.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Unity.4.0.1\\lib\\net45\\Microsoft.Practices.Unity.Configuration.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.Practices.Unity.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Unity.Mvc.4.0.1\\lib\\net45\\Microsoft.Practices.Unity.Mvc.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.Practices.Unity.RegistrationByConvention, Version=4.0.0.0, Culture=neutral, PublicKeyToken=6d32ff45e0ccc69f, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Unity.4.0.1\\lib\\net45\\Microsoft.Practices.Unity.RegistrationByConvention.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.ServiceBus, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\WindowsAzure.ServiceBus.3.3.2\\lib\\net45-full\\Microsoft.ServiceBus.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.TeamFoundation.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.VisualStudio.Services.Client.15.112.1\\lib\\net45\\Microsoft.TeamFoundation.Common.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.VisualStudio.Services.Client.Interactive, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.VisualStudio.Services.InteractiveClient.15.112.1\\lib\\net45\\Microsoft.VisualStudio.Services.Client.Interactive.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.VisualStudio.Services.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.VisualStudio.Services.Client.15.112.1\\lib\\net45\\Microsoft.VisualStudio.Services.Common.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.VisualStudio.Services.ExtensionManagement.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.15.112.1-preview\\lib\\net45\\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.VisualStudio.Services.Gallery.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.VisualStudio.Services.Gallery.WebApi.15.112.1-preview\\lib\\net45\\Microsoft.VisualStudio.Services.Gallery.WebApi.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.VisualStudio.Services.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.VisualStudio.Services.Client.15.112.1\\lib\\net45\\Microsoft.VisualStudio.Services.WebApi.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.Web.Infrastructure.1.0.0.0\\lib\\net40\\Microsoft.Web.Infrastructure.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.Win32.Primitives.4.3.0\\lib\\net46\\Microsoft.Win32.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Newtonsoft.Json.12.0.3\\lib\\net45\\Newtonsoft.Json.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Swashbuckle.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cd1bb07a5ac7c7bc, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Swashbuckle.Core.5.6.0\\lib\\net40\\Swashbuckle.Core.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System\" />\n    <Reference Include=\"System.AppContext, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.AppContext.4.3.0\\lib\\net463\\System.AppContext.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.ComponentModel.Composition\" />\n    <Reference Include=\"System.Console, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Console.4.3.0\\lib\\net46\\System.Console.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Data\" />\n    <Reference Include=\"System.Data.DataSetExtensions\" />\n    <Reference Include=\"System.Diagnostics.DiagnosticSource, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Diagnostics.DiagnosticSource.4.0.0\\lib\\net46\\System.Diagnostics.DiagnosticSource.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Diagnostics.Tracing, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Diagnostics.Tracing.4.3.0\\lib\\net462\\System.Diagnostics.Tracing.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Drawing\" />\n    <Reference Include=\"System.Globalization.Calendars, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Globalization.Calendars.4.3.0\\lib\\net46\\System.Globalization.Calendars.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IdentityModel.Tokens.Jwt, Version=4.0.20622.1351, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IdentityModel.Tokens.Jwt.4.0.2.206221351\\lib\\net45\\System.IdentityModel.Tokens.Jwt.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.4.3.0\\lib\\net462\\System.IO.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.Compression.4.3.0\\lib\\net46\\System.IO.Compression.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO.Compression.FileSystem\" />\n    <Reference Include=\"System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.Compression.ZipFile.4.3.0\\lib\\net46\\System.IO.Compression.ZipFile.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.FileSystem.4.3.0\\lib\\net46\\System.IO.FileSystem.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.FileSystem.Primitives.4.3.0\\lib\\net46\\System.IO.FileSystem.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Linq, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Linq.4.3.0\\lib\\net463\\System.Linq.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Linq.Expressions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Linq.Expressions.4.3.0\\lib\\net463\\System.Linq.Expressions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net\" />\n    <Reference Include=\"System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Http.4.3.4\\lib\\net46\\System.Net.Http.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Http.Formatting.Extension.5.2.3.0\\lib\\System.Net.Http.Extensions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Http.Formatting.Extension.5.2.3.0\\lib\\System.Net.Http.Formatting.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net.Http.Primitives, Version=4.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Http.Formatting.Extension.5.2.3.0\\lib\\System.Net.Http.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net.Http.WebRequest\" />\n    <Reference Include=\"System.Net.Sockets, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Sockets.4.3.0\\lib\\net46\\System.Net.Sockets.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Numerics\" />\n    <Reference Include=\"System.Reflection, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Reflection.4.3.0\\lib\\net462\\System.Reflection.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.4.3.0\\lib\\net462\\System.Runtime.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.CompilerServices.Unsafe.4.5.2\\lib\\netstandard2.0\\System.Runtime.CompilerServices.Unsafe.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.Extensions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.Extensions.4.3.0\\lib\\net462\\System.Runtime.Extensions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.InteropServices, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.InteropServices.4.3.0\\lib\\net463\\System.Runtime.InteropServices.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.InteropServices.RuntimeInformation.4.3.0\\lib\\net45\\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.Serialization\" />\n    <Reference Include=\"System.Runtime.Serialization.Primitives, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.Serialization.Primitives.4.3.0\\lib\\net46\\System.Runtime.Serialization.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.Serialization.Xml, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.Serialization.Xml.4.3.0\\lib\\net46\\System.Runtime.Serialization.Xml.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Security.Cryptography.Algorithms, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Security.Cryptography.Algorithms.4.3.0\\lib\\net463\\System.Security.Cryptography.Algorithms.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Security.Cryptography.Encoding.4.3.0\\lib\\net46\\System.Security.Cryptography.Encoding.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Security.Cryptography.Primitives.4.3.0\\lib\\net46\\System.Security.Cryptography.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Security.Cryptography.X509Certificates, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Security.Cryptography.X509Certificates.4.3.0\\lib\\net461\\System.Security.Cryptography.X509Certificates.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.ServiceModel\" />\n    <Reference Include=\"System.Text.RegularExpressions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Text.RegularExpressions.4.3.0\\lib\\net463\\System.Text.RegularExpressions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.DynamicData\" />\n    <Reference Include=\"System.Web.Entity\" />\n    <Reference Include=\"System.Web.ApplicationServices\" />\n    <Reference Include=\"System.ComponentModel.DataAnnotations\" />\n    <Reference Include=\"System.Web\" />\n    <Reference Include=\"System.Web.Abstractions\" />\n    <Reference Include=\"System.Web.Extensions\" />\n    <Reference Include=\"System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.WebPages.3.2.7\\lib\\net45\\System.Web.Helpers.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.Http, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.WebApi.Core.5.2.3\\lib\\net45\\System.Web.Http.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.Http.WebHost, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.WebApi.WebHost.5.2.3\\lib\\net45\\System.Web.Http.WebHost.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.Mvc, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.Mvc.5.2.7\\lib\\net45\\System.Web.Mvc.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.Optimization, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.Web.Optimization.1.0.0\\lib\\net40\\System.Web.Optimization.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.Providers.Core.1.2\\lib\\net40\\System.Web.Providers.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.Razor.3.2.7\\lib\\net45\\System.Web.Razor.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.Routing\" />\n    <Reference Include=\"System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.WebPages.3.2.7\\lib\\net45\\System.Web.WebPages.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.WebPages.3.2.7\\lib\\net45\\System.Web.WebPages.Deployment.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.AspNet.WebPages.3.2.7\\lib\\net45\\System.Web.WebPages.Razor.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Xml\" />\n    <Reference Include=\"System.Configuration\" />\n    <Reference Include=\"System.Web.Services\" />\n    <Reference Include=\"System.EnterpriseServices\" />\n    <Reference Include=\"System.Xml.Linq\" />\n    <Reference Include=\"System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Xml.ReaderWriter.4.3.0\\lib\\net46\\System.Xml.ReaderWriter.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Unity.Abstractions, Version=4.1.3.0, Culture=neutral, PublicKeyToken=489b6accfaf20ef0, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Unity.Abstractions.4.1.3\\lib\\net47\\Unity.Abstractions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Unity.Container, Version=5.10.3.0, Culture=neutral, PublicKeyToken=489b6accfaf20ef0, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Unity.Container.5.10.3\\lib\\net47\\Unity.Container.dll</HintPath>\n    </Reference>\n    <Reference Include=\"WebActivatorEx, Version=2.0.0.0, Culture=neutral, PublicKeyToken=7b26dc2a43f6a0d4, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\WebActivatorEx.2.2.0\\lib\\net40\\WebActivatorEx.dll</HintPath>\n    </Reference>\n    <Reference Include=\"WebGrease, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\WebGrease.1.3.0\\lib\\WebGrease.dll</HintPath>\n    </Reference>\n  </ItemGroup>\n  <ItemGroup>\n    <Compile Include=\"App_Start\\BundleConfig.cs\" />\n    <Compile Include=\"App_Start\\FilterConfig.cs\" />\n    <Compile Include=\"App_Start\\RouteConfig.cs\" />\n    <Compile Include=\"App_Start\\SwaggerConfig.cs\" />\n    <Compile Include=\"App_Start\\UnityConfig.cs\" />\n    <Compile Include=\"App_Start\\UnityMvcActivator.cs\" />\n    <Compile Include=\"App_Start\\WebApiConfig.cs\" />\n    <Compile Include=\"Controllers\\AccountController.cs\" />\n    <Compile Include=\"Controllers\\Apis\\ProjectController.cs\" />\n    <Compile Include=\"Controllers\\Apis\\TemplateController.cs\" />\n    <Compile Include=\"Controllers\\EnvironmentController.cs\" />\n    <Compile Include=\"Controllers\\ExtractorController.cs\" />\n    <Compile Include=\"Controllers\\GitHubController.cs\" />\n    <Compile Include=\"Controllers\\SessonTimeoutAttribute.cs\" />\n    <Compile Include=\"ErrorHandler\\AiHandleErrorAttribute.cs\" />\n    <Compile Include=\"Extensions\\Extension.cs\" />\n    <Compile Include=\"ExtractorModels\\ExtractorAnalysis.cs\" />\n    <Compile Include=\"Global.asax.cs\">\n      <DependentUpon>Global.asax</DependentUpon>\n    </Compile>\n    <Compile Include=\"Models\\AccessDetails.cs\" />\n    <Compile Include=\"Models\\Accounts.cs\" />\n    <Compile Include=\"Models\\CreateZips.cs\" />\n    <Compile Include=\"Models\\Default.cs\" />\n    <Compile Include=\"Models\\Email.cs\" />\n    <Compile Include=\"Models\\ErrorMessages.cs\" />\n    <Compile Include=\"Models\\GitHubAccessDetails.cs\" />\n    <Compile Include=\"Models\\LoginModel.cs\" />\n    <Compile Include=\"Models\\ProfileDetails.cs\" />\n    <Compile Include=\"Models\\Project.cs\" />\n    <Compile Include=\"Models\\ProjectList.cs\" />\n    <Compile Include=\"Models\\Query.cs\" />\n    <Compile Include=\"Models\\ReadUser.cs\" />\n    <Compile Include=\"Models\\TemplateSelection.cs\" />\n    <Compile Include=\"Properties\\AssemblyInfo.cs\" />\n    <Compile Include=\"ServiceInterfaces\\IAccountService.cs\" />\n    <Compile Include=\"ServiceInterfaces\\IExtractorService.cs\" />\n    <Compile Include=\"ServiceInterfaces\\IProjectService.cs\" />\n    <Compile Include=\"ServiceInterfaces\\ITemplateService.cs\" />\n    <Compile Include=\"Services\\AccountService.cs\" />\n    <Compile Include=\"Services\\ExtractorService.cs\" />\n    <Compile Include=\"Services\\ProjectService.cs\" />\n    <Compile Include=\"Services\\TemplateService.cs\" />\n  </ItemGroup>\n  <ItemGroup>\n    <Content Include=\"assets\\css\\custom.min.css\" />\n    <Content Include=\"assets\\images\\error.png\" />\n    <Content Include=\"assets\\images\\NotFound.png\" />\n    <Content Include=\"assets\\images\\VSTS_cover_image_3.png\" />\n    <Content Include=\"assets\\images\\VSTS_cover_image_5.png\" />\n    <Content Include=\"assets\\images\\VSTS_cover_image_t.png\" />\n    <Content Include=\"assets\\images\\VSTS_full_logo.png\" />\n    <Content Include=\"assets\\images\\VS_logo.png\" />\n    <Content Include=\"assets\\images\\VS_logo_1.png\" />\n    <Content Include=\"assets\\templategrouping\\templategroup.custom.min.css\" />\n    <Content Include=\"Content\\assets\\css\\custom.min.css\" />\n    <Content Include=\"Content\\assets\\images\\VSTS-demoGen-image.png\" />\n    <Content Include=\"Content\\assets\\images\\VSTS-menu.svg\" />\n    <Content Include=\"Content\\assets\\images\\VSTS-user-image.svg\" />\n    <Content Include=\"Content\\assets\\images\\VSTS_cover_image.png\" />\n    <Content Include=\"Content\\assets\\images\\VSTS_full_logo.png\" />\n    <Content Include=\"Content\\assets\\images\\vsts_header_image.png\" />\n    <Content Include=\"Content\\assets\\images\\VS_logo.png\" />\n    <Content Include=\"Content\\bootstrap-theme.css\" />\n    <Content Include=\"Content\\bootstrap-theme.min.css\" />\n    <Content Include=\"Content\\bootstrap.css\" />\n    <Content Include=\"Content\\bootstrap.min.css\" />\n    <Content Include=\"Content\\custome-style.css\" />\n    <Content Include=\"Content\\ddlStyle.css\" />\n    <Content Include=\"Content\\extractor\\assets\\css\\custom.min.css\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\demoGenBG.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\demoGenBG_2.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VSTS-demoGen-image.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VSTS-menu.svg\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VSTS-user-image.svg\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VSTS_cover_image.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VSTS_cover_image_2.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VSTS_full_logo.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\vsts_header_image.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VS_add.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VS_delete.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VS_edit.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VS_import.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VS_logo.png\" />\n    <Content Include=\"Content\\extractor\\assets\\images\\VS_new.png\" />\n    <Content Include=\"Content\\extractor\\assets\\script\\script.js\" />\n    <Content Include=\"Content\\Site.css\" />\n    <Content Include=\"EmailTemplates\\ErrorDetail.html\" />\n    <Content Include=\"fonts\\glyphicons-halflings-regular.svg\" />\n    <Content Include=\"Global.asax\" />\n    <Content Include=\"fonts\\glyphicons-halflings-regular.eot\" />\n    <Content Include=\"fonts\\glyphicons-halflings-regular.ttf\" />\n    <Content Include=\"fonts\\glyphicons-halflings-regular.woff\" />\n    <Content Include=\"fonts\\glyphicons-halflings-regular.woff2\" />\n    <Content Include=\"Images\\background-verify.png\" />\n    <Content Include=\"Images\\bg_new.png\" />\n    <Content Include=\"Images\\check-10.png\" />\n    <Content Include=\"Images\\check-10_new.png\" />\n    <Content Include=\"Images\\create_img_final1.png\" />\n    <Content Include=\"Images\\cross-10.png\" />\n    <Content Include=\"Images\\cross10_new.png\" />\n    <Content Include=\"Images\\enable_classic.png\">\n      <CopyToOutputDirectory>Always</CopyToOutputDirectory>\n    </Content>\n    <Content Include=\"Images\\facebook.png\" />\n    <Content Include=\"Images\\favicon.png\" />\n    <Content Include=\"Images\\github-icon.png\" />\n    <Content Include=\"Images\\GitHub-Mark.png\" />\n    <Content Include=\"Images\\image2.png\" />\n    <Content Include=\"Images\\img_verify2.jpg\" />\n    <Content Include=\"Images\\linkedin.png\" />\n    <Content Include=\"Images\\loader_trans_1.gif\" />\n    <Content Include=\"Images\\loading.gif\" />\n    <Content Include=\"Images\\loading_trans.gif\" />\n    <Content Include=\"Images\\logo.png\" />\n    <Content Include=\"Images\\MSimgae.png\" />\n    <Content Include=\"Images\\next.png\" />\n    <Content Include=\"Images\\outlook.png\" />\n    <Content Include=\"Images\\sideImg.png\" />\n    <Content Include=\"Scripts\\AppScripts\\GitHubAuth.js\" />\n    <Content Include=\"PreSetting\\CreateQueryFolder.json\" />\n    <None Include=\"Scripts\\jquery-1.12.4.intellisense.js\" />\n    <Content Include=\"Scripts\\jquery-1.12.4.js\" />\n    <Content Include=\"Scripts\\jquery-1.12.4.min.js\" />\n    <Content Include=\"Scripts\\knockout-2.2.0.debug.js\" />\n    <Content Include=\"Scripts\\knockout-2.2.0.js\" />\n    <Content Include=\"Scripts\\modernizr-2.6.2.js\" />\n    <Content Include=\"Templates\\DL-AKS\\Images\\AKS.png\" />\n    <Content Include=\"Templates\\DL-AKS\\Images\\aksdashboard.png\" />\n    <Content Include=\"Templates\\DL-AKS\\Images\\finalresult.png\" />\n    <Content Include=\"Templates\\DL-AKS\\Images\\updateprocessbd.png\" />\n    <Content Include=\"Templates\\DL-AKS\\Images\\update_CD3.png\" />\n    <Content Include=\"Templates\\DL-Ansible\\Images\\browseweb.png\" />\n    <Content Include=\"Templates\\DL-Ansible\\Images\\cd-queue.gif\" />\n    <Content Include=\"Templates\\DL-Ansible\\Images\\ci-queue.gif\" />\n    <Content Include=\"Templates\\DL-Ansible\\Images\\logintosite.png\" />\n    <Content Include=\"Templates\\DL-Ansible\\Images\\playbook.png\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Images\\createfunctionapp.png\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Images\\deploysite.png\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Images\\projectcreation.png\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Images\\pulwebsite.png\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Images\\Overview.png\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Images\\Website.PNG\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Images\\application.png\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Images\\dgscript.png\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Images\\differentphases.png\" />\n    <Content Include=\"Templates\\DL-Docker\\Images\\buildresult.png\" />\n    <Content Include=\"Templates\\DL-Docker\\Images\\buildtasks.png\" />\n    <Content Include=\"Templates\\DL-Docker\\Images\\finalresult.png\" />\n    <Content Include=\"Templates\\DL-Docker\\Images\\release.png\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\Images\\browseapp.png\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\Images\\buildandrelease.gif\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\Images\\CD.png\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\Images\\aml.png\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\Images\\CI.png\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\Images\\Items.png\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\Images\\workflow.png\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Images\\boards.png\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Images\\CI.png\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Images\\dashboard.png\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Images\\site.png\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Images\\boards.png\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Images\\dashboard.png\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Images\\loginpage.png\" />\n    <Content Include=\"Templates\\DL-Octopus\\Images\\AccountOctopusDeploy.png\" />\n    <Content Include=\"Templates\\DL-Octopus\\Images\\BuildAzureDevOpsServices1.png\" />\n    <Content Include=\"Templates\\DL-Octopus\\Images\\OctopusDeploy.png\" />\n    <Content Include=\"Templates\\DL-Octopus\\Images\\PartsUnlimited.png\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Images\\boards.png\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Images\\dashboard.png\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Images\\pulwebsite.png\" />\n    <Content Include=\"Templates\\DL-PHP\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-Python\\Images\\build-progress.gif\" />\n    <Content Include=\"Templates\\DL-Python\\Images\\cd-tasks.png\" />\n    <Content Include=\"Templates\\DL-Python\\Images\\ci-pipeline.png\" />\n    <Content Include=\"Templates\\DL-Python\\Images\\release-output.gif\" />\n    <Content Include=\"Templates\\DL-Python\\Images\\release-progress.gif\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Images\\qam.png\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Images\\querywi.png\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Images\\timeout.png\" />\n    <Content Include=\"Templates\\DL-Selenium\\Images\\Buildsuccess.png\" />\n    <Content Include=\"Templates\\DL-Selenium\\Images\\dev.png\" />\n    <Content Include=\"Templates\\DL-Selenium\\Images\\seleniumtest.png\" />\n    <Content Include=\"Templates\\DL-Selenium\\Images\\testsuccess.png\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Images\\dashboard.png\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Images\\Diagram.png\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Images\\Screens.png\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Images\\analysis_report.png\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Images\\bug_details.png\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Images\\build_configure.png\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Images\\build_summary.png\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Images\\Architecture.png\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Images\\Website.png\" />\n    <Content Include=\"Templates\\TemplateImages\\eShop.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\bicep-publish-code-pipelines.png\" />\n    <Content Include=\"Templates\\TemplateImages\\policy-org.png\" />\n    <Content Include=\"Templates\\TemplateImages\\Ansible.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\Azure Sentinel DevOps.jpg\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\iac.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\ModernDataAnalytics.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\ModernDataWarehouse.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\modiot.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\NIST 800-171.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\RecommederIcon.PNG\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\SapOnAzureLogo.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\Secureresearch.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\unifiedgov.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\windows-virtual-desktop.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureFunction.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureCommunity\\AzureGov.png\" />\n    <Content Include=\"Templates\\TemplateImages\\CloudAdoptionFramework.jpg\" />\n    <Content Include=\"Templates\\TemplateImages\\CodeFile.png\" />\n    <Content Include=\"Templates\\TemplateImages\\ContosAir.png\" />\n    <Content Include=\"Templates\\TemplateImages\\devopsdojo.png\" />\n    <Content Include=\"Templates\\TemplateImages\\Docker.png\" />\n    <Content Include=\"Templates\\TemplateImages\\Dynatrace.png\" />\n    <Content Include=\"Templates\\TemplateImages\\GitHub.png\" />\n    <Content Include=\"Templates\\TemplateImages\\key-vault.png\" />\n    <Content Include=\"Templates\\TemplateImages\\kubernetes.png\" />\n    <Content Include=\"Templates\\TemplateImages\\launchdarkly.png\" />\n    <Content Include=\"Templates\\TemplateImages\\MachineLearning.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\bicep-end-to-end-deployment-pipeline.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\bicepenvironments.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\create-a-build-pipeline-azure-pipelines.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\create-a-release-pipeline-with-azure-pipelines.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\create-multi-stage-pipeline.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\deploy-azure-functions.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\deploy-docker.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\deploy-kubernetes.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\generic-badge.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\host-your-own-build-server-in-your-build-pipeline.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\implement-a-code-workflow-in-your-build-pipeline.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\manage-agile-software-delivery-plans-across-teams.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\manage-database-changes-with-azure-pipelines.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\manage-dependencies-in-your-build-pipeline.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\manage-release-cadence-using-deployment-patterns.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\manage-security-and-compliance-in-your-build-pipeline.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\provision-database-azure-pipelines.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\review-azure-infrastructure.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\run-functional-tests-azure-pipelines.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\run-non-functional-tests-in-azure-pipelines.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\run-quality-tests-when-your-application-builds.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\scan-code-for-vulnerabilities-in-your-build-pipeline.png\" />\n    <Content Include=\"Templates\\TemplateImages\\mslearn\\testbicep.svg\" />\n    <Content Include=\"Templates\\TemplateImages\\MyHealthClinic.png\" />\n    <Content Include=\"Templates\\TemplateImages\\MyShuttle.png\" />\n    <Content Include=\"Templates\\TemplateImages\\octopus.png\" />\n    <Content Include=\"Templates\\TemplateImages\\Partunlimited.png\" />\n    <Content Include=\"Templates\\TemplateImages\\PHP.png\" />\n    <Content Include=\"Templates\\TemplateImages\\Python.png\" />\n    <Content Include=\"Templates\\TemplateImages\\selenium.png\" />\n    <Content Include=\"Templates\\TemplateImages\\AzureDevOps.png\" />\n    <Content Include=\"Templates\\TemplateImages\\SmartHotel.png\" />\n    <Content Include=\"Templates\\TemplateImages\\SonarQube.png\" />\n    <Content Include=\"Templates\\TemplateImages\\TailwindTraders.png\" />\n    <Content Include=\"Templates\\TemplateImages\\Terraform.png\" />\n    <Content Include=\"Templates\\TemplateImages\\WhiteSourceBolt.png\" />\n    <Content Include=\"Images\\tfs.png\" />\n    <Content Include=\"Images\\theme_img_3.png\" />\n    <Content Include=\"Images\\Thinking_Face_Emoji.png\" />\n    <Content Include=\"Images\\twitter.png\" />\n    <Content Include=\"Images\\user-clear.png\" />\n    <Content Include=\"Images\\Verify_image.jpg\" />\n    <Content Include=\"Images\\vs-logo.png\" />\n    <Content Include=\"Scripts\\AppScripts\\create.js\" />\n    <Content Include=\"Scripts\\AppScripts\\Extractor.js\" />\n    <Content Include=\"Scripts\\AppScripts\\FileUpload.js\" />\n    <Content Include=\"Scripts\\bootstrap.js\" />\n    <Content Include=\"Scripts\\bootstrap.min.js\" />\n    <Content Include=\"ApplicationInsights.config\">\n      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>\n    </Content>\n    <Content Include=\"Content\\bootstrap.css.map\" />\n    <Content Include=\"Content\\bootstrap.min.css.map\" />\n    <Content Include=\"Content\\bootstrap-theme.css.map\" />\n    <Content Include=\"Content\\bootstrap-theme.min.css.map\" />\n    <Content Include=\"Scripts\\tooltip.js\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Wiki\\ProjectWiki\\PartsUnlimitedWiki\\Development Environment.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Wiki\\ProjectWiki\\PartsUnlimitedWiki\\Getting Started.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Wiki\\ProjectWiki\\PartsUnlimitedWiki\\Key Features.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Wiki\\ProjectWiki\\AboutPartsUnlimited.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\WorkItemAttachments\\217227appInsights.png\" />\n    <Content Include=\"Templates\\DL-Terraform\\Images\\queuebuild.gif\" />\n    <Content Include=\"Templates\\DL-Terraform\\Images\\releasetasks.png\" />\n    <Content Include=\"Templates\\DL-Terraform\\Images\\releasetrigger.gif\" />\n    <Content Include=\"Templates\\DL-Terraform\\Images\\Terraform.png\" />\n    <Content Include=\"Templates\\DL-Terraform\\Images\\webapp.png\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Images\\CI.png\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Images\\WhiteSourceBolt13.png\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Images\\WhiteSourceBolt30.png\" />\n    <Content Include=\"Web.config\">\n      <SubType>Designer</SubType>\n    </Content>\n    <Content Include=\"assets\\css\\custom.min.css.map\" />\n    <Content Include=\"assets\\css\\custom.scss\" />\n    <Content Include=\"Content\\assets\\css\\custom.min.css.map\" />\n    <Content Include=\"Content\\assets\\css\\custom.scss\" />\n    <Content Include=\"PreSetting\\BoardColumns.json\" />\n    <Content Include=\"PreSetting\\TeamArea.json\" />\n    <Content Include=\"PreSetting\\UpdateCardFields.json\" />\n    <Content Include=\"PreSetting\\UpdateCardStyles.json\" />\n    <Content Include=\"PreSetting\\ProjectSettings.json\" />\n    <Content Include=\"PreSetting\\ProjectTemplate.json\" />\n    <Content Include=\"Content\\extractor\\assets\\css\\custom.min.css.map\" />\n    <Content Include=\"Content\\extractor\\assets\\css\\custom.scss\" />\n    <Content Include=\"PreSetting\\ImportSourceCode.json\" />\n    <Content Include=\"PreSetting\\ServiceEndPoint.json\" />\n    <Content Include=\"Templates\\CreateProject.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\BoardRowsFromTemplate.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\BuildDefinitions\\DeploymentGroups.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\ImportSourceCode\\DeploymentGroup.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Iterations.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\QueueBuild.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\ReleaseDefinitions\\DeploymentGroups.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\ServiceEndPoints\\DeploymentGroup - code.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Teams.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\UpdateCardFields.json\" />\n    <Content Include=\"Templates\\Events.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\BoardRowsFromTemplate.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\BugfromTemplate.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\BuildDefinitions\\GitHub.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\EpicfromTemplate.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\FeaturefromTemplate.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\ImportSourceCode\\GitHub.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\PBIfromTemplate.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\ReleaseDefinitions\\GitHub.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\ServiceEndpoints\\GitHub-code.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\TaskfromTemplate.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-GitHub\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\BoardRowsFromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\BugfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\BuildDefinitions\\MyHealthClinic.Web.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Dashboard\\Queries\\Active Bugs.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Dashboard\\Queries\\All Items.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Dashboard\\Queries\\Test Case-Readiness.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Dashboard\\Queries\\User Stories.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Dashboard\\WidgetQuery.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\EnableEpic.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\EpicfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Extensions.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\FeaturefromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\ImportSourceCode\\MyHealthClinic.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\PBIfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\PullRequests\\Comments\\PullRequest1.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\PullRequests\\Comments\\PullRequest2.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\PullRequests\\PullRequest1.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\PullRequests\\PullRequest2.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\ReleaseDefinitions\\HealthClinic.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\ServiceEndpoints\\myHealthClinic-code.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\TaskfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\TestCasefromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\UpdateCardFields.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\BuildDefinitions\\MyShuttleBuild.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Queries\\Bugs.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Queries\\Feature.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Queries\\Test Cases.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Queries\\Test Plans.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Dashboard\\Queries\\Test Suites.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\ImportSourceCode\\MyShuttle.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\ServiceEndpoints\\MyShuttle-code.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\BoardRowsFromTemplate.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\BuildDefinitions\\Octopus.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\EpicfromTemplate.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\FeaturefromTemplate.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\ImportSourceCode\\Octopus.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\PBIfromTemplate.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\ServiceEndpoints\\Octopus-code.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\ServiceEndpoints\\Octopus.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\TaskfromTemplate.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\Teams.json\" />\n    <Content Include=\"Templates\\DL-Octopus\\UpdateCardFields.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\BoardRowsFromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\BugfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\BuildDefinitions\\PartsUnlimitedE2E.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\EnableEpic.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\EpicfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Extensions.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\FeaturefromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\ImportSourceCode.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\ImportSourceCode\\PartsUnlimited.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\PBIfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\PullRequests\\Comments\\PullRequest1.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\PullRequests\\Comments\\PullRequest2.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\PullRequests\\PullRequest1.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\PullRequests\\PullRequest2.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Query.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\ReleaseDefinitions\\PartsUnlimitedE2E.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\ServiceEndpoints\\partsUnlimited-code.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\TaskfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\TestCasefromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\TestPlans\\TestPlan1.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\TestPlans\\TestSuites\\TestPlan1.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\UpdateCardFields.json\" />\n    <Content Include=\"Templates\\DL-Python\\BuildDefinitions\\Python.json\" />\n    <Content Include=\"Templates\\DL-Python\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-Python\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-Python\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-Python\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-Python\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-Python\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-Python\\ImportSourceCode\\PythonDjango.json\" />\n    <Content Include=\"Templates\\DL-Python\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-Python\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-Python\\ServiceEndpoints\\Python-code.json\" />\n    <Content Include=\"Templates\\DL-Python\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\BuildDefinitions\\Selenium.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\ImportSourceCode\\Selenium.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\ReleaseDefinitions\\Selenium.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\ServiceEndpoints\\Selenium-code.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\BuildDefinitions\\SonarQube.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\ImportSourceCode\\MyShuttle.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\ServiceEndPoints\\SonarQube-code.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\TemplateSetting.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\BuildDefinitions\\WhiteSourceBolt.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\ImportSourceCode\\WebGoat.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Iterations.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\ServiceEndpoints\\WebGoat-code.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-AKS\\BuildDefinitions\\AKS.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-AKS\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-AKS\\ImportSourceCode\\AKS.json\" />\n    <Content Include=\"Templates\\DL-AKS\\ReleaseDefinitions\\AKS.json\" />\n    <Content Include=\"Templates\\DL-AKS\\ServiceEndpoints\\AKS-code.json\" />\n    <Content Include=\"Templates\\DL-Docker\\BuildDefinitions\\Docker.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Dashboard\\Queries\\All Work Items.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Dashboard\\Queries\\Epic.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Dashboard\\Queries\\Product Backlog Items.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\DL-Docker\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-Docker\\ImportSourceCode\\Docker.json\" />\n    <Content Include=\"Templates\\DL-Docker\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-Docker\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-Docker\\ReleaseDefinitions\\Docker.json\" />\n    <Content Include=\"Templates\\DL-Docker\\ServiceEndpoints\\Docker-code.json\" />\n    <Content Include=\"Templates\\DL-Docker\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\BuildDefinitions\\PartsUnlimited-CI.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Dashboard\\Queries\\Bugs.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\ImportSourceCode\\PartsUnlimited.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\ReleaseDefinitions\\PartsUnlimited-CD.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\ServiceEndpoints\\PartsUnlimited-code.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Wiki\\ProjectWiki\\CreateWiki.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Wiki\\CodeWiki\\CreateWiki.json\" />\n    <Content Include=\"Views\\Account\\Unsupported_browser.cshtml\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\BugfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\EnableEpic.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\EpicfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Extensions.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ImportSourceCode\\PublicWeb.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ImportSourceCode\\SmartHotel360.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Iterations.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\PBIfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ServiceEndpoints\\GitHub_SmartHotel360-public-web.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ServiceEndpoints\\PublicWeb-code.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ServiceEndpoints\\SmartHotel360-code.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\TaskfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\UpdateCardFields.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\PullRequests\\PullRequest1.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\PullRequests\\PullRequest2.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\PullRequests\\Comments\\PullRequest1.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\PullRequests\\Comments\\PullRequest2.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\All Items.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\BacklogBoard WI.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Board WI.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Bugs without Repro Steps.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Features with no Product Owner.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\MobileTeam_Work.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Open Bugs.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\State of TestCases.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Unassigned Bugs.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Unassigned Tasks.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\WebTeam_Work.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\TestCasefromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\TestPlans\\TestPlan1.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\TestPlans\\TestSuites\\TestPlan1.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\FeaturefromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Bugs.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\UpdateTeamArea.json\" />\n    <Content Include=\"Views\\Extractor\\Index.cshtml\" />\n    <Content Include=\"Views\\Extractor\\NotFound.cshtml\" />\n    <Content Include=\"NewFeature\\RegisteredUsers.json\" />\n    <Content Include=\"PreSetting\\GitHubEndPoint.json\" />\n    <Content Include=\"PreSetting\\DemoExtensions.json\" />\n    <Content Include=\"assets\\templategrouping\\templateSelection.custom.min.css\" />\n    <Content Include=\"JSON\\ErrorMessages.json\" />\n    <None Include=\"packages.config\" />\n    <None Include=\"Properties\\PublishProfiles\\azuredevopsdemogenerator-api - FTP.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\azuredevopsdemogenerator-api - Web Deploy.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\azuredevopsdemogenerator-extractor - FTP.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\azuredevopsdemogenerator-extractor - Web Deploy.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\azuredevopsdemogenerator-staging - FTP.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\azuredevopsdemogenerator-staging - Web Deploy.pubxml\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\UnfinishedWork.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Work in Progress.json\" />\n    <Content Include=\"Templates\\EndpointKeyConfig.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Dashboard\\Queries\\UnfinishedWork.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Dashboard\\Queries\\Work in Progress.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Dashboard\\Queries\\UnfinishedWork.json\" />\n    <Content Include=\"Templates\\DL-DeploymentGroups\\Dashboard\\Queries\\Work in Progress.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\Dashboard\\Queries\\Feedback.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\BuildDefinitions\\LaunchDarkly.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\ImportSourceCode\\LaunchDarkly.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\ReleaseDefinitions\\LaunchDarkly.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\ServiceEndpoints\\LaunchDarkly-code.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\UerStoriesfromTemplate.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\BuildDefinitions\\AzureFunctions_CI.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\EnableEpic.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\ImportSourceCode\\AzureFunctions.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\ReleaseDefinitions\\AzureFunctions_CD.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\ServiceEndpoints\\AzureFunctions-code.json\" />\n    <Content Include=\"Templates\\DL-Terraform\\BuildDefinitions\\Terraform.json\" />\n    <Content Include=\"Templates\\DL-Terraform\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-Terraform\\ImportSourceCode\\Terraform.json\" />\n    <Content Include=\"Templates\\DL-Terraform\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-Terraform\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-Terraform\\ReleaseDefinitions\\Terraform.json\" />\n    <Content Include=\"Templates\\DL-Terraform\\ServiceEndpoints\\Terraform-code.json\" />\n    <None Include=\"Properties\\PublishProfiles\\CustomProfile.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\CustomProfile1.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\demogenapi - FTP.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\demogenapi - Web Deploy.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\FolderProfile.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\FolderProfile1.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\FolderProfile2.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\vstsdemogenerator-test - FTP.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\vstsdemogenerator-test - FTP1.pubxml\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\BuildDefinitions\\MyShuttleDockerBuild.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\ReleaseDefinitions\\MyShuttleDockerRelease.json\" />\n    <Content Include=\"Views\\Environment\\CreateProject.cshtml\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ReleaseDefinitions\\SmartHotelWebsite Deploy.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\BuildDefinitions\\SmartHotelPetcheckerWeb.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\BugfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\BuildDefinitions\\ContosoAirBuild.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\EnableEpic.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\EpicfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\Extensions.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\FeaturefromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\Iterations.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\PBIfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\ReleaseDefinitions\\ContosoAirRelease.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\TaskfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\UserStoriesfromTemplate.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\ServiceEndpoints\\ContosoAir.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-ContosoAir\\UpdateCardFields.json\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\BuildDefinitions\\DevOps-for-AI.json\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\ImportSourceCode\\DevOps-for-AI.json\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\ReleaseDefinitions\\DevOps-for-AI.json\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\ServiceEndpoints\\DevOps-for-AI.json\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-MachineLearning\\Teams.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\BuildDefinitions\\Ansible-CI.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\ImportSourceCode\\SmartHotel360-CouponManagement.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\ReleaseDefinitions\\Ansible.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\ServiceEndpoints\\SmartHotel360-CouponManagement.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Extensions.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ImportSourceCode\\TailwindTraders-Website.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Iterations.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Teams\\Website Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Teams\\Website Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Teams\\Website Team\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Teams\\Website Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\Teams\\Website Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\BuildDefinitions\\Website-CI.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ReleaseDefinitions\\Website-CD.json\" />\n    <Content Include=\"Templates\\CreateWiki.json\" />\n    <Content Include=\"Templates\\MovePages.json\" />\n    <Content Include=\"Templates\\SampleContent.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ImportSourceCode\\TailwindTraders-Backend.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ImportSourceCode\\Tailwind Traders.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ServiceEndpoints\\Tailwind Traders.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ReleaseDefinitions\\Backend-CD.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\BuildDefinitions\\Backend-CI.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\WorkItems\\Bug.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\WorkItems\\Test Case.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\WorkItems\\Test Plan.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\WorkItems\\Test Suite.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\BuildDefinitions\\SmartHotel-CouponManagement-CI.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\Extensions.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\Iterations.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\ReleaseDefinitions\\SmartHotel-CouponManagement-CD.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\ServiceEndpoints\\Azure-MSDN1.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\Teams\\SmartHotel-CouponManagement Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\Teams\\SmartHotel-CouponManagement Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\Teams\\SmartHotel-CouponManagement Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\Teams\\SmartHotel-CouponManagement Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\Teams\\SmartHotel-CouponManagement Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\EnableEpic.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\EpicfromTemplate.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\ImportSourceCode\\ContosoShuttle.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\PBIfromTemplate.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\ServiceEndpoints\\ContosoShuttle-code.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\TaskfromTemplate.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\TeamArea.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\Teams.json\" />\n    <Content Include=\"Templates\\ContosoShuttle\\Dashboard\\Queries\\Work in Progress.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\ImportSourceCode\\ContosoShuttle.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Iterations.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\ServiceEndpoints\\ContosoShuttle-code.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\TeamArea.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Teams\\ContosoShuttle Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Teams\\ContosoShuttle Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Teams\\ContosoShuttle Team\\CardFields.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Teams\\ContosoShuttle Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Teams\\ContosoShuttle Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\ContosoShuttle2\\Dashboard\\Queries\\Work in Progress.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\BuildDefinitions\\PartsUnlimited.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\ImportSourceCode\\PartsUnlimited.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Iterations.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\ReleaseDefinitions\\PartsUnlimitedE2E.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\ServiceEndpoints\\PartsUnlimited-code.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PartsUnlimited_YAML Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PartsUnlimited_YAML Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PartsUnlimited_YAML Team\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PartsUnlimited_YAML Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PartsUnlimited_YAML Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL-DB\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL-DB\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL-DB\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL-DB\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL-DB\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\PUL\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\WorkItems\\Bug.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited-YAML\\WorkItems\\Test Case.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\BuildDefinitions\\Bookings-CI.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\BuildDefinitions\\Bookings-Nightly.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\BuildDefinitions\\Coupons-CI.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\BuildDefinitions\\Coupons-Nightly.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\Extensions.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ImportSourceCode\\DevOps-Dojo-Booking.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ImportSourceCode\\DevOps-Dojo-Coupons.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ImportSourceCode\\DevOps-Dojo-Setup.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ImportSourceCode\\DevOps-Dojo.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\Iterations.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ReleaseDefinitions\\Bookings-CD manual.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ReleaseDefinitions\\Bookings-CD.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ReleaseDefinitions\\Coupon-CD.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ServiceEndpoints\\DevOps-Dojo-Booking-code.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ServiceEndpoints\\DevOps-Dojo-code.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ServiceEndpoints\\DevOps-Dojo-Coupons-code.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ServiceEndpoints\\DevOps-Dojo-Setup-code.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\ServiceEndpoints\\ES-INT-DOJO-DEV-DOJOWB-Conn.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\TeamArea.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\Teams\\DevOps-Dojo Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\Teams\\DevOps-Dojo Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\Teams\\DevOps-Dojo Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\Teams\\DevOps-Dojo Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\Teams\\DevOps-Dojo Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\DoJoWhiteBeltGold\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\ImportSourceCode\\Space Game - web.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\Teams\\Space Game - web Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\Teams\\Space Game - web Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\Teams\\Space Game - web Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\Teams\\Space Game - web Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\ImportSourceCode\\Space Game - web.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\Teams\\Space Game - web Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\Teams\\Space Game - web Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\Teams\\Space Game - web Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\Teams\\Space Game - web Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\ImportSourceCode\\Space Game - web.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\Teams\\Space Game - web Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\Teams\\Space Game - web Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\Teams\\Space Game - web Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\Teams\\Space Game - web Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\ImportSourceCode\\Space Game - web.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\Teams\\Space Game - web Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\Teams\\Space Game - web Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\Teams\\Space Game - web Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\Teams\\Space Game - web Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\ImportSourceCode\\Space Game - web.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\Teams\\Space Game - web Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\Teams\\Space Game - web Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\Teams\\Space Game - web Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\Teams\\Space Game - web Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\ImportSourceCode\\Space Game - web.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\Teams\\Space Game - web Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\Teams\\Space Game - web Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\Teams\\Space Game - web Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\Teams\\Space Game - web Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\ImportSourceCode\\Space Game - web.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\ServiceEndpoints\\Space Game - web-code.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\Teams\\Space Game - web Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\Teams\\Space Game - web Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\Teams\\Space Game - web Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\Teams\\Space Game - web Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Create-Build-Pipeline\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\ServiceEndpoints\\GitHub_Jamcneil_code.json\" />\n    <Content Include=\"Views\\GitHub\\Oauth.cshtml\" />\n    <Content Include=\"Views\\GitHub\\Redirect.cshtml\" />\n    <Content Include=\"Views\\GitHub\\Status.cshtml\" />\n    <None Include=\"Properties\\PublishProfiles\\vstsdemogenerator-test - Web Deploy.pubxml\" />\n    <None Include=\"Properties\\PublishProfiles\\vstsdemogenerator-test - Web Deploy1.pubxml\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\BuildDefinitionGitHub\\SmartHotelPetcheckerWeb.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-Implement-Code-Workflow\\BuildDefinitionGitHub\\SpaceGameWeb-Build.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\BuildDefinitionGitHub\\SpaceGameWeb-Build.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\BuildDefinitionGitHub\\SpaceGameWeb-Build.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\BuildDefinitionGitHub\\SpaceGameWeb-Build.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\BuildDefinitionGitHub\\SpaceGameWeb-Build.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\BuildDefinitionGitHub\\SpaceGameWeb-Build.json\" />\n    <Content Include=\"Views\\GitHub\\Issue.cshtml\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ServiceEndpoints\\GitHub_TailwindTradersWeb.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\ServiceEndpoints\\GitHub_TailwindTraderBackend.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\BuildDefinitionGitHub\\Backend-CI.json\" />\n    <Content Include=\"Templates\\Gen-Tailwind Traders\\BuildDefinitionGitHub\\Website-CI.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-Host-Build-Agent\\ServiceEndpoints\\GitHub_Jamcneil_code.json\" />\n    <Content Include=\"Templates\\MSL-Manage-Build-Dependencies\\ServiceEndpoints\\GitHub_Jamcneil_code.json\" />\n    <Content Include=\"Templates\\MSL-Run-Quality-Tests\\ServiceEndpoints\\GitHub_Jamcneil_code.json\" />\n    <Content Include=\"Templates\\MSL-Scan-for-Vulnerabilities\\ServiceEndpoints\\GitHub_Jamcneil_code.json\" />\n    <Content Include=\"Templates\\MSL-Scan-Open-Source\\ServiceEndpoints\\GitHub_Jamcneil_code.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Dashboard\\Queries\\All items, all states.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Dashboard\\Queries\\Assigned to me.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Dashboard\\Queries\\Followed work items.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Dashboard\\Queries\\Workload Template.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Extensions.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\ImportSourceCode\\Cloud Adoption Plan Master.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\ServiceEndpoints\\Cloud Adoption Plan Master-code.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Teams\\Cloud Adoption Plan Master Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Teams\\Cloud Adoption Plan Master Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Teams\\Cloud Adoption Plan Master Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Teams\\Cloud Adoption Plan Master Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Teams\\Cloud Adoption Plan Master Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-CloudAdoptionPlan\\WorkItems\\User Story.json\" />\n    <Content Include=\"Views\\Environment\\PrivateTemplate.cshtml\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\BuildDefinitionGitHub\\tpetchelmslearn-tailspin-spacegame-web-deploy.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\ImportSourceCode\\Space Game - web - Deploy database.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\ServiceEndpoints\\GitHub_c26ff2e9-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\Teams\\Space Game - web - Deploy database Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\Teams\\Space Game - web - Deploy database Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\Teams\\Space Game - web - Deploy database Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\Teams\\Space Game - web - Deploy database Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeployDatabase\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\BuildDefinitionGitHub\\tpetchelmslearn-tailspin-spacegame-web-deploy.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\ImportSourceCode\\Space Game - web - Deployment patterns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\ServiceEndpoints\\GitHub_604d3592-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\Teams\\Space Game - web - Deployment patterns Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\Teams\\Space Game - web - Deployment patterns Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\Teams\\Space Game - web - Deployment patterns Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\Teams\\Space Game - web - Deployment patterns Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-DeploymentPatterns\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\BuildDefinitionGitHub\\tpetchelmslearn-tailspin-spacegame-web-deploy.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\ImportSourceCode\\Space Game - web - Functional tests.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\ServiceEndpoints\\GitHub_8dceab94-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\Teams\\Space Game - web - Functional tests Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\Teams\\Space Game - web - Functional tests Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\Teams\\Space Game - web - Functional tests Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\Teams\\Space Game - web - Functional tests Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-FunctionalTests\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\BuildDefinitionGitHub\\tpetchelmslearn-tailspin-spacegame-web-deploy.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\ImportSourceCode\\Space Game - web - Release workflow.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\ServiceEndpoints\\GitHub_93b35f8f-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\ServiceEndpoints\\GitHub_eb001d95-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\Teams\\Space Game - web - Release workflow Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\Teams\\Space Game - web - Release workflow Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\Teams\\Space Game - web - Release workflow Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\Teams\\Space Game - web - Release workflow Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Multi-stage\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\BuildDefinitionGitHub\\tpetchelmslearn-tailspin-spacegame-web-deploy.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\ImportSourceCode\\Space Game - web - Non-functional tests.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\ServiceEndpoints\\GitHub_39e50711-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\Teams\\Space Game - web - Non-functional tests Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\Teams\\Space Game - web - Non-functional tests Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\Teams\\Space Game - web - Non-functional tests Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\Teams\\Space Game - web - Non-functional tests Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Non-functionalTests\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\BuildDefinitionGitHub\\tpetchelmslearn-tailspin-spacegame-web-deploy.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\ImportSourceCode\\Space Game - web - Release.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\ServiceEndpoints\\GitHub_70ec1fc5-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\Teams\\Space Game - web - Release Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\Teams\\Space Game - web - Release Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\Teams\\Space Game - web - Release Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\Teams\\Space Game - web - Release Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Release\\Teams\\Teams.json\" />\n    <Content Include=\"Views\\Account\\SessionOutReturn.cshtml\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\BuildDefinitionGitHub\\tpetchelmslearn-tailspin-spacegame-web-automate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\ServiceEndpoints\\GitHub_69cc250c-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\Teams\\Space Game - web - Terraform Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\Teams\\Space Game - web - Terraform Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\Teams\\Space Game - web - Terraform Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\Teams\\Space Game - web - Terraform Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-Terraform\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\BuildDefinitionGitHub\\mslearn-tailspin-spacegame-web-automate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\ImportSourceCode\\Space Game - web - ProvisionDB.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\ServiceEndpoints\\GitHub_69cc250c.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\ServiceEndpoints\\GitHub_7cdb389c-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\Teams\\Space Game - web - ProvisionDB Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\Teams\\Space Game - web - ProvisionDB Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\Teams\\Space Game - web - ProvisionDB Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\Teams\\Space Game - web - ProvisionDB Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-web-ProvisionDB\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\TeamIterationMap.json\" />\n    <Content Include=\"Templates\\Gen-MyHealthClinic\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\ImportSourceCode\\Space Game - web.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\ServiceEndpoints\\Space Game - web-code.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\ServiceEndpoints\\spacegame-web.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game Engine Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game Engine Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game Engine Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game Engine Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game Web Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game Web Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game Web Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game Web Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\TeamIterationMap.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\BuildDefinitionGitHub\\EdKaimmslearn-tailspin-spacegame-web-azure-functions.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\ImportSourceCode\\Space Game - web - Release workflow.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\ServiceEndpoints\\GitHub_210c1c54-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\ServiceEndpoints\\Space Game - web - Release workflow-code.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\Teams\\Space Game Azure Functions Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\Teams\\Space Game Azure Functions Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\Teams\\Space Game Azure Functions Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\Teams\\Space Game Azure Functions Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-AzureFunctions\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\BuildDefinitionGitHub\\mslearn-tailspin-spacegame-web-deploy.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\ImportSourceCode\\Space Game - web - Release workflow.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\ServiceEndpoints\\GitHub_51da3d38-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\ServiceEndpoints\\Space Game - web - Release workflow-code.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\Teams\\Space Game - web - Docker Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\Teams\\Space Game - web - Docker Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\Teams\\Space Game - web - Docker Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\Teams\\Space Game - web - Docker Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Docker-Template\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\BuildDefinitionGitHub\\mslearn-tailspin-spacegame-web-deploy.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\ImportSourceCode\\Space Game - web - Release workflow.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\ServiceEndpoints\\GitHub_9a905ff5-EndPoint.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\ServiceEndpoints\\Space Game - web - Release workflow-code.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\Teams\\Space Game - web - Docker Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\Teams\\Space Game - web - Docker Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\Teams\\Space Game - web - Docker Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\Teams\\Space Game - web - Docker Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Deploy-Kubernetes-Template\\WorkItems\\Issue.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Dashboard\\Queries\\All items, all states.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Dashboard\\Queries\\Assigned to me.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Dashboard\\Queries\\Followed work items.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Dashboard\\Queries\\Workload Template.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\ImportSourceCode\\Cloud Adoption Plan Master.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Iterations.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\ServiceEndpoints\\Cloud Adoption Plan Master-code.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\TeamArea.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Teams\\NIST 800-171 Template Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Teams\\NIST 800-171 Template Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Teams\\NIST 800-171 Template Team\\CardFields.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Teams\\NIST 800-171 Template Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Teams\\NIST 800-171 Template Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\AC-NIST800171Rev2\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\ImportSourceCode\\Azure Sentinel Template.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\Iterations.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\ServiceEndpoints\\Azure Sentinel Template-code.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\TeamArea.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\Teams\\AzureSentinelDeployment Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\Teams\\AzureSentinelDeployment Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\Teams\\AzureSentinelDeployment Team\\CardFields.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\Teams\\AzureSentinelDeployment Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\Teams\\AzureSentinelDeployment Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\AC-AzureSentinel\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\ImportSourceCode\\Azure Setup Guide.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\ServiceEndpoints\\Azure Setup Guide-code.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\ImportSourceCode\\Azure Sentinel Template.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\ServiceEndpoints\\Azure Sentinel Template-code.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\Teams\\Server_Migration_Project Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\Teams\\Server_Migration_Project Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\Teams\\Server_Migration_Project Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\Teams\\Server_Migration_Project Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\Teams\\Server_Migration_Project Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-ServerMigration\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Dashboard\\Queries\\AKS_CAF_Query.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Dashboard\\Queries\\Assigned to me.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Dashboard\\Queries\\Followed work items.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Dashboard\\Queries\\WVD-AKA.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Extensions.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\ImportSourceCode\\Azure Sentinel Template.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\ServiceEndpoints\\Azure Sentinel Template-code.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Teams\\AKA_Project Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Teams\\AKA_Project Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Teams\\AKA_Project Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Teams\\AKA_Project Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Teams\\AKA_Project Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-AKS_CAF\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Dashboard\\Queries\\Assigned to me.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Dashboard\\Queries\\Followed work items.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Extensions.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\ImportSourceCode\\Azure Sentinel Template.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\ServiceEndpoints\\Azure Sentinel Template-code.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Dashboard\\Queries\\Assigned to me.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Dashboard\\Queries\\Followed work items.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Extensions.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\ImportSourceCode\\Azure Sentinel Template.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\ServiceEndpoints\\Azure Sentinel Template-code.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\WVD-CAF-Project-Template Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\WVD-CAF-Project-Template Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\WVD-CAF-Project-Template Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\WVD-CAF-Project-Template Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\WVD-CAF-Project-Template Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Dashboard\\Queries\\All items, all states.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Dashboard\\Queries\\All Tasks.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Dashboard\\Queries\\Assigned to me.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Dashboard\\Queries\\Followed work items.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Dashboard\\Queries\\Workload Template.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\ImportSourceCode\\Cloud Adoption Plan Master.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\ServiceEndpoints\\Cloud Adoption Plan Master-code.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Teams\\CAF ADO Strategy-Plan-Ready-Gov Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Teams\\CAF ADO Strategy-Plan-Ready-Gov Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Teams\\CAF ADO Strategy-Plan-Ready-Gov Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Teams\\CAF ADO Strategy-Plan-Ready-Gov Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Teams\\CAF ADO Strategy-Plan-Ready-Gov Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\WorkItems\\Test Plan.json\" />\n    <Content Include=\"Templates\\CAF-ADO-Strategy-Plan-Ready-Governance\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\Extensions.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\ImportSourceCode\\WVD Guidance.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\Iterations.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\ServiceEndpoints\\WVD Guidance-code.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\TeamArea.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\Teams\\WVD Guidance Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\Teams\\WVD Guidance Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\Teams\\WVD Guidance Team\\CardFields.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\Teams\\WVD Guidance Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\Teams\\WVD Guidance Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\AC-WVDGuidance\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Dashboard\\Queries\\All Workitems.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\Windows Virtual Desktop Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\Windows Virtual Desktop Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\Windows Virtual Desktop Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\Windows Virtual Desktop Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-WindowsVirtualDesktop\\Teams\\Windows Virtual Desktop Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\Extensions.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\ImportSourceCode\\Knowledge Mining Solution on Azure.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\ServiceEndpoints\\Knowledge Mining Solution on Azure-code.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\Teams\\Knowledge Mining Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\Teams\\Knowledge Mining Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\Teams\\Knowledge Mining Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\Teams\\Knowledge Mining Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\Teams\\Knowledge Mining Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-KnowledgeMining\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Teams\\SQL Proj - Azure BG Test Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Teams\\SQL Proj - Azure BG Test Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Teams\\SQL Proj - Azure BG Test Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Teams\\SQL Proj - Azure BG Test Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-SQL_Migration\\Teams\\SQL Proj - Azure BG Test Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\Gen-SmartHotel360\\BoardRowsFromTemplate.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\ImportSourceCode\\Modern Data Warehouse.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\ServiceEndpoints\\Modern Data Warehouse-code.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\Teams\\Modern Data Warehouse Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\Teams\\Modern Data Warehouse Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\Teams\\Modern Data Warehouse Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\Teams\\Modern Data Warehouse Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\Teams\\Modern Data Warehouse Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataWarehouse\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\ImportSourceCode\\Retail Recommender - Solution Accelerator.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\ServiceEndpoints\\Retail Recommender - Solution Accelerator-code.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\Teams\\Retail Recommender - Solution Accelerator Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\Teams\\Retail Recommender - Solution Accelerator Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\Teams\\Retail Recommender - Solution Accelerator Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\Teams\\Retail Recommender - Solution Accelerator Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\Teams\\Retail Recommender - Solution Accelerator Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-RetailRecommender-SolutionAccelerator\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\ImportSourceCode\\Modern IOT.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\ServiceEndpoints\\Modern IOT-code.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\Teams\\Modern IOT Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\Teams\\Modern IOT Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\Teams\\Modern IOT Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\Teams\\Modern IOT Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\Teams\\Modern IOT Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-ModernIOT\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance - CAF Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance - CAF Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance - CAF Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance - CAF Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-AzureGovernance\\Teams\\Azure Governance - CAF Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Queries\\Assigned to me.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Queries\\Followed work items.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Queries\\SAP on SQL Server.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\ImportSourceCode\\SAP on Azure quick-start guide.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Iterations.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\ServiceEndpoints\\SAP on Azure quick-start guide-code.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\TeamArea.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Teams\\SAP on Azure quick-start guide Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Teams\\SAP on Azure quick-start guide Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Teams\\SAP on Azure quick-start guide Team\\CardFields.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Teams\\SAP on Azure quick-start guide Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Teams\\SAP on Azure quick-start guide Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Queries\\SAP Integration and Data.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Queries\\SAP on HANA.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Queries\\SAP on MaxDB.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Queries\\SAP on Oracle.json\" />\n    <Content Include=\"Templates\\AC-SapOnAzure\\Dashboard\\Queries\\SAP on SAP ASE.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\ImportSourceCode\\Secure Research.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\ServiceEndpoints\\Secure Research-code.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\Teams\\Secure Research Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\Teams\\Secure Research Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\Teams\\Secure Research Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\Teams\\Secure Research Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\Teams\\Secure Research Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-SecureResearch\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\ImportSourceCode\\SAP on Azure.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\ServiceEndpoints\\SAP on Azure-code.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\Teams\\Unified Data Governance Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\Teams\\Unified Data Governance Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\Teams\\Unified Data Governance Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\Teams\\Unified Data Governance Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\Teams\\Unified Data Governance Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-UnifiedDataGovernance\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\BuildDefinitions\\azure-key-vault.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\ImportSourceCode\\azure-key-vault.json\" />\n    <Content Include=\"Templates\\DL-Keyvault\\ServiceEndpoints\\azure-key-vault-code.json\" />\n    <Content Include=\"Templates\\DL-PHP\\BuildDefinitions\\php-yaml.json\" />\n    <Content Include=\"Templates\\DL-PHP\\BuildDefinitions\\PHP.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\DL-PHP\\ImportSourceCode\\php.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Iterations.json\" />\n    <Content Include=\"Templates\\DL-PHP\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-PHP\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-PHP\\ReleaseDefinitions\\PHP.json\" />\n    <Content Include=\"Templates\\DL-PHP\\ServiceEndpoints\\GitHub-018337e3-EndPoint.json\" />\n    <Content Include=\"Templates\\DL-PHP\\ServiceEndpoints\\php-code.json\" />\n    <Content Include=\"Templates\\DL-PHP\\ServiceEndpoints\\ARM-Subscription.json\" />\n    <Content Include=\"Templates\\DL-PHP\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\php Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\php Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\php Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\php Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\php Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team1\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team1\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team1\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team1\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team2\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team2\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team2\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team2\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-PHP\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-PHP\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\DL-PHP\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\DL-PHP\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\DL-PHP\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Python Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Python Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Python Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Python Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Python Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team1\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team1\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team1\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team1\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team2\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team2\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team2\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team2\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-Python\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Test-bicep\\BuildDefinitions\\toy-website-test.json\" />\n    <Content Include=\"Templates\\MSL-Test-bicep\\ImportSourceCode\\toy-website-test.json\" />\n    <Content Include=\"Templates\\MSL-Test-bicep\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Test-bicep\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-Python\\BuildDefinitions\\PythonDjango-yaml.json\" />\n    <Content Include=\"Templates\\DL-Python\\ReleaseDefinitions\\Python-CD.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\BuildDefinitions\\MyShuttle-Docker-yaml.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\BuildDefinitions\\MyShuttle-yaml.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\ReleaseDefinitions\\MyShuttleRelease.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Extensions.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\MyShuttle Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\MyShuttle Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\MyShuttle Team\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\MyShuttle Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\MyShuttle Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team1\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team1\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team1\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team1\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team2\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team2\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team2\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team2\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\WorkItems\\Bug.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\WorkItems\\Test Case.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\WorkItems\\Test Plan.json\" />\n    <Content Include=\"Templates\\Gen-MyShuttle\\WorkItems\\Test Suite.json\" />\n    <Content Include=\"Templates\\DL-AKS\\BuildDefinitions\\MyHealthAKSbuild-YAML.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Azure Kubernetes Service Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Azure Kubernetes Service Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Azure Kubernetes Service Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Azure Kubernetes Service Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Azure Kubernetes Service Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team1\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team1\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team1\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team1\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team2\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team2\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team2\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team2\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-AKS\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-AKS\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\DL-AKS\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\DL-AKS\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\DL-AKS\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\DL-AKS\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-AKS\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-AKS\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\BuildDefinitions\\AzureFunctions_CI-YAML.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Iterations.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\TeamArea.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Azure Functions Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Azure Functions Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Azure Functions Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Azure Functions Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Azure Functions Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team1\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team1\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team1\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team1\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team2\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team2\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team2\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team2\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\DL-AzureFunctions\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\DL-Docker\\BuildDefinitions\\MHCDockerbuild-YAML.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Docker Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Docker Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Docker Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Docker Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Docker Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team1\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team1\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team1\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team1\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team2\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team2\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team2\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team2\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-Docker\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-Docker\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\DL-Docker\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\DL-Docker\\WorkItems\\Product Backlog Item.json\" />\n    <Content Include=\"Templates\\DL-Docker\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\BuildDefinitions\\Ansible-CI-YAML.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\Teams\\Ansible Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\Teams\\Ansible Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\Teams\\Ansible Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\Teams\\Ansible Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\Teams\\Ansible Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-Ansible\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-Terraform\\BuildDefinitions\\Terraform-CI-YAML.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\BuildDefinitions\\Selenium-YAML.json\" />\n    <Content Include=\"Templates\\DL-Selenium\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\BuildDefinitions\\PartsUnlimited-CI-YAML.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\WorkItems\\Bug.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\ReleaseGates Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\ReleaseGates Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\ReleaseGates Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\ReleaseGates Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\ReleaseGates Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team1\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team1\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team1\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team1\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team2\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team2\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team2\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team2\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-ReleaseGates\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-LaunchDarkly\\BuildDefinitions\\LaunchDarkly-CI-YAML.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\BuildDefinitions\\SonarQube-CI.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Teams\\SonarQube Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Teams\\SonarQube Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Teams\\SonarQube Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Teams\\SonarQube Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Teams\\SonarQube Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-SonarQube\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\BuildDefinitions\\WhiteSourceBolt-YAML.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team1\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team1\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team1\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team1\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team1\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team2\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team2\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team2\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team2\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Team2\\TeamSetting.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\WhiteSource Bolt Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\WhiteSource Bolt Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\WhiteSource Bolt Team\\CardFields.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\WhiteSource Bolt Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\DL-WhiteSource-Bolt\\Teams\\WhiteSource Bolt Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Manage-multiple-environments-azure-pipelines\\BuildDefinitions\\toy-website-environments.json\" />\n    <Content Include=\"Templates\\Manage-multiple-environments-azure-pipelines\\ImportSourceCode\\toy-website-environments.json\" />\n    <Content Include=\"Templates\\Manage-multiple-environments-azure-pipelines\\Iterations.json\" />\n    <Content Include=\"Templates\\Manage-multiple-environments-azure-pipelines\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Manage-multiple-environments-azure-pipelines\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Manage-multiple-environments-azure-pipelines\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-manage-end-end-deployment-scenarios\\BuildDefinitions\\toy-website-end-to-end.json\" />\n    <Content Include=\"Templates\\MSL-manage-end-end-deployment-scenarios\\ImportSourceCode\\toy-website-end-to-end.json\" />\n    <Content Include=\"Templates\\MSL-manage-end-end-deployment-scenarios\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-manage-end-end-deployment-scenarios\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-manage-end-end-deployment-scenarios\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-manage-end-end-deployment-scenarios\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-manage-end-end-deployment-scenarios\\VariableGroups\\VariableGroup.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\ImportSourceCode\\Modern Data Analytics.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\Iterations.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\ServiceEndpoints\\Modern Data Analytics-code.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\TeamArea.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\Teams\\Modern Data Analytics Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\Teams\\Modern Data Analytics Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\Teams\\Modern Data Analytics Team\\CardFields.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\Teams\\Modern Data Analytics Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\Teams\\Modern Data Analytics Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\CAF-ModernDataAnalytics\\WorkItems\\User Story.json\" />\n    <Content Include=\"Scripts\\jquery-1.12.4.min.map\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\ImportSourceCode\\toy-website-review.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\Teams\\toy-website-review Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\Teams\\toy-website-review Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\Teams\\toy-website-review Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Review-azure-infrastructure-changes\\Teams\\toy-website-review Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\BuildDefinitions\\module-storage-account.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\BuildDefinitions\\template-spec-linux-app-service.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\ImportSourceCode\\toy-reusable.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\Iterations.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\TeamArea.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\Teams\\toy-reusable Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\Teams\\toy-reusable Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\Teams\\toy-reusable Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-Toy-reusable\\Teams\\toy-reusable Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game - web - Delivery plans Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game - web - Delivery plans Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game - web - Delivery plans Team\\CardFields.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game - web - Delivery plans Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\MSL-SpaceGame-DeliveryPlans\\Teams\\Space Game - web - Delivery plans Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\BuildDefinitions\\Bicep-Migration-Pipeline.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\BuildDefinitions\\Prod-Migration-Wave-Pipeline.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\BuildDefinitions\\Test-Migration-Pipeline.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\ImportSourceCode\\IaC Migration.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\Iterations.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\ServiceEndpoints\\GitHub-fafc3095-EndPoint.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\TeamArea.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\Teams\\TestTemplate Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\Teams\\TestTemplate Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\Teams\\TestTemplate Team\\CardFields.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\Teams\\TestTemplate Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\Teams\\TestTemplate Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\VariableGroups\\VariableGroup.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\WorkItems\\User Story.json\" />\n    <Content Include=\"Templates\\FA-IAC-migration\\ImportSourceCode\\GitRepository.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\Queries\\All Items.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\Queries\\Critical Bugs.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\Queries\\Feedback.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\Queries\\Test Case-Readiness.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\Queries\\UnfinishedWork.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\Queries\\User Stories.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\Queries\\Work in Progress.json\" />\n    <Content Include=\"Templates\\Gen-PartsUnlimited\\Dashboard\\WidgetQuery.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\BranchPolicy\\BuildPolicy.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\BranchPolicy\\WorkItemLinkPolicy.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\BuildDefinitions\\eShoponweb-Yaml.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Dashboard.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\All Bugs.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\All Epics.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\All Features.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\All Tasks.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\All User Stories.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\AllWorkofAppdevTeam.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\AppDevelopmentTeam Bugs.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\AppDevTeam Tasks.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\Test Cases.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\App Development Team\\Queries\\TestcaseinDesignState.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Dashboard.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Active Bugs.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Active Epic.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Active Feature.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Active Stories.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Active Tasks.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\All Bugs.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\All Epics.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\All Features.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\All Stories.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\All Tasks.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\All User Stories.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\All workitems.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\AllWorkofAppdevTeam.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\AppDevelopmentTeam Bugs.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\AppDevTeam Tasks.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Assigned to me.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Bugs By Priority.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Bugs By Severity.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Closed Bugs.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Closed Epic.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Closed Feature.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Closed Stories.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Closed Tasks.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\DBATeam-All work.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Epics.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Features.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Followed work items.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\New Bugs.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\New Epic.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\New Feature.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\New Stories.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\New Tasks.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Resolved Bugs.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Tasks.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\Test Cases.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\TestcaseinDesignState.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Dashboard\\Queries\\User Stories.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\DeliveryPlans\\App-DB features.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\DeliveryPlans\\DevelopmentPlan.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\ImportSourceCode\\eShopOnWeb.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Iterations.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\ProjectSettings.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\ProjectTemplate.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\ServiceEndpoints\\eShoponweb-code.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\TeamArea.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\App Development Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\App Development Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\App Development Team\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\App Development Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\App Development Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\DBA Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\DBA Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\DBA Team\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\DBA Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\DBA Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\eShoponweb Team\\BoardColumns.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\eShoponweb Team\\BoardRows.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\eShoponweb Team\\CardFields.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\eShoponweb Team\\CardStyles.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\eShoponweb Team\\IncludeSubAreas.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\eShoponweb Team\\TeamSetting.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\Teams\\Teams.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\TestPlans\\TestPlan.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\TestPlans\\TestSuites\\TestPlan.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\WorkItems\\Bug.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\WorkItems\\Epic.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\WorkItems\\Feature.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\WorkItems\\Shared Steps.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\WorkItems\\Task.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\WorkItems\\Test Case.json\" />\n    <Content Include=\"Templates\\Gen-eShopOnWeb\\WorkItems\\User Story.json\" />\n    <None Include=\"Web.Debug.config\">\n      <DependentUpon>Web.config</DependentUpon>\n    </None>\n    <None Include=\"Web.Release.config\">\n      <DependentUpon>Web.config</DependentUpon>\n    </None>\n    <Content Include=\"Scripts\\npm.js\" />\n    <Content Include=\"Scripts\\_references.js\" />\n    <Content Include=\"Views\\Web.config\">\n      <SubType>Designer</SubType>\n    </Content>\n    <Content Include=\"Views\\_ViewStart.cshtml\" />\n    <Content Include=\"Views\\Shared\\Error.cshtml\" />\n    <Content Include=\"Views\\Shared\\_Layout.cshtml\" />\n    <Content Include=\"Views\\Account\\Verify.cshtml\" />\n    <Content Include=\"Views\\Environment\\Create.cshtml\" />\n    <Content Include=\"Service References\\Application Insights\\ConnectedService.json\" />\n    <Content Include=\"Views\\Home\\Index.cshtml\" />\n  </ItemGroup>\n  <ItemGroup>\n    <Folder Include=\"App_Data\\\" />\n    <Folder Include=\"assets\\script\\\" />\n    <Folder Include=\"Content\\assets\\script\\\" />\n    <Folder Include=\"ExtractedTemplate\\\" />\n    <Folder Include=\"ExtractedZipFile\\\" />\n    <Folder Include=\"Log\\\" />\n    <Folder Include=\"PrivateTemplates\\\" />\n    <Folder Include=\"TemplateBackUp\\\" />\n    <Folder Include=\"Templates\\DL-GitHub\\Dashboard\\Charts\\\" />\n    <Folder Include=\"Templates\\DL-GitHub\\Dashboard\\Widgets\\\" />\n    <Folder Include=\"Templates\\DL-LaunchDarkly\\Dashboard\\\" />\n  </ItemGroup>\n  <ItemGroup>\n    <ProjectReference Include=\"..\\VstsRestAPI\\VstsRestAPI.csproj\">\n      <Project>{720825c0-f4f3-44f3-9492-3bc4c967034d}</Project>\n      <Name>VstsRestAPI</Name>\n    </ProjectReference>\n  </ItemGroup>\n  <ItemGroup>\n    <WCFMetadata Include=\"Service References\\\" />\n  </ItemGroup>\n  <ItemGroup>\n    <Service Include=\"{4A0DDDB5-7A95-4FBF-97CC-616D07737A77}\" />\n  </ItemGroup>\n  <PropertyGroup>\n    <VisualStudioVersion Condition=\"'$(VisualStudioVersion)' == ''\">10.0</VisualStudioVersion>\n    <VSToolsPath Condition=\"'$(VSToolsPath)' == ''\">$(MSBuildExtensionsPath32)\\Microsoft\\VisualStudio\\v$(VisualStudioVersion)</VSToolsPath>\n  </PropertyGroup>\n  <Import Project=\"$(MSBuildBinPath)\\Microsoft.CSharp.targets\" />\n  <Import Project=\"$(MSBuildExtensionsPath32)\\Microsoft\\VisualStudio\\v$(VisualStudioVersion)\\TypeScript\\Microsoft.TypeScript.targets\" Condition=\"Exists('$(MSBuildExtensionsPath32)\\Microsoft\\VisualStudio\\v$(VisualStudioVersion)\\TypeScript\\Microsoft.TypeScript.targets')\" />\n  <Import Project=\"$(VSToolsPath)\\WebApplications\\Microsoft.WebApplication.targets\" Condition=\"'$(VSToolsPath)' != ''\" />\n  <Import Project=\"$(MSBuildExtensionsPath32)\\Microsoft\\VisualStudio\\v10.0\\WebApplications\\Microsoft.WebApplication.targets\" Condition=\"false\" />\n  <Target Name=\"MvcBuildViews\" AfterTargets=\"AfterBuild\" Condition=\"'$(MvcBuildViews)'=='true'\">\n    <AspNetCompiler VirtualPath=\"temp\" PhysicalPath=\"$(WebProjectOutputDir)\" />\n  </Target>\n  <ProjectExtensions>\n    <VisualStudio>\n      <FlavorProperties GUID=\"{349c5851-65df-11da-9384-00065b846f21}\">\n        <WebProjectProperties>\n          <SaveServerSettingsInUserFile>True</SaveServerSettingsInUserFile>\n        </WebProjectProperties>\n      </FlavorProperties>\n    </VisualStudio>\n  </ProjectExtensions>\n  <Import Project=\"..\\packages\\Microsoft.Bcl.Build.1.0.14\\tools\\Microsoft.Bcl.Build.targets\" Condition=\"Exists('..\\packages\\Microsoft.Bcl.Build.1.0.14\\tools\\Microsoft.Bcl.Build.targets')\" />\n  <Target Name=\"EnsureBclBuildImported\" BeforeTargets=\"BeforeBuild\" Condition=\"'$(BclBuildImported)' == ''\">\n    <Error Condition=\"!Exists('..\\packages\\Microsoft.Bcl.Build.1.0.14\\tools\\Microsoft.Bcl.Build.targets')\" Text=\"This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=317567.\" HelpKeyword=\"BCLBUILD2001\" />\n    <Error Condition=\"Exists('..\\packages\\Microsoft.Bcl.Build.1.0.14\\tools\\Microsoft.Bcl.Build.targets')\" Text=\"The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568.\" HelpKeyword=\"BCLBUILD2002\" />\n  </Target>\n  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. \n       Other similar extension points exist, see Microsoft.Common.targets.\n  <Target Name=\"BeforeBuild\">\n  </Target>\n  <Target Name=\"AfterBuild\">\n  </Target> -->\n</Project>"
  },
  {
    "path": "src/VstsDemoBuilder/Web.Debug.config",
    "content": "﻿<?xml version=\"1.0\"?>\n\n<!-- For more information on using Web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->\n\n<configuration xmlns:xdt=\"http://schemas.microsoft.com/XML-Document-Transform\">\n  <!--\n    In the example below, the \"SetAttributes\" transform will change the value of \n    \"connectionString\" to use \"ReleaseSQLServer\" only when the \"Match\" locator \n    finds an atrribute \"name\" that has a value of \"MyDB\".\n    \n    <connectionStrings>\n      <add name=\"MyDB\" \n        connectionString=\"Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True\" \n        xdt:Transform=\"SetAttributes\" xdt:Locator=\"Match(name)\"/>\n    </connectionStrings>\n  -->\n  <system.web>\n    <!--\n      In the example below, the \"Replace\" transform will replace the entire \n      <customErrors> section of your Web.config file.\n      Note that because there is only one customErrors section under the \n      <system.web> node, there is no need to use the \"xdt:Locator\" attribute.\n      \n      <customErrors defaultRedirect=\"GenericError.htm\"\n        mode=\"RemoteOnly\" xdt:Transform=\"Replace\">\n        <error statusCode=\"500\" redirect=\"InternalError.htm\"/>\n      </customErrors>\n    -->\n  </system.web>\n</configuration>"
  },
  {
    "path": "src/VstsDemoBuilder/Web.Release.config",
    "content": "﻿<?xml version=\"1.0\"?>\n\n<!-- For more information on using Web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->\n\n<configuration xmlns:xdt=\"http://schemas.microsoft.com/XML-Document-Transform\">\n  <!--\n    In the example below, the \"SetAttributes\" transform will change the value of \n    \"connectionString\" to use \"ReleaseSQLServer\" only when the \"Match\" locator \n    finds an atrribute \"name\" that has a value of \"MyDB\".\n    \n    <connectionStrings>\n      <add name=\"MyDB\" \n        connectionString=\"Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True\" \n        xdt:Transform=\"SetAttributes\" xdt:Locator=\"Match(name)\"/>\n    </connectionStrings>\n  -->\n  <system.web>\n    <compilation xdt:Transform=\"RemoveAttributes(debug)\" />\n    <!--\n      In the example below, the \"Replace\" transform will replace the entire \n      <customErrors> section of your Web.config file.\n      Note that because there is only one customErrors section under the \n      <system.web> node, there is no need to use the \"xdt:Locator\" attribute.\n      \n      <customErrors defaultRedirect=\"GenericError.htm\"\n        mode=\"RemoteOnly\" xdt:Transform=\"Replace\">\n        <error statusCode=\"500\" redirect=\"InternalError.htm\"/>\n      </customErrors>\n    -->\n  </system.web>\n</configuration>"
  },
  {
    "path": "src/VstsDemoBuilder/Web.config",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--\n  For more information on how to configure your ASP.NET application, please visit\n  http://go.microsoft.com/fwlink/?LinkId=152368\n  -->\n<configuration>\n  <configSections>\n    <section name=\"entityFramework\" type=\"System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" requirePermission=\"false\"/>\n    <section name=\"log4net\" type=\"log4net.Config.Log4NetConfigurationSectionHandler,log4net\"/>\n    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->\n  </configSections>\n  <log4net>\n    <appender name=\"ErrorLog\" type=\"log4net.Appender.RollingFileAppender\">\n      <file value=\"Logs\\\"/>\n      <staticLogFileName value=\"false\"/>\n      <appendToFile value=\"true\"/>\n      <rollingStyle value=\"Date\"/>\n      <datePattern value=\"yyyy-MM-dd.'txt'\"/>\n      <lockingModel type=\"log4net.Appender.FileAppender+MinimalLock\"/>\n      <layout type=\"log4net.Layout.PatternLayout\">\n        <conversationPattern value=\"%d{DATE} [%t] %-5 %c - %m%n\"/>\n      </layout>\n    </appender>\n    <logger name=\"ErrorLog\">\n      <maximunFileSize value=\"15MB\"/>\n      <appender-ref ref=\"ErrorLog\"/>\n      <maxsizerollbackups value=\"7\"/>\n    </logger>\n  </log4net>\n  <appSettings>\n    <add key=\"webpages:Version\" value=\"2.0.0.0\"/>\n    <add key=\"webpages:Enabled\" value=\"false\"/>\n    <add key=\"PreserveLoginUrl\" value=\"true\"/>\n    <add key=\"ClientValidationEnabled\" value=\"true\"/>\n    <add key=\"UnobtrusiveJavaScriptEnabled\" value=\"true\"/>\n    <add key=\"ProjectCreationVersion\" value=\"4.1\"/>\n    <add key=\"ProjectPropertyVersion\" value=\"4.1-preview\"/>\n    <add key=\"RepoVersion\" value=\"4.1\"/>\n    <add key=\"BuildVersion\" value=\"4.1\"/>\n    <add key=\"ReleaseVersion\" value=\"4.1\"/>\n    <add key=\"WikiVersion\" value=\"4.1\"/>\n    <add key=\"BoardVersion\" value=\"4.1\"/>\n    <add key=\"WorkItemsVersion\" value=\"4.1\"/>\n    <add key=\"QueriesVersion\" value=\"4.1\"/>\n    <add key=\"EndPointVersion\" value=\"4.1-preview.1\"/>\n    <add key=\"ExtensionVersion\" value=\"4.1\"/>\n    <add key=\"DashboardVersion\" value=\"4.1-preview.2\"/>\n    <add key=\"AgentQueueVersion\" value=\"4.1-preview\"/>\n    <add key=\"GetSourceCodeVersion\" value=\"4.1-preview\"/>\n    <add key=\"TestPlanVersion\" value=\"5.0\"/>\n    <add key=\"DefaultHost\" value=\"https://dev.azure.com/\"/>\n    <add key=\"ReleaseHost\" value=\"https://vsrm.dev.azure.com/\"/>\n    <add key=\"ExtensionHost\" value=\"https://extmgmt.dev.azure.com/\"/>\n    <add key=\"GetRelease\" value=\"4.1-preview.3\"/>\n    <add key=\"BaseAddress\" value=\"https://app.vssps.visualstudio.com/\"/>\n    <add key=\"GraphAPIHost\" value=\"https://vssps.dev.azure.com/\"/>\n    <add key=\"ProjectProperties\" value=\"4.1-preview.1\"/>\n    <add key=\"DefaultTemplate\" value=\"SmartHotel360\"/>\n    <add key=\"DeloymentGroup\" value=\"4.1-preview.1\"/>\n    <add key=\"ExtensionVersion\" value=\"4.1-preview.1\"/>\n    <add key=\"GraphApiVersion\" value=\"4.1-preview.1\"/>\n    <add key=\"VariableGroupsApiVersion\" value=\"5.0-preview.1\"/>\n    <add key=\"AnalyticsKey\" value=\"\"/>\n  </appSettings>\n  <!--\n    For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.\n\n    The following attributes can be set on the <httpRuntime> tag.\n      <system.Web>\n        <httpRuntime targetFramework=\"4.7\" />\n      </system.Web>\n  -->\n  <system.web>\n    <compilation debug=\"true\" targetFramework=\"4.7\"/>\n    <authentication mode=\"None\">\n      <forms loginUrl=\"~/Account/Verify\" timeout=\"30\" slidingExpiration=\"true\"/>\n      <forms requireSSL=\"true\"/>\n    </authentication>\n    <httpCookies requireSSL=\"true\"/>\n    <customErrors mode=\"On\"/>\n    <pages controlRenderingCompatibilityVersion=\"4.0\">\n      <namespaces>\n        <add namespace=\"System.Web.Helpers\"/>\n        <add namespace=\"System.Web.Mvc\"/>\n        <add namespace=\"System.Web.Mvc.Ajax\"/>\n        <add namespace=\"System.Web.Mvc.Html\"/>\n        <add namespace=\"System.Web.Optimization\"/>\n        <add namespace=\"System.Web.Routing\"/>\n        <add namespace=\"System.Web.WebPages\"/>\n      </namespaces>\n    </pages>\n    <!--\n            If you are deploying to a cloud environment that has multiple web server instances,\n            you should change session state mode from \"InProc\" to \"Custom\". In addition,\n            change the connection string named \"DefaultConnection\" to connect to an instance\n            of SQL Server (including SQL Azure and SQL  Compact) instead of to SQL Server Express.\n      -->\n    <sessionState timeout=\"30\" mode=\"InProc\" customProvider=\"DefaultSessionProvider\">\n      <providers>\n        <add name=\"DefaultSessionProvider\" type=\"System.Web.Providers.DefaultSessionStateProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\" connectionStringName=\"DefaultConnection\"/>\n      </providers>\n    </sessionState>\n    <httpModules>\n      <add name=\"TelemetryCorrelationHttpModule\" type=\"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation\"/>\n      <add name=\"ApplicationInsightsWebTracking\" type=\"Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web\"/>\n    </httpModules>\n    <profile defaultProvider=\"DefaultProfileProvider\">\n      <providers>\n        <add name=\"DefaultProfileProvider\" type=\"System.Web.Providers.DefaultProfileProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\" connectionStringName=\"DefaultConnection\" applicationName=\"/\"/>\n      </providers>\n    </profile>\n    <membership defaultProvider=\"DefaultMembershipProvider\">\n      <providers>\n        <add name=\"DefaultMembershipProvider\" type=\"System.Web.Providers.DefaultMembershipProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\" connectionStringName=\"DefaultConnection\" enablePasswordRetrieval=\"false\" enablePasswordReset=\"true\" requiresQuestionAndAnswer=\"false\" requiresUniqueEmail=\"false\" maxInvalidPasswordAttempts=\"5\" minRequiredPasswordLength=\"6\" minRequiredNonalphanumericCharacters=\"0\" passwordAttemptWindow=\"10\" applicationName=\"/\"/>\n      </providers>\n    </membership>\n    <roleManager defaultProvider=\"DefaultRoleProvider\">\n      <providers>\n        <add name=\"DefaultRoleProvider\" type=\"System.Web.Providers.DefaultRoleProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\" connectionStringName=\"DefaultConnection\" applicationName=\"/\"/>\n      </providers>\n    </roleManager>\n  </system.web>\n  <system.webServer>\n    <validation validateIntegratedModeConfiguration=\"false\"/>\n    <modules runAllManagedModulesForAllRequests=\"true\">\n      <remove name=\"TelemetryCorrelationHttpModule\"/>\n      <add name=\"TelemetryCorrelationHttpModule\" type=\"Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation\" preCondition=\"managedHandler\"/>\n      <remove name=\"ApplicationInsightsWebTracking\"/>\n      <add name=\"ApplicationInsightsWebTracking\" type=\"Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web\" preCondition=\"managedHandler\"/>\n    </modules>\n    <rewrite>\n      <rules>\n        <rule name=\"HTTP to HTTPS redirect\" stopProcessing=\"true\">\n          <match url=\"(.*)\"/>\n          <conditions>\n            <add input=\"{HTTPS}\" pattern=\"off\" ignoreCase=\"true\"/>\n          </conditions>\n          <action type=\"Redirect\" redirectType=\"Permanent\" url=\"https://{HTTP_HOST}/{R:1}\"/>\n        </rule>\n      </rules>\n    </rewrite>\n    <handlers>\n      <remove name=\"ExtensionlessUrlHandler-Integrated-4.0\"/>\n      <remove name=\"OPTIONSVerbHandler\"/>\n      <remove name=\"TRACEVerbHandler\"/>\n      <add name=\"ExtensionlessUrlHandler-Integrated-4.0\" path=\"*.\" verb=\"*\" type=\"System.Web.Handlers.TransferRequestHandler\" preCondition=\"integratedMode,runtimeVersionv4.0\"/>\n    </handlers>\n  </system.webServer>\n  <runtime>\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\n      <dependentAssembly>\n        <assemblyIdentity name=\"log4net\" publicKeyToken=\"669E0DDF0BB1AA2A\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-3.0.1.0\" newVersion=\"3.0.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"WebGrease\" publicKeyToken=\"31bf3856ad364e35\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-1.3.0.0\" newVersion=\"1.3.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"Newtonsoft.Json\" publicKeyToken=\"30ad4fe6b2a6aeed\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-13.0.0.0\" newVersion=\"13.0.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Net.Http.Formatting\" publicKeyToken=\"31bf3856ad364e35\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-5.2.3.0\" newVersion=\"5.2.3.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Web.Http\" publicKeyToken=\"31bf3856ad364e35\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-5.2.3.0\" newVersion=\"5.2.3.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Net.Http\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.3\" newVersion=\"4.1.1.3\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"EntityFramework\" publicKeyToken=\"b77a5c561934e089\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-6.0.0.0\" newVersion=\"6.0.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Web.Helpers\" publicKeyToken=\"31bf3856ad364e35\"/>\n        <bindingRedirect oldVersion=\"1.0.0.0-3.0.0.0\" newVersion=\"3.0.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Web.WebPages\" publicKeyToken=\"31bf3856ad364e35\"/>\n        <bindingRedirect oldVersion=\"1.0.0.0-3.0.0.0\" newVersion=\"3.0.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Web.Mvc\" publicKeyToken=\"31bf3856ad364e35\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-5.2.7.0\" newVersion=\"5.2.7.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.Extensions\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Reflection\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Linq\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.InteropServices\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Security.Cryptography.X509Certificates\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.0.0\" newVersion=\"4.1.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.IO\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"Microsoft.Win32.Primitives\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.0.1.0\" newVersion=\"4.0.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Text.RegularExpressions\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.0.0\" newVersion=\"4.1.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.Serialization.Primitives\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.2.0\" newVersion=\"4.1.2.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Diagnostics.Tracing\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Xml.ReaderWriter\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.0.0\" newVersion=\"4.1.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Linq.Expressions\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.Serialization.Xml\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.2.0\" newVersion=\"4.1.2.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.CompilerServices.Unsafe\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-6.0.0.0\" newVersion=\"6.0.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Diagnostics.DiagnosticSource\" publicKeyToken=\"cc7b13ffcd2ddd51\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-5.0.0.0\" newVersion=\"5.0.0.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"Microsoft.ApplicationInsights\" publicKeyToken=\"31bf3856ad364e35\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-2.22.0.997\" newVersion=\"2.22.0.997\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.IdentityModel.Tokens.Jwt\" publicKeyToken=\"31bf3856ad364e35\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-8.1.2.0\" newVersion=\"8.1.2.0\"/>\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Memory\" publicKeyToken=\"cc7b13ffcd2ddd51\" culture=\"neutral\"/>\n        <bindingRedirect oldVersion=\"0.0.0.0-4.0.1.2\" newVersion=\"4.0.1.2\"/>\n      </dependentAssembly>\n    </assemblyBinding>\n  </runtime>\n  <entityFramework>\n    <defaultConnectionFactory type=\"System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework\">\n      <parameters>\n        <parameter value=\"v13.0\"/>\n      </parameters>\n    </defaultConnectionFactory>\n    <providers>\n      <provider invariantName=\"System.Data.SqlClient\" type=\"System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer\"/>\n    </providers>\n  </entityFramework>\n  <location path=\"Scripts\">\n    <system.web>\n      <authorization>\n        <allow users=\"*\"/>\n      </authorization>\n    </system.web>\n  </location>\n  <location path=\"Content\">\n    <system.web>\n      <authorization>\n        <allow users=\"*\"/>\n      </authorization>\n    </system.web>\n  </location>\n  <location path=\"Images\">\n    <system.web>\n      <authorization>\n        <allow users=\"*\"/>\n      </authorization>\n    </system.web>\n  </location>\n  <system.serviceModel>\n    <extensions>\n      <!-- In this extension section we are introducing all known service bus extensions. User can remove the ones they don't need. -->\n      <behaviorExtensions>\n        <add name=\"connectionStatusBehavior\" type=\"Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"transportClientEndpointBehavior\" type=\"Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"serviceRegistrySettings\" type=\"Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n      </behaviorExtensions>\n      <bindingElementExtensions>\n        <add name=\"netMessagingTransport\" type=\"Microsoft.ServiceBus.Messaging.Configuration.NetMessagingTransportExtensionElement, Microsoft.ServiceBus,  Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"tcpRelayTransport\" type=\"Microsoft.ServiceBus.Configuration.TcpRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"httpRelayTransport\" type=\"Microsoft.ServiceBus.Configuration.HttpRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"httpsRelayTransport\" type=\"Microsoft.ServiceBus.Configuration.HttpsRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"onewayRelayTransport\" type=\"Microsoft.ServiceBus.Configuration.RelayedOnewayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n      </bindingElementExtensions>\n      <bindingExtensions>\n        <add name=\"basicHttpRelayBinding\" type=\"Microsoft.ServiceBus.Configuration.BasicHttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"webHttpRelayBinding\" type=\"Microsoft.ServiceBus.Configuration.WebHttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"ws2007HttpRelayBinding\" type=\"Microsoft.ServiceBus.Configuration.WS2007HttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"netTcpRelayBinding\" type=\"Microsoft.ServiceBus.Configuration.NetTcpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"netOnewayRelayBinding\" type=\"Microsoft.ServiceBus.Configuration.NetOnewayRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"netEventRelayBinding\" type=\"Microsoft.ServiceBus.Configuration.NetEventRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n        <add name=\"netMessagingBinding\" type=\"Microsoft.ServiceBus.Messaging.Configuration.NetMessagingBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35\"/>\n      </bindingExtensions>\n    </extensions>\n  </system.serviceModel>\n  <connectionStrings>\n    <add name=\"DefaultConnection\" providerName=\"System.Data.SqlClient\" connectionString=\"Data Source=(LocalDb)\\v11.0;Initial Catalog=aspnet-VstsDemoBuilder-20220221120741;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\\aspnet-VstsDemoBuilder-20220221120741.mdf\"/>\n  </connectionStrings>\n</configuration>\n"
  },
  {
    "path": "src/VstsDemoBuilder/assets/css/custom.scss",
    "content": "// MAIN SCSS\n@import \"../../node_modules/bootstrap/scss/bootstrap.scss\";\n\n// MAIN PAGE CONTAINER\nhtml,body{\n    height:100%;\n}\n.section-1\n{\n    min-height: 100%;\n    main\n    {\n        flex:1;\n        .VSTS-hero-image\n        {\n            flex:1;\n            .VSTS-hero\n            {\n                flex:1;\n                background:url('../images/VSTS_cover_image.png') center center / cover;\n                img{\n                    width:60px;\n                }\n            }\n        }\n        .VSTS-details\n        {\n            @media (min-width: 768px)\n            {\n                max-width: 550px;\n            }\n            .demo-generator-details-logo\n            {\n                width:210px;\n            }\n            p\n            {\n                font-size: $spacer/1.142;\n            }\n        }\n    }\n}\n\n\n"
  },
  {
    "path": "src/VstsDemoBuilder/packages.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<packages>\n  <package id=\"Common.Logging\" version=\"3.4.1\" targetFramework=\"net47\" />\n  <package id=\"Common.Logging.Core\" version=\"3.4.1\" targetFramework=\"net47\" />\n  <package id=\"CommonServiceLocator\" version=\"1.3\" targetFramework=\"net47\" />\n  <package id=\"EntityFramework\" version=\"6.2.0\" targetFramework=\"net47\" />\n  <package id=\"GoogleAnalyticsTracker.Core\" version=\"5.0.0\" targetFramework=\"net47\" />\n  <package id=\"GoogleAnalyticsTracker.Simple\" version=\"5.0.0\" targetFramework=\"net47\" />\n  <package id=\"GoogleAnalyticsTracker.WebAPI2\" version=\"5.0.0\" targetFramework=\"net47\" />\n  <package id=\"jQuery\" version=\"1.12.4\" targetFramework=\"net47\" />\n  <package id=\"knockoutjs\" version=\"2.2.0\" targetFramework=\"net47\" />\n  <package id=\"LaunchDarkly.Client\" version=\"5.4.0\" targetFramework=\"net47\" />\n  <package id=\"LaunchDarkly.Common.StrongName\" version=\"1.1.1\" targetFramework=\"net47\" />\n  <package id=\"LaunchDarkly.EventSource\" version=\"3.1.5\" targetFramework=\"net47\" />\n  <package id=\"log4net\" version=\"2.0.12\" targetFramework=\"net47\" />\n  <package id=\"LowercaseRoutesMVC\" version=\"1.0.3\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.ApplicationInsights\" version=\"2.1.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.ApplicationInsights.Agent.Intercept\" version=\"1.2.1\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.ApplicationInsights.DependencyCollector\" version=\"2.1.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.ApplicationInsights.PerfCounterCollector\" version=\"2.1.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.ApplicationInsights.Web\" version=\"2.1.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.ApplicationInsights.WindowsServer\" version=\"2.1.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel\" version=\"2.1.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.Mvc\" version=\"5.2.7\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.Providers.Core\" version=\"1.2\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.Providers.LocalDB\" version=\"1.1\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.Razor\" version=\"3.2.7\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.Web.Optimization\" version=\"1.0.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.WebApi\" version=\"5.0.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.WebApi.Client\" version=\"5.2.3\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.WebApi.Core\" version=\"5.2.3\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.WebApi.WebHost\" version=\"5.2.3\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.AspNet.WebPages\" version=\"3.2.7\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.Bcl\" version=\"1.1.10\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.Bcl.Build\" version=\"1.0.14\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.CSharp\" version=\"4.0.1\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.IdentityModel.Clients.ActiveDirectory\" version=\"3.13.5\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.Net.Http\" version=\"2.2.29\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.NETCore.Platforms\" version=\"1.1.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.VisualStudio.Services.Client\" version=\"15.112.1\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.VisualStudio.Services.ExtensionManagement.WebApi\" version=\"15.112.1-preview\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.VisualStudio.Services.Gallery.WebApi\" version=\"15.112.1-preview\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.VisualStudio.Services.InteractiveClient\" version=\"15.112.1\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.Web.Infrastructure\" version=\"1.0.0.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.Win32.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"Modernizr\" version=\"2.6.2\" targetFramework=\"net47\" />\n  <package id=\"NETStandard.Library\" version=\"1.6.1\" targetFramework=\"net47\" />\n  <package id=\"Newtonsoft.Json\" version=\"12.0.3\" targetFramework=\"net47\" />\n  <package id=\"Swashbuckle\" version=\"5.6.0\" targetFramework=\"net47\" />\n  <package id=\"Swashbuckle.Core\" version=\"5.6.0\" targetFramework=\"net47\" />\n  <package id=\"System.AppContext\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Collections\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Collections.Concurrent\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.ComponentModel.EventBasedAsync\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Console\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.Contracts\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.Debug\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.DiagnosticSource\" version=\"4.0.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.Tools\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.Tracing\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Globalization\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Globalization.Calendars\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IdentityModel.Tokens.Jwt\" version=\"4.0.2.206221351\" targetFramework=\"net47\" />\n  <package id=\"System.IO\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO.Compression\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO.Compression.ZipFile\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO.FileSystem\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO.FileSystem.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Linq\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Linq.Expressions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Net.Http\" version=\"4.3.4\" targetFramework=\"net47\" />\n  <package id=\"System.Net.Http.Formatting.Extension\" version=\"5.2.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Net.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Net.Sockets\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.ObjectModel\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Reflection\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Reflection.Extensions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Reflection.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Resources.ResourceManager\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.CompilerServices.Unsafe\" version=\"4.5.2\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Extensions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Handles\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.InteropServices\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.InteropServices.RuntimeInformation\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Numerics\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Serialization.Json\" version=\"4.0.2\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Serialization.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Serialization.Xml\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Security.Cryptography.Algorithms\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Security.Cryptography.Encoding\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Security.Cryptography.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Security.Cryptography.X509Certificates\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Text.Encoding\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Text.Encoding.Extensions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Text.RegularExpressions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Threading\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Threading.Tasks\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Threading.Timer\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Xml.ReaderWriter\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Xml.XDocument\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Xml.XmlSerializer\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"Unity\" version=\"4.0.1\" targetFramework=\"net47\" />\n  <package id=\"Unity.Abstractions\" version=\"4.1.3\" targetFramework=\"net47\" />\n  <package id=\"Unity.Container\" version=\"5.10.3\" targetFramework=\"net47\" />\n  <package id=\"Unity.Mvc\" version=\"4.0.1\" targetFramework=\"net47\" />\n  <package id=\"WebActivatorEx\" version=\"2.2.0\" targetFramework=\"net47\" />\n  <package id=\"WebGrease\" version=\"1.3.0\" targetFramework=\"net47\" />\n  <package id=\"WindowsAzure.ServiceBus\" version=\"3.3.2\" targetFramework=\"net47\" />\n</packages>"
  },
  {
    "path": "src/VstsRestAPI/ApiServiceBase.cs",
    "content": "﻿using System;\nusing System.Net.Http;\nusing System.Net.Http.Headers;\n\nnamespace VstsRestAPI\n{\n    public abstract class ApiServiceBase\n    {\n        public string LastFailureMessage { get; set; }\n        protected readonly IConfiguration _configuration;\n        protected readonly string _credentials;\n        protected readonly string Project;\n        protected readonly string ProjectId;\n        protected readonly string Account;\n        protected readonly string Team;\n        protected readonly string _baseAddress;\n        protected readonly string _mediaType;\n        protected readonly string _scheme;\n        protected readonly string _Gitcredential;\n        protected readonly string userName;\n\n\n        public ApiServiceBase(IConfiguration configuration)\n        {\n            _configuration = configuration;\n            _credentials = Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(string.Format(\"{0}:{1}\", \"\", _configuration.PersonalAccessToken)));//configuration.PersonalAccessToken;\n            Project = configuration.Project;\n            Account = configuration.AccountName;\n            Team = configuration.Team;\n            ProjectId = configuration.ProjectId;\n\n            _baseAddress = configuration._gitbaseAddress;\n            _mediaType = configuration._mediaType;\n            _scheme = configuration._scheme;\n            _Gitcredential = configuration._gitcredential;\n            userName = configuration.userName;\n        }\n\n        protected HttpClient GetHttpClient()\n        {\n            var client = new HttpClient\n            {\n                BaseAddress = new Uri(_configuration.UriString)\n            };\n            client.DefaultRequestHeaders.Accept.Clear();\n            client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue(\"application/json\"));\n            client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(\"Basic\", _credentials);\n\n            return client;\n        }\n        protected HttpClient GitHubHttpClient()\n        {\n            var client = new HttpClient\n            {\n                BaseAddress = new Uri(_baseAddress)\n            };\n            client.DefaultRequestHeaders.Accept.Clear();\n            client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(_mediaType));\n            client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(_scheme, _Gitcredential);\n            return client;\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Build/BuildDefinition.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.Build;\n\n\nnamespace VstsRestAPI.Build\n{\n    public class BuildDefinition : ApiServiceBase\n    {\n        public BuildDefinition(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Create Build Definition\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"project\"></param>\n        /// <param name=\"selectedTemplate\"></param>\n        /// <returns></returns>\n        public string[] CreateBuildDefinition(string json, string project, string selectedTemplate)\n        {\n            try\n            {\n                BuildGetListofBuildDefinitionsResponse.Definitions viewModel = new BuildGetListofBuildDefinitionsResponse.Definitions();\n                using (var client = GetHttpClient())\n                {\n                    string uuid = Guid.NewGuid().ToString();\n                    uuid = uuid.Substring(0, 8);\n                    json = json.Replace(\"$UUID$\", uuid);\n\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    string uri = \"\";\n                    uri = _configuration.UriString + project + \"/_apis/build/definitions?api-version=\" + _configuration.VersionNumber;\n                    var request = new HttpRequestMessage(method, uri) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        string buildId = JObject.Parse(result)[\"id\"].ToString();\n                        string buildName = JObject.Parse(result)[\"name\"].ToString();\n                        return new string[] { buildId, buildName };\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return new string[] { };\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateBuildDefinition\" + \"\\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new string[] { };\n        }\n\n        /// <summary>\n        /// Queue a build after provisioning project\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n        public int QueueBuild(string json, string project)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, project + \"/_apis/build/builds?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        int buildId = int.Parse(JObject.Parse(result)[\"id\"].ToString());\n\n                        return buildId;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"QueueBuild\" + \"\\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return -1;\n        }\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/Configuration.cs",
    "content": "﻿\nnamespace VstsRestAPI\n{\n    public class Configuration : IConfiguration\n    {\n        public string UriString { get; set; }\n        public string UriParams { get; set; }\n        public string RequestBody { get; set; }\n        public string AccountName { get; set; }\n        public string PersonalAccessToken { get; set; }\n        public string Project { get; set; }\n        public string ProjectId { get; set; }\n        public string VersionNumber { get; set; }\n        public string Id { get; set; }\n        public string Team { get; set; }\n        public string _gitcredential { get; set; }\n        public string _gitbaseAddress { get; set; }\n        public string _mediaType { get; set; }\n        public string _scheme { get; set; }\n        public string userName { get; set; }\n    }\n    public class ProjectConfigurations\n    {\n        public Configuration AgentQueueConfig { get; set; }\n        public Configuration WorkItemConfig { get; set; }\n        public Configuration BuildDefinitionConfig { get; set; }\n        public Configuration ReleaseDefinitionConfig { get; set; }\n        public Configuration RepoConfig { get; set; }\n        public Configuration BoardConfig { get; set; }\n        public Configuration Config { get; set; }\n        public Configuration GetReleaseConfig { get; set; }\n        public Configuration ExtensionConfig { get; set; }\n        public Configuration EndpointConfig { get; set; }\n        public Configuration QueriesConfig { get; set; }\n        public Configuration VariableGroupConfig { get; set; }\n\n    }\n\n    public enum TemplateType\n    {\n        Agile,\n        Scrum,\n        CMMI,\n        Basic\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/DeliveryPlans/Plans.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Net.Http;\nusing System.Net.Http.Headers;\nusing System.Text;\nusing System.Threading.Tasks;\nusing VstsRestAPI.Viewmodel.Plans;\nusing static VstsRestAPI.Viewmodel.Plans.DeliveryPlans;\n\nnamespace VstsRestAPI.DeliveryPlans\n{\n    public class Plans : ApiServiceBase\n    {\n        public Plans(IConfiguration configuration) : base(configuration) { }\n\n        /// <summary>\n        /// Create Delivery plans\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n\t\tpublic APlan.Root AddDeliveryPlan(string json, string project)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    APlan.Root plan = new APlan.Root();\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, project + \"/_apis/work/plans?api-version=7.0\") { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n                    response.EnsureSuccessStatusCode();\n                    if (response.IsSuccessStatusCode)\n                    {\n                        plan = JsonConvert.DeserializeObject<APlan.Root>(response.Content.ReadAsStringAsync().Result);\n                        return plan;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n\n            }\n            catch (Exception)\n            {\n            }\n            return new APlan.Root();\n        }\n        public bool UpdateDeliveryPlan(string json, string project, string id)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"PUT\");\n\n                    var request = new HttpRequestMessage(method, project + $\"/_apis/work/plans/{id}?api-version=7.0\") { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return false;\n                    }\n                }\n\n            }\n            catch (Exception)\n            {\n                return false;\n            }\n        }\n\n        public GetPlans.Root GetDeliveryPlans(string organization, string project)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var request = $\"https://dev.azure.com/{organization}/{project}/_apis/work/plans?api-version=7.0\";\n                    var response = client.GetAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string res = response.Content.ReadAsStringAsync().Result;\n                        GetPlans.Root pl = new GetPlans.Root();\n                        pl = JsonConvert.DeserializeObject<GetPlans.Root>(res);\n                        return pl;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception)\n            {\n            }\n            return new GetPlans.Root();\n        }\n\n        public APlan.Root GetAPlan(string organization, string project, string id)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var request = $\"https://dev.azure.com/{organization}/{project}/_apis/work/plans/{id}?api-version=7.0\";\n                    var response = client.GetAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string res = response.Content.ReadAsStringAsync().Result;\n                        APlan.Root aplan = JsonConvert.DeserializeObject<APlan.Root>(res);\n                        return aplan;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n\n            }\n            return new APlan.Root();\n        }\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/DeploymentGRoup/DeploymentGroup.cs",
    "content": "﻿using System.Net.Http;\nusing System.Text;\n\nnamespace VstsRestAPI.DeploymentGRoup\n{\n    public class DeploymentGroup : ApiServiceBase\n    {\n        public DeploymentGroup(IConfiguration configuration) : base(configuration)\n        {\n        }\n\n        public bool CreateDeploymentGroup(string json)\n        {\n            //POST https://dev.azure.com/{organization}/{project}/_apis/distributedtask/deploymentgroups?api-version=4.1-preview.1\n            using (var client = GetHttpClient())\n            {\n                var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                var method = new HttpMethod(\"POST\");\n                var request = new HttpRequestMessage(method, _configuration.UriString + _configuration.Project + \"/_apis/distributedtask/deploymentgroups?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                HttpResponseMessage response = client.SendAsync(request).Result;\n                if (response.IsSuccessStatusCode)\n                {\n                    return true;\n\n                }\n                else\n                {\n                    var errorMessage = response.Content.ReadAsStringAsync();\n                    string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                    this.LastFailureMessage = error;\n                    return false;\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/ExtensionManagement/GetListExtenison.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System.Net.Http;\nusing VstsRestAPI.Viewmodel.Extractor;\n\nnamespace VstsRestAPI.ExtensionManagement\n{\n    public class GetListExtenison : ApiServiceBase\n    {\n        public GetListExtenison(IConfiguration configuration) : base(configuration)\n        {\n        }\n\n        //GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=4.1-preview.1\n        public GetExtensions.ExtensionsList GetInstalledExtensions()\n        {\n            using(var client = GetHttpClient())\n            {\n                var request = _configuration.UriString + \"/_apis/extensionmanagement/installedextensions?api-version\" + _configuration.VersionNumber;\n                HttpResponseMessage response = client.GetAsync(request).Result;\n                if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                {\n                    string res = response.Content.ReadAsStringAsync().Result;\n                    GetExtensions.ExtensionsList extensionsList = JsonConvert.DeserializeObject<GetExtensions.ExtensionsList>(res);\n                    return extensionsList;\n                }\n                else{\n                    var errorMessage = response.Content.ReadAsStringAsync();\n                    string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                    this.LastFailureMessage = error;\n                    return new GetExtensions.ExtensionsList();\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Extractor/ClassificationNodes.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Net;\nusing System.Net.Http;\nusing VstsRestAPI.Viewmodel.Extractor;\n\nnamespace VstsRestAPI.Extractor\n{\n    public class ClassificationNodes : ApiServiceBase\n    {\n        public ClassificationNodes(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        // Get Iteration Count\n        public GetINumIteration.Iterations GetiterationCount()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(_configuration.UriString + _configuration.Project + \"/_apis/work/teamsettings/iterations?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        GetINumIteration.Iterations getINum = JsonConvert.DeserializeObject<GetINumIteration.Iterations>(result);\n                        return getINum;\n                    }\n                    else\n                    {\n                        string errorMessage = response.Content.ReadAsStringAsync().Result;\n                        LastFailureMessage = errorMessage;\n                        return new GetINumIteration.Iterations();\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetINumIteration.Iterations();\n        }\n\n        // Get Team List to write to file\n        public TeamList ExportTeamList(string defaultTeamId)\n        {\n            _ = new TeamList();\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(_configuration.UriString + \"/_apis/projects/\" + Project + \"/teams?api-version=\" + _configuration.VersionNumber).Result;\n                    if (!response.IsSuccessStatusCode || response.StatusCode != HttpStatusCode.OK)\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                    else\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        TeamList teamObj = JsonConvert.DeserializeObject<TeamList>(result);\n                        foreach (var team in teamObj.value)\n                        {\n                            if (team.id==defaultTeamId)\n                            {\n                                team.isDefault = \"true\";\n                            }\n                            else\n                            {\n                                team.isDefault = \"false\";\n                            }\n                        }\n                        return teamObj;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                LastFailureMessage = ex.Message;\n            }\n            return new TeamList();\n        }\n\n        /// <summary>\n        /// GET https://dev.azure.com/fabrikam/Fabrikam/Fabrikam Team/_apis/work/boards/{board}/columns?api-version=4.1\n        /// </summary>\n        public HttpResponseMessage ExportBoardColums(string boardType)\n        {\n            var response = new HttpResponseMessage();\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    response = client.GetAsync(string.Format(\"{0}/{1}/{2}/_apis/work/boards/{3}/columns?api-version={4}\", _configuration.UriString, _configuration.Project, _configuration.Team, boardType, _configuration.VersionNumber)).Result;\n                    return response;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return response;\n        }\n\n        // Export Board Rows to write file\n        //GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/rows?api-version=4.1\n        public ExportBoardRows.Rows ExportBoardRows(string boardType)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/{1}/{2}/_apis/work/boards/{3}/rows?api-version={4}\", _configuration.UriString, Project, Team, boardType, _configuration.VersionNumber)).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        ExportBoardRows.Rows rows = new ExportBoardRows.Rows();\n                        rows = JsonConvert.DeserializeObject<ExportBoardRows.Rows>(result);\n                        return rows;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                LastFailureMessage = ex.Message;\n            }\n            return new ExportBoardRows.Rows();\n        }\n\n        // Get Team setting\n        //GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings?api-version=4.1\n        public ExportTeamSetting.Setting ExportTeamSetting()\n        {\n            _ = new ExportTeamSetting.Setting();\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/{1}/{2}/_apis/work/teamsettings?api-version={3}\", _configuration.UriString, Project, Team, _configuration.VersionNumber)).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        ExportTeamSetting.Setting setting = JsonConvert.DeserializeObject<ExportTeamSetting.Setting>(result);\n                        return setting;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                LastFailureMessage = ex.Message;\n            }\n            return new ExportTeamSetting.Setting();\n        }\n\n        //Get Card Fields\n        //GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/cardsettings?api-version=4.1\n        public HttpResponseMessage ExportCardFields(string boardType)\n        {\n            using (var client = GetHttpClient())\n            {\n                HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/{1}/{2}/_apis/work/boards/{3}/cardsettings?api-version={4}\", _configuration.UriString, Project, Team, boardType, _configuration.VersionNumber)).Result;\n                return response;\n            }\n        }\n\n        //Export Card Styles\n        //GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/cardrulesettings?api-version=4.1\n        public HttpResponseMessage ExportCardStyle(string boardType)\n        {\n            using (var client = GetHttpClient())\n            {\n                HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/{1}/{2}/_apis/work/boards/{3}/cardrulesettings?api-version={4}\", _configuration.UriString, Project, Team, boardType, _configuration.VersionNumber)).Result;\n                return response;\n            }\n        }\n\n        // Get Iterations to write file\n        //GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations?api-version=4.1\n        public ExportedIterations.Iterations ExportIterationsToSave()\n        {\n            try\n            {\n                ExportIterations.Iterations viewModel = new ExportIterations.Iterations();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/{1}/_apis/work/teamsettings/iterations?api-version={2}\", _configuration.UriString, Project, _configuration.VersionNumber)).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        viewModel = JsonConvert.DeserializeObject<ExportIterations.Iterations>(result);\n                        ExportedIterations.Iterations iterations = new ExportedIterations.Iterations();\n                        List<ExportedIterations.Child> Listchild = new List<ExportedIterations.Child>();\n\n                        if (viewModel.count > 0)\n                        {\n                            foreach (var iteration in viewModel.value)\n                            {\n                                ExportedIterations.Child child = new ExportedIterations.Child();\n                                child.name = iteration.name;\n                                child.hasChildren = false;\n                                child.structureType = \"iteration\";\n                                Listchild.Add(child);\n                            }\n                            iterations.children = Listchild;\n                            iterations.hasChildren = true;\n                            iterations.name = _configuration.Project;\n                            iterations.structureType = \"iteration\";\n                            return iterations;\n                        }\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new ExportedIterations.Iterations();\n        }\n\n      //  GET https://dev.azure.com/{organization}/_apis/projects/{projectId}/teams?api-version=7.0\n\n        public HttpResponseMessage GetTeams()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/_apis/projects/{1}/teams?api-version={2}\", _configuration.UriString, ProjectId, \"7.0\")).Result;\n                    return response;\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new HttpResponseMessage();\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Extractor/GetBuildandReleaseDefs.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.BranchPolicy;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing VstsRestAPI.Viewmodel.Queue;\n\nnamespace VstsRestAPI.Extractor\n{\n    public class BuildandReleaseDefs : ApiServiceBase\n    {\n        public BuildandReleaseDefs(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        //https://d2a2v2.visualstudio.com/selenium2/_apis/build/definitions?api-version=4.1\n        // Get Build Definition count\n        public GetBuildDefResponse.BuildDef GetBuildDefCount()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(_configuration.UriString + \"/\" + Project + \"/_apis/build/definitions?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        GetBuildDefResponse.BuildDef getINum = JsonConvert.DeserializeObject<GetBuildDefResponse.BuildDef>(result);\n                        return getINum;\n                    }\n                    else\n                    {\n                        string errorMessage = response.Content.ReadAsStringAsync().Result;\n                        LastFailureMessage = errorMessage;\n                        return new GetBuildDefResponse.BuildDef();\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetBuildDefResponse.BuildDef();\n        }\n\n        //https://d2a2v2.vsrm.visualstudio.com/selenium2/_apis/release/definitions?api-version=4.1-preview.3\n        // Get Release Definition count\n        public GetReleaseDefResponse.ReleaseDef GetReleaseDefCount()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n\n                    HttpResponseMessage response = client.GetAsync(\"https://vsrm.dev.azure.com/\" + Account + \"//\" + Project + \"/_apis/release/definitions?api-version=4.1-preview.3\").Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        GetReleaseDefResponse.ReleaseDef getINum = JsonConvert.DeserializeObject<GetReleaseDefResponse.ReleaseDef>(result);\n                        return getINum;\n                    }\n                    else\n                    {\n                        string errorMessage = response.Content.ReadAsStringAsync().Result;\n                        LastFailureMessage = errorMessage;\n                        return new GetReleaseDefResponse.ReleaseDef();\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                LastFailureMessage = ex.Message;\n            }\n            return new GetReleaseDefResponse.ReleaseDef();\n        }\n\n        // Get Release Definition count\n        public GetReleaseDefResponse.ReleaseDef GetReleaseDef()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(Project + \"/_apis/release/definitions?api-version=4.1-preview.3\").Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        GetReleaseDefResponse.ReleaseDef getRelease = JsonConvert.DeserializeObject<GetReleaseDefResponse.ReleaseDef>(result);\n                        return getRelease;\n                    }\n                    else\n                    {\n                        string errorMessage = response.Content.ReadAsStringAsync().Result;\n                        LastFailureMessage = errorMessage;\n                        return new GetReleaseDefResponse.ReleaseDef();\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetReleaseDefResponse.ReleaseDef();\n        }\n\n        //Export build definitions to write file\n        public List<JObject> ExportBuildDefinitions()\n        {\n            try\n            {\n                List<JObject> resultList = new List<JObject>();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/_apis/build/definitions?api-version=\" + _configuration.VersionNumber, Project)).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        BuildDefinitionResponse.Build Definitions = Newtonsoft.Json.JsonConvert.DeserializeObject<BuildDefinitionResponse.Build>(response.Content.ReadAsStringAsync().Result.ToString());\n                        if (Definitions.count > 0)\n                        {\n                            foreach (BuildDefinitionResponse.Value value in Definitions.value)\n                            {\n                                BuildDefinitions.BuildDefinition DefinitionResult = new BuildDefinitions.BuildDefinition();\n                                using (var client1 = GetHttpClient())\n                                {\n                                    HttpResponseMessage ResponseDef = client1.GetAsync(string.Format(\"{0}/_apis/build/definitions/{1}?api-version=\" + _configuration.VersionNumber, Project, value.id)).Result;\n                                    if (response.IsSuccessStatusCode)\n                                    {\n                                        string result = ResponseDef.Content.ReadAsStringAsync().Result;\n                                        JObject o = JObject.Parse(result);\n                                        resultList.Add(o);\n                                    }\n                                }\n                            }\n                            return resultList;\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new List<JObject>();\n        }\n\n        // Get Repository list to create service end point json and import source code json\n        public RepositoryList.Repository GetRepoList()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(_configuration.UriString + \"/\" + Project + \"/_apis/git/repositories?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        RepositoryList.Repository repository = JsonConvert.DeserializeObject<RepositoryList.Repository>(result);\n                        return repository;\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new RepositoryList.Repository();\n        }\n\n        // Get Release Definition to write file - Generalizing\n        public List<JObject> GetReleaseDefs()\n        {\n            try\n            {\n                List<JObject> jobj = new List<JObject>();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(_configuration.UriString + \"/\" + Project + \"/_apis/release/definitions?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        ReleaseDefCountResponse.Release release = new ReleaseDefCountResponse.Release();\n                        string res = response.Content.ReadAsStringAsync().Result;\n                        release = JsonConvert.DeserializeObject<ReleaseDefCountResponse.Release>(res);\n                        if (release.count > 0)\n                        {\n                            foreach (var rel in release.value)\n                            {\n                                using (var clients = GetHttpClient())\n                                {\n                                    HttpResponseMessage resp = client.GetAsync(_configuration.UriString + \"/\" + Project + \"/_apis/release/definitions/\" + rel.id).Result;\n                                    if (resp.IsSuccessStatusCode && resp.StatusCode == System.Net.HttpStatusCode.OK)\n                                    {\n                                        JObject obj = new JObject();\n                                        string relRes = resp.Content.ReadAsStringAsync().Result;\n                                        obj = JsonConvert.DeserializeObject<JObject>(relRes);\n                                        jobj.Add(obj);\n                                    }\n                                    else\n                                    {\n                                        var errorMessage = response.Content.ReadAsStringAsync();\n                                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                                        this.LastFailureMessage = error;\n                                    }\n                                }\n                            }\n                            return jobj;\n                        }\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                    return new List<JObject>();\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new List<JObject>();\n        }\n\n        // Get Agent Queue to Replace the Queue name in the build definition\n        public Dictionary<string, int> GetQueues()\n        {\n            try\n            {\n                Dictionary<string, int> dictionaryQueues = new Dictionary<string, int>();\n                QueueModel viewModel = new QueueModel();\n\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(_configuration.Project + \"/_apis/distributedtask/queues?api-version=2.0-preview.1\").Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<QueueModel>().Result;\n                        if (viewModel != null && viewModel.value != null)\n                        {\n                            foreach (AgentQueueModel aq in viewModel.value)\n                            {\n                                dictionaryQueues[aq.name] = aq.id;\n                            }\n                        }\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n\n                return dictionaryQueues;\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new Dictionary<string, int>();\n        }\n\n        // Get Policy Types to Replace the policy type id placeholder in the Create Policy Request\n        public BranchPolicyTypes.PolicyTypes GetPolicyTypes()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(_configuration.UriString + \"/\" + Project + \"/_apis/policy/types?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        BranchPolicyTypes.PolicyTypes policyTypes = JsonConvert.DeserializeObject<BranchPolicyTypes.PolicyTypes>(result);\n                        return policyTypes;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new BranchPolicyTypes.PolicyTypes();\n        }\n        public bool CreateBranchPolicy(string json, string project)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, project + \"/_apis/policy/configurations?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"QueueBuild\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Extractor/GetWorkItemsCount.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing System.Linq;\nnamespace VstsRestAPI.Extractor\n{\n    public class GetWorkItemsCount : ApiServiceBase\n    {\n\n        public GetWorkItemsCount(IConfiguration configuration) : base(configuration)\n        {\n\n        }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        public class WIMapData\n        {\n            public string oldID { get; set; }\n            public string newID { get; set; }\n            public string WIType { get; set; }\n        }\n\n        /// <summary>\n        /// method to get list of work items\n        /// </summary>\n        /// <param name=\"workItemType\"></param>\n        /// <returns></returns>\n        public WorkItemFetchResponse.WorkItems GetWorkItemsfromSource(string workItemType)\n        {\n            GetWorkItemsResponse.Results viewModel = new GetWorkItemsResponse.Results();\n            WorkItemFetchResponse.WorkItems fetchedWIs;\n            try\n            {\n                // create wiql object\n                Object wiql = new\n                {\n                    query = \"SELECT [System.Id], [System.WorkItemType], [System.Title] FROM workitems\" +\n                            \" WHERE [System.TeamProject] = '\" + Project + \"'\" +\n                            \" AND [System.WorkItemType] = '\"+ workItemType + \"'\"\n                };\n                using (var client = GetHttpClient())\n                {\n                    var postValue = new StringContent(JsonConvert.SerializeObject(wiql), Encoding.UTF8, \"application/json\"); // mediaType needs to be application/json-patch+json for a patch call\n\n                    // set the httpmethod to Patch\n                    var method = new HttpMethod(\"POST\");\n\n                    // send the request               \n                    var request = new HttpRequestMessage(method, _configuration.UriString + \"/_apis/wit/wiql?api-version=\" + _configuration.VersionNumber) { Content = postValue };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        viewModel = response.Content.ReadAsAsync<GetWorkItemsResponse.Results>().Result;\n\n                        string workitemIDstoFetch = \"\"; int WICtr = 0;\n                        if (viewModel != null && viewModel.workItems.Count > 0)\n                        {\n                            foreach (GetWorkItemsResponse.Workitem WI in viewModel.workItems)\n                            {\n                                workitemIDstoFetch += WI.id + \",\";\n                                WICtr++;\n                            }\n                            workitemIDstoFetch = workitemIDstoFetch.TrimEnd(',');\n                            fetchedWIs = GetWorkItemsDetailInBatch(workitemIDstoFetch);\n                            return fetchedWIs;\n                        }\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                string error = ex.Message;\n                LastFailureMessage = error;\n            }\n            return new WorkItemFetchResponse.WorkItems();\n        }\n        /// <summary>\n        /// method to get work item data in detail\n        /// </summary>\n        /// <param name=\"workitemstoFetch\"></param>\n        /// <returns></returns>\n        public WorkItemFetchResponse.WorkItems GetWorkItemsDetailInBatch(string workitemstoFetch)\n        {\n            if (!string.IsNullOrEmpty(workitemstoFetch))\n            {\n                WorkItemFetchResponse.WorkItems viewModel = new WorkItemFetchResponse.WorkItems();\n                try\n                {\n                    using (var client = GetHttpClient())\n                    {\n                        HttpResponseMessage response = client.GetAsync(_configuration.UriString + \"/_apis/wit/workitems?api-version=\" + _configuration.VersionNumber + \"&ids=\" + workitemstoFetch + \"&$expand=relations\").Result;\n                        if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                        {\n                            viewModel = response.Content.ReadAsAsync<WorkItemFetchResponse.WorkItems>().Result;\n                        }\n                        else\n                        {\n                            var errorMessage = response.Content.ReadAsStringAsync();\n                            string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                            LastFailureMessage = error;\n                        }\n                    }\n                }\n                catch (Exception ex)\n                {\n                    logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                    string error = ex.Message;\n                    LastFailureMessage = error;\n                }\n                return viewModel;\n            }\n            return new WorkItemFetchResponse.WorkItems();\n        }\n        /// <summary>\n        /// Get All work item names\n        /// </summary>\n        /// <returns></returns>\n        public WorkItemNames.Names GetAllWorkItemNames()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/{1}/_apis/wit/workitemtypes?api-version={2}\", _configuration.UriString, _configuration.Project ,_configuration.VersionNumber)).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        WorkItemNames.Names workItemNames = JsonConvert.DeserializeObject<WorkItemNames.Names>(response.Content.ReadAsStringAsync().Result);\n                        return workItemNames;\n                    }\n                    else\n                    {\n                        return new WorkItemNames.Names();\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n                string error = ex.Message;\n                LastFailureMessage = error;\n            }\n            return new WorkItemNames.Names();\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Extractor/ProjectProperties.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Extractor\n{\n    public class ProjectProperties\n    {\n        public class Value\n        {\n            public string name { get; set; }\n            public string value { get; set; }\n        }\n\n        public class Properties\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n\n            public string TypeClass { get; set; }\n        }\n\n\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Extractor/VariableGroups.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.Extractor;\n\nnamespace VstsRestAPI.Extractor\n{\n    public class VariableGroups : ApiServiceBase\n    {\n        public VariableGroups(IConfiguration configuration) : base(configuration)\n        {\n        }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        public GetVariableGroups.Groups GetVariableGroups()\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    string req = string.Format(\"https://dev.azure.com/{0}/{1}/_apis/distributedtask/variablegroups?api-version={2}\", _configuration.AccountName, _configuration.Project, _configuration.VersionNumber);\n                    var response = client.GetAsync(req).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string res = response.Content.ReadAsStringAsync().Result;\n                        GetVariableGroups.Groups ress = JsonConvert.DeserializeObject<GetVariableGroups.Groups>(res);\n                        return ress;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetVariableGroups.Groups();\n        }\n\n        public GetVariableGroups.VariableGroupsCreateResponse PostVariableGroups(string json)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    string req = string.Format(\"https://dev.azure.com/{0}/{1}/_apis/distributedtask/variablegroups?api-version={2}\", _configuration.AccountName, _configuration.Project, _configuration.VersionNumber);\n\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, req) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string res1 = response.Content.ReadAsStringAsync().Result;\n                        GetVariableGroups.VariableGroupsCreateResponse ress = JsonConvert.DeserializeObject<GetVariableGroups.VariableGroupsCreateResponse>(res1);\n                        return ress;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                Console.WriteLine(ex.Message);\n            }\n            return new GetVariableGroups.VariableGroupsCreateResponse();\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Git/GitHubImportRepo.cs",
    "content": "﻿using System.Net;\nusing System.Net.Http;\nusing System.Text;\n\nnamespace VstsRestAPI.Git\n{\n    public class GitHubImportRepo : ApiServiceBase\n    {\n        public GitHubImportRepo(IConfiguration configuration) : base(configuration)\n        {\n        }\n\n        public HttpResponseMessage GetUserDetail()\n        {\n            //https://api.github.com/user\n            using (var client = GitHubHttpClient())\n            {\n                client.DefaultRequestHeaders.Add(\"User-Agent\", \"demogenapi\");\n                HttpResponseMessage response = client.GetAsync(\"/user\").Result;\n                if (response.IsSuccessStatusCode)\n                {\n                    return response;\n                }\n            }\n            return new HttpResponseMessage();\n        }\n\n        public HttpResponseMessage ForkRepo(string repoName)\n        {\n            HttpResponseMessage res = new HttpResponseMessage();\n            using (var client = GitHubHttpClient())\n            {\n                client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue(\"application/json\"));\n                client.DefaultRequestHeaders.Add(\"User-Agent\", _configuration.userName);\n                ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;\n\n                var jsonContent = new StringContent(\"\", Encoding.UTF8, \"application/json\");\n                var method = new HttpMethod(\"POST\");\n                //repos/octocat/Hello-World/forks\n                var request = new HttpRequestMessage(method, $\"repos/{repoName}/forks\") { Content = jsonContent };\n                res = client.SendAsync(request).Result;\n            }\n            return res;\n        }\n        public HttpResponseMessage ListForks(string repoName)\n        {\n            HttpResponseMessage res = new HttpResponseMessage();\n            using (var client = GitHubHttpClient())\n            {\n                client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue(\"application/json\"));\n                client.DefaultRequestHeaders.Add(\"User-Agent\", _configuration.userName);\n                ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;\n                var method = new HttpMethod(\"GET\");\n                /// repos /:owner /:repo / forks\n                var request = $\"repos/{repoName}/forks\";\n                res = client.GetAsync(request).Result;\n            }\n            return res;\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Git/Repository.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Linq;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.Repository;\n\nnamespace VstsRestAPI.Git\n{\n    public class Repository : ApiServiceBase\n    {\n        public Repository(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Get Source Code from Git Hub\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"project\"></param>\n        /// <param name=\"repositoryID\"></param>\n        /// <returns></returns>\n        public bool GetSourceCodeFromGitHub(string json, string project, string repositoryID)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, _configuration.UriString + project + \"/_apis/git/repositories/\" + repositoryID + \"/importRequests?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return response.IsSuccessStatusCode;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error ?? $\"Unable to import repository - {response.StatusCode} - {response.ReasonPhrase}\";\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"GetSourceCodeFromGitHub\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Delete the default repository\n        /// </summary>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n        public string GetRepositoryToDelete(string project)\n        {\n            try\n            {\n                GetAllRepositoriesResponse.Repositories viewModel = new GetAllRepositoriesResponse.Repositories();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(project + \"/_apis/git/repositories?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<GetAllRepositoriesResponse.Repositories>().Result;\n                        if (viewModel.value != null)\n                        {\n                            string repository = viewModel.value.Where(x => x.name == project).FirstOrDefault().id;\n                            return repository;\n                        }\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"GetRepositoryToDelete\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n\n            return string.Empty;\n        }\n\n        /// <summary>\n        ///Get Default repository to delete \n        /// </summary>\n        /// <param name=\"RepoName\"></param>\n        /// <returns></returns>\n        public string[] GetDefaultRepository(string RepoName)\n        {\n            try\n            {\n                string[] repo = new string[2];\n                GetAllRepositoriesResponse.Repositories viewModel = new GetAllRepositoriesResponse.Repositories();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(RepoName + \"/_apis/git/repositories?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<GetAllRepositoriesResponse.Repositories>().Result;\n                        if (viewModel.count > 0)\n                        {\n                            repo[0] = viewModel.value.FirstOrDefault().id;\n                            repo[1] = viewModel.value.FirstOrDefault().name;\n                        }\n                        return repo;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"GetDefaultRepository\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new string[] { };\n        }\n\n        /// <summary>\n        /// Get list of Repositories\n        /// </summary>\n        /// <returns></returns>\n        public GetAllRepositoriesResponse.Repositories GetAllRepositories()\n        {\n            try\n            {\n                GetAllRepositoriesResponse.Repositories viewModel = new GetAllRepositoriesResponse.Repositories();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(\"/_apis/git/repositories?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<GetAllRepositoriesResponse.Repositories>().Result;\n                        return viewModel;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"GetAllRepositories\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetAllRepositoriesResponse.Repositories();\n        }\n\n        /// <summary>\n        /// Creates Repository\n        /// </summary>\n        /// <param name=\"name\"></param>\n        /// <param name=\"projectId\"></param>\n        /// <returns></returns>\n        public string[] CreateRepository(string name, string projectId)\n        {\n            try\n            {\n                string[] repository = new string[2];\n                dynamic objJson = new System.Dynamic.ExpandoObject();\n                objJson.name = name;\n                objJson.project = new System.Dynamic.ExpandoObject();\n                objJson.project.id = projectId;\n                string json = Newtonsoft.Json.JsonConvert.SerializeObject(objJson);\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, _configuration.UriString + \"/_apis/git/repositories?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        var responseDetails = response.Content.ReadAsStringAsync().Result;\n                        JObject objResponse = JObject.Parse(responseDetails);\n                        repository[0] = objResponse[\"id\"].ToString();\n                        repository[1] = objResponse[\"name\"].ToString();\n                        return repository;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateRepository\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new string[] { };\n        }\n\n        /// <summary>\n        /// Delete repository\n        /// </summary>\n        /// <param name=\"repositoryId\"></param>\n        /// <returns></returns>\n        public bool DeleteRepository(string repositoryId)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var method = new HttpMethod(\"DELETE\");\n                    var request = new HttpRequestMessage(method, _configuration.UriString + Project + \"/_apis/git/repositories/\" + repositoryId + \"?api-version=\" + _configuration.VersionNumber);\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"DeleteRepository\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Create Pull Request\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"repositoryId\"></param>\n        /// <returns></returns>\n        public string[] CreatePullRequest(string json, string repositoryId)\n        {\n            try\n            {\n                if (!string.IsNullOrEmpty(repositoryId))\n                {\n                    string[] pullRequest = new string[2];\n\n                    using (var client = GetHttpClient())\n                    {\n                        var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                        var method = new HttpMethod(\"POST\");\n\n                        var request = new HttpRequestMessage(method, Project + \"/_apis/git/repositories/\" + repositoryId + \"/pullRequests?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                        var response = client.SendAsync(request).Result;\n\n                        if (response.IsSuccessStatusCode)\n                        {\n                            var responseDetails = response.Content.ReadAsStringAsync().Result;\n                            JObject objResponse = JObject.Parse(responseDetails);\n                            pullRequest[0] = objResponse[\"pullRequestId\"].ToString();\n                            pullRequest[1] = objResponse[\"title\"].ToString();\n                            return pullRequest;\n                        }\n                        else\n                        {\n                            var errorMessage = response.Content.ReadAsStringAsync();\n                            string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                            this.LastFailureMessage = error;\n                            return pullRequest;\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreatePullRequest\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new string[] { };\n        }\n\n        /// <summary>\n        /// Create Comment thread for pull request\n        /// </summary>\n        /// <param name=\"repositorId\"></param>\n        /// <param name=\"pullRequestId\"></param>\n        /// <param name=\"json\"></param>\n        /// <returns></returns>\n        public string CreateCommentThread(string repositorId, string pullRequestId, string json)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, Project + \"/_apis/git/repositories/\" + repositorId + \"/pullRequests/\" + pullRequestId + \"/threads?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        var responseDetails = response.Content.ReadAsStringAsync().Result;\n                        JObject objResponse = JObject.Parse(responseDetails);\n                        string id = objResponse[\"id\"].ToString();\n                        return id;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return string.Empty;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateCommentThread\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return string.Empty;\n        }\n\n        /// <summary>\n        /// Add Comment thread\n        /// </summary>\n        /// <param name=\"repositorId\"></param>\n        /// <param name=\"pullRequestId\"></param>\n        /// <param name=\"threadId\"></param>\n        /// <param name=\"json\"></param>\n        public void AddCommentToThread(string repositorId, string pullRequestId, string threadId, string json)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, Project + \"/_apis/git/repositories/\" + repositorId + \"/pullRequests/\" + pullRequestId + \"/threads/\" + threadId + \"/comments?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        var responseDetails = response.Content.ReadAsStringAsync().Result;\n                        JObject objResponse = JObject.Parse(responseDetails);\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"AddCommentToThread\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/IConfiguration.cs",
    "content": "﻿\nnamespace VstsRestAPI\n{\n    public interface IConfiguration\n    {\n        string PersonalAccessToken { get; set; }\n        string AccountName { get; set; }\n        string Project { get; set; }\n        string ProjectId { get; set; }\n        string UriString { get; set; }\n        string VersionNumber { get; set; }\n        string Id { get; set; }\n        string Team { get; set; }\n\n        string _gitbaseAddress { get; set; }\n        string _mediaType { get; set; }\n        string _scheme { get; set; }\n        string _gitcredential { get; set; }\n        string userName { get; set; }\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/JSON/CreateBuildDefination.json",
    "content": "{\n  \"name\": \"myDefinition\",\n  \"type\": \"build\",\n  \"quality\": \"definition\",\n  \"queue\": {\n    \"id\": 2\n  },\n  \"build\": [\n    {\n      \"enabled\": true,\n      \"continueOnError\": false,\n      \"alwaysRun\": false,\n      \"displayName\": \"Build solution **\\\\*.sln\",\n      \"task\": {\n        \"id\": \"71a9a2d3-a98a-4caa-96ab-affca411ecda\",\n        \"versionSpec\": \"*\"\n      },\n      \"inputs\": {\n        \"solution\": \"**\\\\*.sln\",\n        \"msbuildArgs\": \"\",\n        \"platform\": \"$(platform)\",\n        \"configuration\": \"$(config)\",\n        \"clean\": \"false\",\n        \"restoreNugetPackages\": \"true\",\n        \"vsLocationMethod\": \"version\",\n        \"vsVersion\": \"latest\",\n        \"vsLocation\": \"\",\n        \"msbuildLocationMethod\": \"version\",\n        \"msbuildVersion\": \"latest\",\n        \"msbuildArchitecture\": \"x86\",\n        \"msbuildLocation\": \"\",\n        \"logProjectEvents\": \"true\"\n      }\n    },\n    {\n      \"enabled\": true,\n      \"continueOnError\": false,\n      \"alwaysRun\": false,\n      \"displayName\": \"Test Assemblies **\\\\*test*.dll;-:**\\\\obj\\\\**\",\n      \"task\": {\n        \"id\": \"ef087383-ee5e-42c7-9a53-ab56c98420f9\",\n        \"versionSpec\": \"*\"\n      },\n      \"inputs\": {\n        \"testAssembly\": \"**\\\\*test*.dll;-:**\\\\obj\\\\**\",\n        \"testFiltercriteria\": \"\",\n        \"runSettingsFile\": \"\",\n        \"codeCoverageEnabled\": \"true\",\n        \"otherConsoleOptions\": \"\",\n        \"vsTestVersion\": \"14.0\",\n        \"pathtoCustomTestAdapters\": \"\"\n      }\n    }\n  ],\n  \"repository\": {\n    \"id\": \"278d5cd2-584d-4b63-824a-2ba458937249\",\n    \"type\": \"tfsgit\",\n    \"name\": \"Fabrikam-Fiber-Git\",\n    \"localPath\": \"$(sys.sourceFolder)/MyGitProject\",\n    \"defaultBranch\": \"refs/heads/master\",\n    \"url\": \"https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_git/Fabrikam-Fiber-Git\",\n    \"clean\": \"false\"\n  },\n  \"options\": [\n    {\n      \"enabled\": true,\n      \"definition\": {\n        \"id\": \"7c555368-ca64-4199-add6-9ebaf0b0137d\"\n      },\n      \"inputs\": {\n        \"parallel\": \"false\",\n        \"multipliers\": \"[\\\"config\\\",\\\"platform\\\"]\"\n      }\n    }\n  ],\n  \"variables\": {\n    \"forceClean\": {\n      \"value\": \"false\",\n      \"allowOverride\": true\n    },\n    \"config\": {\n      \"value\": \"debug, release\",\n      \"allowOverride\": true\n    },\n    \"platform\": {\n      \"value\": \"any cpu\",\n      \"allowOverride\": true\n    }\n  },\n  \"triggers\": [],\n  \"comment\": \"my first definition\"\n}"
  },
  {
    "path": "src/VstsRestAPI/JSON/CreateTeam.json",
    "content": "{\n    \"name\": {string},\n    \"description\": {string}\n}"
  },
  {
    "path": "src/VstsRestAPI/JSON/CreateTeamProject.json",
    "content": "{\n  \"name\": \"FabrikamTravel\",\n  \"description\": \"Frabrikam travel app for Windows Phone\",\n  \"capabilities\": {\n    \"versioncontrol\": {\n      \"sourceControlType\": \"Git\"\n    },\n    \"processTemplate\": {\n      \"templateTypeId\": \"6b724908-ef14-45cf-84f8-768b5384da45\"\n    }\n  }"
  },
  {
    "path": "src/VstsRestAPI/JSON/GetRepository.json",
    "content": "{\n  \"parameters\":\n    {\n      \"gitSource\":\n        {\n          \"url\": \"https://github.com/srinudhulipalla/NotepadPlus.git\"\n        },\n      \"serviceEndpointId\": \"\",\n      \"deleteServiceEndpointAfterImportIsDone\": true\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/JSON/ReleaseDefination.json",
    "content": "{\n  \"name\": \"TestRelease\",\n  \"environments\": [\n    {\n      \"name\": \"Dev\",\n      \"queueId\": 2,\n      \"rank\": 1,\n      \"preDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true\n          }\n        ]\n      },\n      \"postDeployApprovals\": {\n        \"approvals\": [\n          {\n            \"rank\": 1,\n            \"isAutomated\": true\n          }\n        ]\n      },\n      \"deployStep\": {\n        \"tasks\": []\n      }\n    }\n  ]\n}"
  },
  {
    "path": "src/VstsRestAPI/JSON/WorkItem.json",
    "content": "[\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.Title\",\n    \"value\": \"New Work Item\"\n  },\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.CreatedDate\",\n    \"value\": \"6/1/2016\"\n  },\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.CreatedBy\",\n    \"value\": \"Bharath ym\"\n  },\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.History\",\n    \"value\": \"Jim has the most context around this.\"\n  }\n]"
  },
  {
    "path": "src/VstsRestAPI/JSON/WorkItemNew.json",
    "content": "﻿[\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"This is parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Description\",\n        \"value\": \"This is the description of parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-1\"\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$User Story?api-version=2.2\"\n  },\n  {\n    \"body\": [\n      {\n        \"op\": \"add\",\n        \"path\": \"/fields/System.Title\",\n        \"value\": \"Task 1 for implemeting parent requirement 4\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/id\",\n        \"value\": \"-2\"\n      },\n      {\n        \"op\": \"add\",\n        \"path\": \"/relations/-\",\n        \"value\": {\n          \"rel\": \"System.LinkTypes.Hierarchy-Reverse\",\n          \"url\": \"/_apis/wit/workitems/-1\"\n        }\n      }\n    ],\n    \"headers\": { \"Content-Type\": \"application/json-patch+json\" },\n    \"method\": \"PATCH\",\n    \"uri\": \"/_apis/wit/workitems/$Task?api-version=2.2\"\n  }\n]\n"
  },
  {
    "path": "src/VstsRestAPI/ProjectsAndTeams/Accounts.cs",
    "content": "﻿using log4net;\nusing System;\nusing System.Net.Http;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\n\nnamespace VstsRestAPI.ProjectsAndTeams\n{\n    public class Accounts : ApiServiceBase\n    {\n        public Accounts(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Get Account members\n        /// </summary>\n        /// <param name=\"accountName\"></param>\n        /// <param name=\"accessToken\"></param>\n        /// <returns></returns>\n        public AccountMembers.Account GetAccountMembers(string accountName, string accessToken)\n        {\n            try\n            {\n                AccountMembers.Account viewModel = new AccountMembers.Account();\n                using (var client = GetHttpClient())\n                {\n                    // connect to the REST endpoint            \n                    HttpResponseMessage response = client.GetAsync(\"/_apis/userentitlements?api-version=\" + _configuration.VersionNumber).Result;\n\n                    // check to see if we have a succesfull respond\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<AccountMembers.Account>().Result;\n                    }\n                    return viewModel;\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateReleaseDefinition\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new AccountMembers.Account();\n        }\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/ProjectsAndTeams/GetAllGroups.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.ProjectsAndTeams\n{\n    public class GetAllGroups\n    {\n        public class Value\n        {\n            public string subjectKind { get; set; }\n            public string description { get; set; }\n            public string domain { get; set; }\n            public string principalName { get; set; }\n            public object mailAddress { get; set; }\n            public string displayName { get; set; }\n            public string url { get; set; }\n            public string descriptor { get; set; }\n        }\n\n        public class GroupList\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/ProjectsAndTeams/Projects.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Linq;\nusing System.Net;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Extractor;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\n\n\n\nnamespace VstsRestAPI.ProjectsAndTeams\n{\n    public class Projects : ApiServiceBase\n    {\n        public Projects(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Check for the existance of project\n        /// </summary>\n        /// <returns></returns>\n        public bool IsAccountHasProjects()\n        {\n            using (var client = GetHttpClient())\n            {\n                // connect to the REST endpoint            \n                HttpResponseMessage response = client.GetAsync(\"_apis/projects?stateFilter=All&api-version=\" + _configuration.VersionNumber).Result;\n                // check to see if we have a succesfull respond\n                return response.StatusCode == System.Net.HttpStatusCode.OK;\n            }\n            // return false;\n        }\n\n        /// <summary>\n        /// Get List of project\n        /// </summary>\n        /// <returns></returns>\n        public HttpResponseMessage GetListOfProjects()\n        {\n            try\n            {\n                ProjectsResponse.ProjectResult viewModel = new ProjectsResponse.ProjectResult();\n                using (var client = GetHttpClient())\n                {\n                    // connect to the REST endpoint            \n                    HttpResponseMessage response = client.GetAsync(_configuration.UriString + \"/_apis/projects?stateFilter=wellFormed&$top=1000&api-version=\" + _configuration.VersionNumber).Result;\n                    // check to see if we have a succesfull respond\n                    return response;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new HttpResponseMessage(HttpStatusCode.InternalServerError);\n        }\n\n        /// <summary>\n        /// Create team project\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <returns></returns>\n        public string CreateTeamProject(string json)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, \"_apis/projects?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.Accepted)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        string projectId = JObject.Parse(result)[\"id\"].ToString();\n                        return projectId;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = string.Empty;\n                        if (response.StatusCode.ToString() == \"Unauthorized\")\n                        {\n                            error = errorMessage.Result;\n                        }\n                        else\n                        {\n                            error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        }\n                        LastFailureMessage = error;\n                        logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + error + \"\\n\");\n                        return \"-1\";\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return \"-1\";\n        }\n\n        /// <summary>\n        /// Get Project id\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public string GetProjectIdByName(string projectName)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(\"_apis/projects/\" + projectName + \"?includeCapabilities=false&api-version=\" + _configuration.VersionNumber).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        string projectId = JObject.Parse(result)[\"id\"].ToString();\n                        return projectId;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return Guid.Empty.ToString();\n        }\n\n        /// <summary>\n        /// Get project to know the status of the project\n        /// </summary>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n        public string GetProjectStateByName(string project)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(\"_apis/projects/\" + project + \"?includeCapabilities=true&api-version=\" + _configuration.VersionNumber).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        string projectStatus = JObject.Parse(result)[\"state\"].ToString();\n                        return projectStatus;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (TimeoutException timeout)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t Time out: \" + timeout.Message + \"\\t\" + \"\\n\" + timeout.StackTrace + \"\\n\");\n            }\n            catch (OperationCanceledException opcan)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t Operation Cancelled: \" + opcan.Message + \"\\t\" + \"\\n\" + opcan.StackTrace + \"\\n\");\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return string.Empty;\n        }\n\n        public ProjectProperties.Properties GetProjectProperties()\n        {\n            try\n            {\n                ProjectProperties.Properties load = new ProjectProperties.Properties();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(_configuration.UriString + \"/_apis/projects/\" + ProjectId + \"/properties?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == HttpStatusCode.OK)\n                    {\n                        string res = response.Content.ReadAsStringAsync().Result;\n                        load = JsonConvert.DeserializeObject<ProjectProperties.Properties>(res);\n                        GetProcessTemplate.PTemplate template = new GetProcessTemplate.PTemplate();\n\n                        string processTypeId = string.Empty;\n                        var processTypeID = load.value.Where(x => x.name == \"System.ProcessTemplateType\").FirstOrDefault();\n                        if (processTypeID != null)\n                        {\n                            processTypeId = processTypeID.value;\n                        }\n                        using (var client1 = GetHttpClient())\n                        {\n                            HttpResponseMessage response1 = client1.GetAsync(_configuration.UriString + \"/_apis/work/processes/\" + processTypeId + \"?api-version=\" + _configuration.VersionNumber).Result;\n                            if (response1.IsSuccessStatusCode && response.StatusCode == HttpStatusCode.OK)\n                            {\n                                string templateData = response1.Content.ReadAsStringAsync().Result;\n                                template = JsonConvert.DeserializeObject<GetProcessTemplate.PTemplate>(templateData);\n                                load.TypeClass = template.properties.Class;\n                                load.value.Where(x => x.name == \"System.Process Template\").FirstOrDefault().value = template.name;\n                                return load;\n                            }\n                            else\n                            {\n                                var errorMessage = response1.Content.ReadAsStringAsync();\n                                string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                                this.LastFailureMessage = error;\n                                return new ProjectProperties.Properties();\n                            }\n                        }\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new ProjectProperties.Properties();\n        }\n\n\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/ProjectsAndTeams/TeamIteration.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.ProjectsAndTeams\n{\n    public class TeamIterations\n    {\n        public class TeamIteration\n        {\n            public string TeamName { get; set; }\n            public List<string> Iterations { get; set; }\n        }\n        public class Map\n        {\n            public List<TeamIteration> TeamIterationMap { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/ProjectsAndTeams/Teams.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\n\nnamespace VstsRestAPI.ProjectsAndTeams\n{\n    public class Teams : ApiServiceBase\n    {\n        public Teams(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Create teams\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n        public GetTeamResponse.Team CreateNewTeam(string json, string project)\n        {\n            try\n            {\n                using (HttpClient client = GetHttpClient())\n                {\n                    // serialize the fields array into a json string  \n                    //var patchValue = new StringContent(JsonConvert.SerializeObject(team), Encoding.UTF8, \"application/json\");\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, client.BaseAddress + \"/_apis/projects/\" + project + \"/teams?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        GetTeamResponse.Team viewModel = new GetTeamResponse.Team();\n                        viewModel = response.Content.ReadAsAsync<GetTeamResponse.Team>().Result;\n                        return viewModel;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t CreateNewTeam \\t\" + response.Content.ReadAsStringAsync().Result);\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetTeamResponse.Team();\n        }\n\n        /// <summary>\n        /// Get Team members\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"teamaName\"></param>\n        /// <returns></returns>\n        public TeamMemberResponse.TeamMembers GetTeamMembers(string projectName, string teamaName)\n        {\n            try\n            {\n                using (HttpClient client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(\"_apis/projects/\" + projectName + \"/teams/\" + teamaName + \"/members/?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        TeamMemberResponse.TeamMembers viewModel = new TeamMemberResponse.TeamMembers();\n                        viewModel = response.Content.ReadAsAsync<TeamMemberResponse.TeamMembers>().Result;\n                        return viewModel;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t GetTeamMembers \\t\" + response.Content.ReadAsStringAsync().Result);\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t GetTeamMembers \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new TeamMemberResponse.TeamMembers();\n        }\n\n        /// <summary>\n        /// Create Area\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"areaName\"></param>\n        /// <returns></returns>\n        public string CreateArea(string projectName, string areaName)\n        {\n            try\n            {\n                object node = new { name = areaName };\n                using (HttpClient client = GetHttpClient())\n                {\n                    // serialize the fields array into a json string  \n                    //var patchValue = new StringContent(JsonConvert.SerializeObject(team), Encoding.UTF8, \"application/json\");\n                    var jsonContent = new StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(node), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, projectName + \"/_apis/wit/classificationNodes/areas?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string createdAreaName = string.Empty;\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        JObject jobj = JObject.Parse(result);\n                        createdAreaName = jobj[\"name\"].ToString();\n                        return createdAreaName;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t CreateArea \\t\" + response.Content.ReadAsStringAsync().Result);\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t CreateArea \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return string.Empty;\n        }\n\n        /// <summary>\n        /// Assign areas for teams\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"teamName\"></param>\n        /// <param name=\"json\"></param>\n        /// <returns></returns>\n        public bool SetAreaForTeams(string projectName, string teamName, string json)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var patchValue = new StringContent(json, Encoding.UTF8, \"application/json\");\n\n                    var method = new HttpMethod(\"PATCH\");\n\n                    var request = new HttpRequestMessage(method, projectName + \"/\" + teamName + \"/_apis/work/teamsettings/teamfieldvalues?api-version=\" + _configuration.VersionNumber) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t SetAreaForTeams \\t\" + response.Content.ReadAsStringAsync().Result);\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t SetAreaForTeams \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Get team setting\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public string GetTeamSetting(string projectName)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(projectName + \"/_apis/work/teamsettings?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        TeamSettingResponse.TeamSetting viewModel = new TeamSettingResponse.TeamSetting();\n                        viewModel = response.Content.ReadAsAsync<TeamSettingResponse.TeamSetting>().Result;\n                        return viewModel.backlogIteration.id;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t SetAreaForTeams \\t\" + response.Content.ReadAsStringAsync().Result);\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t SetAreaForTeams \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return string.Empty;\n        }\n\n        /// <summary>\n        /// Set Iteration for team\n        /// </summary>\n        /// <param name=\"iterationId\"></param>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"teamName\"></param>\n        /// <returns></returns>\n        public bool SetBackLogIterationForTeam(string iterationId, string projectName, string teamName)\n        {\n            try\n            {\n                object objJSON = new { Backlogiteration = iterationId };\n                using (var client = GetHttpClient())\n                {\n                    var postValue = new StringContent(JsonConvert.SerializeObject(objJSON), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"PATCH\");\n                    var request = new HttpRequestMessage(method, projectName + \"/\" + teamName + \"/_apis/work/teamsettings?api-version=\" + _configuration.VersionNumber) { Content = postValue };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t SetBackLogIterationForTeam \\t\" + response.Content.ReadAsStringAsync().Result);\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t SetBackLogIterationForTeam \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Get All Iterations\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public TeamIterationsResponse.Iterations GetAllIterations(string projectName)\n        {\n            try\n            {\n                TeamIterationsResponse.Iterations viewModel = new TeamIterationsResponse.Iterations();\n                using (var client = GetHttpClient())\n                {\n                    //https://dev.azure.com/abcdcentralus/dp-05/_apis/wit/classificationnodes?$depth=1&api-version=5.0-preview.2\n                    //HttpResponseMessage response = client.GetAsync(projectName + \"/_apis/work/teamsettings/iterations?api-version=\" + _configuration.VersionNumber).Result;\n                    HttpResponseMessage response = client.GetAsync(projectName + \"/_apis/wit/classificationnodes?$depth=1&api-version=5.0-preview.2\").Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<TeamIterationsResponse.Iterations>().Result;\n                        return viewModel;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t GetAllIterations \\t\" + response.Content.ReadAsStringAsync().Result);\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t GetAllIterations \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new TeamIterationsResponse.Iterations();\n        }\n\n        /// <summary>\n        /// Set Iteration for team\n        /// </summary>\n        /// <param name=\"IterationId\"></param>\n        /// <param name=\"teamName\"></param>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public bool SetIterationsForTeam(string IterationId, string teamName, string projectName)\n        {\n            try\n            {\n                object objJSON = new { id = IterationId };\n\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(JsonConvert.SerializeObject(objJSON), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, _configuration.UriString + projectName + \"/\" + teamName + \"/_apis/work/teamsettings/iterations?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t SetIterationsForTeam \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Get Team details by Team name\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"teamaName\"></param>\n        /// <returns></returns>\n        public TeamResponse GetTeamByName(string projectName, string teamaName)\n        {\n            try\n            {\n                TeamResponse viewModel = new TeamResponse();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(\"_apis/projects/\" + projectName + \"/teams/\" + teamaName + \"?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<TeamResponse>().Result;\n                        return viewModel;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t GetTeamByName \\t\" + response.Content.ReadAsStringAsync().Result);\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t GetTeamByName \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new TeamResponse();\n        }\n        /// <summary>\n        /// Update team areas\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"json\"></param>\n        /// <returns></returns>\n        public bool UpdateTeamsAreas(string projectName, string json)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var patchValue = new StringContent(json, Encoding.UTF8, \"application/json\");\n\n                    var method = new HttpMethod(\"PATCH\");\n\n                    var request = new HttpRequestMessage(method, _configuration.UriString + projectName + \"/\" + projectName + \"%20Team/_apis/work/teamsettings/teamfieldvalues?api-version=\" + _configuration.VersionNumber) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t GetTeamByName \\t\" + response.Content.ReadAsStringAsync().Result);\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t GetTeamByName \\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/Properties/AssemblyInfo.cs",
    "content": "﻿using System.Reflection;\nusing System.Runtime.CompilerServices;\nusing System.Runtime.InteropServices;\n\n// General Information about an assembly is controlled through the following \n// set of attributes. Change these attribute values to modify the information\n// associated with an assembly.\n[assembly: AssemblyTitle(\"VstsRestAPI\")]\n[assembly: AssemblyDescription(\"\")]\n[assembly: AssemblyConfiguration(\"\")]\n[assembly: AssemblyCompany(\"\")]\n[assembly: AssemblyProduct(\"VstsRestAPI\")]\n[assembly: AssemblyCopyright(\"Copyright ©  2016\")]\n[assembly: AssemblyTrademark(\"\")]\n[assembly: AssemblyCulture(\"\")]\n\n// Setting ComVisible to false makes the types in this assembly not visible \n// to COM components.  If you need to access a type in this assembly from \n// COM, set the ComVisible attribute to true on that type.\n[assembly: ComVisible(false)]\n\n// The following GUID is for the ID of the typelib if this project is exposed to COM\n[assembly: Guid(\"28ed6b24-ddc2-4d73-b243-b389c28bb4ef\")]\n\n// Version information for an assembly consists of the following four values:\n//\n//      Major Version\n//      Minor Version \n//      Build Number\n//      Revision\n//\n// You can specify all the values or you can default the Build and Revision Numbers \n// by using the '*' as shown below:\n// [assembly: AssemblyVersion(\"1.0.*\")]\n[assembly: AssemblyVersion(\"1.0.0.0\")]\n[assembly: AssemblyFileVersion(\"1.0.0.0\")]\n"
  },
  {
    "path": "src/VstsRestAPI/QueriesAndWidgets/Queries.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Net.Http;\nusing System.Text;\nusing System.Threading;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing VstsRestAPI.Viewmodel.QueriesAndWidgets;\n\nnamespace VstsRestAPI.QueriesAndWidgets\n{\n    public class Queries : ApiServiceBase\n    {\n        public Queries(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n\n        /// <summary>\n        /// Get Existing Dashboard by ID\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public string GetDashBoardId(string projectName, string teamName = null)\n        {\n            try\n            {\n                string dashBoardId = string.Empty;\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = new HttpResponseMessage();\n                    if (string.IsNullOrEmpty(teamName))\n                    {\n                        response = client.GetAsync(projectName + \"/\" + projectName + \"%20Team/_apis/dashboard/dashboards?api-version=\" + _configuration.VersionNumber).Result;\n                    }\n                    else\n                    {\n                        response = client.GetAsync(projectName + \"/\" + teamName + \"/_apis/dashboard/dashboards?api-version=\" + _configuration.VersionNumber).Result;\n                    }\n                    if (response.IsSuccessStatusCode)\n                    {\n                        DashboardResponse.Dashboard dashBoard = response.Content.ReadAsAsync<DashboardResponse.Dashboard>().Result;\n                        if (dashBoard.dashboardEntries.Length >= 0)\n                        {\n                            dashBoardId = dashBoard.dashboardEntries[0].id;\n                        }\n                        return dashBoardId;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return dashBoardId;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return string.Empty;\n        }\n\n        /// <summary>\n        /// Create Query in shared query folder\n        /// </summary>\n        /// <param name=\"project\"></param>\n        /// <param name=\"json\"></param>\n        /// <returns></returns>\n        public QueryResponse CreateQuery(string project, string json, string teamName = null)\n        {\n            try\n            {\n                QueryResponse result = new QueryResponse();\n                using (var clientParent = GetHttpClient())\n                {\n                    //Since we were getting errors like \"you do not have access to shared query folder\", based on MS team guidence added GET call before POST request\n                    //Adding delay to generate Shared Query model in Azure DevOps\n                    HttpResponseMessage ResponseParent = clientParent.GetAsync(project + \"/_apis/wit/queries?api-version=\" + _configuration.VersionNumber).Result;\n                    Thread.Sleep(2000);\n                    if (ResponseParent.IsSuccessStatusCode && ResponseParent.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        using (var client = GetHttpClient())\n                        {\n                            var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                            var method = new HttpMethod(\"POST\");\n                            HttpRequestMessage request = new HttpRequestMessage();\n                            request = new HttpRequestMessage(method, project + \"/_apis/wit/queries/Shared%20Queries?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                            if (!string.IsNullOrEmpty(teamName))\n                            {\n                                request = new HttpRequestMessage(method, project + \"/_apis/wit/queries/Shared%20Queries/\" + teamName + \"?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                            }\n                            var response = client.SendAsync(request).Result;\n                            if (response.IsSuccessStatusCode)\n                            {\n                                result = response.Content.ReadAsAsync<QueryResponse>().Result;\n                                return result;\n                            }\n                            else\n                            {\n                                var errorMessage = response.Content.ReadAsStringAsync();\n                                string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                                this.LastFailureMessage = error;\n                                return new QueryResponse();\n                            }\n                        }\n                    }\n                }\n                return result;\n            }\n            catch (OperationCanceledException opr)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t OperationCanceledException: \" + opr.Message + \"\\n\" + opr.StackTrace + \"\\n\");\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new QueryResponse();\n        }\n\n        /// <summary>\n        /// Update existing query which are there in the Current Sprint folder\n        /// </summary>\n        /// <param name=\"query\"></param>\n        /// <param name=\"project\"></param>\n        /// <param name=\"json\"></param>\n        /// <returns></returns>\n        public bool UpdateQuery(string query, string project, string json)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var patchValue = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"PATCH\");\n\n                    var request = new HttpRequestMessage(method, string.Format(\"{0}/_apis/wit/queries/{1}?api-version=\" + _configuration.VersionNumber, project, query)) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        string msg = response.Content.ReadAsStringAsync().Result;\n                        logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + msg + \"\\n\");\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Get Query by path and Query Name\n        /// </summary>\n        /// <param name=\"project\"></param>\n        /// <param name=\"queryName\"></param>\n        /// <param name=\"path\"></param>\n        /// <returns></returns>\n        public QueryResponse GetQueryByPathAndName(string project, string queryName, string path)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(project + \"/_apis/wit/queries/\" + path + \"/\" + queryName + \"?api-version=\" + _configuration.VersionNumber).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        QueryResponse query = response.Content.ReadAsAsync<QueryResponse>().Result;\n                        return query;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n\n            return new QueryResponse();\n        }\n\n        /// <summary>\n        /// Delete default dashboard since new dasboard will be create with the same name\n        /// </summary>\n        /// <param name=\"project\"></param>\n        /// <param name=\"dashBoardId\"></param>\n        /// <returns></returns>\n        public bool DeleteDefaultDashboard(string project, string dashBoardId, string teamName = null)\n        {\n            try\n            {\n                if (dashBoardId != \"\")\n                {\n                    using (var client = GetHttpClient())\n                    {\n                        var method = new HttpMethod(\"DELETE\");\n                        HttpRequestMessage request;\n                        request = new HttpRequestMessage(method, project + \"/\" + project + \"%20Team/_apis/dashboard/dashboards/\" + dashBoardId + \"?api-version=\" + _configuration.VersionNumber);\n                        if (!string.IsNullOrEmpty(teamName))\n                        {\n                            request = new HttpRequestMessage(method, project + \"/\" + teamName + \"/_apis/dashboard/dashboards/\" + dashBoardId + \"?api-version=\" + _configuration.VersionNumber);\n                        }\n                        var response = client.SendAsync(request).Result;\n\n                        if (response.IsSuccessStatusCode)\n                        {\n                            return true;\n                        }\n                        else\n                        {\n                            dynamic responseForInvalidStatusCode = response.Content.ReadAsAsync<dynamic>();\n                            Newtonsoft.Json.Linq.JContainer msg = responseForInvalidStatusCode.Result;\n                            return false;\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Create new dashboard\n        /// </summary>\n        /// <param name=\"project\"></param>\n        /// <param name=\"json\"></param>\n        /// <returns></returns>\n        public string CreateNewDashBoard(string project, string json, string teamName = null)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    //var jsonContent = new StringContent(JsonConvert.SerializeObject(json), Encoding.UTF8, \"application/json\");\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, project + \"/\" + project + \"%20Team/_apis/dashboard/dashboards?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    if (!string.IsNullOrEmpty(teamName))\n                    {\n                        request = new HttpRequestMessage(method, project + \"/\" + teamName + \"/_apis/dashboard/dashboards?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    }\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        var details = response.Content.ReadAsStringAsync().Result;\n                        string dashBoardId = JObject.Parse(details)[\"id\"].ToString();\n                        return dashBoardId;\n\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return string.Empty;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return string.Empty;\n        }\n\n        public GetQueries.Queries GetQueriesWiql()\n        {\n            try\n            {\n                //https://dev.azure.com/balajida/sss12/_apis/wit/queries?$expand=wiql&$depth=2&api-version=4.1\n                using (var client = GetHttpClient())\n                {\n                    string request = string.Format(\"{0}{1}/_apis/wit/queries?$expand=wiql&$depth=2&{2}\", _configuration.UriString, Project, _configuration.VersionNumber);\n                    HttpResponseMessage response = client.GetAsync(request).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        string res = response.Content.ReadAsStringAsync().Result;\n                        GetQueries.Queries getQueries = JsonConvert.DeserializeObject<GetQueries.Queries>(res);\n                        return getQueries;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                        return new GetQueries.Queries();\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetQueries.Queries();\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Queues/Queue.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.Queue;\n\nnamespace VstsRestAPI.Queues\n{\n    public class Queue : ApiServiceBase\n    {\n        public Queue(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Get Agent queue\n        /// </summary>\n        /// <returns></returns>\n        public Dictionary<string, int> GetQueues()\n        {\n            try\n            {\n                Dictionary<string, int> dicQueues = new Dictionary<string, int>();\n                QueueModel viewModel = new QueueModel();\n\n                using (var client = GetHttpClient())\n                {\n                    string req = _configuration.UriString + _configuration.Project + \"/_apis/distributedtask/queues?api-version=\" + _configuration.VersionNumber;\n                    HttpResponseMessage response = client.GetAsync(req).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<QueueModel>().Result;\n                        if (viewModel != null && viewModel.value != null)\n                        {\n                            foreach (AgentQueueModel aq in viewModel.value)\n                            {\n                                dicQueues[aq.name] = aq.id;\n                            }\n                        }\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n\n                return dicQueues;\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateReleaseDefinition\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new Dictionary<string, int>();\n        }\n        /// <summary>\n        /// Create Agent Queue by queue name\n        /// </summary>\n        /// <param name=\"name\"></param>\n        /// <returns></returns>\n        public int CreateQueue(string name)\n        {\n            try\n            {\n                AgentQueueModel viewModel = new AgentQueueModel\n                {\n                    name = name\n                };\n\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(JsonConvert.SerializeObject(viewModel), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, _configuration.Project + \"/_apis/distributedtask/queues?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<AgentQueueModel>().Result;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n\n                return viewModel.id;\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateReleaseDefinition\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return 0;\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Service/ServiceEndPoint.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.Extractor;\nusing VstsRestAPI.Viewmodel.Service;\n\nnamespace VstsRestAPI.Service\n{\n    public class ServiceEndPoint : ApiServiceBase\n    {\n        public ServiceEndPoint(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Create service endpoints\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n        public ServiceEndpointModel CreateServiceEndPoint(string json, string project)\n        {\n            try\n            {\n                ServiceEndpointModel viewModel = new ServiceEndpointModel();\n\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, project + \"/_apis/distributedtask/serviceendpoints?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<ServiceEndpointModel>().Result;\n                        return viewModel;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateServiceEndPoint\" + \"\\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new ServiceEndpointModel();\n        }\n\n        public GetServiceEndpoints.ServiceEndPoint GetServiceEndPoints()\n        {\n            try\n            {\n                //https://dev.azure.com/exakshay/endpoint/_apis/serviceendpoint/endpoints?api-version=4.1-preview.1\n                using (var client = GetHttpClient())\n                {\n                    var request = string.Format(\"{0}{1}/_apis/serviceendpoint/endpoints?api-version={2}\", _configuration.UriString, Project, _configuration.VersionNumber);\n                    HttpResponseMessage response = client.GetAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string res = response.Content.ReadAsStringAsync().Result;\n                        GetServiceEndpoints.ServiceEndPoint serviceEndPoint = JsonConvert.DeserializeObject<GetServiceEndpoints.ServiceEndPoint>(res);\n                        return serviceEndPoint;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"GetServiceEndPoints\" + \"\\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetServiceEndpoints.ServiceEndPoint();\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Services/HttpServices.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Net.Http;\nusing System.Net.Http.Headers;\nusing System.Text;\n\nnamespace VstsRestAPI.Services\n{\n    public class HttpServices\n    {\n        private Configuration oConfiguration = new Configuration();\n        public HttpServices(Configuration config)\n        {\n            oConfiguration.UriString = config.UriString;\n            oConfiguration.Project = config.Project;\n            oConfiguration.PersonalAccessToken = Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(string.Format(\"{0}:{1}\", \"\", config.PersonalAccessToken)));//configuration.PersonalAccessToken;\n\n            oConfiguration.UriParams = config.UriParams;\n            oConfiguration.RequestBody = config.RequestBody;\n            oConfiguration.VersionNumber = config.VersionNumber;\n\n        }\n\n        public HttpResponseMessage PatchBasic()\n        {\n            HttpResponseMessage oHttpResponseMessage = new HttpResponseMessage();\n            using (var client = new HttpClient())\n            {\n                client.DefaultRequestHeaders.Accept.Clear();\n                client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(\"application/json\"));\n                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(\"Basic\", oConfiguration.PersonalAccessToken);\n                var patchValue = new StringContent(oConfiguration.RequestBody, Encoding.UTF8, \"application/json-patch+json\"); // mediaType needs to be application/json-patch+json for a patch call\n                var request = new HttpRequestMessage(new HttpMethod(\"PATCH\"), oConfiguration.UriString + \"/\" + oConfiguration.Project + oConfiguration.UriParams + oConfiguration.VersionNumber) { Content = patchValue };\n                oHttpResponseMessage = client.SendAsync(request).Result;\n            }\n            return oHttpResponseMessage;\n        }\n\n        public dynamic Post(string json, string uriparams)\n        {\n            HttpResponseMessage oHttpResponseMessage = new HttpResponseMessage();\n            using (var client = new HttpClient())\n            {\n                client.DefaultRequestHeaders.Accept.Clear();\n                client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue(\"application/json\"));\n                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(\"Basic\", oConfiguration.PersonalAccessToken);\n                var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                var method = new HttpMethod(\"POST\");\n                var request = new HttpRequestMessage(method, oConfiguration.UriString + uriparams) { Content = jsonContent };\n                oHttpResponseMessage = client.SendAsync(request).Result;\n            }\n            return oHttpResponseMessage;\n        }\n        public HttpResponseMessage Get(string request)\n        {\n            HttpResponseMessage oHttpResponseMessage = new HttpResponseMessage();\n            using (var client = new HttpClient())\n            {\n                client.BaseAddress = new Uri(oConfiguration.UriString);\n                client.DefaultRequestHeaders.Accept.Clear();\n                client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue(\"application/json\"));\n                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(\"Basic\", oConfiguration.PersonalAccessToken);\n                oHttpResponseMessage = client.GetAsync(oConfiguration.UriString + request).Result;\n\n            }\n            return oHttpResponseMessage;\n        }\n\n        public HttpResponseMessage Put()\n        {\n            HttpResponseMessage oHttpResponseMessage = new HttpResponseMessage();\n            using (var client = new HttpClient())\n            {\n                client.DefaultRequestHeaders.Accept.Clear();\n                client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(\"application/json\"));\n                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(\"Basic\", oConfiguration.PersonalAccessToken);\n                var patchValue = new StringContent(JsonConvert.SerializeObject(oConfiguration.RequestBody), Encoding.UTF8, \"application/json-patch+json\"); // mediaType needs to be application/json-patch+json for a patch call\n\n                var method = new HttpMethod(\"PATCH\");\n                var request = new HttpRequestMessage(new HttpMethod(\"PATCH\"), oConfiguration.UriString + oConfiguration.UriParams) { Content = patchValue };\n                oHttpResponseMessage = client.SendAsync(request).Result;\n\n            }\n            return oHttpResponseMessage;\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/TestManagement/TestManagement.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Net.Http;\nusing System.Text;\n\nnamespace VstsRestAPI.TestManagement\n{\n    public class TestManagement : ApiServiceBase\n    {\n        public TestManagement(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Create test plans\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n\n        public string[] CreateTestPlan(string json, string project)\n        {\n            try\n            {\n                string[] testPlan = new string[2];\n\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, _configuration.UriString + project + \"/_apis/test/plans?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        testPlan[0] = JObject.Parse(result)[\"id\"].ToString();\n                        testPlan[1] = JObject.Parse(result)[\"name\"].ToString();\n                        return testPlan;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateTestPlan\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new string[] { };\n        }\n        /// <summary>\n        /// Create test suites\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"testPlan\"></param>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n        public string[] CreatTestSuite(string json, string testPlan, string project)\n        {\n            try\n            {\n                string[] testSuite = new string[2];\n                int parentTestSuite = Convert.ToInt32(testPlan);\n                parentTestSuite = parentTestSuite + 1;\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, project + \"/_apis/test/plans/\" + testPlan + \"/suites/\" + parentTestSuite + \"?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        dynamic resSerialize = JsonConvert.DeserializeObject<dynamic>(result);\n                        if (resSerialize.count > 0)\n                        {\n                            testSuite[0] = JObject.Parse(result)[\"value\"].First[\"id\"].ToString();\n                            testSuite[1] = JObject.Parse(result)[\"value\"].First[\"name\"].ToString();\n                        }\n                        return testSuite;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n                return testSuite;\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateTestPlan\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new string[] { };\n        }\n        /// <summary>\n        /// Add test cases to test suites\n        /// </summary>\n        /// <param name=\"testCases\"></param>\n        /// <param name=\"testPlan\"></param>\n        /// <param name=\"testSuite\"></param>\n        /// <param name=\"project\"></param>\n        /// <returns></returns>\n        public bool AddTestCasesToSuite(string testCases, string testPlan, string testSuite, string project)\n        {\n            try\n            {\n                object json = new { };\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(Newtonsoft.Json.JsonConvert.SerializeObject(json), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, project + \"/_apis/test/plans/\" + testPlan + \"/suites/\" + testSuite + \"/testcases/\" + testCases + \"?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        return true;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"AddTestCasesToSuite\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Utility.cs",
    "content": "﻿using Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI\n{\n    public class Utility\n    {\n        public static string GeterroMessage(string Exception)\n        {\n            string message = string.Empty;\n            try\n            {\n                if (!string.IsNullOrEmpty(Exception))\n                {\n                    JObject jItems = JObject.Parse(Exception);\n\n                    message = jItems[\"message\"] == null ? \"\" : jItems[\"message\"].ToString();\n                }\n\n                return message;\n            }\n            catch (Exception)\n            {\n                return message;\n            }\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/BaseViewModel.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Net;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel\n{\n    public class BaseViewModel\n    {\n        public HttpStatusCode HttpStatusCode { get; set; }\n        public string Message { get; set; }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/BranchPolicy/BranchPolicy.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.BranchPolicy\n{\n    public class BranchPolicy\n    {\n        public class Policy\n        {\n            public bool isEnabled { get; set; }\n            public bool isBlocking { get; set; }\n            public bool isDeleted { get; set; }\n            public Settings settings { get; set; }\n            public bool isEnterpriseManaged { get; set; }\n            public Type type { get; set; }\n        }\n\n        public class Scope\n        {\n            public string refName { get; set; }\n            public string matchKind { get; set; }\n            public string repositoryId { get; set; }\n        }\n\n        public class Settings\n        {\n            public string buildDefinitionId { get; set; }\n            public bool queueOnSourceUpdateOnly { get; set; }\n            public bool manualQueueOnly { get; set; }\n            public object displayName { get; set; }\n            public double validDuration { get; set; }\n            public List<Scope> scope { get; set; }\n        }\n\n        public class Type\n        {\n            public string id { get; set; }\n            public string url { get; set; }\n            public string displayName { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/BranchPolicy/BranchPolicyTypes.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.BranchPolicy\n{\n    public class BranchPolicyTypes\n    {\n        public class Links\n        {\n            public Self self { get; set; }\n        }\n\n        public class PolicyTypes\n        {\n            public int count { get; set; }\n            public List<Value> value { get; set; }\n        }\n\n        public class Self\n        {\n            public string href { get; set; }\n        }\n\n        public class Value\n        {\n            public string description { get; set; }\n            public Links _links { get; set; }\n            public string id { get; set; }\n            public string url { get; set; }\n            public string displayName { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Build/BuildGetListofBuildDefinitionsResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Build\n{\n    public class BuildGetListofBuildDefinitionsResponse\n    {\n\n        public class Definitions : BaseViewModel\n        {\n            public int count { get; set; }\n            public Value[] value { get; set; }\n        }\n\n        public class Value\n        {\n            public string quality { get; set; }\n            public Authoredby authoredBy { get; set; }\n            public Queue queue { get; set; }\n            public string uri { get; set; }\n            public string type { get; set; }\n            public int revision { get; set; }\n            public DateTime createdDate { get; set; }\n            public int id { get; set; }\n            public string name { get; set; }\n            public string url { get; set; }\n            public Project project { get; set; }\n        }\n\n        public class Authoredby\n        {\n            public string id { get; set; }\n            public string displayName { get; set; }\n            public string uniqueName { get; set; }\n            public string url { get; set; }\n            public string imageUrl { get; set; }\n        }\n\n        public class Queue\n        {\n            public Pool pool { get; set; }\n            public int id { get; set; }\n            public string name { get; set; }\n        }\n\n        public class Pool\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n        }\n\n        public class Project\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string url { get; set; }\n            public string state { get; set; }\n            public int revision { get; set; }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/BoardColumnResponseAgile.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System.Collections.Generic;\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class BoardColumnResponseAgile\n    {\n        public class StateMappings\n        {\n            [JsonProperty(PropertyName = \"User Story\")]\n            public string UserStory { get; set; }\n            [JsonProperty(PropertyName = \"Bug\")]\n            public string bug { get; set; }\n            [JsonProperty(PropertyName = \"Feature\")]\n            public string feature { get; set; }\n            [JsonProperty(PropertyName = \"Epic\")]\n            public string epic { get; set; }\n        }\n\n        public class Value\n        {\n            public string name { get; set; }\n            public int itemLimit { get; set; }\n            public StateMappings stateMappings { get; set; }\n            public string columnType { get; set; }\n            public bool? isSplit { get; set; }\n            public string description { get; set; }\n        }\n\n        public class ColumnResponse\n        {\n            public string BoardName { get; set; }\n            public List<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/BoardColumnResponseBasic.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class BoardColumnResponseBasic\n    {\n        public class StateMappings\n        {\n            [JsonProperty(PropertyName = \"Issue\")]\n            public string feature { get; set; }\n            [JsonProperty(PropertyName = \"Epic\")]\n            public string epic { get; set; }\n        }\n\n        public class Value\n        {\n            public string name { get; set; }\n            public int itemLimit { get; set; }\n            public StateMappings stateMappings { get; set; }\n            public string columnType { get; set; }\n            public bool? isSplit { get; set; }\n            public string description { get; set; }\n        }\n\n        public class ColumnResponse\n        {\n            public string BoardName { get; set; }\n            public List<Value> value { get; set; }\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/BoardColumnResponseScrum.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class BoardColumnResponseScrum\n    {\n        public class StateMappings\n        {\n            [JsonProperty(PropertyName = \"Product Backlog Item\")]\n            public string UserStory { get; set; }\n            [JsonProperty(PropertyName = \"Bug\")]\n            public string bug { get; set; }\n            [JsonProperty(PropertyName = \"Feature\")]\n            public string feature { get; set; }\n            [JsonProperty(PropertyName = \"Epic\")]\n            public string epic { get; set; }\n        }\n\n        public class Value\n        {\n            public string name { get; set; }\n            public int itemLimit { get; set; }\n            public StateMappings stateMappings { get; set; }\n            public string columnType { get; set; }\n            public bool? isSplit { get; set; }\n            public string description { get; set; }\n        }\n\n        public class ColumnResponse\n        {\n            public string BoardName { get; set; }\n            public List<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/BuildDefinitionResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class BuildDefinitionResponse\n    {\n        public class Build\n        {\n            public int count { get; set; }\n            public Value[] value { get; set; }\n        }\n        public class Value\n        {\n            public int id { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/BuildDefinitions.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class BuildDefinitions\n    {\n        public class Task\n        {\n            public string id { get; set; }\n            public string versionSpec { get; set; }\n            public string definitionType { get; set; }\n        }\n\n        public class Inputs\n        {\n            public object command { get; set; }\n            public object arguments { get; set; }\n            public object cwd { get; set; }\n            public string sourcePath { get; set; }\n            public string filePattern { get; set; }\n            public object tokenRegex { get; set; }\n            public object secretTokens { get; set; }\n            public object gulpFile { get; set; }\n            public object targets { get; set; }\n            public object gulpjs { get; set; }\n            public object publishJUnitResults { get; set; }\n            public object testResultsFiles { get; set; }\n            public string testRunTitle { get; set; }\n            public object enableCodeCoverage { get; set; }\n            public object testFramework { get; set; }\n            public object srcFiles { get; set; }\n            public object testFiles { get; set; }\n            public string platform { get; set; }\n            public string configuration { get; set; }\n            public object archs { get; set; }\n            public object cordovaVersion { get; set; }\n            public object antBuild { get; set; }\n            public object keystoreFile { get; set; }\n            public object keystorePass { get; set; }\n            public object keystoreAlias { get; set; }\n            public object keyPass { get; set; }\n            public object iosSignMethod { get; set; }\n            public object iosSigningIdentity { get; set; }\n            public object p12 { get; set; }\n            public object p12pwd { get; set; }\n            public object unlockDefaultKeychain { get; set; }\n            public object defaultKeychainPassword { get; set; }\n            public object provProfileUuid { get; set; }\n            public object provProfile { get; set; }\n            public object removeProfile { get; set; }\n            public object xcodeDeveloperDir { get; set; }\n            public object windowsAppx { get; set; }\n            public object windowsPhoneOnly { get; set; }\n            public object windowsOnly { get; set; }\n            public object cordovaArgs { get; set; }\n            public object outputPattern { get; set; }\n            public object targetEmulator { get; set; }\n            public object testRunner { get; set; }\n            public object mergeTestResults { get; set; }\n            public string publishRunAttachments { get; set; }\n            public object connectedServiceName { get; set; }\n            public object appID { get; set; }\n            public object binaryPath { get; set; }\n            public string symbolsPath { get; set; }\n            public object nativeLibraryPath { get; set; }\n            public object notesPath { get; set; }\n            public object notes { get; set; }\n            public object publish { get; set; }\n            public object mandatory { get; set; }\n            public object notify { get; set; }\n            public object tags { get; set; }\n            public object teams { get; set; }\n            public object users { get; set; }\n            public string PathtoPublish { get; set; }\n            public string ArtifactName { get; set; }\n            public string ArtifactType { get; set; }\n            public string TargetPath { get; set; }\n            public string solution { get; set; }\n            public string msbuildArgs { get; set; }\n            public string clean { get; set; }\n            public string restoreNugetPackages { get; set; }\n            public string vsLocationMethod { get; set; }\n            public string vsVersion { get; set; }\n            public string vsLocation { get; set; }\n            public string msbuildLocationMethod { get; set; }\n            public string msbuildVersion { get; set; }\n            public string msbuildArchitecture { get; set; }\n            public string msbuildLocation { get; set; }\n            public string logProjectEvents { get; set; }\n            public string testAssembly { get; set; }\n            public string testFiltercriteria { get; set; }\n            public string runSettingsFile { get; set; }\n            public string codeCoverageEnabled { get; set; }\n            public string otherConsoleOptions { get; set; }\n            public string vsTestVersion { get; set; }\n            public string pathtoCustomTestAdapters { get; set; }\n            public string CopyRoot { get; set; }\n            public string Contents { get; set; }\n\n        }\n        public class Inputs1\n        {\n            public bool parallel { get; set; }\n            public bool continueOnError { get; set; }\n            public string workItemType { get; set; }\n            public bool assignToRequestor { get; set; }\n            public string additionalFields { get; set; }\n            public string multipliers { get; set; }\n\n        }\n        public class Build\n        {\n            public bool enabled { get; set; }\n            public bool continueOnError { get; set; }\n            public bool alwaysRun { get; set; }\n            public string displayName { get; set; }\n            public int timeoutInMinutes { get; set; }\n            public Task task { get; set; }\n            public Inputs inputs { get; set; }\n        }\n\n        public class Definition\n        {\n            public string id { get; set; }\n        }\n\n        public class Option\n        {\n            public bool enabled { get; set; }\n            public Definition definition { get; set; }\n            public Inputs1 inputs { get; set; }\n        }\n\n        public class SystemDebug\n        {\n            public string value = \"\";\n            public bool allowOverride = false;\n        }\n\n        public class BuildConfiguration\n        {\n            public string value = \"\";\n            public bool allowOverride = false;\n        }\n\n        public class BuildPlatform\n        {\n            public string value = \"\";\n            public bool allowOverride = false;\n        }\n\n        public class Variables\n        {\n            [JsonProperty(PropertyName = \"system.debug\")]\n            public SystemDebug systemdebug = new SystemDebug();\n            public BuildConfiguration BuildConfiguration = new BuildConfiguration();\n            public BuildPlatform BuildPlatform = new BuildPlatform();\n        }\n\n        public class RetentionRule\n        {\n            public IList<string> branches { get; set; }\n            public IList<object> artifacts { get; set; }\n            public IList<string> artifactTypesToDelete { get; set; }\n            public int daysToKeep { get; set; }\n            public int minimumToKeep { get; set; }\n            public bool deleteBuildRecord { get; set; }\n            public bool deleteTestResults { get; set; }\n        }\n\n        public class Properties\n        {\n            public string labelSources { get; set; }\n            public string reportBuildStatus { get; set; }\n        }\n\n        public class Repository\n        {\n            public Properties properties { get; set; }\n            public string id { get; set; }\n            public string type { get; set; }\n            public string name { get; set; }\n            public string url { get; set; }\n            public string defaultBranch { get; set; }\n            public string clean { get; set; }\n            public bool checkoutSubmodules { get; set; }\n        }\n\n        public class Pool\n        {\n            public string name { get; set; }\n        }\n\n        public class Queue\n        {\n            public Pool pool { get; set; }\n            public string name { get; set; }\n        }\n\n        public class BuildDefinition\n        {\n            public string name { get; set; }\n            public IList<BuildDefinitions.Build> build { get; set; }\n            public IList<BuildDefinitions.Option> options { get; set; }\n            public Variables variables { get; set; }\n            public IList<RetentionRule> retentionRules { get; set; }\n            public string buildNumberFormat { get; set; }\n            public string jobAuthorizationScope { get; set; }\n            public int jobTimeoutInMinutes { get; set; }\n            public Repository repository { get; set; }\n            public string quality { get; set; }\n            public string defaultBranch { get; set; }\n            public Queue queue { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/ExportBoardRows.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class ExportBoardRows\n    {\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n\n        public class Rows\n        {\n            public string BoardName { get; set; }\n            public List<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetBuildDefResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetBuildDefResponse\n    {\n        public class Project\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string description { get; set; }\n            public string url { get; set; }\n            public string state { get; set; }\n            public int revision { get; set; }\n            public string visibility { get; set; }\n        }\n\n        public class Value\n        {\n            public Project project { get; set; }\n        }\n\n        public class BuildDef\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetExtensions.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetExtensions\n    {\n        public class Value\n        {\n            public string extensionId { get; set; }\n            public string extensionName { get; set; }\n            public string publisherId { get; set; }\n            public string publisherName { get; set; }\n            public string flags { get; set; }\n        }\n\n        public class ExtensionsList\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetINumIteration.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetINumIteration\n    {\n        public class Attributes\n        {\n            public DateTime? startDate { get; set; }\n            public DateTime? finishDate { get; set; }\n            public string timeFrame { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string path { get; set; }\n            public Attributes attributes { get; set; }\n            public string url { get; set; }\n        }\n\n        public class Iterations\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n\n\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetProcessTemplate.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetProcessTemplate\n    {\n        public class Properties\n        {\n            [JsonProperty(PropertyName = \"class\")]\n            public string Class { get; set; }\n            public string parentProcessTypeId { get; set; }\n            public bool isEnabled { get; set; }\n            public string version { get; set; }\n            public bool isDefault { get; set; }\n        }\n\n        public class PTemplate\n        {\n            public string typeId { get; set; }\n            public object referenceName { get; set; }\n            public string name { get; set; }\n            public string description { get; set; }\n            public Properties properties { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetQueries.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetQueries\n    {\n        public class Child1\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string path { get; set; }\n            public string wiql { get; set; }\n            public bool isPublic { get; set; }\n        }\n\n        public class Child\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string path { get; set; }\n            public string wiql { get; set; }\n            public string queryType { get; set; }\n            public bool hasChildren { get; set; }\n            public List<Child1> children { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string path { get; set; }\n            public bool isFolder { get; set; }\n            public bool hasChildren { get; set; }\n            public List<Child> children { get; set; }\n            public bool isPublic { get; set; }\n        }\n\n        public class Queries\n        {\n            public int count { get; set; }\n            public List<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetReleaseDefResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetReleaseDefResponse\n    {\n        public class Avatar\n        {\n            public string href { get; set; }\n        }\n\n        public class Links\n        {\n            public Avatar avatar { get; set; }\n        }\n\n        public class CreatedBy\n        {\n            public string displayName { get; set; }\n            public string url { get; set; }\n            public Links _links { get; set; }\n            public string id { get; set; }\n            public string uniqueName { get; set; }\n            public string imageUrl { get; set; }\n            public string descriptor { get; set; }\n        }\n\n        public class ModifiedBy\n        {\n            public string displayName { get; set; }\n            public string url { get; set; }\n            public string id { get; set; }\n            public string uniqueName { get; set; }\n            public string imageUrl { get; set; }\n            public string descriptor { get; set; }\n        }\n\n        public class Properties\n        {\n        }\n\n        public class Value\n        {\n            public string source { get; set; }\n            public int revision { get; set; }\n            public object description { get; set; }\n            public DateTime createdOn { get; set; }\n            public DateTime modifiedOn { get; set; }\n            public bool isDeleted { get; set; }\n            public object variableGroups { get; set; }\n            public string releaseNameFormat { get; set; }\n            public Properties properties { get; set; }\n            public int id { get; set; }\n            public string name { get; set; }\n            public string path { get; set; }\n            public object projectReference { get; set; }\n            public string url { get; set; }\n        }\n\n        public class ReleaseDef\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetServiceEndpoints.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetServiceEndpoints\n    {\n        public class Data\n        {\n            public string environment { get; set; }\n            public string subscriptionId { get; set; }\n            public string subscriptionName { get; set; }\n            public string scopeLevel { get; set; }\n            public string serviceBusQueueName { get; set; }\n            public string registrytype { get; set; }\n            public string accessExternalGitServer { get; set; }\n            public string host { get; set; }\n            public string port { get; set; }\n            public string privateKey { get; set; }\n            public string realmName { get; set; }\n            public string acceptUntrustedCerts { get; set; }\n            public string authorizationType { get; set; }\n            public string managementGroupName { get; set; }\n            public string managementGroupId { get; set; }\n        }\n\n        public class Parameters\n        {\n            public string username { get; set; }\n            public string certificate { get; set; }\n            public string apitoken { get; set; }            \n            public string password { get; set; }\n            public string email { get; set; }\n            public string registry { get; set; }\n            public string url { get; set; }\n            public string tenantId { get; set; }\n            public string servicePrincipalId { get; set; }\n            public string authenticationType { get; set; }\n            public string serviceBusConnectionString { get; set; }\n            public string servicePrincipalKey { get; set; }\n            public string nugetkey { get; set; }\n            public string cacert { get; set; }\n            public string cert { get; set; }\n            public string key { get; set; }\n            public string AccessToken { get; set; }\n            public string azureTenantId { get; set; }\n            public string azureEnvironment { get; set; }\n            public string roleBindingName { get; set; }\n            public string secretName { get; set; }\n            public string serviceAccountName { get; set; }\n            public string azureAccessToken { get; set; }\n            public string serviceAccountCertificate { get; set; }\n\n        }\n\n        public class Authorization\n        {\n            public Parameters parameters { get; set; }\n            public string scheme { get; set; }\n        }\n\n        public class Value\n        {\n            public Data data { get; set; }\n            public string name { get; set; }\n            public string type { get; set; }\n            public string url { get; set; }\n            public Authorization authorization { get; set; }\n            public bool isShared { get; set; }\n            public bool isReady { get; set; }\n            public string owner { get; set; }\n        }\n\n        public class ServiceEndPoint\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetTeamSetting.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class ExportTeamSetting\n    {\n        public class BacklogVisibilities\n        {\n            [JsonProperty(PropertyName = \"Microsoft.EpicCategory\")]\n            public bool EpicCategory { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.FeatureCategory\")]\n            public bool FeatureCategory { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.RequirementCategory\")]\n            public bool RequirementCategory { get; set; }\n        }\n        public class Setting\n        {\n            public string bugsBehavior { get; set; }\n            public BacklogVisibilities backlogVisibilities { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetVariableGroups.cs",
    "content": "﻿using Newtonsoft.Json.Linq;\nusing System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetVariableGroups\n    {\n        public class Value\n        {\n            public JObject variables { get; set; }\n            public string id { get; set; }\n            public string type { get; set; }\n            public string name { get; set; }\n            public bool isShared { get; set; }\n        }\n\n        public class Groups\n        {\n            public int count { get; set; }\n            public List<Value> value { get; set; }\n        }\n\n        public class VariableGroupsCreateResponse\n        {\n            public JObject variables { get; set; }\n            public int id { get; set; }\n            public string type { get; set; }\n            public string name { get; set; }\n            public bool isShared { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/GetWorkItemsResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class GetWorkItemsResponse\n    {\n        public class Results : BaseViewModel\n        {\n            public string queryType { get; set; }\n            public string queryResultType { get; set; }\n            public DateTime asOf { get; set; }\n            public List<Column> columns { get; set; }\n            public List<Workitem> workItems { get; set; }\n        }\n\n        public class Column\n        {\n            public string referenceName { get; set; }\n            public string name { get; set; }\n            public string url { get; set; }\n        }\n\n        public class Workitem\n        {\n            public int id { get; set; }\n            public string url { get; set; }\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/Iterations.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class ExportIterations\n    {\n        public class Value\n        {\n            public string name { get; set; }\n        }\n\n        public class Iterations\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n\n    public class ExportedIterations\n    {\n        public class Child\n        {\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n        }\n\n        public class Iterations\n        {\n            public List<Child> children { get; set; }\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n        }\n\n\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/IterationtoSave.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class IterationtoSave\n    {\n        public class Nodes\n        {\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public Child[] children { get; set; }\n        }\n\n        public class Child\n        {\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public Child1[] children { get; set; }\n        }\n\n        public class Child1\n        {\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public Child2[] children { get; set; }\n\n        }\n        public class Child2\n        {\n            public string name { get; set; }\n            public bool hasChildren { get; set; }\n            public Child3[] children { get; set; }\n\n        }\n        public class Child3\n        {\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n        }\n    }\n\n    public class ItearationList\n    {\n        public class Child\n        {\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n        }\n\n        public class Iterations\n        {\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public List<Child> children = new List<Child>();\n        }\n\n    }\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/KeyConfig.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class KeyConfig\n    {\n        public class Keys\n        {\n            public IList<string> keys { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/ProjectSetting.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class ProjectSetting\n    {\n        public string Description { get; set; }\n        public string Teams { get; set; }\n        public string SourceCode { get; set; }\n        public string CreateService { get; set; }\n        public string BoardColumns { get; set; }\n        public string ProjectSettings { get; set; }\n        public string CardStyle { get; set; }\n        public string CardField { get; set; }\n        public string PBIfromTemplate { get; set; }\n        public string BugfromTemplate { get; set; }\n        public string EpicfromTemplate { get; set; }\n        public string TaskfromTemplate { get; set; }\n        public string TestCasefromTemplate { get; set; }\n        public string FeaturefromTemplate { get; set; }\n        public string UserStoriesFromTemplate { get; set; }\n        public string SetEpic { get; set; }\n        public string BoardRows { get; set; }\n        public string Widget { get; set; }\n        public string Chart { get; set; }\n        public string TeamArea { get; set; }\n        public string IsPrivate { get; set; }\n    }\n\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/ReleaseDefCountResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class ReleaseDefCountResponse\n    {\n        public class ReleaseDefinition\n        {\n            public int id { get; set; }\n        }\n\n        public class Value\n        {\n            public string source { get; set; }\n            public int id { get; set; }\n            public string name { get; set; }\n            public object variableGroups { get; set; }\n        }\n\n        public class Release\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/ReleaseDefResponse.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n\n    public class ReleaseDefResponse\n    {\n        public class HostingPlan\n        {\n            public string value { get; set; }\n        }\n\n        public class ResourceGroupName\n        {\n            public string value { get; set; }\n        }\n\n        public class ServerName\n        {\n            public string value { get; set; }\n        }\n\n        public class Variables\n        {\n            public HostingPlan HostingPlan { get; set; }\n            public ResourceGroupName ResourceGroupName { get; set; }\n            public ServerName ServerName { get; set; }\n        }\n\n        public class Owner\n        {\n            public string id { get; set; }\n            public string displayName { get; set; }\n            public string uniqueName { get; set; }\n        }\n\n        public class PreApproval\n        {\n            public int rank { get; set; }\n            public bool isAutomated { get; set; }\n            public bool isNotificationOn { get; set; }\n        }\n\n        public class PreDeployApprovals\n        {\n            public IList<PreApproval> approvals { get; set; }\n        }\n\n        public class DeployStep\n        {\n        }\n\n        public class PostApproval\n        {\n            public int rank { get; set; }\n            public bool isAutomated { get; set; }\n            public bool isNotificationOn { get; set; }\n        }\n\n        public class PostDeployApprovals\n        {\n            public IList<PostApproval> approvals { get; set; }\n        }\n\n        public class ParallelExecution\n        {\n            public string parallelExecutionType { get; set; }\n        }\n\n        public class ArtifactsDownloadInput\n        {\n            public IList<object> downloadInputs { get; set; }\n        }\n\n        public class OverrideInputs\n        {\n        }\n\n        public class DeploymentInput\n        {\n            public ParallelExecution parallelExecution { get; set; }\n            public bool skipArtifactsDownload { get; set; }\n            public ArtifactsDownloadInput artifactsDownloadInput { get; set; }\n            public string queueId { get; set; }\n            public IList<object> demands { get; set; }\n            public bool enableAccessToken { get; set; }\n            public int timeoutInMinutes { get; set; }\n            public int jobCancelTimeoutInMinutes { get; set; }\n            public string condition { get; set; }\n            public OverrideInputs overrideInputs { get; set; }\n        }\n\n        public class Inputs\n        {\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string ConnectedServiceName { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string ConnectedServiceNameARM { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string action { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string resourceGroupName { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string location { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string templateLocation { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string csmFileLink { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string csmParametersFileLink { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string csmFile { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string csmParametersFile { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string overrideParameters { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string deploymentMode { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string enableDeploymentPrerequisites { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string deploymentGroupEndpoint { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string project { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string deploymentGroupName { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string copyAzureVMTags { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string outputVariable { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string WebAppName { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string WebAppKind { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string DeployToSlotFlag { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string ImageSource { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string ResourceGroupName { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n\n            public string SlotName { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string AzureContainerRegistry { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string AzureContainerRegistryLoginServer { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string AzureContainerRegistryImage { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string AzureContainerRegistryTag { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string DockerRepositoryAccess { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string RegistryConnectedServiceName { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string PrivateRegistryImage { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string PrivateRegistryTag { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string DockerNamespace { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string DockerRepository { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string DockerImageTag { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string VirtualApplication { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string Package { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string BuiltinLinuxPackage { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string RuntimeStack { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string StartupCommand { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string WebAppUri { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string ScriptType { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string InlineScript { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string ScriptPath { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string GenerateWebConfig { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string WebConfigParameters { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string AppSettings { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string TakeAppOfflineFlag { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string UseWebDeploy { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string SetParametersFile { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string RemoveAdditionalFilesFlag { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string ExcludeFilesFromAppDataFlag { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string AdditionalArguments { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string RenameFilesFlag { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string XmlTransformation { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string XmlVariableSubstitution { get; set; }\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string JSONFiles { get; set; }\n        }\n\n        public class WorkflowTask\n        {\n            public string taskId { get; set; }\n            public string version { get; set; }\n            public string name { get; set; }\n            public string refName { get; set; }\n            public bool enabled { get; set; }\n            public bool alwaysRun { get; set; }\n            public bool continueOnError { get; set; }\n            public int timeoutInMinutes { get; set; }\n            public string definitionType { get; set; }\n            public OverrideInputs overrideInputs { get; set; }\n            public string condition { get; set; }\n            public Inputs inputs { get; set; }\n        }\n\n        public class DeployPhas\n        {\n            public DeploymentInput deploymentInput { get; set; }\n            public int rank { get; set; }\n            public string phaseType { get; set; }\n            public string name { get; set; }\n            public IList<WorkflowTask> workflowTasks { get; set; }\n        }\n\n        public class EnvironmentOptions\n        {\n            public string emailNotificationType { get; set; }\n            public string emailRecipients { get; set; }\n            public bool skipArtifactsDownload { get; set; }\n            public int timeoutInMinutes { get; set; }\n            public bool enableAccessToken { get; set; }\n            public bool publishDeploymentStatus { get; set; }\n        }\n\n        public class Condition\n        {\n            public string name { get; set; }\n            public string conditionType { get; set; }\n            public string value { get; set; }\n        }\n\n        public class ExecutionPolicy\n        {\n            public int concurrencyCount { get; set; }\n            public int queueDepthCount { get; set; }\n        }\n\n        public class RetentionPolicy\n        {\n            public int daysToKeep { get; set; }\n            public int releasesToKeep { get; set; }\n            public bool retainBuild { get; set; }\n        }\n\n        public class ProcessParameters\n        {\n        }\n\n        public class Properties\n        {\n        }\n\n        public class PreDeploymentGates\n        {\n            public object gatesOptions { get; set; }\n            public IList<object> gates { get; set; }\n        }\n\n        public class PostDeploymentGates\n        {\n            public object gatesOptions { get; set; }\n            public IList<object> gates { get; set; }\n        }\n\n        public class Environment\n        {\n            public string name { get; set; }\n            public int rank { get; set; }\n            public Owner owner { get; set; }\n            public Variables variables { get; set; }\n            public IList<object> variableGroups { get; set; }\n            public PreDeployApprovals preDeployApprovals { get; set; }\n            public DeployStep deployStep { get; set; }\n            public PostDeployApprovals postDeployApprovals { get; set; }\n            public IList<DeployPhas> deployPhases { get; set; }\n            public EnvironmentOptions environmentOptions { get; set; }\n            public IList<object> demands { get; set; }\n            public IList<Condition> conditions { get; set; }\n            public ExecutionPolicy executionPolicy { get; set; }\n            public IList<object> schedules { get; set; }\n            public RetentionPolicy retentionPolicy { get; set; }\n            public ProcessParameters processParameters { get; set; }\n            public Properties properties { get; set; }\n            public PreDeploymentGates preDeploymentGates { get; set; }\n            public PostDeploymentGates postDeploymentGates { get; set; }\n        }\n\n        public class DefaultVersionBranch\n        {\n            public string name { get; set; }\n        }\n\n        public class DefaultVersionSpecific\n        {\n            public string name { get; set; }\n        }\n\n        public class DefaultVersionTags\n        {\n            public string name { get; set; }\n        }\n\n        public class DefaultVersionType\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n\n        public class Definition\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n        public class Project\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n        public class DefinitionReference\n        {\n            public DefaultVersionBranch defaultVersionBranch { get; set; }\n            public DefaultVersionSpecific defaultVersionSpecific { get; set; }\n            public DefaultVersionTags defaultVersionTags { get; set; }\n            public DefaultVersionType defaultVersionType { get; set; }\n            public Definition definition { get; set; }\n            public Project project { get; set; }\n        }\n\n        public class Artifact\n        {\n            public string sourceId { get; set; }\n            public string type { get; set; }\n            public string alias { get; set; }\n            public DefinitionReference definitionReference { get; set; }\n            public bool isPrimary { get; set; }\n        }\n\n        public class TriggerCondition\n        {\n            public string sourceBranch { get; set; }\n            public IList<object> tags { get; set; }\n            public bool useBuildDefinitionBranch { get; set; }\n        }\n\n        public class Trigger\n        {\n            public string artifactAlias { get; set; }\n            public IList<TriggerCondition> triggerConditions { get; set; }\n            public string triggerType { get; set; }\n        }\n        public class Web\n        {\n            public string href { get; set; }\n        }\n        public class Response\n        {\n            public string source { get; set; }\n            public string name { get; set; }\n            public object description { get; set; }\n            public bool isDeleted { get; set; }\n            public string path { get; set; }\n            public Variables variables { get; set; }\n            public IList<object> variableGroups { get; set; }\n            public IList<Environment> environments { get; set; }\n            public IList<Artifact> artifacts { get; set; }\n            public IList<Trigger> triggers { get; set; }\n            public string releaseNameFormat { get; set; }\n            public IList<object> tags { get; set; }\n            public Properties properties { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/RepositoryList.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class RepositoryList\n    {\n        public class Project\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n\n        public class Repository\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/Teams.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n\n    public class Value\n    {\n        public string id { get; set; }\n        public string name { get; set; }\n        public string description { get; set; }\n        public string isDefault { get; set; }\n    }\n\n    public class TeamList\n    {\n        public IList<Value> value { get; set; }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/WorkItemFetchResponse.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class WorkItemFetchResponse\n    {\n        public class WorkItems : BaseViewModel\n        {\n            public int count { get; set; }\n            public Value[] value { get; set; }\n\n        }\n\n        public class Value\n        {\n            public int id { get; set; }\n            public int rev { get; set; }\n            public Fields fields { get; set; }\n            public Relations[] relations { get; set; }\n            public string url { get; set; }\n\n\n        }\n\n        public class Fields\n        {\n            [JsonProperty(PropertyName = \"System.AreaPath\")]\n            public string SystemAreaPath { get; set; }\n\n            [JsonProperty(PropertyName = \"System.TeamProject\")]\n            public string SystemTeamProject { get; set; }\n\n            [JsonProperty(PropertyName = \"System.IterationPath\")]\n            public string SystemIterationPath { get; set; }\n\n            [JsonProperty(PropertyName = \"System.WorkItemType\")]\n            public string SystemWorkItemType { get; set; }\n\n            [JsonProperty(PropertyName = \"System.State\")]\n            public string SystemState { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Reason\")]\n            public string SystemReason { get; set; }\n\n            [JsonProperty(PropertyName = \"System.CreatedDate\")]\n            public DateTime SystemCreatedDate { get; set; }\n\n            [JsonProperty(PropertyName = \"System.CreatedBy\")]\n            public string SystemCreatedBy { get; set; }\n\n            [JsonProperty(PropertyName = \"System.ChangedDate\")]\n            public DateTime SystemChangedDate { get; set; }\n\n            [JsonProperty(PropertyName = \"System.ChangedBy\")]\n            public string SystemChangedBy { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Title\")]\n            public string SystemTitle { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Scheduling.Effort\")]\n            public float MicrosoftVSTSSchedulingEffort { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Description\")]\n            public string SystemDescription { get; set; }\n\n            [JsonProperty(PropertyName = \"System.AssignedTo\")]\n            public string SystemAssignedTo { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Scheduling.RemainingWork\")]\n            public float MicrosoftVSTSSchedulingRemainingWork { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Common.Priority\")]\n            public float MicrosoftVSTSCommonPriority { get; set; }\n\n            [JsonProperty(PropertyName = \"System.BoardLane\")]\n            public string SystemBoardLane { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Tags\")]\n            public string SystemTags { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.TCM.Steps\")]\n            public string MicrosoftVSTSTCMSteps { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.TCM.Parameters\")]\n            public string MicrosoftVSTSTCMParameters { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.TCM.LocalDataSource\")]\n            public string MicrosoftVSTSTCMLocalDataSource { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.TCM.AutomationStatus\")]\n            public string MicrosoftVSTSTCMAutomationStatus { get; set; }\n\n            [JsonProperty(PropertyName = \"System.History\")]\n            public string SystemHistory { get; set; }\n        }\n\n        public class Relations\n        {\n            public string rel { get; set; }\n            public string url { get; set; }\n            public Dictionary<string, string> attributes { get; set; }\n        }\n\n        public class Attributes\n        {\n            public string isLocked { get; set; }\n            public string comment { get; set; }\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Extractor/WorkItemNames.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Extractor\n{\n    public class WorkItemNames\n    {\n        public class Value\n        {\n            public string name { get; set; }\n            public string referenceName { get; set; }\n            public string description { get; set; }\n        }\n\n        public class Names\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/GitHub/ForkRepos.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.GitHub\n{\n    public class ForkRepos\n    {\n        public class Repository\n        {\n            public string fullName { get; set; }\n            public string endPointName { get; set; }\n        }\n\n        public class Fork\n        {\n            public List<Repository> repositories { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/GitHub/GitHubRepoResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.GitHub\n{\n    public class GitHubRepoResponse\n    {\n        public class Owner\n        {\n            public string login { get; set; }\n            public int id { get; set; }\n            public string avatar_url { get; set; }\n            public string gravatar_id { get; set; }\n            public string url { get; set; }\n            public string html_url { get; set; }\n            public string followers_url { get; set; }\n            public string following_url { get; set; }\n            public string gists_url { get; set; }\n            public string starred_url { get; set; }\n            public string subscriptions_url { get; set; }\n            public string organizations_url { get; set; }\n            public string repos_url { get; set; }\n            public string events_url { get; set; }\n            public string received_events_url { get; set; }\n            public string type { get; set; }\n            public bool site_admin { get; set; }\n\n\n        }\n\n        public class RepoCreated\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n            public string full_name { get; set; }\n            public Owner owner { get; set; }\n            public string html_url { get; set; }\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Importer/ImportBoardColumns.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Importer\n{\n    public class ImportBoardColumns\n    {\n        public class StateMappings\n        {\n            [JsonProperty(\"Epic\")]\n            public string Epic { get; set; }\n\n            [JsonProperty(\"Feature\")]\n            public string Feature { get; set; }\n\n            [JsonProperty(\"Product Backlog Item\")]\n            public string ProductBacklogItem { get; set; }\n\n            [JsonProperty(\"Bug\")]\n            public string Bug { get; set; }\n            [JsonProperty(PropertyName = \"User Story\")]\n            public string UserStory { get; set; }\n            [JsonProperty(PropertyName = \"Issue\")]\n            public string Issue { get; set; }\n        }\n\n        public class Value\n        {\n            public string name { get; set; }\n            public int itemLimit { get; set; }\n            public StateMappings stateMappings { get; set; }\n            public string columnType { get; set; }\n            public bool? isSplit { get; set; }\n            public string description { get; set; }\n        }\n\n        public class ImportBoardCols\n        {\n            public string BoardName { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Importer/ImportBoardRows.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Importer\n{\n    public class ImportBoardRows\n    {\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n\n        public class Rows\n        {\n            public string BoardName { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Importer/ImportCardFields.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Importer\n{\n    public class ImportCardFields\n    {\n        public class Epic\n        {\n            public string fieldIdentifier { get; set; }\n            public string displayFormat { get; set; }\n        }\n\n        public class Feature\n        {\n            public string fieldIdentifier { get; set; }\n            public string displayFormat { get; set; }\n        }\n\n        public class ProductBacklogItem\n        {\n            public string fieldIdentifier { get; set; }\n            public string displayFormat { get; set; }\n        }\n        public class Issue\n        {\n            public string fieldIdentifier { get; set; }\n            public string displayFormat { get; set; }\n        }\n        public class Bug\n        {\n            public string fieldIdentifier { get; set; }\n            public string displayFormat { get; set; }\n        }\n        public class UserStory\n        {\n            public string fieldIdentifier { get; set; }\n            public string displayFormat { get; set; }\n        }\n\n        public class Cards\n        {\n            [JsonProperty(\"Epic\")]\n            public IList<Epic> Epic { get; set; }\n\n            [JsonProperty(\"Feature\")]\n            public IList<Feature> Feature { get; set; }\n\n            [JsonProperty(\"Product Backlog Item\")]\n            public IList<ProductBacklogItem> ProductBacklogItem { get; set; }\n            [JsonProperty(\"User Story\")]\n            public IList<UserStory> UserStory { get; set; }\n\n            [JsonProperty(\"Bug\")]\n            public IList<Bug> Bug { get; set; }\n            [JsonProperty(\"Issue\")]\n            public IList<Issue> Issue { get; set; }\n        }\n\n        public class CardFields\n        {\n            public Cards cards { get; set; }\n            public string BoardName { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Importer/ImpotCardStyle.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.Importer\n{\n    public class CardStyle\n    {\n        public class Claus\n        {\n            public string fieldName { get; set; }\n            public int index { get; set; }\n            public string logicalOperator { get; set; }\n            [JsonProperty(\"operator\")]\n            public string Operator { get; set; }\n            public string value { get; set; }\n        }\n\n        public class Settings\n        {\n            [JsonProperty(\"title-color\")]\n            public string titlecolor { get; set; }\n\n            [JsonProperty(\"background-color\")]\n            public string backgroundcolor { get; set; }\n        }\n\n        public class Fill\n        {\n            public string name { get; set; }\n            public string isEnabled { get; set; }\n            public string filter { get; set; }\n            public IList<Claus> clauses { get; set; }\n            public Settings settings { get; set; }\n        }\n\n        public class TagStyle\n        {\n            public string name { get; set; }\n            public string isEnabled { get; set; }\n            public Settings settings { get; set; }\n        }\n\n        public class Rules\n        {\n            public IList<Fill> fill { get; set; }\n            public IList<TagStyle> tagStyle { get; set; }\n        }\n\n        public class Style\n        {\n            public string url { get; set; }\n            public Rules rules { get; set; }\n            public string _links { get; set; }\n            public string BoardName { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Importer/IncludeSubAreas.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Importer\n{\n    public class IncludeSubAreas\n    {\n        public class Root\n        {\n            public string defaultValue { get; set; }\n            public List<Value> values { get; set; }\n        }\n\n        public class Value\n        {\n            public string value { get; set; }\n            public bool includeChildren { get; set; }\n        }\n    }\n\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Plans/APlan.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Plans\n{\n   public class APlan\n    {\n        public class CardSettings\n        {\n            public Fields fields { get; set; }\n        }\n\n        public class Clause\n        {\n            public string fieldName { get; set; }\n            public string logicalOperator { get; set; }\n            public string @operator { get; set; }\n            public string value { get; set; }\n        }\n\n        public class CoreField\n        {\n            public string referenceName { get; set; }\n            public string displayName { get; set; }\n            public string fieldType { get; set; }\n            public bool isIdentity { get; set; }\n        }\n\n        public class Criterion\n        {\n            public string fieldName { get; set; }\n            public string logicalOperator { get; set; }\n            public string @operator { get; set; }\n            public string value { get; set; }\n        }\n\n        public class Fields\n        {\n            public bool showId { get; set; }\n            public bool showAssignedTo { get; set; }\n            public string assignedToDisplayFormat { get; set; }\n            public bool showState { get; set; }\n            public bool showTags { get; set; }\n            public bool showParent { get; set; }\n            public bool showEmptyFields { get; set; }\n            public bool showChildRollup { get; set; }\n            public object additionalFields { get; set; }\n            public List<CoreField> coreFields { get; set; }\n        }\n\n        public class Marker\n        {\n            public DateTime date { get; set; }\n            public string label { get; set; }\n            public string color { get; set; }\n        }\n\n        public class Properties\n        {\n            public List<TeamBacklogMapping> teamBacklogMappings { get; set; }\n            public List<Criterion> criteria { get; set; }\n            public CardSettings cardSettings { get; set; }\n            public List<Marker> markers { get; set; }\n            public List<StyleSetting> styleSettings { get; set; }\n            public List<TagStyleSetting> tagStyleSettings { get; set; }\n        }\n\n        public class Root\n        {\n            public string id { get; set; }\n            public int revision { get; set; }\n            public string name { get; set; }\n            public string type { get; set; }\n            public Properties properties { get; set; }\n        }\n\n        public class Settings\n        {\n            [JsonProperty(\"background-color\")]\n            public string backgroundcolor { get; set; }\n\n            [JsonProperty(\"title-color\")]\n            public string titlecolor { get; set; }\n        }\n\n        public class StyleSetting\n        {\n            public string name { get; set; }\n            public string isEnabled { get; set; }\n            public string filter { get; set; }\n            public List<Clause> clauses { get; set; }\n            public Settings settings { get; set; }\n        }\n\n        public class TagStyleSetting\n        {\n            public string name { get; set; }\n            public string isEnabled { get; set; }\n            public Settings settings { get; set; }\n        }\n\n        public class TeamBacklogMapping\n        {\n            public string teamId { get; set; }\n            public string categoryReferenceName { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Plans/DeliveryPlans.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Plans\n{\n    public class DeliveryPlans\n    {\n        public class GetPlans\n        {\n            public class Root\n            {\n                public int count { get; set; }\n                public List<Value> value { get; set; }\n            }\n\n            public class Value\n            {\n                public string id { get; set; }\n                public int revision { get; set; }\n                public string name { get; set; }\n                public string type { get; set; }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ProjectAndTeams/AccountMembers.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.ProjectAndTeams\n{\n    public class AccountMembers\n    {\n        public class Self\n        {\n            public string href { get; set; }\n        }\n\n        public class Memberships\n        {\n            public string href { get; set; }\n        }\n\n        public class Links\n        {\n            public Self self { get; set; }\n            public Memberships memberships { get; set; }\n        }\n\n        public class Member\n        {\n            public string subjectKind { get; set; }\n            public string domain { get; set; }\n            public string principalName { get; set; }\n            public string mailAddress { get; set; }\n            public int metaTypeId { get; set; }\n            public string origin { get; set; }\n            public string originId { get; set; }\n            public string id { get; set; }\n            public string displayName { get; set; }\n            public Links _links { get; set; }\n            public string url { get; set; }\n            public string descriptor { get; set; }\n        }\n\n        public class AccessLevel\n        {\n            public string licensingSource { get; set; }\n            public string accountLicenseType { get; set; }\n            public string licenseDisplayName { get; set; }\n            public string status { get; set; }\n            public string statusMessage { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public Member member { get; set; }\n            public AccessLevel accessLevel { get; set; }\n            public DateTime lastAccessedDate { get; set; }\n            public object projectEntitlements { get; set; }\n            public object extensions { get; set; }\n        }\n\n        public class Account\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ProjectAndTeams/GetTeamResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.ProjectAndTeams\n{\n    public class GetTeamResponse\n    {\n        public class Team : BaseViewModel\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string url { get; set; }\n            public string description { get; set; }\n            public string identityUrl { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ProjectAndTeams/ListofProjectsResponse.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.ProjectAndTeams\n{\n    public class ProjectsResponse\n    {\n        public class ProjectResult : BaseViewModel\n        {\n            public int count { get; set; }\n            public List<Value> value { get; set; }\n            public string errmsg { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string description { get; set; }\n            public string url { get; set; }\n            public string state { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamIterationsResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.ProjectAndTeams\n{\n    public class TeamIterationsResponse\n    {\n        public class Child\n        {\n            public string identifier { get; set; }\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public string path { get; set; }\n        }\n\n        public class Value\n        {\n            public string identifier { get; set; }\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public string path { get; set; }\n            public List<Child> children { get; set; }\n        }\n\n        public class Iterations\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n        //public class Value\n        //{\n        //    public string id { get; set; }\n        //    public string name { get; set; }\n\n        //}\n\n        //public class Iterations\n        //{\n        //    public int count { get; set; }\n        //    public IList<Value> value { get; set; }\n        //}\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamMemberResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.ProjectAndTeams\n{\n    public class TeamMemberResponse\n    {\n        public class Identity\n        {\n            public string displayName { get; set; }\n            public string url { get; set; }\n            public string id { get; set; }\n            public string uniqueName { get; set; }\n            public string imageUrl { get; set; }\n            public string descriptor { get; set; }\n        }\n\n        public class Value\n        {\n            public Identity identity { get; set; }\n        }\n\n        public class TeamMembers\n        {\n            public IList<Value> value { get; set; }\n            public int count { get; set; }\n        }\n\n\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamResponse.cs",
    "content": "﻿\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.ProjectAndTeams\n{\n    public class TeamResponse\n    {\n        public string id { get; set; }\n        public string name { get; set; }\n    }\n\n    public class RootTeams\n    {\n        public List<Value> value { get; set; }\n        public int count { get; set; }\n    }\n\n    public class Value\n    {\n        public string id { get; set; }\n        public string name { get; set; }\n        public string projectName { get; set; }\n        public string projectId { get; set; }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ProjectAndTeams/TeamSettingResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.ProjectAndTeams\n{\n    public class TeamSettingResponse\n    {\n        public class BacklogIteration\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string path { get; set; }\n            public string url { get; set; }\n        }\n        public class DefaultIteration\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string path { get; set; }\n            public string url { get; set; }\n        }\n        public class Project\n        {\n            public string href { get; set; }\n        }\n        public class TeamSetting\n        {\n            public BacklogIteration backlogIteration { get; set; }\n            public DefaultIteration defaultIteration { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/QueriesAndWidgets/DashBoardeTagResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.QueriesAndWidgets\n{\n    public class DashBoardeTagResponse\n    {\n        public class Dashboard\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public int position { get; set; }\n            public string eTag { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/QueriesAndWidgets/DashboardResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.QueriesAndWidgets\n{\n    public class DashboardResponse\n    {\n        public class Dashboard : BaseViewModel\n        {\n            public Value[] dashboardEntries { get; set; }\n        }\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/QueriesAndWidgets/QueryResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.QueriesAndWidgets\n{\n    public class QueryResponse\n    {\n        public string id { get; set; }\n        public string name { get; set; }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Queue/QueueModel.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Queue\n{\n    public class QueueModel : BaseViewModel\n    {\n        public int count { get; set; }\n        public AgentQueueModel[] value { get; set; }\n    }\n\n    public class Value\n    {\n        public int id { get; set; }\n        public string projectId { get; set; }\n        public string name { get; set; }\n    }\n\n    public class Pool\n    {\n        public int id { get; set; }\n        public string poolType { get; set; }\n    }\n\n    public class AgentQueueModel\n    {\n        public int id { get; set; }\n        public string projectId { get; set; }\n        public string name { get; set; }\n        public string groupScopeId { get; set; }\n        public Pool pool { get; set; }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitions.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.ReleaseDefinition\n{\n    public class ReleaseDefinitions\n    {\n        public class ReleaseDefinition\n        {\n            public string name { get; set; }\n            public object lastRelease { get; set; }\n            public string path { get; set; }\n            public Variables variables { get; set; }\n            public IList<object> variableGroups { get; set; }\n            public IList<Environment> environments { get; set; }\n            public IList<Artifact> artifacts { get; set; }\n            public IList<Trigger> triggers { get; set; }\n            public string releaseNameFormat { get; set; }\n        }\n        public class Variables\n        {\n        }\n\n        public class Owner\n        {\n            public string id { get; set; }\n            public string displayName { get; set; }\n            public string uniqueName { get; set; }\n        }\n        public class Approver\n        {\n            public string id { get; set; }\n            public string displayName { get; set; }\n            public string uniqueName { get; set; }\n        }\n        public class Approval\n        {\n            public int rank { get; set; }\n            public bool isAutomated { get; set; }\n            public bool isNotificationOn { get; set; }\n            public Approver approver { get; set; }\n        }\n        public class PreDeployApprovals\n        {\n            public IList<Approval> approvals { get; set; }\n        }\n\n        public class Environment\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n            public int rank { get; set; }\n            public Owner owner { get; set; }\n            public Variables variables { get; set; }\n            public PreDeployApprovals preDeployApprovals { get; set; }\n            public DeployStep deployStep { get; set; }\n            public PostDeployApprovals postDeployApprovals { get; set; }\n            public IList<DeployPhas> deployPhases { get; set; }\n            public EnvironmentOptions environmentOptions { get; set; }\n            public IList<object> demands { get; set; }\n            public string queueId { get; set; }\n            public IList<Condition> conditions { get; set; }\n            public ExecutionPolicy executionPolicy { get; set; }\n            public IList<object> schedules { get; set; }\n            public RetentionPolicy retentionPolicy { get; set; }\n        }\n        public class DeployStep\n        {\n            public IList<Task> tasks { get; set; }\n        }\n\n        public class DeploymentInput\n        {\n            public ParallelExecution parallelExecution { get; set; }\n            public bool skipArtifactsDownload { get; set; }\n            public int timeoutInMinutes { get; set; }\n            public string queueId { get; set; }\n            public IList<object> demands { get; set; }\n            public bool enableAccessToken { get; set; }\n            public bool clean { get; set; }\n            public string cleanOptions { get; set; }\n        }\n        public class DeployPhas\n        {\n            public DeploymentInput deploymentInput { get; set; }\n            public int rank { get; set; }\n            public string phaseType { get; set; }\n            public string name { get; set; }\n            public IList<object> workflowTasks { get; set; }\n        }\n\n        public class EnvironmentOptions\n        {\n            public string emailNotificationType { get; set; }\n            public string emailRecipients { get; set; }\n            public bool skipArtifactsDownload { get; set; }\n            public int timeoutInMinutes { get; set; }\n            public bool enableAccessToken { get; set; }\n        }\n\n        public class Condition\n        {\n            public string name { get; set; }\n            public string conditionType { get; set; }\n            public string value { get; set; }\n        }\n\n        public class ExecutionPolicy\n        {\n            public int concurrencyCount { get; set; }\n            public int queueDepthCount { get; set; }\n        }\n\n        public class RetentionPolicy\n        {\n            public int daysToKeep { get; set; }\n            public int releasesToKeep { get; set; }\n            public bool retainBuild { get; set; }\n        }\n        public class PostDeployApprovals\n        {\n            public IList<Approval> approvals { get; set; }\n        }\n\n        public class ParallelExecution\n        {\n            public string parallelExecutionType { get; set; }\n        }\n\n\n        public class Task\n        {\n            public string taskId { get; set; }\n            public string version { get; set; }\n            public string name { get; set; }\n            public bool enabled { get; set; }\n            public bool alwaysRun { get; set; }\n            public bool continueOnError { get; set; }\n            public int timeoutInMinutes { get; set; }\n            public string definitionType { get; set; }\n            public Inputs inputs { get; set; }\n        }\n        public class Artifact\n        {\n            public string sourceId { get; set; }\n            public string type { get; set; }\n            public string alias { get; set; }\n            public DefinitionReference definitionReference { get; set; }\n            public bool isPrimary { get; set; }\n        }\n        public class Inputs\n        {\n            public string ConnectedServiceName { get; set; }\n            public string WebAppName { get; set; }\n            public string DeployToSlotFlag { get; set; }\n            public string ResourceGroupName { get; set; }\n            public string SlotName { get; set; }\n            public string Package { get; set; }\n            public string SetParametersFile { get; set; }\n            public string UseWebDeploy { get; set; }\n            public string RemoveAdditionalFilesFlag { get; set; }\n            public string ExcludeFilesFromAppDataFlag { get; set; }\n            public string TakeAppOfflineFlag { get; set; }\n            public string VirtualApplication { get; set; }\n            public string AdditionalArguments { get; set; }\n            public string WebAppUri { get; set; }\n            public string ConnectedServiceNameSelector { get; set; }\n            public string ConnectedServiceNameARM { get; set; }\n            public string ServerName { get; set; }\n            public string DatabaseName { get; set; }\n            public string SqlUsername { get; set; }\n            public string SqlPassword { get; set; }\n            public string TaskNameSelector { get; set; }\n            public string DacpacFile { get; set; }\n            public string SqlFile { get; set; }\n            public string SqlInline { get; set; }\n            public string PublishProfile { get; set; }\n            public string SqlAdditionalArguments { get; set; }\n            public string InlineAdditionalArguments { get; set; }\n            public string IpDetectionMethod { get; set; }\n            public string StartIpAddress { get; set; }\n            public string EndIpAddress { get; set; }\n            public string DeleteFirewallRule { get; set; }\n            public string appID { get; set; }\n            public string binaryPath { get; set; }\n            public string symbolsPath { get; set; }\n            public string nativeLibraryPath { get; set; }\n            public string notesPath { get; set; }\n            public string notes { get; set; }\n            public string publish { get; set; }\n            public string mandatory { get; set; }\n            public string notify { get; set; }\n            public string tags { get; set; }\n            public string teams { get; set; }\n            public string users { get; set; }\n            public string authType { get; set; }\n            public string serviceEndpoint { get; set; }\n            public string serviceAccountKey { get; set; }\n            public string apkFile { get; set; }\n            public string track { get; set; }\n            public string userFraction { get; set; }\n            public string changeLogFile { get; set; }\n            public string shouldAttachMetadata { get; set; }\n            public string metadataRootPath { get; set; }\n            public string additionalApks { get; set; }\n            public string minDelta { get; set; }\n            public string Operator { get; set; }\n            public string username { get; set; }\n            public string password { get; set; }\n            public string filename { get; set; }\n            public string arguments { get; set; }\n            public string modifyEnvironment { get; set; }\n            public string workingFolder { get; set; }\n            public string failOnStandardError { get; set; }\n            public string testMachineGroup { get; set; }\n            public string dropLocation { get; set; }\n            public string testSelection { get; set; }\n            public string testPlan { get; set; }\n            public string testSuite { get; set; }\n            public string testConfiguration { get; set; }\n            public string sourcefilters { get; set; }\n            public string testFilterCriteria { get; set; }\n            public string runSettingsFile { get; set; }\n            public string overrideRunParams { get; set; }\n            public string codeCoverageEnabled { get; set; }\n            public string customSlicingEnabled { get; set; }\n            public string testRunTitle { get; set; }\n            public string platform { get; set; }\n            public string configuration { get; set; }\n            public string testConfigurations { get; set; }\n            public string autMachineGroup { get; set; }\n            public string connectedServiceName { get; set; }\n            public string websiteUrl { get; set; }\n            public string testName { get; set; }\n            public string vuLoad { get; set; }\n            public string runDuration { get; set; }\n            public string geoLocation { get; set; }\n            public string machineType { get; set; }\n            public string avgResponseTimeThreshold { get; set; }\n            public string ConnectedServiceNameClassic { get; set; }\n            public string action { get; set; }\n            public string actionClassic { get; set; }\n            public string resourceGroupName { get; set; }\n            public string cloudService { get; set; }\n            public string location { get; set; }\n            public string csmFile { get; set; }\n            public string csmParametersFile { get; set; }\n            public string overrideParameters { get; set; }\n            [JsonProperty(PropertyName = \"Deployment Mode\")]\n            public string deploymentMode { get; set; }\n            public string enableDeploymentPrerequisitesForCreate { get; set; }\n            public string enableDeploymentPrerequisitesForSelect { get; set; }\n            public string outputVariable { get; set; }\n            public string WebSiteLocation { get; set; }\n            public string WebSiteName { get; set; }\n            public string Slot { get; set; }\n            public string doNotDelete { get; set; }\n            public string appIdentifier { get; set; }\n            public string ipaPath { get; set; }\n            public string releaseTrack { get; set; }\n            public string skipBinaryUpload { get; set; }\n            public string uploadMetadata { get; set; }\n            public string metadataPath { get; set; }\n            public string uploadScreenshots { get; set; }\n            public string screenshotsPath { get; set; }\n            public string shouldSubmitForReview { get; set; }\n            public string shouldAutoRelease { get; set; }\n            public string releaseNotes { get; set; }\n            public string shouldSkipWaitingForProcessing { get; set; }\n            public string shouldSkipSubmission { get; set; }\n            public string teamId { get; set; }\n            public string teamName { get; set; }\n\n        }\n        public class DefinitionReference\n        {\n            public Definition definition { get; set; }\n            public Project project { get; set; }\n        }\n        public class Definition\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n\n        public class Project\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n        }\n        public class Trigger\n        {\n            public string artifactAlias { get; set; }\n            public string triggerType { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/ReleaseDefinition/ReleaseDefinitionsResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.ReleaseDefinition\n{\n    public class ReleaseDefinitionsResponse\n    {\n        public class Release\n        {\n            public int count { get; set; }\n            public Value[] value { get; set; }\n        }\n        public class Value\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Repository/GetAllRepositoriesResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Repository\n{\n    public class GetAllRepositoriesResponse\n    {\n        public class Repositories : BaseViewModel\n        {\n            public List<Value> value { get; set; }\n            public int count { get; set; }\n        }\n\n        public class Project\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string description { get; set; }\n            public string url { get; set; }\n            public string state { get; set; }\n            public int revision { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string url { get; set; }\n            public Project project { get; set; }\n            public string defaultBranch { get; set; }\n            public string remoteUrl { get; set; }\n        }\n    }\n\n}"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Repository/PullRequestComments.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Repository\n{\n    public class PullRequestComments\n    {\n        public class Comment\n        {\n            public int parentCommentId { get; set; }\n            public string content { get; set; }\n            public string commentType { get; set; }\n        }\n        public class reply\n        {\n            public string content { get; set; }\n            public string parentCommentId { get; set; }\n            public string commentType { get; set; }\n        }\n\n        public class MicrosoftTeamFoundationDiscussionSupportsMarkdown\n        {\n            public string type { get; set; }\n            public int value { get; set; }\n        }\n\n        public class Properties\n        {\n            [JsonProperty(PropertyName = \"Microsoft.TeamFoundation.Discussion.SupportsMarkdown\")]\n            public MicrosoftTeamFoundationDiscussionSupportsMarkdown Microsoft_TeamFoundation_Discussion_SupportsMarkdown { get; set; }\n        }\n        public class IterationContext\n        {\n            public int firstComparingIteration { get; set; }\n            public int secondComparingIteration { get; set; }\n        }\n        public class PullRequestThreadContext\n        {\n            public IterationContext iterationContext { get; set; }\n            public int? changeTrackingId { get; set; }\n        }\n        public class RightFileStart\n        {\n            public int line { get; set; }\n            public int offset { get; set; }\n        }\n\n        public class RightFileEnd\n        {\n            public int line { get; set; }\n            public int offset { get; set; }\n        }\n\n        public class ThreadContext\n        {\n            public string filePath { get; set; }\n            public RightFileStart rightFileStart { get; set; }\n            public RightFileEnd rightFileEnd { get; set; }\n        }\n        public class Value\n        {\n            public IList<Comment> comments { get; set; }\n            public Properties properties { get; set; }\n            public PullRequestThreadContext pullRequestThreadContext { get; set; }\n            public ThreadContext threadContext { get; set; }\n            public IList<reply> Replies { get; set; }\n\n        }\n\n        public class Comments\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n\n\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Service/ServiceEndpointModel.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Service\n{\n\n    public class Data\n    {\n    }\n\n    public class CreatedBy\n    {\n        public string id { get; set; }\n        public string displayName { get; set; }\n        public string uniqueName { get; set; }\n    }\n\n    public class Authorization\n    {\n        public string scheme { get; set; }\n    }\n\n    public class ServiceEndpointModel\n    {\n        public Data data { get; set; }\n        public string id { get; set; }\n        public string name { get; set; }\n        public string type { get; set; }\n        public string url { get; set; }\n        public CreatedBy createdBy { get; set; }\n        public Authorization authorization { get; set; }\n        public bool isReady { get; set; }\n    }\n\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Sprint/SprintResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Sprint\n{\n    public class SprintResponse\n    {\n        public class Attributes\n        {\n            public DateTime startDate { get; set; }\n            public DateTime finishDate { get; set; }\n            public string timeFrame { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string path { get; set; }\n            public Attributes attributes { get; set; }\n            public string url { get; set; }\n        }\n\n        public class Sprints\n        {\n            public int count { get; set; }\n            public IList<Value> value { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Wiki/CodewikiResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Wiki\n{\n    public class CodewikiResponse\n    {\n        public class Version\n        {\n            public string version { get; set; }\n        }\n\n        public class Projectwiki\n        {\n            public string id { get; set; }\n            public IList<Version> versions { get; set; }\n            public string url { get; set; }\n            public string remoteUrl { get; set; }\n            public string type { get; set; }\n            public string name { get; set; }\n            public string projectId { get; set; }\n            public string repositoryId { get; set; }\n            public string mappedPath { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/Wiki/ProjectwikiResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.Wiki\n{\n    public class ProjectwikiResponse\n    {\n        public class Version\n        {\n            public string version { get; set; }\n        }\n\n        public class Projectwiki\n        {\n            public string id { get; set; }\n            public IList<Version> versions { get; set; }\n            public string url { get; set; }\n            public string remoteUrl { get; set; }\n            public string type { get; set; }\n            public string name { get; set; }\n            public string projectId { get; set; }\n            public string repositoryId { get; set; }\n            public string mappedPath { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/BatchRequest.cs",
    "content": "﻿using System.Collections.Generic;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class BatchRequest\n    {\n        public string method { get; set; }\n        public Dictionary<string, string> headers { get; set; }\n        public object[] body { get; set; }\n        public string uri { get; set; }\n\n\n        public class Value\n        {\n            public string rel { get; set; }\n            public string url { get; set; }\n            public Attributes attributes { get; set; }\n        }\n\n        public class Attributes\n        {\n            public string comment { get; set; }\n        }\n    }\n\n   \n}"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/CardStylesPatch.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class CardStylesPatch\n    {\n        public class ListofCardStyles\n        {\n            [JsonProperty(\"rules\")]\n            public Rules rules { get; set; }\n        }\n\n        public class Rules : BaseViewModel\n        {\n            [JsonProperty(\"fill\")]\n            public Fill[] fill { get; set; }\n            [JsonProperty(\"tagStyle\")]\n            public TagStyle[] tagstyle { get; set; }\n        }\n\n        public class Fill\n        {\n            public string name { get; set; }\n            public string isEnabled { get; set; }\n            public string filter { get; set; }\n\n            public Dictionary<string, string> settings { get; set; }\n\n        }\n        public class TagStyle\n        {\n            public string name { get; set; }\n            public string isEnabled { get; set; }\n\n\n            public Dictionary<string, string> settings { get; set; }\n\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/ColumnPost.cs",
    "content": "﻿using Newtonsoft.Json;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class Scrum\n    {\n        public class Columns\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string itemLimit { get; set; }\n            public string isSplit { get; set; }\n            public string description { get; set; }\n            public string columnType { get; set; }\n            public StateMappings stateMappings { get; set; }\n        }\n\n        public class StateMappings\n        {\n            [JsonProperty(PropertyName = \"Product Backlog Item\")]\n            public string PBI { get; set; }\n\n            [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]\n            public string Bug { get; set; }\n            [JsonProperty(PropertyName = \"Epic\")]\n            public string epic { get; set; }\n            [JsonProperty(PropertyName = \"Feature\")]\n            public string feature { get; set; }\n            [JsonProperty(PropertyName = \"User Story\")]\n            public string UserStory { get; set; }\n            [JsonProperty(PropertyName = \"Issue\")]\n            public string Issue { get; set; }\n        }\n    }\n    public class Agile\n    {\n        public class StateMappings\n        {\n            [JsonProperty(PropertyName = \"User Story\")]\n            public string UserStory { get; set; }\n            [JsonProperty(PropertyName =\"Bug\")] \n            public string bug { get; set; }\n        }\n\n        public class Columns\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public int itemLimit { get; set; }\n            public StateMappings stateMappings { get; set; }\n            public string columnType { get; set; }\n            public bool? isSplit { get; set; }\n            public string description { get; set; }\n        }\n\n\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/CreateUpdateNodeViewModel.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class CreateUpdateNodeViewModel\n    {\n        public class Node : BaseViewModel\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n            public Attributes attributes { get; set; }\n        }\n\n        public class Attributes\n        {\n            public DateTime startDate { get; set; }\n            public DateTime finishDate { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/GetBoardColumnResponse.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class GetBoardColumnResponse\n    {\n        public class ColumnResponse : BaseViewModel\n        {\n\n            public int count { get; set; }\n            public Value[] columns { get; set; }\n            public Fields fields { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string itemLimit { get; set; }\n            public string isSplit { get; set; }\n            public string description { get; set; }\n            public string columnType { get; set; }\n            public StateMappings stateMappings { get; set; }\n        }\n\n        public class Fields\n        {\n            public Field columnField { get; set; }\n            public Field rowField { get; set; }\n            public Field doneField { get; set; }\n        }\n\n        public class Field\n        {\n            public string referenceName { get; set; }\n            public string url { get; set; }\n        }\n\n        public class StateMappings\n        {\n            [JsonProperty(PropertyName = \"Product Backlog Item\")]\n            public string PBI { get; set; }\n            [JsonProperty(PropertyName =\"Bug\")]\n            public string bug { get; set; }\n            [JsonProperty(PropertyName = \"Epic\")]\n            public string epic { get; set; }\n            [JsonProperty(PropertyName = \"Feature\")]\n            public string feature { get; set; }\n            [JsonProperty(PropertyName = \"User Story\")]\n            public string UserStory { get; set; }\n        }\n    }\n}\n\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/GetBoardColumnResponseAgile.cs",
    "content": "﻿using Newtonsoft.Json;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class GetBoardColumnResponseAgile\n    {\n        public class ColumnResponse : BaseViewModel\n        {\n            public int count { get; set; }\n            public Value[] columns { get; set; }\n            public Fields fields { get; set; }\n        }\n\n        public class Value\n        {\n            public string id { get; set; }\n            public string name { get; set; }\n            public string itemLimit { get; set; }\n            public string isSplit { get; set; }\n            public string description { get; set; }\n            public string columnType { get; set; }\n            public StateMappings stateMappings { get; set; }\n        }\n\n        public class Fields\n        {\n            public Field columnField { get; set; }\n            public Field rowField { get; set; }\n            public Field doneField { get; set; }\n        }\n\n        public class Field\n        {\n            public string referenceName { get; set; }\n            public string url { get; set; }\n        }\n\n        public class StateMappings\n        {\n            [JsonProperty(PropertyName = \"User Story\")]\n            public string UserStory { get; set; }\n            [JsonProperty(PropertyName = \"Bug\")]\n            public string bug { get; set; }\n            [JsonProperty(PropertyName = \"Epic\")]\n            public string epic { get; set; }\n            [JsonProperty(PropertyName = \"Feature\")]\n            public string feature { get; set; }\n        }\n    }\n}\n\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/GetCardFieldResponse.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class GetCardFieldResponse\n    {\n        public class ListofCards\n        {\n            [JsonProperty(\"cards\")]\n            public Cards cards { get; set; }\n        }\n        public class Cards : BaseViewModel\n        {\n            [JsonProperty(\"Bug\")]\n            public Dictionary<string, string>[] bugs { get; set; }\n            [JsonProperty(\"Product Backlog Item\")]\n            public Dictionary<string, string>[] pbis { get; set; }\n        }\n    }\n    public class GetCardFieldResponseAgile\n    {\n        public class ListofCards\n        {\n            [JsonProperty(\"cards\")]\n            public Cards cards { get; set; }\n        }\n        public class Cards : BaseViewModel\n        {\n            [JsonProperty(\"Bug\")]\n            public Dictionary<string, string>[] bugs { get; set; }\n            [JsonProperty(\"User Story\")]\n            public Dictionary<string, string>[] UserStory { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/GetNodeResponse.cs",
    "content": "﻿using System;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class GetNodeResponse\n    {\n        public class Node : BaseViewModel\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public Attributes attributes { get; set; }\n            public _Links _links { get; set; }\n            public string url { get; set; }\n        }\n\n        public class Attributes\n        {\n            public DateTime startDate { get; set; }\n            public DateTime finishDate { get; set; }\n        }\n\n        public class _Links\n        {\n            public Self self { get; set; }\n            public Parent parent { get; set; }\n        }\n\n        public class Self\n        {\n            public string href { get; set; }\n        }\n\n        public class Parent\n        {\n            public string href { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/GetNodesResponse.cs",
    "content": "﻿\nusing System;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class GetNodesResponse\n    {\n        public class Nodes : BaseViewModel\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public Child[] children { get; set; }\n            public _Links _links { get; set; }\n            public string url { get; set; }\n        }\n\n        public class _Links\n        {\n            public Self self { get; set; }\n        }\n\n        public class Self\n        {\n            public string href { get; set; }\n        }\n\n        public class Child\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public string url { get; set; }\n            public Child[] children { get; set; }\n        }\n\n        public class Child1\n        {\n            public int id { get; set; }\n            public string name { get; set; }\n            public string structureType { get; set; }\n            public bool hasChildren { get; set; }\n            public string url { get; set; }\n            public Attributes attributes { get; set; }\n        }\n\n        public class Attributes\n        {\n            public DateTime? startDate { get; set; }\n            public DateTime? finishDate { get; set; }\n        }\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/GetWorkItemsResponse.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class GetWorkItemsResponse\n    {\n        public class Results : BaseViewModel\n        {\n            public string queryType { get; set; }\n            public string queryResultType { get; set; }\n            public DateTime asOf { get; set; }\n            public Column[] columns { get; set; }\n            public Workitem[] workItems { get; set; }\n        }\n\n        public class Column\n        {\n            public string referenceName { get; set; }\n            public string name { get; set; }\n            public string url { get; set; }\n        }\n\n        public class Workitem\n        {\n            public int id { get; set; }\n            public string url { get; set; }\n        }\n\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/ImportWorkItemModel.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class ImportWorkItemModel\n    {\n        public class WorkItems : BaseViewModel\n        {\n            public int count { get; set; }\n            public Value[] value { get; set; }\n\n        }\n\n        public class Value\n        {\n            public int id { get; set; }\n            public int rev { get; set; }\n            public Fields fields { get; set; }\n            public Relations[] relations { get; set; }\n            public string url { get; set; }\n\n\n        }\n\n        public class Fields\n        {\n            [JsonProperty(PropertyName = \"System.AreaPath\")]\n            public string SystemAreaPath { get; set; }\n\n            [JsonProperty(PropertyName = \"System.TeamProject\")]\n            public string SystemTeamProject { get; set; }\n\n            [JsonProperty(PropertyName = \"System.IterationPath\")]\n            public string SystemIterationPath { get; set; }\n\n            [JsonProperty(PropertyName = \"System.WorkItemType\")]\n            public string SystemWorkItemType { get; set; }\n\n            [JsonProperty(PropertyName = \"System.State\")]\n            public string SystemState { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Reason\")]\n            public string SystemReason { get; set; }\n\n            [JsonProperty(PropertyName = \"System.CreatedDate\")]\n            public DateTime SystemCreatedDate { get; set; }\n\n            [JsonProperty(PropertyName = \"System.CreatedBy\")]\n            public string SystemCreatedBy { get; set; }\n\n            [JsonProperty(PropertyName = \"System.ChangedDate\")]\n            public DateTime SystemChangedDate { get; set; }\n\n            [JsonProperty(PropertyName = \"System.ChangedBy\")]\n            public string SystemChangedBy { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Title\")]\n            public string SystemTitle { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Scheduling.Effort\")]\n            public float MicrosoftVSTSSchedulingEffort { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Description\")]\n            public string SystemDescription { get; set; }\n\n            [JsonProperty(PropertyName = \"System.AssignedTo\")]\n            public string SystemAssignedTo { get; set; }\n\n            [JsonProperty(PropertyName = \"System.BoardLane\")]\n            public string SystemBoardLane { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Scheduling.RemainingWork\")]\n            public float MicrosoftVSTSSchedulingRemainingWork { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Common.Priority\")]\n            public float MicrosoftVSTSCommonPriority { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Tags\")]\n            public string SystemTags { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.TCM.Steps\")]\n            public string MicrosoftVSTSTCMSteps { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.TCM.Parameters\")]\n            public string MicrosoftVSTSTCMParameters { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.TCM.LocalDataSource\")]\n            public string MicrosoftVSTSTCMLocalDataSource { get; set; }\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.TCM.AutomationStatus\")]\n            public string MicrosoftVSTSTCMAutomationStatus { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Common.AcceptanceCriteria\")]\n            public string MicrosoftVSTSCommonAcceptanceCriteria { get; set; }\n        }\n\n        public class Relations\n        {\n            public string rel { get; set; }\n            public string url { get; set; }\n            public Dictionary<string, string> attributes { get; set; }\n        }\n\n        public class Attributes\n        {\n            public string isLocked { get; set; }\n            public string comment { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/ReturnException.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    class ReturnException\n    {\n        public string id { get; set; }\n        public string innerException { get; set; }\n        public string message { get; set; }\n        public string typeName { get; set; }\n        public string typeKey { get; set; }\n        public string errorCode { get; set; }\n        public string eventId { get; set; }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/SetEpicSettings.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class SetEpicSettings\n    {\n        public class Epiclist \n        {\n            [JsonProperty(\"backlogVisibilities\")]\n            public BacklogVisibilities backlogVisibilities { get; set; }\n        }\n\n\n        public class BacklogVisibilities : BaseViewModel\n        {\n            [JsonProperty(\"Microsoft.EpicCategory\")]\n            public string epi { get; set; }\n            [JsonProperty(\"Microsoft.FeatureCategory\")]\n            public string pbi { get; set; }\n            [JsonProperty(\"Microsoft.RequirementCategory\")]\n            public string Req { get; set; }\n        }\n\n\n\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/WorkItemBatchPostResponse.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class WorkItemBatchPostResponse\n    {\n        public int count { get; set; }\n        [JsonProperty(\"value\")]\n        public List<Value> values { get; set; }\n\n        public class Value\n        {\n            public int code { get; set; }\n            public Dictionary<string, string> headers { get; set; }\n            public string body { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatch.cs",
    "content": "﻿using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    class WorkItemPatch\n    {\n        public class Field\n        {\n            public string op { get; set; }\n            public string path { get; set; }\n            public object value { get; set; }\n        }\n\n        public class Value\n        {\n            public string rel { get; set; }\n            public string url { get; set; }\n            public Attributes attributes { get; set; }\n        }\n\n        public class Attributes\n        {\n            public string comment { get; set; }\n            public string name { get; set; }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/Viewmodel/WorkItem/WorkItemPatchResponse.cs",
    "content": "﻿using Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nnamespace VstsRestAPI.Viewmodel.WorkItem\n{\n    public class WorkItemPatchResponse\n    {\n\n        public class WorkItem : BaseViewModel\n        {\n            public int id { get; set; }\n            public int rev { get; set; }\n            public Fields fields { get; set; }\n            public Relation[] relations { get; set; }\n            public _Links _links { get; set; }\n            public string url { get; set; }\n        }\n\n        public class Fields\n        {\n            [JsonProperty(PropertyName = \"System.AreaPath\")]\n            public string SystemAreaPath { get; set; }\n\n            [JsonProperty(PropertyName = \"System.TeamProject\")]\n            public string SystemTeamProject { get; set; }\n\n            [JsonProperty(PropertyName = \"System.IterationPath\")]\n            public string SystemIterationPath { get; set; }\n\n            [JsonProperty(PropertyName = \"System.WorkItemType\")]\n            public string SystemWorkItemType { get; set; }\n\n            [JsonProperty(PropertyName = \"System.State\")]\n            public string SystemState { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Reason\")]\n            public string SystemReason { get; set; }\n\n            [JsonProperty(PropertyName = \"System.CreatedDate\")]\n            public DateTime SystemCreatedDate { get; set; }\n\n            [JsonProperty(PropertyName = \"System.CreatedBy\")]\n            public string SystemCreatedBy { get; set; }\n\n            [JsonProperty(PropertyName = \"System.ChangedDate\")]\n            public DateTime SystemChangedDate { get; set; }\n\n            [JsonProperty(PropertyName = \"System.ChangedBy\")]\n            public string SystemChangedBy { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Title\")]\n            public string SystemTitle { get; set; }\n\n            [JsonProperty(PropertyName = \"System.BoardColumn\")]\n            public string SystemBoardColumn { get; set; }\n\n            [JsonProperty(PropertyName = \"System.BoardColumnDone\")]\n            public bool SystemBoardColumnDone { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Common.Priority\")]\n            public int MicrosoftVSTSCommonPriority { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Common.BusinessValue\")]\n            public int MicrosoftVSTSCommonBusinessValue { get; set; }\n\n            [JsonProperty(PropertyName = \"Microsoft.VSTS.Common.ValueArea\")]\n            public string MicrosoftVSTSCommonValueArea { get; set; }\n\n            [JsonProperty(PropertyName = \"System.Description\")]\n            public string SystemDescription { get; set; }\n\n            [JsonProperty(PropertyName = \"System.History\")]\n            public string SystemHistory { get; set; }\n        }\n\n        public class _Links\n        {\n            public Self self { get; set; }\n            public Workitemupdates workItemUpdates { get; set; }\n            public Workitemrevisions workItemRevisions { get; set; }\n            public Workitemhistory workItemHistory { get; set; }\n            public Html html { get; set; }\n            public Workitemtype workItemType { get; set; }\n            public Fields1 fields { get; set; }\n        }\n\n        public class Self\n        {\n            public string href { get; set; }\n        }\n\n        public class Workitemupdates\n        {\n            public string href { get; set; }\n        }\n\n        public class Workitemrevisions\n        {\n            public string href { get; set; }\n        }\n\n        public class Workitemhistory\n        {\n            public string href { get; set; }\n        }\n\n        public class Html\n        {\n            public string href { get; set; }\n        }\n\n        public class Workitemtype\n        {\n            public string href { get; set; }\n        }\n\n        public class Fields1\n        {\n            public string href { get; set; }\n        }\n\n        public class Relation\n        {\n            public string rel { get; set; }\n            public string url { get; set; }\n            public Attributes attributes { get; set; }\n        }\n\n        public class Attributes\n        {\n            public bool isLocked { get; set; }\n        }\n    }\n}\n\n"
  },
  {
    "path": "src/VstsRestAPI/VstsRestAPI.csproj",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"12.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\n  <Import Project=\"$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props\" Condition=\"Exists('$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props')\" />\n  <PropertyGroup>\n    <Configuration Condition=\" '$(Configuration)' == '' \">Debug</Configuration>\n    <Platform Condition=\" '$(Platform)' == '' \">AnyCPU</Platform>\n    <ProjectGuid>{720825C0-F4F3-44F3-9492-3BC4C967034D}</ProjectGuid>\n    <OutputType>Library</OutputType>\n    <AppDesignerFolder>Properties</AppDesignerFolder>\n    <RootNamespace>VstsRestAPI</RootNamespace>\n    <AssemblyName>VstsRestAPI</AssemblyName>\n    <TargetFrameworkVersion>v4.7</TargetFrameworkVersion>\n    <FileAlignment>512</FileAlignment>\n    <SccProjectName>SAK</SccProjectName>\n    <SccLocalPath>SAK</SccLocalPath>\n    <SccAuxPath>SAK</SccAuxPath>\n    <SccProvider>SAK</SccProvider>\n    <TargetFrameworkProfile />\n  </PropertyGroup>\n  <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' \">\n    <DebugSymbols>true</DebugSymbols>\n    <DebugType>full</DebugType>\n    <Optimize>false</Optimize>\n    <OutputPath>bin\\Debug\\</OutputPath>\n    <DefineConstants>DEBUG;TRACE</DefineConstants>\n    <ErrorReport>prompt</ErrorReport>\n    <WarningLevel>4</WarningLevel>\n  </PropertyGroup>\n  <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' \">\n    <DebugType>pdbonly</DebugType>\n    <Optimize>true</Optimize>\n    <OutputPath>bin\\Release\\</OutputPath>\n    <DefineConstants>TRACE</DefineConstants>\n    <ErrorReport>prompt</ErrorReport>\n    <WarningLevel>4</WarningLevel>\n  </PropertyGroup>\n  <ItemGroup>\n    <Reference Include=\"log4net, Version=2.0.12.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\log4net.2.0.12\\lib\\net45\\log4net.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Microsoft.Win32.Primitives.4.3.0\\lib\\net46\\Microsoft.Win32.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\Newtonsoft.Json.12.0.3\\lib\\net45\\Newtonsoft.Json.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System\" />\n    <Reference Include=\"System.AppContext, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.AppContext.4.3.0\\lib\\net463\\System.AppContext.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.ComponentModel.Composition\" />\n    <Reference Include=\"System.Configuration\" />\n    <Reference Include=\"System.Console, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Console.4.3.0\\lib\\net46\\System.Console.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Core\" />\n    <Reference Include=\"System.Diagnostics.Tracing, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Diagnostics.Tracing.4.3.0\\lib\\net462\\System.Diagnostics.Tracing.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Globalization.Calendars, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Globalization.Calendars.4.3.0\\lib\\net46\\System.Globalization.Calendars.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.4.3.0\\lib\\net462\\System.IO.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.Compression.4.3.0\\lib\\net46\\System.IO.Compression.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO.Compression.FileSystem\" />\n    <Reference Include=\"System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.Compression.ZipFile.4.3.0\\lib\\net46\\System.IO.Compression.ZipFile.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.FileSystem.4.3.0\\lib\\net46\\System.IO.FileSystem.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.IO.FileSystem.Primitives.4.3.0\\lib\\net46\\System.IO.FileSystem.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Linq, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Linq.4.3.0\\lib\\net463\\System.Linq.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Linq.Expressions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Linq.Expressions.4.3.0\\lib\\net463\\System.Linq.Expressions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net\" />\n    <Reference Include=\"System.Net.Http, Version=4.1.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Http.4.3.4\\lib\\net46\\System.Net.Http.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Http.Formatting.Extension.5.2.3.0\\lib\\System.Net.Http.Extensions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Http.Formatting.Extension.5.2.3.0\\lib\\System.Net.Http.Formatting.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net.Http.Primitives, Version=4.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Http.Formatting.Extension.5.2.3.0\\lib\\System.Net.Http.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Net.Sockets, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Net.Sockets.4.3.0\\lib\\net46\\System.Net.Sockets.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Numerics\" />\n    <Reference Include=\"System.Reflection, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Reflection.4.3.0\\lib\\net462\\System.Reflection.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.4.3.0\\lib\\net462\\System.Runtime.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.Extensions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.Extensions.4.3.0\\lib\\net462\\System.Runtime.Extensions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.InteropServices, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.InteropServices.4.3.0\\lib\\net463\\System.Runtime.InteropServices.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.InteropServices.RuntimeInformation.4.3.0\\lib\\net45\\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.Serialization\" />\n    <Reference Include=\"System.Runtime.Serialization.Primitives, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.Serialization.Primitives.4.3.0\\lib\\net46\\System.Runtime.Serialization.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Runtime.Serialization.Xml, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Runtime.Serialization.Xml.4.3.0\\lib\\net46\\System.Runtime.Serialization.Xml.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Security.Cryptography.Algorithms, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Security.Cryptography.Algorithms.4.3.0\\lib\\net463\\System.Security.Cryptography.Algorithms.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Security.Cryptography.Encoding.4.3.0\\lib\\net46\\System.Security.Cryptography.Encoding.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Security.Cryptography.Primitives.4.3.0\\lib\\net46\\System.Security.Cryptography.Primitives.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Security.Cryptography.X509Certificates, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Security.Cryptography.X509Certificates.4.3.0\\lib\\net461\\System.Security.Cryptography.X509Certificates.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Text.RegularExpressions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Text.RegularExpressions.4.3.0\\lib\\net463\\System.Text.RegularExpressions.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Web\" />\n    <Reference Include=\"System.Web.Http.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Web.Http.Common.4.0.20126.16343\\lib\\net40\\System.Web.Http.Common.dll</HintPath>\n    </Reference>\n    <Reference Include=\"System.Xml.Linq\" />\n    <Reference Include=\"System.Data.DataSetExtensions\" />\n    <Reference Include=\"Microsoft.CSharp\" />\n    <Reference Include=\"System.Data\" />\n    <Reference Include=\"System.Xml\" />\n    <Reference Include=\"System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\n      <HintPath>..\\packages\\System.Xml.ReaderWriter.4.3.0\\lib\\net46\\System.Xml.ReaderWriter.dll</HintPath>\n    </Reference>\n  </ItemGroup>\n  <ItemGroup>\n    <Compile Include=\"ApiServiceBase.cs\" />\n    <Compile Include=\"Build\\BuildDefinition.cs\" />\n    <Compile Include=\"Configuration.cs\" />\n    <Compile Include=\"DeliveryPlans\\Plans.cs\" />\n    <Compile Include=\"DeploymentGroup\\DeploymentGroup.cs\" />\n    <Compile Include=\"ExtensionManagement\\GetListExtenison.cs\" />\n    <Compile Include=\"Extractor\\ClassificationNodes.cs\" />\n    <Compile Include=\"Extractor\\GetBuildandReleaseDefs.cs\" />\n    <Compile Include=\"Extractor\\ProjectProperties.cs\" />\n    <Compile Include=\"Extractor\\VariableGroups.cs\" />\n    <Compile Include=\"Git\\GitHubImportRepo.cs\" />\n    <Compile Include=\"ProjectsAndTeams\\GetAllGroups.cs\" />\n    <Compile Include=\"ProjectsAndTeams\\TeamIteration.cs\" />\n    <Compile Include=\"Services\\HttpServices.cs\" />\n    <Compile Include=\"Service\\ServiceEndPoint.cs\" />\n    <Compile Include=\"Viewmodel\\BranchPolicy\\BranchPolicy.cs\" />\n    <Compile Include=\"Viewmodel\\BranchPolicy\\BranchPolicyTypes.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\BoardColumnResponseAgile.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\BoardColumnResponseBasic.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\BoardColumnResponseScrum.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\BuildDefinitionResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\BuildDefinitions.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\ExportBoardRows.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetBuildDefResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetExtensions.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetINumIteration.cs\" />\n    <Compile Include=\"Extractor\\GetWorkItemsCount.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetProcessTemplate.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetQueries.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetReleaseDefResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetServiceEndpoints.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetTeamSetting.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetVariableGroups.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\GetWorkItemsResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\Iterations.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\IterationtoSave.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\KeyConfig.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\ProjectSetting.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\ReleaseDefCountResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\ReleaseDefResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\RepositoryList.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\Teams.cs\" />\n    <Compile Include=\"Git\\Repository.cs\" />\n    <Compile Include=\"IConfiguration.cs\" />\n    <Compile Include=\"ProjectsAndTeams\\Accounts.cs\" />\n    <Compile Include=\"ProjectsAndTeams\\Projects.cs\" />\n    <Compile Include=\"ProjectsAndTeams\\Teams.cs\" />\n    <Compile Include=\"Properties\\AssemblyInfo.cs\" />\n    <Compile Include=\"QueriesAndWidgets\\Queries.cs\" />\n    <Compile Include=\"Queues\\Queue.cs\" />\n    <Compile Include=\"Release\\ReleaseDefinition.cs\" />\n    <Compile Include=\"TestManagement\\TestManagement.cs\" />\n    <Compile Include=\"Utility.cs\" />\n    <Compile Include=\"Viewmodel\\BaseViewModel.cs\" />\n    <Compile Include=\"Viewmodel\\Build\\BuildGetListofBuildDefinitionsResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\WorkItemFetchResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Extractor\\WorkItemNames.cs\" />\n    <Compile Include=\"Viewmodel\\GitHub\\ForkRepos.cs\" />\n    <Compile Include=\"Viewmodel\\GitHub\\GitHubRepoResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Importer\\ImportBoardRows.cs\" />\n    <Compile Include=\"Viewmodel\\Importer\\ImpotCardStyle.cs\" />\n    <Compile Include=\"Viewmodel\\Importer\\ImportBoardColumns.cs\" />\n    <Compile Include=\"Viewmodel\\Importer\\ImportCardFields.cs\" />\n    <Compile Include=\"Viewmodel\\Importer\\IncludeSubAreas.cs\" />\n    <Compile Include=\"Viewmodel\\Plans\\APlan.cs\" />\n    <Compile Include=\"Viewmodel\\Plans\\DeliveryPlans.cs\" />\n    <Compile Include=\"Viewmodel\\ProjectAndTeams\\AccountMembers.cs\" />\n    <Compile Include=\"Viewmodel\\ProjectAndTeams\\TeamIterationsResponse.cs\" />\n    <Compile Include=\"Viewmodel\\ProjectAndTeams\\TeamResponse.cs\" />\n    <Compile Include=\"Viewmodel\\ProjectAndTeams\\TeamSettingResponse.cs\" />\n    <Compile Include=\"Viewmodel\\QueriesAndWidgets\\DashBoardeTagResponse.cs\" />\n    <Compile Include=\"Viewmodel\\ReleaseDefinition\\ReleaseDefinitions.cs\" />\n    <Compile Include=\"Viewmodel\\ReleaseDefinition\\ReleaseDefinitionsResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Repository\\PullRequestComments.cs\" />\n    <Compile Include=\"Viewmodel\\Service\\ServiceEndpointModel.cs\" />\n    <Compile Include=\"Viewmodel\\ProjectAndTeams\\GetTeamResponse.cs\" />\n    <Compile Include=\"Viewmodel\\ProjectAndTeams\\ListofProjectsResponse.cs\" />\n    <Compile Include=\"Viewmodel\\ProjectAndTeams\\TeamMemberResponse.cs\" />\n    <Compile Include=\"Viewmodel\\QueriesAndWidgets\\DashboardResponse.cs\" />\n    <Compile Include=\"Viewmodel\\QueriesAndWidgets\\QueryResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Queue\\QueueModel.cs\" />\n    <Compile Include=\"Viewmodel\\Repository\\GetAllRepositoriesResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Sprint\\SprintResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Wiki\\CodewikiResponse.cs\" />\n    <Compile Include=\"Viewmodel\\Wiki\\ProjectwikiResponse.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\BatchRequest.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\CardStylesPatch.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\ColumnPost.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\CreateUpdateNodeViewModel.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\GetBoardColumnResponseAgile.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\GetBoardColumnResponse.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\GetCardFieldResponse.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\GetNodeResponse.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\GetNodesResponse.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\GetWorkItemsResponse.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\ImportWorkItemModel.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\ReturnException.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\SetEpicSettings.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\WorkItemBatchPostResponse.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\WorkItemPatch.cs\" />\n    <Compile Include=\"Viewmodel\\WorkItem\\WorkItemPatchResponse.cs\" />\n    <Compile Include=\"Wiki\\ManageWiki.cs\" />\n    <Compile Include=\"WorkItemAndTracking\\BoardColumn.cs\" />\n    <Compile Include=\"WorkItemAndTracking\\Cards.cs\" />\n    <Compile Include=\"WorkItemAndTracking\\ClassificationNodes.cs\" />\n    <Compile Include=\"WorkItemAndTracking\\ImportWorkItems.cs\" />\n    <Compile Include=\"WorkItemAndTracking\\IssueWI.cs\" />\n    <Compile Include=\"WorkItemAndTracking\\SwimLanes.cs\" />\n    <Compile Include=\"WorkItemAndTracking\\WorkItem.cs\" />\n  </ItemGroup>\n  <ItemGroup>\n    <None Include=\"app.config\" />\n    <None Include=\"JSON\\CreateBuildDefination.json\" />\n    <None Include=\"JSON\\CreateTeam.json\" />\n    <None Include=\"JSON\\CreateTeamProject.json\" />\n    <None Include=\"JSON\\GetRepository.json\" />\n    <None Include=\"JSON\\ReleaseDefination.json\" />\n    <None Include=\"JSON\\WorkItem.json\" />\n    <None Include=\"JSON\\WorkItemNew.json\" />\n    <None Include=\"packages.config\" />\n  </ItemGroup>\n  <ItemGroup />\n  <Import Project=\"$(MSBuildToolsPath)\\Microsoft.CSharp.targets\" />\n  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. \n       Other similar extension points exist, see Microsoft.Common.targets.\n  <Target Name=\"BeforeBuild\">\n  </Target>\n  <Target Name=\"AfterBuild\">\n  </Target>\n  -->\n</Project>"
  },
  {
    "path": "src/VstsRestAPI/Wiki/ManageWiki.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.Wiki;\n\nnamespace VstsRestAPI.Wiki\n{\n    public class ManageWiki : ApiServiceBase\n    {\n        public ManageWiki(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Create wiki\n        /// </summary>\n        /// <param name=\"jsonString\"></param>\n        /// <param name=\"projectID\"></param>\n        /// <returns></returns>\n        public ProjectwikiResponse.Projectwiki CreateProjectWiki(string jsonString, string projectID)\n        {\n            try\n            {\n                ProjectwikiResponse.Projectwiki projectwiki = new ProjectwikiResponse.Projectwiki();\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(jsonString, Encoding.UTF8, \"application/json\");\n\n                    var method = new HttpMethod(\"POST\");\n                    var request = new HttpRequestMessage(method, _configuration.UriString + \"/_apis/wiki/wikis?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    HttpResponseMessage response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        projectwiki = JsonConvert.DeserializeObject<ProjectwikiResponse.Projectwiki>(result);\n                        return projectwiki;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new ProjectwikiResponse.Projectwiki();\n        }\n\n        /// <summary>\n        /// Add project wiki pages\n        /// </summary>\n        /// <param name=\"jsonString\"></param>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"WikiId\"></param>\n        /// <param name=\"path\"></param>\n        /// <returns></returns>\n        public bool CreateUpdatePages(string jsonString, string projectName, string WikiId, string path)\n        {\n            try\n            {\n                //PUT https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}/pages?path={path}&api-version=4.1\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(jsonString, Encoding.UTF8, \"application/json\");\n\n                    var method = new HttpMethod(\"PUT\");\n                    var request = new HttpRequestMessage(method, projectName + \"/_apis/wiki/wikis/\" + WikiId + \"/pages?path=\" + path + \"&api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    HttpResponseMessage response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        return true;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return false;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        public bool MovePages(string jsonString, string projectName, string WikiId)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(jsonString, Encoding.UTF8, \"application/json\");\n\n                    var method = new HttpMethod(\"POST\");\n                    var request = new HttpRequestMessage(method, projectName + \"/_apis/wiki/wikis/\" + WikiId + \"/pagemoves?&api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    HttpResponseMessage response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        return true;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return false;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        public bool DeletePage(string projectName, string WikiId, string path)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var method = new HttpMethod(\"DELETE\");\n                    var request = new HttpRequestMessage(method, projectName + \"/_apis/wiki/wikis/\" + WikiId + \"/pages?path=\" + path + \"&api-version=\" + _configuration.VersionNumber);\n                    HttpResponseMessage response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.OK)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        return true;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return false;\n                    }\n                }\n            }\n            catch (Exception ex) \n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n\n        public bool CreateCodeWiki(string jsonString)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var json = new StringContent(jsonString, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n                    var request = new HttpRequestMessage(method, string.Format(\"{0}/{1}/_apis/wiki/wikis?api-version={2}\", _configuration.UriString, Project, _configuration.VersionNumber)) { Content = json };\n                    HttpResponseMessage response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode && response.StatusCode == System.Net.HttpStatusCode.Created)\n                    {\n                        return response.IsSuccessStatusCode;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return false;\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/WorkItemAndTracking/BoardColumn.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.ProjectAndTeams;\nusing VstsRestAPI.Viewmodel.WorkItem;\n\nnamespace VstsRestAPI.WorkItemAndTracking\n{\n    public partial class BoardColumn : ApiServiceBase\n    {\n        public string rowFieldName;\n        public BoardColumn(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Update kanban board colums styles\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"fileName\"></param>\n        /// <returns></returns>\n        public bool UpdateBoard(string projectName, string json, string boardType, string teamName)\n        {\n            try\n            {\n                List<Scrum.Columns> scrumColumns = new List<Scrum.Columns>();\n\n                string newColID = \"\";\n                string doneColID = \"\";\n                GetBoardColumnResponse.ColumnResponse currColumns = new GetBoardColumnResponse.ColumnResponse();\n\n                scrumColumns = JsonConvert.DeserializeObject<List<Scrum.Columns>>(json);\n\n                currColumns = GetBoardColumns(projectName, teamName, boardType);\n                if (currColumns.columns != null)\n                {\n                    foreach (GetBoardColumnResponse.Value col in currColumns.columns)\n                    {\n                        if (col.columnType.ToLower() == \"incoming\")\n                        {\n                            newColID = col.id;\n                        }\n                        else if (col.columnType.ToLower() == \"outgoing\")\n                        {\n                            doneColID = col.id;\n                        }\n                    }\n                    foreach (Scrum.Columns col in scrumColumns)\n                    {\n                        if (col.columnType.ToLower() == \"incoming\")\n                        {\n                            col.id = newColID;\n                        }\n                        else if (col.columnType.ToLower() == \"outgoing\")\n                        {\n                            col.id = doneColID;\n                        }\n                    }\n                }\n                if (currColumns.columns == null)\n                {\n                    return false;\n                }\n                using (var client = GetHttpClient())\n                {\n                    StringContent patchValue = new StringContent(\"\");\n                    string stringSerialize = JsonConvert.SerializeObject(scrumColumns, new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore });\n                    patchValue = new StringContent(stringSerialize, Encoding.UTF8, \"application/json\");\n                    // mediaType needs to be application/json-patch+json for a patch call\n                    var method = new HttpMethod(\"PUT\");\n                    //PUT https://dev.azure.com/{organization}/{project}/{team}/_apis/work/boards/{board}/columns?api-version=4.1\n                    var request = new HttpRequestMessage(method, _configuration.UriString + \"/\" + projectName + \"/\" + teamName + \"/_apis/work/boards/\" + boardType + \"/columns?api-version=\" + _configuration.VersionNumber) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return false;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"UpdateBoard\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Get kanban board columns\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"teamName\"></param>\n        /// <returns></returns>\n        public GetBoardColumnResponse.ColumnResponse GetBoardColumns(string projectName, string teamName, string boardType)\n        {\n            try\n            {\n                GetBoardColumnResponse.ColumnResponse columns = new GetBoardColumnResponse.ColumnResponse();\n                using (var client = GetHttpClient())\n                {\n                    var response = client.GetAsync(_configuration.UriString + \"/\" + projectName + \"/\" + teamName + \"/_apis/work/boards/\" + boardType + \"?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        columns = response.Content.ReadAsAsync<GetBoardColumnResponse.ColumnResponse>().Result;\n                        this.rowFieldName = columns.fields.rowField.referenceName;\n                        return columns;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return new GetBoardColumnResponse.ColumnResponse();\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"GetBoardColumns\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetBoardColumnResponse.ColumnResponse();\n        }\n        public GetBoardColumnResponseAgile.ColumnResponse GetBoardColumnsAgile(string projectName, string teamName)\n        {\n            try\n            {\n                GetBoardColumnResponseAgile.ColumnResponse columns = new GetBoardColumnResponseAgile.ColumnResponse();\n                using (var client = GetHttpClient())\n                {\n\n                    var response = client.GetAsync(_configuration.UriString + \"/\" + projectName + \"/\" + teamName + \"/_apis/work/boards/Stories?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        columns = response.Content.ReadAsAsync<GetBoardColumnResponseAgile.ColumnResponse>().Result;\n                        this.rowFieldName = columns.fields.rowField.referenceName;\n                        return columns;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return new GetBoardColumnResponseAgile.ColumnResponse();\n                    }\n                }\n            }\n            catch(Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"GetBoardColumnsAgile\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetBoardColumnResponseAgile.ColumnResponse();\n        }\n\n        public void IncludeSubAreas(string json, VstsRestAPI.Configuration _projectConfig, TeamResponse teamRes)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"PATCH\");\n                    string url = $\"{_projectConfig.UriString}{_projectConfig.ProjectId}/_apis/work/teamsettings/teamfieldvalues?api-version=7.0\";\n                    HttpRequestMessage request = new HttpRequestMessage(method, url);\n                    request.Content = jsonContent;\n                    var res = client.SendAsync(request).Result;\n                    if (res.IsSuccessStatusCode)\n                    {\n\n                    }\n                    else\n                    {\n                        var errorMessage = res.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"IncludeSubAreas\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/WorkItemAndTracking/Cards.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.WorkItem;\n\nnamespace VstsRestAPI.WorkItemAndTracking\n{\n    public class Cards : ApiServiceBase\n    {\n        public Cards(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Update Card fields\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"json\"></param>\n\n        public void UpdateCardField(string projectName, string json, string boardType, string teamName)\n        {\n            try\n            {\n                json = json.Replace(\"null\", \"\\\"\\\"\");\n                using (var client = GetHttpClient())\n                {\n                    StringContent patchValue = new StringContent(\"\");\n                    patchValue = new StringContent(json, Encoding.UTF8, \"application/json\"); // mediaType needs to be application/json-patch+json for a patch call\n\n                    var method = new HttpMethod(\"PUT\");\n                    string boardURL = _configuration.UriString + projectName + \"/\" + teamName + \"/_apis/work/boards/\" + boardType + \"/cardsettings?api-version=\" + _configuration.VersionNumber;\n                    var request = new HttpRequestMessage(method, boardURL) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n\n        }\n        /// <summary>\n        /// Apply rules to cards\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"json\"></param>\n\n        public void ApplyRules(string projectName, string json, string boardType, string teamName)\n        {\n            try\n            {\n                json = json.Replace(\"null\", \"\\\"\\\"\");\n                json = json.Replace(\"$ProjectName$\", projectName);\n                CardStylesPatch.ListofCardStyles cardStyles = JsonConvert.DeserializeObject<CardStylesPatch.ListofCardStyles>(json);\n                if (cardStyles.rules.Message == null)\n                {\n                    cardStyles.rules.Message = \"test\";\n                }\n                using (var client = GetHttpClient())\n                {\n                    var patchValue = new StringContent(JsonConvert.SerializeObject(cardStyles), Encoding.UTF8, \"application/json\"); // mediaType needs to be application/json-patch+json for a patch call\n                    var method = new HttpMethod(\"PATCH\");\n                    string boardURL = \"https://dev.azure.com/\" + Account + \"/\" + projectName + \"/\" + teamName + \"/_apis/work/boards/\" + boardType + \"/cardrulesettings?api-version=\" + _configuration.VersionNumber;\n                    var request = new HttpRequestMessage(method, boardURL) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n\n        /// <summary>\n        /// Enable Epic\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"json\"></param>\n        /// <param name=\"project\"></param>\n        public void EnablingEpic(string projectName, string json, string project, string team)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"PATCH\");\n                    string teamName = projectName + \" Team\";\n                    var request = new HttpRequestMessage(method, project + \"/\" + teamName + \"/_apis/work/teamsettings?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/WorkItemAndTracking/ClassificationNodes.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.ProjectsAndTeams;\nusing VstsRestAPI.Viewmodel.Sprint;\nusing VstsRestAPI.Viewmodel.WorkItem;\n\nnamespace VstsRestAPI.WorkItemAndTracking\n{\n    public partial class ClassificationNodes : ApiServiceBase\n    {\n        public ClassificationNodes(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Get Iteration\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public GetNodesResponse.Nodes GetIterations(string projectName)\n        {\n            try\n            {\n                GetNodesResponse.Nodes viewModel = new GetNodesResponse.Nodes();\n                using (HttpClient client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(string.Format(\"{0}/_apis/wit/classificationNodes/iterations?$depth=5&api-version=\" + _configuration.VersionNumber, projectName)).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        if (response.IsSuccessStatusCode)\n                        {\n                            viewModel = response.Content.ReadAsAsync<GetNodesResponse.Nodes>().Result;\n                            return viewModel;\n                        }\n                        viewModel.HttpStatusCode = response.StatusCode;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"CreateNewTeam\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetNodesResponse.Nodes();\n        }\n\n        /// <summary>\n        /// Create Iterations\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"path\"></param>\n        /// <returns></returns>\n        public GetNodeResponse.Node CreateIteration(string projectName, string path)\n        {\n            try\n            {\n                CreateUpdateNodeViewModel.Node node = new CreateUpdateNodeViewModel.Node()\n                {\n                    name = path\n                };\n                GetNodeResponse.Node viewModel = new GetNodeResponse.Node();\n                using (HttpClient client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(JsonConvert.SerializeObject(node), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, _configuration.UriString + \"/\" + projectName + \"/_apis/wit/classificationNodes/iterations?api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<GetNodeResponse.Node>().Result;\n                        return viewModel;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                    }\n                    viewModel.HttpStatusCode = response.StatusCode;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetNodeResponse.Node();\n        }\n\n        /// <summary>\n        /// movie Iteration to parent\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"targetIteration\"></param>\n        /// <param name=\"sourceIterationId\"></param>\n        /// <returns></returns>\n        public GetNodeResponse.Node MoveIteration(string projectName, string targetIteration, int sourceIterationId)\n        {\n            try\n            {\n                CreateUpdateNodeViewModel.Node node = new CreateUpdateNodeViewModel.Node()\n                {\n                    id = sourceIterationId\n                };\n                GetNodeResponse.Node viewModel = new GetNodeResponse.Node();\n\n                using (var client = GetHttpClient())\n                {\n                    var jsonContent = new StringContent(JsonConvert.SerializeObject(node), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    var request = new HttpRequestMessage(method, string.Format(\"/{0}/_apis/wit/classificationNodes/iterations/{1}?api-version=\" + _configuration.VersionNumber, projectName, targetIteration)) { Content = jsonContent };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<GetNodeResponse.Node>().Result;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                    }\n\n                    viewModel.HttpStatusCode = response.StatusCode;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetNodeResponse.Node();\n        }\n\n        /// <summary>\n        /// Update Iteration Dates- calculating from previous 22 days\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"templateType\"></param>\n        /// <returns></returns>\n        public bool UpdateIterationDates(string projectName, string templateType, string selectedTemplateName, string teamIterationMapJson)\n        {\n            try\n            {\n                // team iteration changes\n                if (File.Exists(teamIterationMapJson))\n                {\n                    teamIterationMapJson = File.ReadAllText(teamIterationMapJson);\n                    if (!string.IsNullOrEmpty(teamIterationMapJson))\n                    {\n                        string project = projectName;\n                        DateTime startDate = DateTime.Today;\n                        DateTime endDate = DateTime.Today.AddDays(18);\n\n                        TeamIterations.Map iterationMaps = new TeamIterations.Map();\n                        iterationMaps = JsonConvert.DeserializeObject<TeamIterations.Map>(teamIterationMapJson);\n                        if (iterationMaps.TeamIterationMap.Count > 0)\n                        {\n                            int i = 0;\n                            foreach (var iterationTeam in iterationMaps.TeamIterationMap)\n                            {\n                                if (i % 2 == 1)\n                                {\n                                    startDate = DateTime.Today;\n                                    endDate = DateTime.Today.AddDays(18);\n                                }\n                                foreach (var iteration in iterationTeam.Iterations)\n                                {\n\n                                    Dictionary<string, string[]> sprint_dictionary = new Dictionary<string, string[]>();\n                                    sprint_dictionary.Add(iteration, new string[] { startDate.ToShortDateString(), endDate.ToShortDateString() });\n                                    foreach (var key in sprint_dictionary.Keys)\n                                    {\n                                        UpdateIterationDates(project, key, startDate, endDate);\n                                        if (i % 2 == 1)\n                                        {\n                                            startDate = endDate.AddDays(1);\n                                            endDate = startDate.AddDays(18);\n                                        }\n                                        else\n                                        {\n                                            startDate = endDate.AddDays(1);\n                                            endDate = startDate.AddDays(18);\n                                        }\n                                    }\n                                }\n                                i++;\n                            }\n                        }\n                    }\n                }\n                else\n                {\n                    string project = projectName;\n                    DateTime startDate = DateTime.Today.AddDays(-22);\n                    DateTime endDate = DateTime.Today.AddDays(-1);\n\n                    Dictionary<string, string[]> sprint_dictionary = new Dictionary<string, string[]>();\n\n                    if (string.IsNullOrWhiteSpace(templateType) || templateType.ToLower() == TemplateType.Scrum.ToString().ToLower())\n                    {\n                        for (int i = 1; i <= 6; i++)\n                        {\n                            sprint_dictionary.Add(\"Sprint \" + i, new string[] { startDate.ToShortDateString(), endDate.ToShortDateString() });\n                        }\n                    }\n                    else if (string.IsNullOrWhiteSpace(templateType) || templateType.ToLower() == TemplateType.Basic.ToString().ToLower())\n                    {\n                        for (int i = 1; i <= 1; i++)\n                        {\n                            sprint_dictionary.Add(\"Sprint \" + i, new string[] { startDate.ToShortDateString(), endDate.ToShortDateString() });\n                        }\n                    }\n                    else\n                    {\n                        for (int i = 1; i <= 3; i++)\n                        {\n                            sprint_dictionary.Add(\"Iteration \" + i, new string[] { startDate.ToShortDateString(), endDate.ToShortDateString() });\n                        }\n                    }\n\n                    foreach (var key in sprint_dictionary.Keys)\n                    {\n                        UpdateIterationDates(project, key, startDate, endDate);\n                        startDate = endDate.AddDays(1);\n                        endDate = startDate.AddDays(21);\n                    }\n                }\n                return true;\n            }\n            catch (OperationCanceledException opr)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t OperationCanceledException: \" + opr.Message + \"\\n\" + opr.StackTrace + \"\\n\");\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Update Iteration Dates\n        /// </summary>\n        /// <param name=\"project\"></param>\n        /// <param name=\"path\"></param>\n        /// <param name=\"startDate\"></param>\n        /// <param name=\"finishDate\"></param>\n        /// <returns></returns>\n        public GetNodeResponse.Node UpdateIterationDates(string project, string path, DateTime startDate, DateTime finishDate)\n        {\n            try\n            {\n                CreateUpdateNodeViewModel.Node node = new CreateUpdateNodeViewModel.Node()\n                {\n                    //name = path,\n                    attributes = new CreateUpdateNodeViewModel.Attributes()\n                    {\n                        startDate = startDate,\n                        finishDate = finishDate\n                    }\n                };\n\n                GetNodeResponse.Node viewModel = new GetNodeResponse.Node();\n\n                using (var client = GetHttpClient())\n                {\n                    // serialize the fields array into a json string          \n                    var patchValue = new StringContent(JsonConvert.SerializeObject(node), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"PATCH\");\n\n                    // send the request\n                    var request = new HttpRequestMessage(method, project + \"/_apis/wit/classificationNodes/iterations/\" + path + \"?api-version=\" + _configuration.VersionNumber) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<GetNodeResponse.Node>().Result;\n                        viewModel.Message = \"success\";\n                    }\n                    else\n                    {\n                        dynamic responseForInvalidStatusCode = response.Content.ReadAsAsync<dynamic>();\n                        Newtonsoft.Json.Linq.JContainer msg = responseForInvalidStatusCode.Result;\n                        viewModel.Message = msg.ToString();\n\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n\n                    viewModel.HttpStatusCode = response.StatusCode;\n\n                    return viewModel;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetNodeResponse.Node();\n        }\n\n        /// <summary>\n        /// Rename Iteration\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"iterationToUpdate\"></param>\n        /// <returns></returns>\n        public bool RenameIteration(string projectName, Dictionary<string, string> iterationToUpdate)\n        {\n            bool isSuccessful = false;\n            try\n            {\n                foreach (var key in iterationToUpdate.Keys)\n                {\n                    CreateUpdateNodeViewModel.Node node = new CreateUpdateNodeViewModel.Node()\n                    {\n                        name = iterationToUpdate[key]\n                    };\n\n                    using (var client = GetHttpClient())\n                    {\n                        // serialize the fields array into a json string          \n                        var patchValue = new StringContent(JsonConvert.SerializeObject(node), Encoding.UTF8, \"application/json\");\n                        var method = new HttpMethod(\"PATCH\");\n\n                        // send the request\n                        var request = new HttpRequestMessage(method, projectName + \"/_apis/wit/classificationNodes/Iterations/\" + key + \"?api-version=\" + _configuration.VersionNumber) { Content = patchValue };\n                        var response = client.SendAsync(request).Result;\n\n                        if (response.IsSuccessStatusCode)\n                        {\n                            isSuccessful = true;\n                        }\n                    }\n                }\n                string project = projectName;\n                DateTime StartDate = DateTime.Today.AddDays(-22);\n                DateTime EndDate = DateTime.Today.AddDays(-1);\n\n                Dictionary<string, string[]> sprint_dic = new Dictionary<string, string[]>();\n                for (int i = 1; i <= iterationToUpdate.Count; i++)\n                {\n                    sprint_dic.Add(\"Sprint \" + i, new string[] { StartDate.ToShortDateString(), EndDate.ToShortDateString() });\n                }\n                foreach (var key in sprint_dic.Keys)\n                {\n                    UpdateIterationDates(project, key, StartDate, EndDate);\n                    StartDate = EndDate.AddDays(1);\n                    EndDate = StartDate.AddDays(21);\n                }\n\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return isSuccessful;\n        }\n\n        public SprintResponse.Sprints GetSprints(string project)\n        {\n            try\n            {\n                SprintResponse.Sprints sprints = new SprintResponse.Sprints();\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = client.GetAsync(project + \"/\" + project + \"%20Team/_apis/work/teamsettings/iterations?api-version=\" + _configuration.VersionNumber).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        string result = response.Content.ReadAsStringAsync().Result;\n                        sprints = JsonConvert.DeserializeObject<SprintResponse.Sprints>(result);\n                        return sprints;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new SprintResponse.Sprints();\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/WorkItemAndTracking/ImportWorkItems.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.IO;\nusing System.Linq;\nusing System.Net.Http;\nusing System.Net.Http.Headers;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.WorkItem;\n\nnamespace VstsRestAPI.WorkItemAndTracking\n{\n    public class ImportWorkItems : ApiServiceBase\n    {\n        public string boardRowFieldName;\n        private List<WIMapData> wiData = new List<WIMapData>();\n        private List<string> listAssignToUsers = new List<string>();\n        private string[] relTypes = { \"Microsoft.VSTS.Common.TestedBy-Reverse\", \"System.LinkTypes.Hierarchy-Forward\", \"System.LinkTypes.Related\", \"System.LinkTypes.Dependency-Reverse\", \"System.LinkTypes.Dependency-Forward\" };\n        private string attachmentFolder = string.Empty;\n        private string repositoryId = string.Empty;\n        private string projectId = string.Empty;\n        private Dictionary<string, string> pullRequests = new Dictionary<string, string>();\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        public ImportWorkItems(IConfiguration configuration, string rowFieldName) : base(configuration)\n        {\n            boardRowFieldName = rowFieldName;\n        }\n\n        /// <summary>\n        /// Import Work items form the files\n        /// </summary>\n        /// <param name=\"dicWITypes\"></param>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"uniqueUser\"></param>\n        /// <param name=\"projectSettingsJson\"></param>\n        /// <param name=\"attachmentFolderPath\"></param>\n        /// <param name=\"repositoryID\"></param>\n        /// <param name=\"projectID\"></param>\n        /// <param name=\"dictPullRequests\"></param>\n        /// <param name=\"userMethod\"></param>\n        /// <param name=\"accountUsers\"></param>\n        /// <returns></returns>\n\n        public List<WIMapData> ImportWorkitems(Dictionary<string, string> dicWITypes, string projectName, string uniqueUser, string projectSettingsJson, string attachmentFolderPath, string repositoryID, string projectID, Dictionary<string, string> dictPullRequests, string userMethod, List<string> accountUsers, string selectedTemplate)\n        {\n            try\n            {\n                attachmentFolder = attachmentFolderPath;\n                repositoryId = repositoryID;\n                projectId = projectID;\n                pullRequests = dictPullRequests;\n                JArray userList = new JArray();\n                JToken userAssignment = null;\n                if (userMethod == \"Select\")\n                {\n                    foreach (string user in accountUsers)\n                    {\n                        listAssignToUsers.Add(user);\n                    }\n                }\n                else\n                {\n                    var jitems = JObject.Parse(projectSettingsJson);\n                    userList = jitems[\"users\"].Value<JArray>();\n                    userAssignment = jitems[\"userAssignment\"];\n                    if (userList.Count > 0)\n                    {\n                        listAssignToUsers.Add(uniqueUser);\n                    }\n                    else\n                    {\n                        listAssignToUsers.Add(uniqueUser);\n                    }\n                    foreach (var data in userList.Values())\n                    {\n                        listAssignToUsers.Add(data.ToString());\n                    }\n                }\n\n                foreach (string wiType in dicWITypes.Keys)\n                {\n                    PrepareAndUpdateTarget(wiType, dicWITypes[wiType], projectName, selectedTemplate, userAssignment == null ? \"\" : userAssignment.ToString());\n                }\n\n                foreach (string wiType in dicWITypes.Keys)\n                {\n                    UpdateWorkItemLinks(dicWITypes[wiType]);\n                }\n\n                return wiData;\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                return wiData;\n            }\n\n        }\n\n        /// <summary>\n        /// Update the work items in Target with all required field values\n        /// </summary>\n        /// <param name=\"workItemType\"></param>\n        /// <param name=\"workImport\"></param>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public bool PrepareAndUpdateTarget(string workItemType, string workImport, string projectName, string selectedTemplate, string userAssignment)\n        {\n            try\n            {\n                workImport = workImport.Replace(\"$ProjectName$\", projectName);\n                ImportWorkItemModel.WorkItems fetchedWIs = JsonConvert.DeserializeObject<ImportWorkItemModel.WorkItems>(workImport);\n\n                if (fetchedWIs.count > 0)\n                {\n                    if (workItemType.ToLower() == \"epic\" || workItemType.ToLower() == \"feature\")\n                    {\n                        // commenting this to fix the work item ordering issue with Azure Sentinel template - if affecting other templates, undo the same \n                        // fetchedWIs.value = fetchedWIs.value.OrderBy(x => x.id).ToArray();\n                    }\n                    foreach (ImportWorkItemModel.Value newWI in fetchedWIs.value)\n                    {\n                        newWI.fields.SystemCreatedDate = DateTime.Now.AddDays(-3);\n                        Dictionary<string, object> dicWIFields = new Dictionary<string, object>();\n                        string assignToUser = string.Empty;\n                        if (listAssignToUsers.Count > 0)\n                        {\n                            assignToUser = listAssignToUsers[new Random().Next(0, listAssignToUsers.Count)] ?? string.Empty;\n                        }\n\n                        //Test cases have different fields compared to other items like bug, Epics, etc.                     \n                        if ((workItemType == \"Test Case\"))\n                        {\n                            //replacing null values with Empty strngs; creation fails if the fields are null\n                            if (newWI.fields.MicrosoftVSTSTCMParameters == null)\n                            {\n                                newWI.fields.MicrosoftVSTSTCMParameters = string.Empty;\n                            }\n\n                            if (newWI.fields.MicrosoftVSTSTCMSteps == null)\n                            {\n                                newWI.fields.MicrosoftVSTSTCMSteps = string.Empty;\n                            }\n\n                            if (newWI.fields.MicrosoftVSTSTCMLocalDataSource == null)\n                            {\n                                newWI.fields.MicrosoftVSTSTCMLocalDataSource = string.Empty;\n                            }\n\n                            dicWIFields.Add(\"/fields/System.Title\", newWI.fields.SystemTitle);\n                            dicWIFields.Add(\"/fields/System.State\", newWI.fields.SystemState);\n                            dicWIFields.Add(\"/fields/System.Reason\", newWI.fields.SystemReason);\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.Common.Priority\", newWI.fields.MicrosoftVSTSCommonPriority);\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.TCM.Steps\", newWI.fields.MicrosoftVSTSTCMSteps);\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.TCM.Parameters\", newWI.fields.MicrosoftVSTSTCMParameters);\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.TCM.LocalDataSource\", newWI.fields.MicrosoftVSTSTCMLocalDataSource);\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.TCM.AutomationStatus\", newWI.fields.MicrosoftVSTSTCMAutomationStatus);\n\n                            if (newWI.fields.MicrosoftVSTSCommonAcceptanceCriteria != null)\n                            {\n                                dicWIFields.Add(\"/fields/Microsoft.VSTS.Common.AcceptanceCriteria\", newWI.fields.MicrosoftVSTSCommonAcceptanceCriteria);\n                            }\n\n                            if (newWI.fields.SystemTags != null)\n                            {\n                                dicWIFields.Add(\"/fields/System.Tags\", newWI.fields.SystemTags);\n                            }\n\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.Scheduling.RemainingWork\", newWI.fields.MicrosoftVSTSSchedulingRemainingWork);\n\n                        }\n                        else\n                        {\n                            string iterationPath = projectName;\n                            string boardRowField = string.Empty;\n\n                            if (newWI.fields.SystemIterationPath.Contains(\"\\\\\"))\n                            {\n                                iterationPath = string.Format(@\"{0}\\{1}\", projectName, newWI.fields.SystemIterationPath.Split('\\\\')[1]);\n\n                            }\n\n                            if (!string.IsNullOrWhiteSpace(boardRowFieldName))\n                            {\n                                boardRowField = string.Format(\"/fields/{0}\", boardRowFieldName);\n                            }\n\n                            if (newWI.fields.SystemDescription == null)\n                            {\n                                newWI.fields.SystemDescription = newWI.fields.SystemTitle;\n                            }\n\n                            if (string.IsNullOrEmpty(newWI.fields.SystemBoardLane))\n                            {\n                                newWI.fields.SystemBoardLane = string.Empty;\n                            }\n\n                            dicWIFields.Add(\"/fields/System.Title\", newWI.fields.SystemTitle);\n                            if (userAssignment.ToLower() != \"any\")\n                            {\n                                if (newWI.fields.SystemState == \"Done\")\n                                {\n                                    dicWIFields.Add(\"/fields/System.AssignedTo\", assignToUser);\n                                }\n                            }\n                            else\n                            {\n                                dicWIFields.Add(\"/fields/System.AssignedTo\", assignToUser);\n                            }\n\n                            string areaPath = newWI.fields.SystemAreaPath ?? projectName;\n                            string[] areaPathSlpit = areaPath.Split('\\\\');\n                            areaPathSlpit[0] = projectName;\n                            areaPath = string.Join(\"\\\\\", areaPathSlpit);\n                            dicWIFields.Add(\"/fields/System.AreaPath\", areaPath);\n                            dicWIFields.Add(\"/fields/System.Description\", newWI.fields.SystemDescription);\n                            dicWIFields.Add(\"/fields/System.State\", newWI.fields.SystemState);\n                            dicWIFields.Add(\"/fields/System.Reason\", newWI.fields.SystemReason);\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.Common.Priority\", newWI.fields.MicrosoftVSTSCommonPriority);\n                            dicWIFields.Add(\"/fields/System.IterationPath\", iterationPath);\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.Scheduling.RemainingWork\", newWI.fields.MicrosoftVSTSSchedulingRemainingWork);\n                            dicWIFields.Add(\"/fields/Microsoft.VSTS.Scheduling.Effort\", newWI.fields.MicrosoftVSTSSchedulingEffort);\n\n                            if (newWI.fields.MicrosoftVSTSCommonAcceptanceCriteria != null)\n                            {\n                                dicWIFields.Add(\"/fields/Microsoft.VSTS.Common.AcceptanceCriteria\", newWI.fields.MicrosoftVSTSCommonAcceptanceCriteria);\n                            }\n\n                            if (newWI.fields.SystemTags != null)\n                            {\n                                dicWIFields.Add(\"/fields/System.Tags\", newWI.fields.SystemTags);\n                            }\n\n                            if (newWI.fields.MicrosoftVSTSTCMParameters != null)\n                            {\n                                dicWIFields.Add(\"/fields/Microsoft.VSTS.TCM.Parameters\", newWI.fields.MicrosoftVSTSTCMParameters);\n                            }\n\n                            if (newWI.fields.MicrosoftVSTSTCMSteps != null)\n                            {\n                                dicWIFields.Add(\"/fields/Microsoft.VSTS.TCM.Steps\", newWI.fields.MicrosoftVSTSTCMSteps);\n                            }\n\n                            if (!string.IsNullOrWhiteSpace(boardRowField))\n                            {\n                                dicWIFields.Add(boardRowField, newWI.fields.SystemBoardLane);\n                            }\n                        }\n                        if (workItemType.ToLower() == \"task\")\n                        {\n                            if (dicWIFields.ContainsKey(\"/fields/System.CreatedDate\"))\n                            {\n                                // generate random number from 1-3\n                                Random random = new Random();\n                                int randomNumber = random.Next(-4, -1);\n                                dicWIFields[\"/fields/System.CreatedDate\"] = DateTime.UtcNow.AddDays(randomNumber).ToString(\"yyyy-MM-ddThh:mm:ss.sssZ\");\n                            }\n                            else\n                            {\n                                Random random = new Random();\n                                int randomNumber = random.Next(-4, -1);\n                                dicWIFields.Add(\"/fields/System.CreatedDate\", DateTime.UtcNow.AddDays(randomNumber).ToString(\"yyyy-MM-ddThh:mm:ss.sssZ\"));\n                            }\n                        }\n                        UpdateWorkIteminTarget(workItemType, newWI.id.ToString(), projectName, dicWIFields);\n                    }\n\n                    return true;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Update work ietm with all required field values\n        /// </summary>\n        /// <param name=\"workItemType\"></param>\n        /// <param name=\"old_wi_ID\"></param>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"dictionaryWIFields\"></param>\n        /// <returns></returns>\n        public bool UpdateWorkIteminTarget(string workItemType, string old_wi_ID, string projectName, Dictionary<string, object> dictionaryWIFields)\n        {\n            try\n            {\n                List<WorkItemPatch.Field> listFields = new List<WorkItemPatch.Field>();\n                WorkItemPatchResponse.WorkItem viewModel = new WorkItemPatchResponse.WorkItem();\n                // change some values on a few fields\n                foreach (string key in dictionaryWIFields.Keys)\n                {\n                    listFields.Add(new WorkItemPatch.Field() { op = \"add\", path = key, value = dictionaryWIFields[key] });\n                }\n                WorkItemPatch.Field[] fields = listFields.ToArray();\n                using (var client = GetHttpClient())\n                {\n                    var postValue = new StringContent(JsonConvert.SerializeObject(fields), Encoding.UTF8, \"application/json-patch+json\"); // mediaType needs to be application/json-patch+json for a patch call\n                                                                                                                                          // set the httpmethod to Patch\n                    var method = new HttpMethod(\"PATCH\");\n\n                    // send the request               \n                    var request = new HttpRequestMessage(method, projectName + \"/_apis/wit/workitems/$\" + workItemType + \"?bypassRules=true&api-version=\" + _configuration.VersionNumber) { Content = postValue };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<WorkItemPatchResponse.WorkItem>().Result;\n                        wiData.Add(new WIMapData() { OldID = old_wi_ID, NewID = viewModel.id.ToString(), WIType = workItemType });\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n\n                    return response.IsSuccessStatusCode;\n                }\n            }\n            catch (OperationCanceledException opr)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t OperationCanceledException: \" + opr.Message + \"\\t\" + \"\\n\" + opr.StackTrace + \"\\n\");\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n        /// <summary>\n        /// Update work items links - parent child- Hyperlinks-artifact links-attachments\n        /// </summary>\n        /// <param name=\"workItemTemplateJson\"></param>\n        /// <returns></returns>\n        public bool UpdateWorkItemLinks(string workItemTemplateJson)\n        {\n            try\n            {\n                ImportWorkItemModel.WorkItems fetchedPBIs = JsonConvert.DeserializeObject<ImportWorkItemModel.WorkItems>(workItemTemplateJson);\n                string wiToUpdate = \"\";\n                WIMapData findIDforUpdate;\n                if (fetchedPBIs.count > 0)\n                {\n\n                    foreach (ImportWorkItemModel.Value newWI in fetchedPBIs.value)\n                    {\n                        //continue next iteration if there is no relation\n                        if (newWI.relations == null)\n                        {\n                            continue;\n                        }\n\n                        int relCount = newWI.relations.Length;\n                        string oldWIID = newWI.id.ToString();\n\n                        findIDforUpdate = wiData.Find(t => t.OldID == oldWIID);\n                        if (findIDforUpdate != null)\n                        {\n                            wiToUpdate = findIDforUpdate.NewID;\n                            foreach (ImportWorkItemModel.Relations rel in newWI.relations)\n                            {\n                                if (relTypes.Contains(rel.rel.Trim()))\n                                {\n                                    oldWIID = rel.url.Substring(rel.url.LastIndexOf(\"/\") + 1);\n                                    WIMapData findIDforlink = wiData.Find(t => t.OldID == oldWIID);\n\n                                    if (findIDforlink != null)\n                                    {\n                                        string newWIID = findIDforlink.NewID;\n                                        Object[] patchWorkItem = new Object[1];\n                                        // change some values on a few fields\n                                        patchWorkItem[0] = new\n                                        {\n                                            op = \"add\",\n                                            path = \"/relations/-\",\n                                            value = new\n                                            {\n                                                rel = rel.rel,\n                                                url = _configuration.UriString + \"/_apis/wit/workitems/\" + newWIID,\n                                                attributes = new\n                                                {\n                                                    comment = \"Making a new link for the dependency\"\n                                                }\n                                            }\n                                        };\n                                        if (UpdateLink(\"Product Backlog Item\", wiToUpdate, patchWorkItem))\n                                        {\n                                        }\n                                    }\n                                }\n                                if (rel.rel == \"Hyperlink\")\n                                {\n                                    Object[] patchWorkItem = new Object[1];\n                                    patchWorkItem[0] = new\n                                    {\n                                        op = \"add\",\n                                        path = \"/relations/-\",\n                                        value = new\n                                        {\n                                            rel = \"Hyperlink\",\n                                            url = rel.url\n                                        }\n                                    };\n                                    bool isHyperLinkCreated = UpdateLink(string.Empty, wiToUpdate, patchWorkItem);\n                                }\n                                if (rel.rel == \"AttachedFile\")\n                                {\n                                    Object[] patchWorkItem = new Object[1];\n                                    string filPath = string.Format(attachmentFolder + @\"\\{0}{1}\", rel.attributes[\"id\"], rel.attributes[\"name\"]);\n                                    string fileName = rel.attributes[\"name\"];\n                                    string attchmentURl = UploadAttchment(filPath, fileName);\n                                    if (!string.IsNullOrEmpty(attchmentURl))\n                                    {\n                                        patchWorkItem[0] = new\n                                        {\n                                            op = \"add\",\n                                            path = \"/relations/-\",\n                                            value = new\n                                            {\n                                                rel = \"AttachedFile\",\n                                                url = attchmentURl\n                                            }\n                                        };\n                                        bool isAttachmemntCreated = UpdateLink(string.Empty, wiToUpdate, patchWorkItem);\n                                    }\n                                }\n                                if (rel.rel == \"ArtifactLink\")\n                                {\n                                    rel.url = rel.url.Replace(\"$projectId$\", projectId).Replace(\"$RepositoryId$\", repositoryId);\n                                    foreach (var pullReqest in pullRequests)\n                                    {\n                                        string key = string.Format(\"${0}$\", pullReqest.Key);\n                                        rel.url = rel.url.Replace(key, pullReqest.Value);\n                                    }\n                                    Object[] patchWorkItem = new Object[1];\n                                    patchWorkItem[0] = new\n                                    {\n                                        op = \"add\",\n                                        path = \"/relations/-\",\n                                        value = new\n                                        {\n                                            rel = \"ArtifactLink\",\n                                            url = rel.url,\n                                            attributes = new\n                                            {\n                                                name = rel.attributes[\"name\"]\n                                            }\n                                        }\n\n                                    };\n                                    bool isArtifactLinkCreated = UpdateLink(string.Empty, wiToUpdate, patchWorkItem);\n                                }\n                            }\n                        }\n                    }\n                    return true;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n        /// <summary>\n        /// Udpate Links to work items\n        /// </summary>\n        /// <param name=\"workItemType\"></param>\n        /// <param name=\"witoUpdate\"></param>\n        /// <param name=\"patchWorkItem\"></param>\n        /// <returns></returns>\n        public bool UpdateLink(string workItemType, string witoUpdate, object[] patchWorkItem)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    // serialize the fields array into a json string          \n                    var patchValue = new StringContent(JsonConvert.SerializeObject(patchWorkItem), Encoding.UTF8, \"application/json-patch+json\"); // mediaType needs to be application/json-patch+json for a patch call\n\n                    var method = new HttpMethod(\"PATCH\");\n                    var request = new HttpRequestMessage(method, Project + \"/_apis/wit/workitems/\" + witoUpdate + \"?bypassRules=true&api-version=\" + _configuration.VersionNumber) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                    }\n\n                    return response.IsSuccessStatusCode;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n        /// <summary>\n        /// Upload attachments to VSTS server\n        /// </summary>\n        /// <param name=\"filePath\"></param>\n        /// <param name=\"fileName\"></param>\n        /// <returns></returns>\n        public string UploadAttchment(string filePath, string fileName)\n        {\n            try\n            {\n                string _filePath = filePath;\n                string _fileName = fileName;\n\n                if (File.Exists(filePath))\n                {\n                    //read file bytes and put into byte array        \n                    Byte[] bytes = File.ReadAllBytes(filePath);\n\n                    using (var client = GetHttpClient())\n                    {\n                        ByteArrayContent content = new ByteArrayContent(bytes);\n                        content.Headers.ContentType = new MediaTypeHeaderValue(\"application/octet-stream\");\n                        HttpResponseMessage uploadResponse = client.PostAsync(\"_apis/wit/attachments?fileName=\" + _fileName + \"&api-version=\" + _configuration.VersionNumber, content).Result;\n\n                        if (uploadResponse.IsSuccessStatusCode)\n                        {\n                            //get the result, we need this to get the url of the attachment\n                            string attachmentURL = JObject.Parse(uploadResponse.Content.ReadAsStringAsync().Result)[\"url\"].ToString();\n                            return attachmentURL;\n                        }\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\" + \"\\n\" + ex.StackTrace + \"\\n\");\n                return string.Empty;\n            }\n            return string.Empty;\n        }\n    }\n\n    public class WIMapData\n    {\n        public string OldID { get; set; }\n        public string NewID { get; set; }\n        public string WIType { get; set; }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/WorkItemAndTracking/IssueWI.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing System;\nusing VstsRestAPI.Services;\n\nnamespace VstsRestAPI.WorkItemAndTracking\n{\n    public class IssueWI\n    {\n        private Configuration con = new Configuration();\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n\n        // Create Issue Work Items\n        public void CreateIssueWI(string credential, string version, string url, string issueName, string description, string projectId, string tag)\n        {\n            try\n            {\n                Object[] patchDocument = new Object[3];\n                patchDocument[0] = new { op = \"add\", path = \"/fields/System.Title\", value = issueName };\n                patchDocument[1] = new { op = \"add\", path = \"/fields/System.Description\", value = description };\n                patchDocument[2] = new { op = \"add\", path = \"/fields/System.Tags\", value = tag };\n\n\n                con.UriString = url;\n                con.PersonalAccessToken = credential;\n                con.Project = projectId;\n                con.VersionNumber = version;\n                con.UriParams = \"/_apis/wit/workitems/$Issue?api-version=\";\n                con.RequestBody = JsonConvert.SerializeObject(patchDocument);\n                HttpServices httpServices = new HttpServices(con);\n                var response = httpServices.PatchBasic();\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n\n        // Create Report work items\n        public void CreateReportWI(string credential, string version, string url, string websiteUrl, string reportName, string accountName, string templateName, string projectId, string region)\n        {\n            try\n            {\n                if (string.IsNullOrEmpty(region))\n                {\n                    region = \"\";\n                }\n\n                Object[] ReportPatchDocument = new Object[5];\n\n                ReportPatchDocument[0] = new { op = \"add\", path = \"/fields/System.Title\", value = reportName };\n                ReportPatchDocument[1] = new { op = \"add\", path = \"/fields/CustomAgile.SiteName\", value = websiteUrl };\n                ReportPatchDocument[2] = new { op = \"add\", path = \"/fields/CustomAgile.AccountName\", value = accountName };\n                ReportPatchDocument[3] = new { op = \"add\", path = \"/fields/CustomAgile.TemplateName\", value = templateName };\n                ReportPatchDocument[4] = new { op = \"add\", path = \"/fields/CustomAgile.Region\", value = region };\n\n                con.UriString = url;\n                con.PersonalAccessToken = credential;\n                con.Project = projectId;\n                con.VersionNumber = version;\n                con.UriParams = \"/_apis/wit/workitems/$Analytics?api-version=\";\n                con.RequestBody = JsonConvert.SerializeObject(ReportPatchDocument);\n                HttpServices httpServices = new HttpServices(con);\n                var response = httpServices.PatchBasic();\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/VstsRestAPI/WorkItemAndTracking/SwimLanes.cs",
    "content": "﻿using log4net;\nusing System;\nusing System.Net.Http;\nusing System.Text;\n\nnamespace VstsRestAPI.WorkItemAndTracking\n{\n    public class SwimLanes : ApiServiceBase\n    {\n        public SwimLanes(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Update swim lanes\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public bool UpdateSwimLanes(string json, string projectName, string boardType, string teamName)\n        {\n            try\n            {\n                using (var client = GetHttpClient())\n                {\n                    var patchValue = new StringContent(json, Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"PUT\");\n\n                    var request = new HttpRequestMessage(method, projectName + \"/\" + teamName + \"/_apis/work/boards/\" + boardType + \"/rows?api-version=\" + _configuration.VersionNumber) { Content = patchValue };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return true;\n                    }\n                    else\n                    {\n                        logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t Update Swimlanes \\t\" + response.Content.ReadAsStringAsync().Result);\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                        return false;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Debug(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + \"Project template setting\" + \"\\t\" + ex.Message + \"\\t\"   + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n    }\n}\n\n\n"
  },
  {
    "path": "src/VstsRestAPI/WorkItemAndTracking/WorkItem.cs",
    "content": "﻿using log4net;\nusing Newtonsoft.Json;\nusing Newtonsoft.Json.Linq;\nusing System;\nusing System.Collections.Generic;\nusing System.Net.Http;\nusing System.Text;\nusing VstsRestAPI.Viewmodel.WorkItem;\n\nnamespace VstsRestAPI.WorkItemAndTracking\n{\n    public partial class WorkItem : ApiServiceBase\n    {\n        public WorkItem(IConfiguration configuration) : base(configuration) { }\n        private ILog logger = LogManager.GetLogger(\"ErrorLog\");\n        /// <summary>\n        /// Method to create the workItems\n        /// </summary>\n        /// <param name=\"projectName\"></param>\n        /// <param name=\"json\"></param>\n        /// <returns></returns>\n        public bool CreateWorkItemUsingByPassRules(string projectName, string json)\n        {\n            try\n            {\n                List<BatchRequest> batchRequests = JsonConvert.DeserializeObject<List<BatchRequest>>(json);\n\n                foreach (BatchRequest batchRequest in batchRequests)\n                {\n                    string currURI = batchRequest.uri;\n                    batchRequest.uri = '/' + projectName + currURI;\n\n                    JArray newRel = new JArray(2);\n                    int i = 0;\n                    foreach (object obj in batchRequest.body)\n                    {\n                        JObject code = JObject.Parse(obj.ToString());\n                        i++;\n\n                        //checking if the object has relations key\n                        if (code[\"path\"].ToString() == \"/relations/-\")\n                        {\n                            JObject hero = (JObject)code[\"value\"];\n                            hero[\"url\"] = _configuration.UriString + code[\"value\"][\"url\"].ToString();\n\n                            batchRequest.body[i - 1] = code;\n                        }\n                    }\n                }\n\n                using (var client = GetHttpClient())\n                {\n                    var newBatchRequest = new StringContent(JsonConvert.SerializeObject(batchRequests), Encoding.UTF8, \"application/json\");\n                    var method = new HttpMethod(\"POST\");\n\n                    // send the request\n                    var request = new HttpRequestMessage(method, \"_apis/wit/$batch?api-version=\" + _configuration.VersionNumber) { Content = newBatchRequest };\n                    var response = client.SendAsync(request).Result;\n                    if (response.IsSuccessStatusCode)\n                    {\n                        return response.IsSuccessStatusCode;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n        }\n\n        /// <summary>\n        /// Method to update WorkItems based on id and workItem Type\n        /// </summary>\n        /// <param name=\"json\"></param>\n        /// <param name=\"projectName\"></param>\n        /// <returns></returns>\n        public bool UpdateWorkItemUsingByPassRules(string json, string projectName, string currentUser, string jsonSettings)\n        {\n            try\n            {\n                string itemType = \"\";\n                string itemTypes = \"\";\n                string userType = \"\";\n                string json_Users = \"\";\n                string jsonType = \"\";\n                string jsonTypes = \"\";\n                List<int> workItemIds = new List<int>();\n                var jsonItems = JObject.Parse(jsonSettings);\n                List<string> tags = new List<string>();\n                JArray tag = jsonItems[\"tags\"].Value<JArray>();\n                foreach (var data in tag.Values())\n                {\n                    tags.Add(data.ToString());\n                }\n\n\n                JArray userList = jsonItems[\"users\"].Value<JArray>();\n                List<string> users = new List<string>();\n                foreach (var data in userList.Values())\n                {\n                    users.Add(data.ToString());\n                }\n\n                if (!string.IsNullOrEmpty(currentUser))\n                {\n                    users.Add(currentUser);\n                }\n\n                Dictionary<string, List<string>> dic = new Dictionary<string, List<string>>\n            {\n                {\n                    \"Feature\",\n                    new List<string>() {\n                \"In Progress\",\n                \"New\",\n                \"Done\",\n                    }\n                },\n                {\n                    \"Product Backlog Item\",\n                    new List<string>() {\n                \"Approved\",\n                \"Committed\",\n                \"New\",\n                \"Done\",\n                    }\n                },\n                {\n                    \"Bug\",\n                    new List<string>() {\n                \"Approved\",\n                \"Committed\",\n                \"New\",\n                \"Done\",\n                    }\n                },\n                {\n                    \"Task\",\n                    new List<string>() {\n                \"In Progress\",\n                \"To Do\",\n                \"Done\",\n                    }\n                }\n            };\n                using (var client = GetHttpClient())\n                {\n                    HttpResponseMessage response = new HttpResponseMessage();\n                    HttpRequestMessage request = new HttpRequestMessage();\n                    foreach (var type in dic.Keys)\n                    {\n                        var res = GetListOfWorkItems_ByWiql(projectName, type);\n                        workItemIds.Clear();\n                        foreach (var ids in res.workItems)\n                        {\n                            workItemIds.Add(ids.id);\n                        }\n                        foreach (var id in workItemIds)\n                        {\n                            if (type == \"Feature\" || type == \"Product Backlog Item\" || type == \"Bug\" || type == \"Task\")\n                            {\n                                itemType = dic[type][new Random().Next(0, dic[type].Count)];\n                                itemTypes = tags[new Random().Next(0, tags.Count)];\n                                userType = users[new Random().Next(0, users.Count)];\n                                jsonType = json.Replace(\"$State$\", itemType.ToString());\n                                jsonTypes = jsonType.Replace(\"$Tags$\", itemTypes.ToString());\n                                json_Users = jsonTypes.Replace(\"$Users$\", userType.ToString());\n                            }\n\n                            var jsonContent = new StringContent(json_Users, Encoding.UTF8, \"application/json-patch+json\");\n                            var method = new HttpMethod(\"PATCH\");\n                            // send the request\n                            request = new HttpRequestMessage(method, _configuration.UriString + \"_apis/wit/workitems/\" + id + \"?bypassRules=true&api-version=\" + _configuration.VersionNumber) { Content = jsonContent };\n                            response = client.SendAsync(request).Result;\n                            if (response.IsSuccessStatusCode)\n                            {\n                                response.StatusCode = System.Net.HttpStatusCode.OK;\n                            }\n                            else\n                            {\n                                var errorMessage = response.Content.ReadAsStringAsync();\n                                string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                                this.LastFailureMessage = error;\n                            }\n                        }\n                    }\n                    //return true;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return false;\n\n        }\n\n        /// <summary>\n        /// Method to Get the list of all workItems\n        /// </summary>\n        /// <param name=\"project\"></param>\n        /// <param name=\"workItemType\"></param>\n        /// <returns></returns>\n        public GetWorkItemsResponse.Results GetListOfWorkItems_ByWiql(string project, string workItemType)\n        {\n            try\n            {\n                GetWorkItemsResponse.Results viewModel = new GetWorkItemsResponse.Results();\n\n                //create wiql object\n                Object wiql = new\n                {\n                    query = \"Select [Work Item Type],[State], [Title],[Created By] \" +\n                            \"From WorkItems \" +\n                            \"Where [Work Item Type] = '\" + workItemType + \"' \" +\n                            \"And [System.TeamProject] = '\" + project + \"' \" +\n                            \"And [System.State] = 'New' \" +\n                            \"Order By [Stack Rank] Desc, [Backlog Priority] Desc\"\n                };\n\n                using (var client = GetHttpClient())\n                {\n                    var postValue = new StringContent(JsonConvert.SerializeObject(wiql), Encoding.UTF8, \"application/json\"); // mediaType needs to be application/json-patch+json for a patch call\n\n                    // set the httpmethod to Patch\n                    var method = new HttpMethod(\"POST\");\n\n                    // send the request               \n                    var request = new HttpRequestMessage(method, \"_apis/wit/wiql?api-version=\" + _configuration.VersionNumber) { Content = postValue };\n                    var response = client.SendAsync(request).Result;\n\n                    if (response.IsSuccessStatusCode)\n                    {\n                        viewModel = response.Content.ReadAsAsync<GetWorkItemsResponse.Results>().Result;\n                    }\n                    else\n                    {\n                        var errorMessage = response.Content.ReadAsStringAsync();\n                        string error = Utility.GeterroMessage(errorMessage.Result.ToString());\n                        this.LastFailureMessage = error;\n                    }\n                    viewModel.HttpStatusCode = response.StatusCode;\n                    return viewModel;\n                }\n            }\n            catch (Exception ex)\n            {\n                logger.Info(DateTime.UtcNow.ToString(\"yyyy-MM-dd HH:mm:ss\") + \"\\t\" + ex.Message + \"\\n\" + ex.StackTrace + \"\\n\");\n            }\n            return new GetWorkItemsResponse.Results();\n        }\n\n    }\n}"
  },
  {
    "path": "src/VstsRestAPI/app.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<configuration>\n  <runtime>\n    <assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\n      <dependentAssembly>\n        <assemblyIdentity name=\"Newtonsoft.Json\" publicKeyToken=\"30ad4fe6b2a6aeed\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-12.0.0.0\" newVersion=\"12.0.0.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Net.Http\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.3\" newVersion=\"4.1.1.3\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Reflection\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.InteropServices\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.Serialization.Primitives\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.2.0\" newVersion=\"4.1.2.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.IO\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.Serialization.Xml\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.2.0\" newVersion=\"4.1.2.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Xml.ReaderWriter\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.0.0\" newVersion=\"4.1.0.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Runtime.Extensions\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Linq\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\" />\n      </dependentAssembly>\n      <dependentAssembly>\n        <assemblyIdentity name=\"System.Linq.Expressions\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\n        <bindingRedirect oldVersion=\"0.0.0.0-4.1.1.0\" newVersion=\"4.1.1.0\" />\n      </dependentAssembly>\n    </assemblyBinding>\n  </runtime>\n<startup><supportedRuntime version=\"v4.0\" sku=\".NETFramework,Version=v4.7\" /></startup></configuration>\n"
  },
  {
    "path": "src/VstsRestAPI/packages.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<packages>\n  <package id=\"log4net\" version=\"2.0.12\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.NETCore.Platforms\" version=\"1.1.0\" targetFramework=\"net47\" />\n  <package id=\"Microsoft.Win32.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"NETStandard.Library\" version=\"1.6.1\" targetFramework=\"net47\" />\n  <package id=\"Newtonsoft.Json\" version=\"12.0.3\" targetFramework=\"net47\" />\n  <package id=\"System.AppContext\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Collections\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Collections.Concurrent\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.ComponentModel.EventBasedAsync\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Console\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.Contracts\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.Debug\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.Tools\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Diagnostics.Tracing\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Globalization\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Globalization.Calendars\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO.Compression\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO.Compression.ZipFile\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO.FileSystem\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.IO.FileSystem.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Linq\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Linq.Expressions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Net.Http\" version=\"4.3.4\" targetFramework=\"net47\" />\n  <package id=\"System.Net.Http.Formatting.Extension\" version=\"5.2.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Net.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Net.Sockets\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.ObjectModel\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Reflection\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Reflection.Extensions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Reflection.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Resources.ResourceManager\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Extensions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Handles\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.InteropServices\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.InteropServices.RuntimeInformation\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Numerics\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Serialization.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Runtime.Serialization.Xml\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Security.Cryptography.Algorithms\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Security.Cryptography.Encoding\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Security.Cryptography.Primitives\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Security.Cryptography.X509Certificates\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Text.Encoding\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Text.Encoding.Extensions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Text.RegularExpressions\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Threading\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Threading.Tasks\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Threading.Timer\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Web.Http.Common\" version=\"4.0.20126.16343\" targetFramework=\"net47\" />\n  <package id=\"System.Xml.ReaderWriter\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Xml.XDocument\" version=\"4.3.0\" targetFramework=\"net47\" />\n  <package id=\"System.Xml.XmlSerializer\" version=\"4.3.0\" targetFramework=\"net47\" />\n</packages>"
  },
  {
    "path": "style.scss",
    "content": "---\n---\n\n//\n// IMPORTS\n//\n\n@import \"reset\";\n@import \"variables\";\n// Syntax highlighting @import is at the bottom of this file\n\n/**************/\n/* BASE RULES */\n/**************/\n\nhtml {\n  font-size: 100%;\n}\n\nbody {\n\tbackground: $white;\n  font: 18px/1.4 $helvetica;\n  color: $darkGray;\n}\n\n.container {\n  margin: 0 auto;\n  max-width: 740px;\n  padding: 0 10px;\n  width: 100%;\n}\n\nh1, h2, h3, h4, h5, h6 {\n  font-family: $helveticaNeue;\n  color: $darkerGray;\n  font-weight: bold;\n\n  line-height: 1.7;\n  margin: 1em 0 15px;\n  padding: 0;\n\n  @include mobile {\n    line-height: 1.4;\n  }\n}\n\nh1 {\n  font-size: 30px;\n  a {\n    color: inherit;\n  }\n}\n\nh2 {\n  font-size: 24px;\n}\n\nh3 {\n  font-size: 20px;\n}\n\nh4 {\n  font-size: 18px;\n  color: $gray;\n}\n\np {\n  margin: 15px 0;\n}\n\na {\n  color: $blue;\n  text-decoration: none;\n\tcursor: pointer;\n  &:hover, &:active {\n    color: $blue;\n  }\n}\n\nul, ol {\n  margin: 15px 0;\n  padding-left: 30px;\n}\n\nul {\n  list-style-type: disc;\n}\n\nol {\n  list-style-type: decimal;\n}\n\nol ul, ul ol, ul ul, ol ol {\n  margin: 0;\n}\n\nul ul, ol ul {\n  list-style-type: circle;\n}\n\nem, i {\n  font-style: italic;\n}\n\nstrong, b {\n  font-weight: bold;\n}\n\nimg {\n  max-width: 100%;\n}\n\n// Fixes images in popup boxes from Google Translate\n.gmnoprint img {\n  max-width: none;\n}\n\n.date {\n  font-style: italic;\n  color: $gray;\n}\n\n// Specify the color of the selection\n::-moz-selection {\n  color: $black;\n  background: $lightGray;\n}\n::selection {\n  color: $black;\n  background: $lightGray;\n}\n\n// Nicolas Gallagher's micro clearfix hack\n// http://nicolasgallagher.com/micro-clearfix-hack/\n.clearfix:before,\n.clearfix:after {\n    content: \" \";\n    display: table;\n}\n\n.clearfix:after {\n    clear: both;\n}\n\n/*********************/\n/* LAYOUT / SECTIONS */\n/*********************/\n\n//\n// .masthead\n//\n\n.wrapper-masthead {\n  margin-bottom: 50px;\n}\n\n.masthead {\n  padding: 20px 0;\n  border-bottom: 1px solid $lightGray;\n\n  @include mobile {\n    text-align: center;\n  }\n}\n\n.site-avatar {\n  float: left;\n  width: 70px;\n  height: 70px;\n  margin-right: 15px;\n\n  @include mobile {\n    float: none;\n    display: block;\n    margin: 0 auto;\n  }\n\n  img {\n    border-radius: 5px;\n  }\n}\n\n.site-info {\n  float: left;\n\n  @include mobile {\n    float: none;\n    display: block;\n    margin: 0 auto;\n  }\n}\n\n.site-name {\n  margin: 0;\n  color: $darkGray;\n  cursor: pointer;\n  font-family: $helveticaNeue;\n  font-weight: 300;\n  font-size: 28px;\n  letter-spacing: 1px;\n}\n\n.site-description {\n  margin: -5px 0 0 0;\n  color: $gray;\n  font-size: 16px;\n\n  @include mobile {\n    margin: 3px 0;\n  }\n}\n\nnav {\n  float: right;\n  margin-top: 23px; // @TODO: Vertically middle align\n  font-family: $helveticaNeue;\n  font-size: 18px;\n\n  @include mobile {\n    float: none;\n    margin-top: 9px;\n    display: block;\n    font-size: 16px;\n  }\n\n  a {\n    margin-left: 20px;\n    color: $darkGray;\n    text-align: right;\n    font-weight: 300;\n    letter-spacing: 1px;\n\n    @include mobile {\n      margin: 0 10px;\n      color: $blue;\n    }\n  }\n}\n\n//\n// .main\n//\n\n.posts > .post {\n  padding-bottom: 2em;\n  border-bottom: 1px solid $lightGray;\n}\n\n.posts > .post:last-child {\n  padding-bottom: 1em;\n  border-bottom: none;\n}\n\n.post {\n  blockquote {\n    margin: 1.8em .8em;\n    border-left: 2px solid $gray;\n    padding: 0.1em 1em;\n    color: $gray;\n    font-size: 22px;\n    font-style: italic;\n  }\n\n  .comments {\n    margin-top: 10px;\n  }\n\n  .read-more {\n    text-transform: uppercase;\n    font-size: 15px;\n  }\n}\n\n.wrapper-footer {\n  margin-top: 50px;\n  border-top: 1px solid #ddd;\n  border-bottom: 1px solid #ddd;\n  background-color: $lightGray;\n}\n\nfooter {\n  padding: 20px 0;\n  text-align: center;\n}\n\n// Settled on moving the import of syntax highlighting to the bottom of the CSS\n// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start\n@import \"highlights\";\n@import \"svg-icons\";\n"
  }
]